blob: b53de928dcaf72973d8c76c60e02ebea6fcc05ab [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
2 * Copyright 2003 NVIDIA, Corporation
3 * Copyright 2006 Dave Airlie
4 * Copyright 2007 Maarten Maathuis
5 * Copyright 2007-2009 Stuart Bennett
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the "Software"),
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the next
15 * paragraph) shall be included in all copies or substantial portions of the
16 * Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
25 */
26
27#include "drmP.h"
28#include "drm_crtc_helper.h"
29
30#include "nouveau_drv.h"
31#include "nouveau_encoder.h"
32#include "nouveau_connector.h"
33#include "nouveau_crtc.h"
34#include "nouveau_hw.h"
35#include "nvreg.h"
36
Francisco Jerez4a9f8222010-07-20 16:48:08 +020037#include "i2c/sil164.h"
38
Ben Skeggs6ee73862009-12-11 19:24:15 +100039#define FP_TG_CONTROL_ON (NV_PRAMDAC_FP_TG_CONTROL_DISPEN_POS | \
40 NV_PRAMDAC_FP_TG_CONTROL_HSYNC_POS | \
41 NV_PRAMDAC_FP_TG_CONTROL_VSYNC_POS)
42#define FP_TG_CONTROL_OFF (NV_PRAMDAC_FP_TG_CONTROL_DISPEN_DISABLE | \
43 NV_PRAMDAC_FP_TG_CONTROL_HSYNC_DISABLE | \
44 NV_PRAMDAC_FP_TG_CONTROL_VSYNC_DISABLE)
45
46static inline bool is_fpc_off(uint32_t fpc)
47{
48 return ((fpc & (FP_TG_CONTROL_ON | FP_TG_CONTROL_OFF)) ==
49 FP_TG_CONTROL_OFF);
50}
51
Ben Skeggscb75d972012-07-11 10:44:20 +100052int nv04_dfp_get_bound_head(struct drm_device *dev, struct dcb_output *dcbent)
Ben Skeggs6ee73862009-12-11 19:24:15 +100053{
54 /* special case of nv_read_tmds to find crtc associated with an output.
55 * this does not give a correct answer for off-chip dvi, but there's no
56 * use for such an answer anyway
57 */
Ben Skeggscb75d972012-07-11 10:44:20 +100058 int ramdac = (dcbent->or & DCB_OUTPUT_C) >> 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +100059
60 NVWriteRAMDAC(dev, ramdac, NV_PRAMDAC_FP_TMDS_CONTROL,
61 NV_PRAMDAC_FP_TMDS_CONTROL_WRITE_DISABLE | 0x4);
62 return ((NVReadRAMDAC(dev, ramdac, NV_PRAMDAC_FP_TMDS_DATA) & 0x8) >> 3) ^ ramdac;
63}
64
Ben Skeggscb75d972012-07-11 10:44:20 +100065void nv04_dfp_bind_head(struct drm_device *dev, struct dcb_output *dcbent,
Ben Skeggs6ee73862009-12-11 19:24:15 +100066 int head, bool dl)
67{
68 /* The BIOS scripts don't do this for us, sadly
69 * Luckily we do know the values ;-)
70 *
71 * head < 0 indicates we wish to force a setting with the overrideval
72 * (for VT restore etc.)
73 */
74
Ben Skeggscb75d972012-07-11 10:44:20 +100075 int ramdac = (dcbent->or & DCB_OUTPUT_C) >> 2;
Ben Skeggs6ee73862009-12-11 19:24:15 +100076 uint8_t tmds04 = 0x80;
77
78 if (head != ramdac)
79 tmds04 = 0x88;
80
Ben Skeggscb75d972012-07-11 10:44:20 +100081 if (dcbent->type == DCB_OUTPUT_LVDS)
Ben Skeggs6ee73862009-12-11 19:24:15 +100082 tmds04 |= 0x01;
83
84 nv_write_tmds(dev, dcbent->or, 0, 0x04, tmds04);
85
86 if (dl) /* dual link */
87 nv_write_tmds(dev, dcbent->or, 1, 0x04, tmds04 ^ 0x08);
88}
89
90void nv04_dfp_disable(struct drm_device *dev, int head)
91{
Ben Skeggs017e6e22012-07-18 10:00:50 +100092 struct nv04_crtc_reg *crtcstate = nv04_display(dev)->mode_reg.crtc_reg;
Ben Skeggs6ee73862009-12-11 19:24:15 +100093
94 if (NVReadRAMDAC(dev, head, NV_PRAMDAC_FP_TG_CONTROL) &
95 FP_TG_CONTROL_ON) {
96 /* digital remnants must be cleaned before new crtc
97 * values programmed. delay is time for the vga stuff
98 * to realise it's in control again
99 */
100 NVWriteRAMDAC(dev, head, NV_PRAMDAC_FP_TG_CONTROL,
101 FP_TG_CONTROL_OFF);
102 msleep(50);
103 }
104 /* don't inadvertently turn it on when state written later */
105 crtcstate[head].fp_control = FP_TG_CONTROL_OFF;
Francisco Jerezcd2fb2e2010-09-28 20:47:58 +0200106 crtcstate[head].CRTC[NV_CIO_CRE_LCD__INDEX] &=
107 ~NV_CIO_CRE_LCD_ROUTE_MASK;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000108}
109
110void nv04_dfp_update_fp_control(struct drm_encoder *encoder, int mode)
111{
112 struct drm_device *dev = encoder->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000113 struct drm_crtc *crtc;
114 struct nouveau_crtc *nv_crtc;
115 uint32_t *fpc;
116
117 if (mode == DRM_MODE_DPMS_ON) {
118 nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggs017e6e22012-07-18 10:00:50 +1000119 fpc = &nv04_display(dev)->mode_reg.crtc_reg[nv_crtc->index].fp_control;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000120
121 if (is_fpc_off(*fpc)) {
122 /* using saved value is ok, as (is_digital && dpms_on &&
123 * fp_control==OFF) is (at present) *only* true when
124 * fpc's most recent change was by below "off" code
125 */
126 *fpc = nv_crtc->dpms_saved_fp_control;
127 }
128
129 nv_crtc->fp_users |= 1 << nouveau_encoder(encoder)->dcb->index;
130 NVWriteRAMDAC(dev, nv_crtc->index, NV_PRAMDAC_FP_TG_CONTROL, *fpc);
131 } else {
132 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
133 nv_crtc = nouveau_crtc(crtc);
Ben Skeggs017e6e22012-07-18 10:00:50 +1000134 fpc = &nv04_display(dev)->mode_reg.crtc_reg[nv_crtc->index].fp_control;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000135
136 nv_crtc->fp_users &= ~(1 << nouveau_encoder(encoder)->dcb->index);
137 if (!is_fpc_off(*fpc) && !nv_crtc->fp_users) {
138 nv_crtc->dpms_saved_fp_control = *fpc;
139 /* cut the FP output */
140 *fpc &= ~FP_TG_CONTROL_ON;
141 *fpc |= FP_TG_CONTROL_OFF;
142 NVWriteRAMDAC(dev, nv_crtc->index,
143 NV_PRAMDAC_FP_TG_CONTROL, *fpc);
144 }
145 }
146 }
147}
148
Francisco Jerez2d14e352010-07-25 19:13:43 +0200149static struct drm_encoder *get_tmds_slave(struct drm_encoder *encoder)
150{
151 struct drm_device *dev = encoder->dev;
Ben Skeggscb75d972012-07-11 10:44:20 +1000152 struct dcb_output *dcb = nouveau_encoder(encoder)->dcb;
Francisco Jerez2d14e352010-07-25 19:13:43 +0200153 struct drm_encoder *slave;
154
Ben Skeggscb75d972012-07-11 10:44:20 +1000155 if (dcb->type != DCB_OUTPUT_TMDS || dcb->location == DCB_LOC_ON_CHIP)
Francisco Jerez2d14e352010-07-25 19:13:43 +0200156 return NULL;
157
158 /* Some BIOSes (e.g. the one in a Quadro FX1000) report several
159 * TMDS transmitters at the same I2C address, in the same I2C
160 * bus. This can still work because in that case one of them is
161 * always hard-wired to a reasonable configuration using straps,
162 * and the other one needs to be programmed.
163 *
164 * I don't think there's a way to know which is which, even the
165 * blob programs the one exposed via I2C for *both* heads, so
166 * let's do the same.
167 */
168 list_for_each_entry(slave, &dev->mode_config.encoder_list, head) {
Ben Skeggscb75d972012-07-11 10:44:20 +1000169 struct dcb_output *slave_dcb = nouveau_encoder(slave)->dcb;
Francisco Jerez2d14e352010-07-25 19:13:43 +0200170
Ben Skeggscb75d972012-07-11 10:44:20 +1000171 if (slave_dcb->type == DCB_OUTPUT_TMDS && get_slave_funcs(slave) &&
Francisco Jerez2d14e352010-07-25 19:13:43 +0200172 slave_dcb->tmdsconf.slave_addr == dcb->tmdsconf.slave_addr)
173 return slave;
174 }
175
176 return NULL;
177}
178
Ben Skeggs6ee73862009-12-11 19:24:15 +1000179static bool nv04_dfp_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200180 const struct drm_display_mode *mode,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000181 struct drm_display_mode *adjusted_mode)
182{
183 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
184 struct nouveau_connector *nv_connector = nouveau_encoder_connector_get(nv_encoder);
185
Francisco Jerez327ceae2010-10-10 05:21:59 +0200186 if (!nv_connector->native_mode ||
187 nv_connector->scaling_mode == DRM_MODE_SCALE_NONE ||
188 mode->hdisplay > nv_connector->native_mode->hdisplay ||
189 mode->vdisplay > nv_connector->native_mode->vdisplay) {
190 nv_encoder->mode = *adjusted_mode;
191
192 } else {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000193 nv_encoder->mode = *nv_connector->native_mode;
194 adjusted_mode->clock = nv_connector->native_mode->clock;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000195 }
196
197 return true;
198}
199
200static void nv04_dfp_prepare_sel_clk(struct drm_device *dev,
201 struct nouveau_encoder *nv_encoder, int head)
202{
Ben Skeggs017e6e22012-07-18 10:00:50 +1000203 struct nv04_mode_state *state = &nv04_display(dev)->mode_reg;
Ben Skeggscb75d972012-07-11 10:44:20 +1000204 uint32_t bits1618 = nv_encoder->dcb->or & DCB_OUTPUT_A ? 0x10000 : 0x40000;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000205
206 if (nv_encoder->dcb->location != DCB_LOC_ON_CHIP)
207 return;
208
209 /* SEL_CLK is only used on the primary ramdac
210 * It toggles spread spectrum PLL output and sets the bindings of PLLs
211 * to heads on digital outputs
212 */
213 if (head)
214 state->sel_clk |= bits1618;
215 else
216 state->sel_clk &= ~bits1618;
217
218 /* nv30:
219 * bit 0 NVClk spread spectrum on/off
220 * bit 2 MemClk spread spectrum on/off
221 * bit 4 PixClk1 spread spectrum on/off toggle
222 * bit 6 PixClk2 spread spectrum on/off toggle
223 *
224 * nv40 (observations from bios behaviour and mmio traces):
225 * bits 4&6 as for nv30
226 * bits 5&7 head dependent as for bits 4&6, but do not appear with 4&6;
227 * maybe a different spread mode
228 * bits 8&10 seen on dual-link dvi outputs, purpose unknown (set by POST scripts)
229 * The logic behind turning spread spectrum on/off in the first place,
230 * and which bit-pair to use, is unclear on nv40 (for earlier cards, the fp table
231 * entry has the necessary info)
232 */
Ben Skeggs017e6e22012-07-18 10:00:50 +1000233 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS && nv04_display(dev)->saved_reg.sel_clk & 0xf0) {
234 int shift = (nv04_display(dev)->saved_reg.sel_clk & 0x50) ? 0 : 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000235
236 state->sel_clk &= ~0xf0;
237 state->sel_clk |= (head ? 0x40 : 0x10) << shift;
238 }
239}
240
241static void nv04_dfp_prepare(struct drm_encoder *encoder)
242{
243 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
244 struct drm_encoder_helper_funcs *helper = encoder->helper_private;
245 struct drm_device *dev = encoder->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000246 int head = nouveau_crtc(encoder->crtc)->index;
Ben Skeggs017e6e22012-07-18 10:00:50 +1000247 struct nv04_crtc_reg *crtcstate = nv04_display(dev)->mode_reg.crtc_reg;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000248 uint8_t *cr_lcd = &crtcstate[head].CRTC[NV_CIO_CRE_LCD__INDEX];
249 uint8_t *cr_lcd_oth = &crtcstate[head ^ 1].CRTC[NV_CIO_CRE_LCD__INDEX];
250
251 helper->dpms(encoder, DRM_MODE_DPMS_OFF);
252
253 nv04_dfp_prepare_sel_clk(dev, nv_encoder, head);
254
Francisco Jerezcd2fb2e2010-09-28 20:47:58 +0200255 *cr_lcd = (*cr_lcd & ~NV_CIO_CRE_LCD_ROUTE_MASK) | 0x3;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000256
Francisco Jerez217275d2010-08-30 19:55:52 +0200257 if (nv_two_heads(dev)) {
258 if (nv_encoder->dcb->location == DCB_LOC_ON_CHIP)
259 *cr_lcd |= head ? 0x0 : 0x8;
260 else {
261 *cr_lcd |= (nv_encoder->dcb->or << 4) & 0x30;
Ben Skeggscb75d972012-07-11 10:44:20 +1000262 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS)
Francisco Jerez217275d2010-08-30 19:55:52 +0200263 *cr_lcd |= 0x30;
264 if ((*cr_lcd & 0x30) == (*cr_lcd_oth & 0x30)) {
265 /* avoid being connected to both crtcs */
266 *cr_lcd_oth &= ~0x30;
267 NVWriteVgaCrtc(dev, head ^ 1,
268 NV_CIO_CRE_LCD__INDEX,
269 *cr_lcd_oth);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000270 }
271 }
272 }
273}
274
275
276static void nv04_dfp_mode_set(struct drm_encoder *encoder,
277 struct drm_display_mode *mode,
278 struct drm_display_mode *adjusted_mode)
279{
280 struct drm_device *dev = encoder->dev;
281 struct drm_nouveau_private *dev_priv = dev->dev_private;
282 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
Ben Skeggs017e6e22012-07-18 10:00:50 +1000283 struct nv04_crtc_reg *regp = &nv04_display(dev)->mode_reg.crtc_reg[nv_crtc->index];
284 struct nv04_crtc_reg *savep = &nv04_display(dev)->saved_reg.crtc_reg[nv_crtc->index];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000285 struct nouveau_connector *nv_connector = nouveau_crtc_connector_get(nv_crtc);
286 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
287 struct drm_display_mode *output_mode = &nv_encoder->mode;
Ben Skeggsde691852011-10-17 12:23:41 +1000288 struct drm_connector *connector = &nv_connector->base;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000289 uint32_t mode_ratio, panel_ratio;
290
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100291 NV_DEBUG_KMS(dev, "Output mode on CRTC %d:\n", nv_crtc->index);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000292 drm_mode_debug_printmodeline(output_mode);
293
294 /* Initialize the FP registers in this CRTC. */
295 regp->fp_horiz_regs[FP_DISPLAY_END] = output_mode->hdisplay - 1;
296 regp->fp_horiz_regs[FP_TOTAL] = output_mode->htotal - 1;
297 if (!nv_gf4_disp_arch(dev) ||
298 (output_mode->hsync_start - output_mode->hdisplay) >=
Ben Skeggs04a39c52010-02-24 10:03:05 +1000299 dev_priv->vbios.digital_min_front_porch)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000300 regp->fp_horiz_regs[FP_CRTC] = output_mode->hdisplay;
301 else
Ben Skeggs04a39c52010-02-24 10:03:05 +1000302 regp->fp_horiz_regs[FP_CRTC] = output_mode->hsync_start - dev_priv->vbios.digital_min_front_porch - 1;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000303 regp->fp_horiz_regs[FP_SYNC_START] = output_mode->hsync_start - 1;
304 regp->fp_horiz_regs[FP_SYNC_END] = output_mode->hsync_end - 1;
305 regp->fp_horiz_regs[FP_VALID_START] = output_mode->hskew;
306 regp->fp_horiz_regs[FP_VALID_END] = output_mode->hdisplay - 1;
307
308 regp->fp_vert_regs[FP_DISPLAY_END] = output_mode->vdisplay - 1;
309 regp->fp_vert_regs[FP_TOTAL] = output_mode->vtotal - 1;
310 regp->fp_vert_regs[FP_CRTC] = output_mode->vtotal - 5 - 1;
311 regp->fp_vert_regs[FP_SYNC_START] = output_mode->vsync_start - 1;
312 regp->fp_vert_regs[FP_SYNC_END] = output_mode->vsync_end - 1;
313 regp->fp_vert_regs[FP_VALID_START] = 0;
314 regp->fp_vert_regs[FP_VALID_END] = output_mode->vdisplay - 1;
315
316 /* bit26: a bit seen on some g7x, no as yet discernable purpose */
317 regp->fp_control = NV_PRAMDAC_FP_TG_CONTROL_DISPEN_POS |
318 (savep->fp_control & (1 << 26 | NV_PRAMDAC_FP_TG_CONTROL_READ_PROG));
319 /* Deal with vsync/hsync polarity */
320 /* LVDS screens do set this, but modes with +ve syncs are very rare */
321 if (output_mode->flags & DRM_MODE_FLAG_PVSYNC)
322 regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_VSYNC_POS;
323 if (output_mode->flags & DRM_MODE_FLAG_PHSYNC)
324 regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_HSYNC_POS;
325 /* panel scaling first, as native would get set otherwise */
326 if (nv_connector->scaling_mode == DRM_MODE_SCALE_NONE ||
327 nv_connector->scaling_mode == DRM_MODE_SCALE_CENTER) /* panel handles it */
328 regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_MODE_CENTER;
329 else if (adjusted_mode->hdisplay == output_mode->hdisplay &&
330 adjusted_mode->vdisplay == output_mode->vdisplay) /* native mode */
331 regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_MODE_NATIVE;
332 else /* gpu needs to scale */
333 regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_MODE_SCALE;
Ben Skeggs84058eb2012-07-26 08:59:23 +1000334 if (nv_rd32(dev, NV_PEXTDEV_BOOT_0) & NV_PEXTDEV_BOOT_0_STRAP_FP_IFACE_12BIT)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000335 regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_WIDTH_12;
336 if (nv_encoder->dcb->location != DCB_LOC_ON_CHIP &&
337 output_mode->clock > 165000)
338 regp->fp_control |= (2 << 24);
Ben Skeggscb75d972012-07-11 10:44:20 +1000339 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS) {
Ben Skeggsabbd3f82011-11-18 11:55:43 +1000340 bool duallink = false, dummy;
341 if (nv_connector->edid &&
342 nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
343 duallink = (((u8 *)nv_connector->edid)[121] == 2);
344 } else {
345 nouveau_bios_parse_lvds_table(dev, output_mode->clock,
346 &duallink, &dummy);
347 }
Ben Skeggs6ee73862009-12-11 19:24:15 +1000348
Ben Skeggs6ee73862009-12-11 19:24:15 +1000349 if (duallink)
350 regp->fp_control |= (8 << 28);
351 } else
352 if (output_mode->clock > 165000)
353 regp->fp_control |= (8 << 28);
354
355 regp->fp_debug_0 = NV_PRAMDAC_FP_DEBUG_0_YWEIGHT_ROUND |
356 NV_PRAMDAC_FP_DEBUG_0_XWEIGHT_ROUND |
357 NV_PRAMDAC_FP_DEBUG_0_YINTERP_BILINEAR |
358 NV_PRAMDAC_FP_DEBUG_0_XINTERP_BILINEAR |
359 NV_RAMDAC_FP_DEBUG_0_TMDS_ENABLED |
360 NV_PRAMDAC_FP_DEBUG_0_YSCALE_ENABLE |
361 NV_PRAMDAC_FP_DEBUG_0_XSCALE_ENABLE;
362
363 /* We want automatic scaling */
364 regp->fp_debug_1 = 0;
365 /* This can override HTOTAL and VTOTAL */
366 regp->fp_debug_2 = 0;
367
368 /* Use 20.12 fixed point format to avoid floats */
369 mode_ratio = (1 << 12) * adjusted_mode->hdisplay / adjusted_mode->vdisplay;
370 panel_ratio = (1 << 12) * output_mode->hdisplay / output_mode->vdisplay;
371 /* if ratios are equal, SCALE_ASPECT will automatically (and correctly)
372 * get treated the same as SCALE_FULLSCREEN */
373 if (nv_connector->scaling_mode == DRM_MODE_SCALE_ASPECT &&
374 mode_ratio != panel_ratio) {
375 uint32_t diff, scale;
376 bool divide_by_2 = nv_gf4_disp_arch(dev);
377
378 if (mode_ratio < panel_ratio) {
379 /* vertical needs to expand to glass size (automatic)
380 * horizontal needs to be scaled at vertical scale factor
381 * to maintain aspect */
382
383 scale = (1 << 12) * adjusted_mode->vdisplay / output_mode->vdisplay;
384 regp->fp_debug_1 = NV_PRAMDAC_FP_DEBUG_1_XSCALE_TESTMODE_ENABLE |
385 XLATE(scale, divide_by_2, NV_PRAMDAC_FP_DEBUG_1_XSCALE_VALUE);
386
387 /* restrict area of screen used, horizontally */
388 diff = output_mode->hdisplay -
389 output_mode->vdisplay * mode_ratio / (1 << 12);
390 regp->fp_horiz_regs[FP_VALID_START] += diff / 2;
391 regp->fp_horiz_regs[FP_VALID_END] -= diff / 2;
392 }
393
394 if (mode_ratio > panel_ratio) {
395 /* horizontal needs to expand to glass size (automatic)
396 * vertical needs to be scaled at horizontal scale factor
397 * to maintain aspect */
398
399 scale = (1 << 12) * adjusted_mode->hdisplay / output_mode->hdisplay;
400 regp->fp_debug_1 = NV_PRAMDAC_FP_DEBUG_1_YSCALE_TESTMODE_ENABLE |
401 XLATE(scale, divide_by_2, NV_PRAMDAC_FP_DEBUG_1_YSCALE_VALUE);
402
403 /* restrict area of screen used, vertically */
404 diff = output_mode->vdisplay -
405 (1 << 12) * output_mode->hdisplay / mode_ratio;
406 regp->fp_vert_regs[FP_VALID_START] += diff / 2;
407 regp->fp_vert_regs[FP_VALID_END] -= diff / 2;
408 }
409 }
410
411 /* Output property. */
Ben Skeggsde691852011-10-17 12:23:41 +1000412 if ((nv_connector->dithering_mode == DITHERING_MODE_ON) ||
413 (nv_connector->dithering_mode == DITHERING_MODE_AUTO &&
414 encoder->crtc->fb->depth > connector->display_info.bpc * 3)) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000415 if (dev_priv->chipset == 0x11)
416 regp->dither = savep->dither | 0x00010000;
417 else {
418 int i;
419 regp->dither = savep->dither | 0x00000001;
420 for (i = 0; i < 3; i++) {
421 regp->dither_regs[i] = 0xe4e4e4e4;
422 regp->dither_regs[i + 3] = 0x44444444;
423 }
424 }
425 } else {
426 if (dev_priv->chipset != 0x11) {
427 /* reset them */
428 int i;
429 for (i = 0; i < 3; i++) {
430 regp->dither_regs[i] = savep->dither_regs[i];
431 regp->dither_regs[i + 3] = savep->dither_regs[i + 3];
432 }
433 }
434 regp->dither = savep->dither;
435 }
436
437 regp->fp_margin_color = 0;
438}
439
440static void nv04_dfp_commit(struct drm_encoder *encoder)
441{
442 struct drm_device *dev = encoder->dev;
443 struct drm_nouveau_private *dev_priv = dev->dev_private;
444 struct drm_encoder_helper_funcs *helper = encoder->helper_private;
445 struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
446 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
Ben Skeggscb75d972012-07-11 10:44:20 +1000447 struct dcb_output *dcbe = nv_encoder->dcb;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000448 int head = nouveau_crtc(encoder->crtc)->index;
Patrice Mandinf5cb8ab2010-08-18 16:07:34 +0200449 struct drm_encoder *slave_encoder;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000450
Ben Skeggscb75d972012-07-11 10:44:20 +1000451 if (dcbe->type == DCB_OUTPUT_TMDS)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000452 run_tmds_table(dev, dcbe, head, nv_encoder->mode.clock);
Ben Skeggscb75d972012-07-11 10:44:20 +1000453 else if (dcbe->type == DCB_OUTPUT_LVDS)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000454 call_lvds_script(dev, dcbe, head, LVDS_RESET, nv_encoder->mode.clock);
455
456 /* update fp_control state for any changes made by scripts,
457 * so correct value is written at DPMS on */
Ben Skeggs017e6e22012-07-18 10:00:50 +1000458 nv04_display(dev)->mode_reg.crtc_reg[head].fp_control =
Ben Skeggs6ee73862009-12-11 19:24:15 +1000459 NVReadRAMDAC(dev, head, NV_PRAMDAC_FP_TG_CONTROL);
460
461 /* This could use refinement for flatpanels, but it should work this way */
462 if (dev_priv->chipset < 0x44)
463 NVWriteRAMDAC(dev, 0, NV_PRAMDAC_TEST_CONTROL + nv04_dac_output_offset(encoder), 0xf0000000);
464 else
465 NVWriteRAMDAC(dev, 0, NV_PRAMDAC_TEST_CONTROL + nv04_dac_output_offset(encoder), 0x00100000);
466
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200467 /* Init external transmitters */
Patrice Mandinf5cb8ab2010-08-18 16:07:34 +0200468 slave_encoder = get_tmds_slave(encoder);
469 if (slave_encoder)
470 get_slave_funcs(slave_encoder)->mode_set(
471 slave_encoder, &nv_encoder->mode, &nv_encoder->mode);
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200472
Ben Skeggs6ee73862009-12-11 19:24:15 +1000473 helper->dpms(encoder, DRM_MODE_DPMS_ON);
474
475 NV_INFO(dev, "Output %s is running on CRTC %d using output %c\n",
476 drm_get_connector_name(&nouveau_encoder_connector_get(nv_encoder)->base),
477 nv_crtc->index, '@' + ffs(nv_encoder->dcb->or));
478}
479
Francisco Jerezd31e0782010-08-20 14:19:45 +0200480static void nv04_dfp_update_backlight(struct drm_encoder *encoder, int mode)
481{
482#ifdef __powerpc__
483 struct drm_device *dev = encoder->dev;
484
485 /* BIOS scripts usually take care of the backlight, thanks
486 * Apple for your consistency.
487 */
488 if (dev->pci_device == 0x0179 || dev->pci_device == 0x0189 ||
489 dev->pci_device == 0x0329) {
490 if (mode == DRM_MODE_DPMS_ON) {
491 nv_mask(dev, NV_PBUS_DEBUG_DUALHEAD_CTL, 0, 1 << 31);
492 nv_mask(dev, NV_PCRTC_GPIO_EXT, 3, 1);
493 } else {
494 nv_mask(dev, NV_PBUS_DEBUG_DUALHEAD_CTL, 1 << 31, 0);
495 nv_mask(dev, NV_PCRTC_GPIO_EXT, 3, 0);
496 }
497 }
498#endif
499}
500
Ben Skeggs6ee73862009-12-11 19:24:15 +1000501static inline bool is_powersaving_dpms(int mode)
502{
503 return (mode != DRM_MODE_DPMS_ON);
504}
505
506static void nv04_lvds_dpms(struct drm_encoder *encoder, int mode)
507{
508 struct drm_device *dev = encoder->dev;
509 struct drm_crtc *crtc = encoder->crtc;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000510 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
511 bool was_powersaving = is_powersaving_dpms(nv_encoder->last_dpms);
512
513 if (nv_encoder->last_dpms == mode)
514 return;
515 nv_encoder->last_dpms = mode;
516
517 NV_INFO(dev, "Setting dpms mode %d on lvds encoder (output %d)\n",
518 mode, nv_encoder->dcb->index);
519
520 if (was_powersaving && is_powersaving_dpms(mode))
521 return;
522
523 if (nv_encoder->dcb->lvdsconf.use_power_scripts) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000524 /* when removing an output, crtc may not be set, but PANEL_OFF
525 * must still be run
526 */
527 int head = crtc ? nouveau_crtc(crtc)->index :
528 nv04_dfp_get_bound_head(dev, nv_encoder->dcb);
529
530 if (mode == DRM_MODE_DPMS_ON) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000531 call_lvds_script(dev, nv_encoder->dcb, head,
Francisco Jerez87886222011-02-03 01:53:18 +0100532 LVDS_PANEL_ON, nv_encoder->mode.clock);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000533 } else
534 /* pxclk of 0 is fine for PANEL_OFF, and for a
535 * disconnected LVDS encoder there is no native_mode
536 */
537 call_lvds_script(dev, nv_encoder->dcb, head,
538 LVDS_PANEL_OFF, 0);
539 }
540
Francisco Jerezd31e0782010-08-20 14:19:45 +0200541 nv04_dfp_update_backlight(encoder, mode);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000542 nv04_dfp_update_fp_control(encoder, mode);
543
544 if (mode == DRM_MODE_DPMS_ON)
545 nv04_dfp_prepare_sel_clk(dev, nv_encoder, nouveau_crtc(crtc)->index);
546 else {
Ben Skeggs017e6e22012-07-18 10:00:50 +1000547 nv04_display(dev)->mode_reg.sel_clk = NVReadRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK);
548 nv04_display(dev)->mode_reg.sel_clk &= ~0xf0;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000549 }
Ben Skeggs017e6e22012-07-18 10:00:50 +1000550 NVWriteRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK, nv04_display(dev)->mode_reg.sel_clk);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000551}
552
553static void nv04_tmds_dpms(struct drm_encoder *encoder, int mode)
554{
555 struct drm_device *dev = encoder->dev;
556 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
557
558 if (nv_encoder->last_dpms == mode)
559 return;
560 nv_encoder->last_dpms = mode;
561
562 NV_INFO(dev, "Setting dpms mode %d on tmds encoder (output %d)\n",
563 mode, nv_encoder->dcb->index);
564
Francisco Jerezd31e0782010-08-20 14:19:45 +0200565 nv04_dfp_update_backlight(encoder, mode);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000566 nv04_dfp_update_fp_control(encoder, mode);
567}
568
569static void nv04_dfp_save(struct drm_encoder *encoder)
570{
571 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
572 struct drm_device *dev = encoder->dev;
573
574 if (nv_two_heads(dev))
575 nv_encoder->restore.head =
576 nv04_dfp_get_bound_head(dev, nv_encoder->dcb);
577}
578
579static void nv04_dfp_restore(struct drm_encoder *encoder)
580{
581 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
582 struct drm_device *dev = encoder->dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000583 int head = nv_encoder->restore.head;
584
Ben Skeggscb75d972012-07-11 10:44:20 +1000585 if (nv_encoder->dcb->type == DCB_OUTPUT_LVDS) {
Marcin Slusarzfb522ee2011-03-10 22:43:25 +0100586 struct nouveau_connector *connector =
587 nouveau_encoder_connector_get(nv_encoder);
588
589 if (connector && connector->native_mode)
590 call_lvds_script(dev, nv_encoder->dcb, head,
591 LVDS_PANEL_ON,
592 connector->native_mode->clock);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000593
Ben Skeggscb75d972012-07-11 10:44:20 +1000594 } else if (nv_encoder->dcb->type == DCB_OUTPUT_TMDS) {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000595 int clock = nouveau_hw_pllvals_to_clk
Ben Skeggs017e6e22012-07-18 10:00:50 +1000596 (&nv04_display(dev)->saved_reg.crtc_reg[head].pllvals);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000597
598 run_tmds_table(dev, nv_encoder->dcb, head, clock);
599 }
600
601 nv_encoder->last_dpms = NV_DPMS_CLEARED;
602}
603
604static void nv04_dfp_destroy(struct drm_encoder *encoder)
605{
606 struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
607
Maarten Maathuisef2bb502009-12-13 16:53:12 +0100608 NV_DEBUG_KMS(encoder->dev, "\n");
Ben Skeggs6ee73862009-12-11 19:24:15 +1000609
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200610 if (get_slave_funcs(encoder))
611 get_slave_funcs(encoder)->destroy(encoder);
612
Ben Skeggs6ee73862009-12-11 19:24:15 +1000613 drm_encoder_cleanup(encoder);
614 kfree(nv_encoder);
615}
616
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200617static void nv04_tmds_slave_init(struct drm_encoder *encoder)
618{
619 struct drm_device *dev = encoder->dev;
Ben Skeggscb75d972012-07-11 10:44:20 +1000620 struct dcb_output *dcb = nouveau_encoder(encoder)->dcb;
Ben Skeggs4196faa2012-07-10 14:36:38 +1000621 struct nouveau_i2c_port *i2c = nouveau_i2c_find(dev, 2);
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200622 struct i2c_board_info info[] = {
623 {
624 .type = "sil164",
625 .addr = (dcb->tmdsconf.slave_addr == 0x7 ? 0x3a : 0x38),
626 .platform_data = &(struct sil164_encoder_params) {
627 SIL164_INPUT_EDGE_RISING
628 }
629 },
630 { }
631 };
632 int type;
633
Francisco Jerez2d14e352010-07-25 19:13:43 +0200634 if (!nv_gf4_disp_arch(dev) || !i2c ||
635 get_tmds_slave(encoder))
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200636 return;
637
Francisco Jerez66146da2010-09-23 21:00:40 +0200638 type = nouveau_i2c_identify(dev, "TMDS transmitter", info, NULL, 2);
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200639 if (type < 0)
640 return;
641
642 drm_i2c_encoder_init(dev, to_encoder_slave(encoder),
Ben Skeggs4196faa2012-07-10 14:36:38 +1000643 nouveau_i2c_adapter(i2c), &info[type]);
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200644}
645
Ben Skeggs6ee73862009-12-11 19:24:15 +1000646static const struct drm_encoder_helper_funcs nv04_lvds_helper_funcs = {
647 .dpms = nv04_lvds_dpms,
648 .save = nv04_dfp_save,
649 .restore = nv04_dfp_restore,
650 .mode_fixup = nv04_dfp_mode_fixup,
651 .prepare = nv04_dfp_prepare,
652 .commit = nv04_dfp_commit,
653 .mode_set = nv04_dfp_mode_set,
654 .detect = NULL,
655};
656
657static const struct drm_encoder_helper_funcs nv04_tmds_helper_funcs = {
658 .dpms = nv04_tmds_dpms,
659 .save = nv04_dfp_save,
660 .restore = nv04_dfp_restore,
661 .mode_fixup = nv04_dfp_mode_fixup,
662 .prepare = nv04_dfp_prepare,
663 .commit = nv04_dfp_commit,
664 .mode_set = nv04_dfp_mode_set,
665 .detect = NULL,
666};
667
668static const struct drm_encoder_funcs nv04_dfp_funcs = {
669 .destroy = nv04_dfp_destroy,
670};
671
Ben Skeggs8f1a6082010-06-28 14:35:50 +1000672int
Ben Skeggscb75d972012-07-11 10:44:20 +1000673nv04_dfp_create(struct drm_connector *connector, struct dcb_output *entry)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000674{
675 const struct drm_encoder_helper_funcs *helper;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000676 struct nouveau_encoder *nv_encoder = NULL;
Ben Skeggs8f1a6082010-06-28 14:35:50 +1000677 struct drm_encoder *encoder;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000678 int type;
679
680 switch (entry->type) {
Ben Skeggscb75d972012-07-11 10:44:20 +1000681 case DCB_OUTPUT_TMDS:
Ben Skeggs6ee73862009-12-11 19:24:15 +1000682 type = DRM_MODE_ENCODER_TMDS;
683 helper = &nv04_tmds_helper_funcs;
684 break;
Ben Skeggscb75d972012-07-11 10:44:20 +1000685 case DCB_OUTPUT_LVDS:
Ben Skeggs6ee73862009-12-11 19:24:15 +1000686 type = DRM_MODE_ENCODER_LVDS;
687 helper = &nv04_lvds_helper_funcs;
688 break;
689 default:
690 return -EINVAL;
691 }
692
693 nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
694 if (!nv_encoder)
695 return -ENOMEM;
696
697 encoder = to_drm_encoder(nv_encoder);
698
699 nv_encoder->dcb = entry;
700 nv_encoder->or = ffs(entry->or) - 1;
701
Ben Skeggs8f1a6082010-06-28 14:35:50 +1000702 drm_encoder_init(connector->dev, encoder, &nv04_dfp_funcs, type);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000703 drm_encoder_helper_add(encoder, helper);
704
705 encoder->possible_crtcs = entry->heads;
706 encoder->possible_clones = 0;
707
Ben Skeggscb75d972012-07-11 10:44:20 +1000708 if (entry->type == DCB_OUTPUT_TMDS &&
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200709 entry->location != DCB_LOC_ON_CHIP)
710 nv04_tmds_slave_init(encoder);
711
Ben Skeggs8f1a6082010-06-28 14:35:50 +1000712 drm_mode_connector_attach_encoder(connector, encoder);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000713 return 0;
714}