• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/gpu/drm/nouveau/
1/*
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
37#include "i2c/sil164.h"
38
39#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
52int nv04_dfp_get_bound_head(struct drm_device *dev, struct dcb_entry *dcbent)
53{
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	 */
58	int ramdac = (dcbent->or & OUTPUT_C) >> 2;
59
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
65void nv04_dfp_bind_head(struct drm_device *dev, struct dcb_entry *dcbent,
66			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
75	int ramdac = (dcbent->or & OUTPUT_C) >> 2;
76	uint8_t tmds04 = 0x80;
77
78	if (head != ramdac)
79		tmds04 = 0x88;
80
81	if (dcbent->type == OUTPUT_LVDS)
82		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{
92	struct drm_nouveau_private *dev_priv = dev->dev_private;
93	struct nv04_crtc_reg *crtcstate = dev_priv->mode_reg.crtc_reg;
94
95	if (NVReadRAMDAC(dev, head, NV_PRAMDAC_FP_TG_CONTROL) &
96	    FP_TG_CONTROL_ON) {
97		/* digital remnants must be cleaned before new crtc
98		 * values programmed.  delay is time for the vga stuff
99		 * to realise it's in control again
100		 */
101		NVWriteRAMDAC(dev, head, NV_PRAMDAC_FP_TG_CONTROL,
102			      FP_TG_CONTROL_OFF);
103		msleep(50);
104	}
105	/* don't inadvertently turn it on when state written later */
106	crtcstate[head].fp_control = FP_TG_CONTROL_OFF;
107}
108
109void nv04_dfp_update_fp_control(struct drm_encoder *encoder, int mode)
110{
111	struct drm_device *dev = encoder->dev;
112	struct drm_nouveau_private *dev_priv = dev->dev_private;
113	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);
119		fpc = &dev_priv->mode_reg.crtc_reg[nv_crtc->index].fp_control;
120
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);
134			fpc = &dev_priv->mode_reg.crtc_reg[nv_crtc->index].fp_control;
135
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
149static struct drm_encoder *get_tmds_slave(struct drm_encoder *encoder)
150{
151	struct drm_device *dev = encoder->dev;
152	struct dcb_entry *dcb = nouveau_encoder(encoder)->dcb;
153	struct drm_encoder *slave;
154
155	if (dcb->type != OUTPUT_TMDS || dcb->location == DCB_LOC_ON_CHIP)
156		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) {
169		struct dcb_entry *slave_dcb = nouveau_encoder(slave)->dcb;
170
171		if (slave_dcb->type == OUTPUT_TMDS && get_slave_funcs(slave) &&
172		    slave_dcb->tmdsconf.slave_addr == dcb->tmdsconf.slave_addr)
173			return slave;
174	}
175
176	return NULL;
177}
178
179static bool nv04_dfp_mode_fixup(struct drm_encoder *encoder,
180				struct drm_display_mode *mode,
181				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
186	/* For internal panels and gpu scaling on DVI we need the native mode */
187	if (nv_connector->scaling_mode != DRM_MODE_SCALE_NONE) {
188		if (!nv_connector->native_mode)
189			return false;
190		nv_encoder->mode = *nv_connector->native_mode;
191		adjusted_mode->clock = nv_connector->native_mode->clock;
192	} else {
193		nv_encoder->mode = *adjusted_mode;
194	}
195
196	return true;
197}
198
199static void nv04_dfp_prepare_sel_clk(struct drm_device *dev,
200				     struct nouveau_encoder *nv_encoder, int head)
201{
202	struct drm_nouveau_private *dev_priv = dev->dev_private;
203	struct nv04_mode_state *state = &dev_priv->mode_reg;
204	uint32_t bits1618 = nv_encoder->dcb->or & OUTPUT_A ? 0x10000 : 0x40000;
205
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	 */
233	if (nv_encoder->dcb->type == OUTPUT_LVDS && dev_priv->saved_reg.sel_clk & 0xf0) {
234		int shift = (dev_priv->saved_reg.sel_clk & 0x50) ? 0 : 1;
235
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;
246	struct drm_nouveau_private *dev_priv = dev->dev_private;
247	int head = nouveau_crtc(encoder->crtc)->index;
248	struct nv04_crtc_reg *crtcstate = dev_priv->mode_reg.crtc_reg;
249	uint8_t *cr_lcd = &crtcstate[head].CRTC[NV_CIO_CRE_LCD__INDEX];
250	uint8_t *cr_lcd_oth = &crtcstate[head ^ 1].CRTC[NV_CIO_CRE_LCD__INDEX];
251
252	helper->dpms(encoder, DRM_MODE_DPMS_OFF);
253
254	nv04_dfp_prepare_sel_clk(dev, nv_encoder, head);
255
256	/* Some NV4x have unknown values (0x3f, 0x50, 0x54, 0x6b, 0x79, 0x7f)
257	 * at LCD__INDEX which we don't alter
258	 */
259	if (!(*cr_lcd & 0x44)) {
260		*cr_lcd = 0x3;
261
262		if (nv_two_heads(dev)) {
263			if (nv_encoder->dcb->location == DCB_LOC_ON_CHIP)
264				*cr_lcd |= head ? 0x0 : 0x8;
265			else {
266				*cr_lcd |= (nv_encoder->dcb->or << 4) & 0x30;
267				if (nv_encoder->dcb->type == OUTPUT_LVDS)
268					*cr_lcd |= 0x30;
269				if ((*cr_lcd & 0x30) == (*cr_lcd_oth & 0x30)) {
270					/* avoid being connected to both crtcs */
271					*cr_lcd_oth &= ~0x30;
272					NVWriteVgaCrtc(dev, head ^ 1,
273						       NV_CIO_CRE_LCD__INDEX,
274						       *cr_lcd_oth);
275				}
276			}
277		}
278	}
279}
280
281
282static void nv04_dfp_mode_set(struct drm_encoder *encoder,
283			      struct drm_display_mode *mode,
284			      struct drm_display_mode *adjusted_mode)
285{
286	struct drm_device *dev = encoder->dev;
287	struct drm_nouveau_private *dev_priv = dev->dev_private;
288	struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
289	struct nv04_crtc_reg *regp = &dev_priv->mode_reg.crtc_reg[nv_crtc->index];
290	struct nv04_crtc_reg *savep = &dev_priv->saved_reg.crtc_reg[nv_crtc->index];
291	struct nouveau_connector *nv_connector = nouveau_crtc_connector_get(nv_crtc);
292	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
293	struct drm_display_mode *output_mode = &nv_encoder->mode;
294	uint32_t mode_ratio, panel_ratio;
295
296	NV_DEBUG_KMS(dev, "Output mode on CRTC %d:\n", nv_crtc->index);
297	drm_mode_debug_printmodeline(output_mode);
298
299	/* Initialize the FP registers in this CRTC. */
300	regp->fp_horiz_regs[FP_DISPLAY_END] = output_mode->hdisplay - 1;
301	regp->fp_horiz_regs[FP_TOTAL] = output_mode->htotal - 1;
302	if (!nv_gf4_disp_arch(dev) ||
303	    (output_mode->hsync_start - output_mode->hdisplay) >=
304					dev_priv->vbios.digital_min_front_porch)
305		regp->fp_horiz_regs[FP_CRTC] = output_mode->hdisplay;
306	else
307		regp->fp_horiz_regs[FP_CRTC] = output_mode->hsync_start - dev_priv->vbios.digital_min_front_porch - 1;
308	regp->fp_horiz_regs[FP_SYNC_START] = output_mode->hsync_start - 1;
309	regp->fp_horiz_regs[FP_SYNC_END] = output_mode->hsync_end - 1;
310	regp->fp_horiz_regs[FP_VALID_START] = output_mode->hskew;
311	regp->fp_horiz_regs[FP_VALID_END] = output_mode->hdisplay - 1;
312
313	regp->fp_vert_regs[FP_DISPLAY_END] = output_mode->vdisplay - 1;
314	regp->fp_vert_regs[FP_TOTAL] = output_mode->vtotal - 1;
315	regp->fp_vert_regs[FP_CRTC] = output_mode->vtotal - 5 - 1;
316	regp->fp_vert_regs[FP_SYNC_START] = output_mode->vsync_start - 1;
317	regp->fp_vert_regs[FP_SYNC_END] = output_mode->vsync_end - 1;
318	regp->fp_vert_regs[FP_VALID_START] = 0;
319	regp->fp_vert_regs[FP_VALID_END] = output_mode->vdisplay - 1;
320
321	/* bit26: a bit seen on some g7x, no as yet discernable purpose */
322	regp->fp_control = NV_PRAMDAC_FP_TG_CONTROL_DISPEN_POS |
323			   (savep->fp_control & (1 << 26 | NV_PRAMDAC_FP_TG_CONTROL_READ_PROG));
324	/* Deal with vsync/hsync polarity */
325	/* LVDS screens do set this, but modes with +ve syncs are very rare */
326	if (output_mode->flags & DRM_MODE_FLAG_PVSYNC)
327		regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_VSYNC_POS;
328	if (output_mode->flags & DRM_MODE_FLAG_PHSYNC)
329		regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_HSYNC_POS;
330	/* panel scaling first, as native would get set otherwise */
331	if (nv_connector->scaling_mode == DRM_MODE_SCALE_NONE ||
332	    nv_connector->scaling_mode == DRM_MODE_SCALE_CENTER)	/* panel handles it */
333		regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_MODE_CENTER;
334	else if (adjusted_mode->hdisplay == output_mode->hdisplay &&
335		 adjusted_mode->vdisplay == output_mode->vdisplay) /* native mode */
336		regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_MODE_NATIVE;
337	else /* gpu needs to scale */
338		regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_MODE_SCALE;
339	if (nvReadEXTDEV(dev, NV_PEXTDEV_BOOT_0) & NV_PEXTDEV_BOOT_0_STRAP_FP_IFACE_12BIT)
340		regp->fp_control |= NV_PRAMDAC_FP_TG_CONTROL_WIDTH_12;
341	if (nv_encoder->dcb->location != DCB_LOC_ON_CHIP &&
342	    output_mode->clock > 165000)
343		regp->fp_control |= (2 << 24);
344	if (nv_encoder->dcb->type == OUTPUT_LVDS) {
345		bool duallink, dummy;
346
347		nouveau_bios_parse_lvds_table(dev, nv_connector->native_mode->
348					      clock, &duallink, &dummy);
349		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. */
412	if (nv_connector->use_dithering) {
413		if (dev_priv->chipset == 0x11)
414			regp->dither = savep->dither | 0x00010000;
415		else {
416			int i;
417			regp->dither = savep->dither | 0x00000001;
418			for (i = 0; i < 3; i++) {
419				regp->dither_regs[i] = 0xe4e4e4e4;
420				regp->dither_regs[i + 3] = 0x44444444;
421			}
422		}
423	} else {
424		if (dev_priv->chipset != 0x11) {
425			/* reset them */
426			int i;
427			for (i = 0; i < 3; i++) {
428				regp->dither_regs[i] = savep->dither_regs[i];
429				regp->dither_regs[i + 3] = savep->dither_regs[i + 3];
430			}
431		}
432		regp->dither = savep->dither;
433	}
434
435	regp->fp_margin_color = 0;
436}
437
438static void nv04_dfp_commit(struct drm_encoder *encoder)
439{
440	struct drm_device *dev = encoder->dev;
441	struct drm_nouveau_private *dev_priv = dev->dev_private;
442	struct drm_encoder_helper_funcs *helper = encoder->helper_private;
443	struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
444	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
445	struct dcb_entry *dcbe = nv_encoder->dcb;
446	int head = nouveau_crtc(encoder->crtc)->index;
447	struct drm_encoder *slave_encoder;
448
449	if (dcbe->type == OUTPUT_TMDS)
450		run_tmds_table(dev, dcbe, head, nv_encoder->mode.clock);
451	else if (dcbe->type == OUTPUT_LVDS)
452		call_lvds_script(dev, dcbe, head, LVDS_RESET, nv_encoder->mode.clock);
453
454	/* update fp_control state for any changes made by scripts,
455	 * so correct value is written at DPMS on */
456	dev_priv->mode_reg.crtc_reg[head].fp_control =
457		NVReadRAMDAC(dev, head, NV_PRAMDAC_FP_TG_CONTROL);
458
459	/* This could use refinement for flatpanels, but it should work this way */
460	if (dev_priv->chipset < 0x44)
461		NVWriteRAMDAC(dev, 0, NV_PRAMDAC_TEST_CONTROL + nv04_dac_output_offset(encoder), 0xf0000000);
462	else
463		NVWriteRAMDAC(dev, 0, NV_PRAMDAC_TEST_CONTROL + nv04_dac_output_offset(encoder), 0x00100000);
464
465	/* Init external transmitters */
466	slave_encoder = get_tmds_slave(encoder);
467	if (slave_encoder)
468		get_slave_funcs(slave_encoder)->mode_set(
469			slave_encoder, &nv_encoder->mode, &nv_encoder->mode);
470
471	helper->dpms(encoder, DRM_MODE_DPMS_ON);
472
473	NV_INFO(dev, "Output %s is running on CRTC %d using output %c\n",
474		drm_get_connector_name(&nouveau_encoder_connector_get(nv_encoder)->base),
475		nv_crtc->index, '@' + ffs(nv_encoder->dcb->or));
476}
477
478static void nv04_dfp_update_backlight(struct drm_encoder *encoder, int mode)
479{
480#ifdef __powerpc__
481	struct drm_device *dev = encoder->dev;
482
483	/* BIOS scripts usually take care of the backlight, thanks
484	 * Apple for your consistency.
485	 */
486	if (dev->pci_device == 0x0179 || dev->pci_device == 0x0189 ||
487	    dev->pci_device == 0x0329) {
488		if (mode == DRM_MODE_DPMS_ON) {
489			nv_mask(dev, NV_PBUS_DEBUG_DUALHEAD_CTL, 0, 1 << 31);
490			nv_mask(dev, NV_PCRTC_GPIO_EXT, 3, 1);
491		} else {
492			nv_mask(dev, NV_PBUS_DEBUG_DUALHEAD_CTL, 1 << 31, 0);
493			nv_mask(dev, NV_PCRTC_GPIO_EXT, 3, 0);
494		}
495	}
496#endif
497}
498
499static inline bool is_powersaving_dpms(int mode)
500{
501	return (mode != DRM_MODE_DPMS_ON);
502}
503
504static void nv04_lvds_dpms(struct drm_encoder *encoder, int mode)
505{
506	struct drm_device *dev = encoder->dev;
507	struct drm_crtc *crtc = encoder->crtc;
508	struct drm_nouveau_private *dev_priv = dev->dev_private;
509	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
510	bool was_powersaving = is_powersaving_dpms(nv_encoder->last_dpms);
511
512	if (nv_encoder->last_dpms == mode)
513		return;
514	nv_encoder->last_dpms = mode;
515
516	NV_INFO(dev, "Setting dpms mode %d on lvds encoder (output %d)\n",
517		     mode, nv_encoder->dcb->index);
518
519	if (was_powersaving && is_powersaving_dpms(mode))
520		return;
521
522	if (nv_encoder->dcb->lvdsconf.use_power_scripts) {
523		struct nouveau_connector *nv_connector = nouveau_encoder_connector_get(nv_encoder);
524
525		/* when removing an output, crtc may not be set, but PANEL_OFF
526		 * must still be run
527		 */
528		int head = crtc ? nouveau_crtc(crtc)->index :
529			   nv04_dfp_get_bound_head(dev, nv_encoder->dcb);
530
531		if (mode == DRM_MODE_DPMS_ON) {
532			if (!nv_connector->native_mode) {
533				NV_ERROR(dev, "Not turning on LVDS without native mode\n");
534				return;
535			}
536			call_lvds_script(dev, nv_encoder->dcb, head,
537					 LVDS_PANEL_ON, nv_connector->native_mode->clock);
538		} else
539			/* pxclk of 0 is fine for PANEL_OFF, and for a
540			 * disconnected LVDS encoder there is no native_mode
541			 */
542			call_lvds_script(dev, nv_encoder->dcb, head,
543					 LVDS_PANEL_OFF, 0);
544	}
545
546	nv04_dfp_update_backlight(encoder, mode);
547	nv04_dfp_update_fp_control(encoder, mode);
548
549	if (mode == DRM_MODE_DPMS_ON)
550		nv04_dfp_prepare_sel_clk(dev, nv_encoder, nouveau_crtc(crtc)->index);
551	else {
552		dev_priv->mode_reg.sel_clk = NVReadRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK);
553		dev_priv->mode_reg.sel_clk &= ~0xf0;
554	}
555	NVWriteRAMDAC(dev, 0, NV_PRAMDAC_SEL_CLK, dev_priv->mode_reg.sel_clk);
556}
557
558static void nv04_tmds_dpms(struct drm_encoder *encoder, int mode)
559{
560	struct drm_device *dev = encoder->dev;
561	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
562
563	if (nv_encoder->last_dpms == mode)
564		return;
565	nv_encoder->last_dpms = mode;
566
567	NV_INFO(dev, "Setting dpms mode %d on tmds encoder (output %d)\n",
568		     mode, nv_encoder->dcb->index);
569
570	nv04_dfp_update_backlight(encoder, mode);
571	nv04_dfp_update_fp_control(encoder, mode);
572}
573
574static void nv04_dfp_save(struct drm_encoder *encoder)
575{
576	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
577	struct drm_device *dev = encoder->dev;
578
579	if (nv_two_heads(dev))
580		nv_encoder->restore.head =
581			nv04_dfp_get_bound_head(dev, nv_encoder->dcb);
582}
583
584static void nv04_dfp_restore(struct drm_encoder *encoder)
585{
586	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
587	struct drm_device *dev = encoder->dev;
588	struct drm_nouveau_private *dev_priv = dev->dev_private;
589	int head = nv_encoder->restore.head;
590
591	if (nv_encoder->dcb->type == OUTPUT_LVDS) {
592		struct drm_display_mode *native_mode = nouveau_encoder_connector_get(nv_encoder)->native_mode;
593		if (native_mode)
594			call_lvds_script(dev, nv_encoder->dcb, head, LVDS_PANEL_ON,
595					 native_mode->clock);
596		else
597			NV_ERROR(dev, "Not restoring LVDS without native mode\n");
598
599	} else if (nv_encoder->dcb->type == OUTPUT_TMDS) {
600		int clock = nouveau_hw_pllvals_to_clk
601					(&dev_priv->saved_reg.crtc_reg[head].pllvals);
602
603		run_tmds_table(dev, nv_encoder->dcb, head, clock);
604	}
605
606	nv_encoder->last_dpms = NV_DPMS_CLEARED;
607}
608
609static void nv04_dfp_destroy(struct drm_encoder *encoder)
610{
611	struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
612
613	NV_DEBUG_KMS(encoder->dev, "\n");
614
615	if (get_slave_funcs(encoder))
616		get_slave_funcs(encoder)->destroy(encoder);
617
618	drm_encoder_cleanup(encoder);
619	kfree(nv_encoder);
620}
621
622static void nv04_tmds_slave_init(struct drm_encoder *encoder)
623{
624	struct drm_device *dev = encoder->dev;
625	struct dcb_entry *dcb = nouveau_encoder(encoder)->dcb;
626	struct nouveau_i2c_chan *i2c = nouveau_i2c_find(dev, 2);
627	struct i2c_board_info info[] = {
628		{
629			.type = "sil164",
630			.addr = (dcb->tmdsconf.slave_addr == 0x7 ? 0x3a : 0x38),
631			.platform_data = &(struct sil164_encoder_params) {
632				SIL164_INPUT_EDGE_RISING
633			}
634		},
635		{ }
636	};
637	int type;
638
639	if (!nv_gf4_disp_arch(dev) || !i2c ||
640	    get_tmds_slave(encoder))
641		return;
642
643	type = nouveau_i2c_identify(dev, "TMDS transmitter", info, 2);
644	if (type < 0)
645		return;
646
647	drm_i2c_encoder_init(dev, to_encoder_slave(encoder),
648			     &i2c->adapter, &info[type]);
649}
650
651static const struct drm_encoder_helper_funcs nv04_lvds_helper_funcs = {
652	.dpms = nv04_lvds_dpms,
653	.save = nv04_dfp_save,
654	.restore = nv04_dfp_restore,
655	.mode_fixup = nv04_dfp_mode_fixup,
656	.prepare = nv04_dfp_prepare,
657	.commit = nv04_dfp_commit,
658	.mode_set = nv04_dfp_mode_set,
659	.detect = NULL,
660};
661
662static const struct drm_encoder_helper_funcs nv04_tmds_helper_funcs = {
663	.dpms = nv04_tmds_dpms,
664	.save = nv04_dfp_save,
665	.restore = nv04_dfp_restore,
666	.mode_fixup = nv04_dfp_mode_fixup,
667	.prepare = nv04_dfp_prepare,
668	.commit = nv04_dfp_commit,
669	.mode_set = nv04_dfp_mode_set,
670	.detect = NULL,
671};
672
673static const struct drm_encoder_funcs nv04_dfp_funcs = {
674	.destroy = nv04_dfp_destroy,
675};
676
677int
678nv04_dfp_create(struct drm_connector *connector, struct dcb_entry *entry)
679{
680	const struct drm_encoder_helper_funcs *helper;
681	struct nouveau_encoder *nv_encoder = NULL;
682	struct drm_encoder *encoder;
683	int type;
684
685	switch (entry->type) {
686	case OUTPUT_TMDS:
687		type = DRM_MODE_ENCODER_TMDS;
688		helper = &nv04_tmds_helper_funcs;
689		break;
690	case OUTPUT_LVDS:
691		type = DRM_MODE_ENCODER_LVDS;
692		helper = &nv04_lvds_helper_funcs;
693		break;
694	default:
695		return -EINVAL;
696	}
697
698	nv_encoder = kzalloc(sizeof(*nv_encoder), GFP_KERNEL);
699	if (!nv_encoder)
700		return -ENOMEM;
701
702	encoder = to_drm_encoder(nv_encoder);
703
704	nv_encoder->dcb = entry;
705	nv_encoder->or = ffs(entry->or) - 1;
706
707	drm_encoder_init(connector->dev, encoder, &nv04_dfp_funcs, type);
708	drm_encoder_helper_add(encoder, helper);
709
710	encoder->possible_crtcs = entry->heads;
711	encoder->possible_clones = 0;
712
713	if (entry->type == OUTPUT_TMDS &&
714	    entry->location != DCB_LOC_ON_CHIP)
715		nv04_tmds_slave_init(encoder);
716
717	drm_mode_connector_attach_encoder(connector, encoder);
718	return 0;
719}
720