1/* program the DAC */
2/* Author:
3   Rudolf Cornelissen 12/2003-10/2009
4*/
5
6#define MODULE_BIT 0x00010000
7
8#include "nv_std.h"
9
10static void nv_dac_dump_pix_pll(void);
11static status_t nv4_nv10_nv20_dac_pix_pll_find(
12	display_mode target,float * calc_pclk,uint8 * m_result,uint8 * n_result,uint8 * p_result, uint8 test);
13
14/* see if an analog VGA monitor is connected to connector #1 */
15bool nv_dac_crt_connected(void)
16{
17	uint32 output, dac;
18	bool present;
19
20	/* save output connector setting */
21	output = DACR(OUTPUT);
22	/* save DAC state */
23	dac = DACR(TSTCTRL);
24
25	/* turn on DAC */
26	DACW(TSTCTRL, (DACR(TSTCTRL) & 0xfffeffff));
27	if (si->ps.secondary_head)
28	{
29		/* select primary CRTC (head) and turn off CRT (and DVI?) outputs */
30		DACW(OUTPUT, (output & 0x0000feee));
31	}
32	else
33	{
34		/* turn off CRT (and DVI?) outputs */
35		/* note:
36		 * Don't touch the CRTC (head) assignment bit, as that would have undefined
37		 * results. Confirmed NV15 cards getting into lasting RAM access trouble
38		 * otherwise!! (goes for both system gfx RAM access and CRTC/DAC RAM access.) */
39		DACW(OUTPUT, (output & 0x0000ffee));
40	}
41	/* wait for signal lines to stabilize */
42	snooze(1000);
43	/* re-enable CRT output */
44	DACW(OUTPUT, (DACR(OUTPUT) | 0x00000001));
45
46	/* setup RGB test signal levels to approx 30% of DAC range and enable them */
47	DACW(TSTDATA, ((0x2 << 30) | (0x140 << 20) | (0x140 << 10) | (0x140 << 0)));
48	/* route test signals to output */
49	DACW(TSTCTRL, (DACR(TSTCTRL) | 0x00001000));
50	/* wait for signal lines to stabilize */
51	snooze(1000);
52
53	/* do actual detection: all signals paths high == CRT connected */
54	if (DACR(TSTCTRL) & 0x10000000)
55	{
56		present = true;
57		LOG(4,("DAC: CRT detected on connector #1\n"));
58	}
59	else
60	{
61		present = false;
62		LOG(4,("DAC: no CRT detected on connector #1\n"));
63	}
64
65	/* kill test signal routing */
66	DACW(TSTCTRL, (DACR(TSTCTRL) & 0xffffefff));
67
68	/* restore output connector setting */
69	DACW(OUTPUT, output);
70	/* restore DAC state */
71	DACW(TSTCTRL, dac);
72
73	return present;
74}
75
76/*set the mode, brightness is a value from 0->2 (where 1 is equivalent to direct)*/
77status_t nv_dac_mode(int mode,float brightness)
78{
79	uint8 *r,*g,*b;
80	int i, ri;
81
82	/*set colour arrays to point to space reserved in shared info*/
83	r = si->color_data;
84	g = r + 256;
85	b = g + 256;
86
87	LOG(4,("DAC: Setting screen mode %d brightness %f\n", mode, brightness));
88	/* init the palette for brightness specified */
89	/* (Nvidia cards always use MSbits from screenbuffer as index for PAL) */
90	for (i = 0; i < 256; i++)
91	{
92		ri = i * brightness;
93		if (ri > 255) ri = 255;
94		b[i] = g[i] = r[i] = ri;
95	}
96
97	if (nv_dac_palette(r,g,b) != B_OK) return B_ERROR;
98
99	/* disable palette RAM adressing mask */
100	NV_REG8(NV8_PALMASK) = 0xff;
101	LOG(2,("DAC: PAL pixrdmsk readback $%02x\n", NV_REG8(NV8_PALMASK)));
102
103	return B_OK;
104}
105
106/* enable/disable dithering */
107status_t nv_dac_dither(bool dither)
108{
109	/* older cards can't do dithering */
110	if ((si->ps.card_type != NV11) && !si->ps.secondary_head) return B_ERROR;
111
112	if (dither) {
113		LOG(4,("DAC: enabling dithering\n"));
114
115		if (si->ps.card_type == NV11) {
116			/* NV11 apparantly has a fixed dithering pattern */
117
118			/* enable dithering */
119			DACW(NV11_DITHER, (DACR(NV11_DITHER) | 0x00010000));
120		} else {
121			/* setup dithering pattern */
122			DACW(FP_DITH_PATT1, 0xe4e4e4e4);
123			DACW(FP_DITH_PATT2, 0xe4e4e4e4);
124			DACW(FP_DITH_PATT3, 0xe4e4e4e4);
125			DACW(FP_DITH_PATT4, 0x44444444);
126			DACW(FP_DITH_PATT5, 0x44444444);
127			DACW(FP_DITH_PATT6, 0x44444444);
128
129			/* enable dithering */
130			DACW(FP_DITHER, (DACR(FP_DITHER) | 0x00000001));
131		}
132	} else {
133		LOG(4,("DAC: disabling dithering\n"));
134
135		if (si->ps.card_type == NV11) {
136			/* disable dithering */
137			DACW(NV11_DITHER, (DACR(NV11_DITHER) & ~0x00010000));
138		} else {
139			/* disable dithering */
140			DACW(FP_DITHER, (DACR(FP_DITHER) & ~0x00000001));
141		}
142	}
143
144	return B_OK;
145}
146
147/*program the DAC palette using the given r,g,b values*/
148status_t nv_dac_palette(uint8 r[256],uint8 g[256],uint8 b[256])
149{
150	int i;
151
152	LOG(4,("DAC: setting palette\n"));
153
154	/* select first PAL adress before starting programming */
155	NV_REG8(NV8_PALINDW) = 0x00;
156
157	/* loop through all 256 to program DAC */
158	for (i = 0; i < 256; i++)
159	{
160		/* the 6 implemented bits are on b0-b5 of the bus */
161		NV_REG8(NV8_PALDATA) = r[i];
162		NV_REG8(NV8_PALDATA) = g[i];
163		NV_REG8(NV8_PALDATA) = b[i];
164	}
165	if (NV_REG8(NV8_PALINDW) != 0x00)
166	{
167		LOG(8,("DAC: PAL write index incorrect after programming\n"));
168		return B_ERROR;
169	}
170if (1)
171 {//reread LUT
172	uint8 R, G, B;
173
174	/* select first PAL adress to read (modulo 3 counter) */
175	NV_REG8(NV8_PALINDR) = 0x00;
176	for (i = 0; i < 256; i++)
177	{
178		R = NV_REG8(NV8_PALDATA);
179		G = NV_REG8(NV8_PALDATA);
180		B = NV_REG8(NV8_PALDATA);
181		if ((r[i] != R) || (g[i] != G) || (b[i] != B))
182			LOG(1,("DAC palette %d: w %x %x %x, r %x %x %x\n", i, r[i], g[i], b[i], R, G, B)); // apsed
183	}
184 }
185
186	return B_OK;
187}
188
189/*program the pixpll - frequency in kHz*/
190status_t nv_dac_set_pix_pll(display_mode target)
191{
192	uint8 m=0,n=0,p=0;
193
194	float pix_setting, req_pclk;
195	status_t result;
196
197	/* fix a DVI or laptop flatpanel to 60Hz refresh! */
198	/* Note:
199	 * The pixelclock drives the flatpanel modeline, not the CRTC modeline. */
200	if (si->ps.monitors & CRTC1_TMDS)
201	{
202		LOG(4,("DAC: Fixing DFP refresh to 60Hz!\n"));
203
204		/* use the panel's modeline to determine the needed pixelclock */
205		target.timing.pixel_clock = si->ps.p1_timing.pixel_clock;
206	}
207
208	req_pclk = (target.timing.pixel_clock)/1000.0;
209
210	/* signal that we actually want to set the mode */
211	result = nv_dac_pix_pll_find(target,&pix_setting,&m,&n,&p, 1);
212	if (result != B_OK) return result;
213
214	/* dump old setup for learning purposes */
215	nv_dac_dump_pix_pll();
216
217	/* some logging for learning purposes */
218	LOG(4,("DAC: current NV30_PLLSETUP settings: $%08x\n", DACR(NV30_PLLSETUP)));
219	/* this register seems to (dis)connect functions blocks and PLLs:
220	 * there seem to be two PLL types per function block (on some cards),
221	 * b16-17 DAC1clk, b18-19 DAC2clk, b20-21 GPUclk, b22-23 MEMclk. */
222	LOG(4,("DAC: current (0x0000c040) settings: $%08x\n", NV_REG32(0x0000c040)));
223
224	/* disable spread spectrum modes for the pixelPLLs _first_ */
225	/* spread spectrum: b0,1 = GPUclk, b2,3 = MEMclk, b4,5 = DAC1clk, b6,7 = DAC2clk;
226	 * b16-19 influence clock routing to digital outputs (internal/external LVDS transmitters?) */
227	if (si->ps.card_arch >= NV30A)
228		DACW(NV30_PLLSETUP, (DACR(NV30_PLLSETUP) & ~0x000000f0));
229
230	/* we offer this option because some panels have very tight restrictions,
231	 * and there's no overlapping settings range that makes them all work.
232	 * note:
233	 * this assumes the cards BIOS correctly programmed the panel (is likely) */
234	//fixme: when VESA DDC EDID stuff is implemented, this option can be deleted...
235	if ((si->ps.monitors & CRTC1_TMDS) && !si->settings.pgm_panel) {
236		LOG(4,("DAC: Not programming DFP refresh (specified in nvidia.settings)\n"));
237	} else {
238		LOG(4,("DAC: Setting PIX PLL for pixelclock %f\n", req_pclk));
239
240		/* program new frequency */
241		DACW(PIXPLLC, ((p << 16) | (n << 8) | m));
242
243		/* program 2nd set N and M scalers if they exist (b31=1 enables them) */
244		if (si->ps.ext_pll) DACW(PIXPLLC2, 0x80000401);
245
246		/* Give the PIXPLL frequency some time to lock... (there's no indication bit available) */
247		snooze(1000);
248
249		LOG(2,("DAC: PIX PLL frequency should be locked now...\n"));
250	}
251
252	/* enable programmable PLLs */
253	/* (confirmed PLLSEL to be a write-only register on NV04 and NV11!) */
254	/* note:
255	 * setup PLL assignment _after_ programming PLL */
256	if (si->ps.secondary_head) {
257		if (si->ps.card_arch < NV40A) {
258			DACW(PLLSEL, 0x30000f00);
259		} else {
260			DACW(NV40_PLLSEL2, (DACR(NV40_PLLSEL2) & ~0x10000100));
261			DACW(PLLSEL, 0x30000f04);
262		}
263	} else {
264		DACW(PLLSEL, 0x10000700);
265	}
266
267	return B_OK;
268}
269
270static void nv_dac_dump_pix_pll(void)
271{
272	uint32 dividers1, dividers2;
273	uint8 m1, n1, p1;
274	uint8 m2 = 1, n2 = 1;
275	float f_vco, f_phase, f_pixel;
276
277	LOG(2,("DAC: dumping current pixelPLL settings:\n"));
278
279	dividers1 = DACR(PIXPLLC);
280	m1 = (dividers1 & 0x000000ff);
281	n1 = (dividers1 & 0x0000ff00) >> 8;
282	p1 = 0x01 << ((dividers1 & 0x00070000) >> 16);
283	LOG(2,("DAC: divider1 settings ($%08x): M1=%d, N1=%d, P1=%d\n", dividers1, m1, n1, p1));
284
285	if (si->ps.ext_pll) {
286		dividers2 = DACR(PIXPLLC2);
287		if (dividers2 & 0x80000000) {
288			/* the extended PLL part is enabled */
289			m2 = (dividers2 & 0x000000ff);
290			n2 = (dividers2 & 0x0000ff00) >> 8;
291			LOG(2,("DAC: divider2 is enabled, settings ($%08x): M2=%d, N2=%d\n", dividers2, m2, n2));
292		} else {
293			LOG(2,("DAC: divider2 is disabled ($%08x)\n", dividers2));
294		}
295	}
296
297	/* log the frequencies found */
298	f_phase = si->ps.f_ref / (m1 * m2);
299	f_vco = (f_phase * n1 * n2);
300	f_pixel = f_vco / p1;
301
302	LOG(2,("DAC: phase discriminator frequency is %fMhz\n", f_phase));
303	LOG(2,("DAC: VCO frequency is %fMhz\n", f_vco));
304	LOG(2,("DAC: pixelclock is %fMhz\n", f_pixel));
305	LOG(2,("DAC: end of dump.\n"));
306
307	/* apparantly if a VESA modecall during boot fails we need to explicitly select the PLL's
308	 * again (was already done during driver init) if we readout the current PLL setting.. */
309	if (si->ps.secondary_head)
310		DACW(PLLSEL, 0x30000f00);
311	else
312		DACW(PLLSEL, 0x10000700);
313}
314
315/* find nearest valid pix pll */
316status_t nv_dac_pix_pll_find
317	(display_mode target,float * calc_pclk,uint8 * m_result,uint8 * n_result,uint8 * p_result, uint8 test)
318{
319	switch (si->ps.card_type) {
320		default:   return nv4_nv10_nv20_dac_pix_pll_find(target, calc_pclk, m_result, n_result, p_result, test);
321	}
322	return B_ERROR;
323}
324
325/* find nearest valid pixel PLL setting */
326static status_t nv4_nv10_nv20_dac_pix_pll_find(
327	display_mode target,float * calc_pclk,uint8 * m_result,uint8 * n_result,uint8 * p_result, uint8 test)
328{
329	int m = 0, n = 0, p = 0/*, m_max*/;
330	float error, error_best = 999999999;
331	int best[3];
332	float f_vco, max_pclk;
333	float req_pclk = target.timing.pixel_clock/1000.0;
334
335	LOG(4,("DAC: NV4/NV10/NV20 restrictions apply\n"));
336
337	/* determine the max. pixelclock for the current videomode */
338	switch (target.space)
339	{
340		case B_CMAP8:
341			max_pclk = si->ps.max_dac1_clock_8;
342			break;
343		case B_RGB15_LITTLE:
344		case B_RGB16_LITTLE:
345			max_pclk = si->ps.max_dac1_clock_16;
346			break;
347		case B_RGB24_LITTLE:
348			max_pclk = si->ps.max_dac1_clock_24;
349			break;
350		case B_RGB32_LITTLE:
351			max_pclk = si->ps.max_dac1_clock_32;
352			break;
353		default:
354			/* use fail-safe value */
355			max_pclk = si->ps.max_dac1_clock_32;
356			break;
357	}
358	/* if some dualhead mode is active, an extra restriction might apply */
359	if ((target.flags & DUALHEAD_BITS) && (target.space == B_RGB32_LITTLE))
360		max_pclk = si->ps.max_dac1_clock_32dh;
361
362	/* Make sure the requested pixelclock is within the PLL's operational limits */
363	/* lower limit is min_pixel_vco divided by highest postscaler-factor */
364	if (req_pclk < (si->ps.min_pixel_vco / 16.0))
365	{
366		LOG(4,("DAC: clamping pixclock: requested %fMHz, set to %fMHz\n",
367										req_pclk, (float)(si->ps.min_pixel_vco / 16.0)));
368		req_pclk = (si->ps.min_pixel_vco / 16.0);
369	}
370	/* upper limit is given by pins in combination with current active mode */
371	if (req_pclk > max_pclk)
372	{
373		LOG(4,("DAC: clamping pixclock: requested %fMHz, set to %fMHz\n",
374														req_pclk, (float)max_pclk));
375		req_pclk = max_pclk;
376	}
377
378	/* iterate through all valid PLL postscaler settings */
379	for (p=0x01; p < 0x20; p = p<<1)
380	{
381		/* calculate the needed VCO frequency for this postscaler setting */
382		f_vco = req_pclk * p;
383
384		/* check if this is within range of the VCO specs */
385		if ((f_vco >= si->ps.min_pixel_vco) && (f_vco <= si->ps.max_pixel_vco))
386		{
387			/* FX5600 and FX5700 tweak for 2nd set N and M scalers */
388			if (si->ps.ext_pll) f_vco /= 4;
389
390			/* iterate trough all valid reference-frequency postscaler settings */
391			for (m = 7; m <= 14; m++)
392			{
393				/* check if phase-discriminator will be within operational limits */
394				//fixme: PLL calcs will be resetup/splitup/updated...
395				if (si->ps.card_type == NV36)
396				{
397					if (((si->ps.f_ref / m) < 3.2) || ((si->ps.f_ref / m) > 6.4)) continue;
398				}
399				else
400				{
401					if (((si->ps.f_ref / m) < 1.0) || ((si->ps.f_ref / m) > 2.0)) continue;
402				}
403
404				/* calculate VCO postscaler setting for current setup.. */
405				n = (int)(((f_vco * m) / si->ps.f_ref) + 0.5);
406
407				/* ..and check for validity */
408				if ((n < 1) || (n > 255))	continue;
409
410				/* find error in frequency this setting gives */
411				if (si->ps.ext_pll)
412				{
413					/* FX5600 and FX5700 tweak for 2nd set N and M scalers */
414					error = fabs((req_pclk / 4) - (((si->ps.f_ref / m) * n) / p));
415				}
416				else
417					error = fabs(req_pclk - (((si->ps.f_ref / m) * n) / p));
418
419				/* note the setting if best yet */
420				if (error < error_best)
421				{
422					error_best = error;
423					best[0]=m;
424					best[1]=n;
425					best[2]=p;
426				}
427			}
428		}
429	}
430
431	/* setup the scalers programming values for found optimum setting */
432	m = best[0];
433	n = best[1];
434	p = best[2];
435
436	/* log the VCO frequency found */
437	f_vco = ((si->ps.f_ref / m) * n);
438	/* FX5600 and FX5700 tweak for 2nd set N and M scalers */
439	if (si->ps.ext_pll) f_vco *= 4;
440
441	LOG(2,("DAC: pix VCO frequency found %fMhz\n", f_vco));
442
443	/* return the results */
444	*calc_pclk = (f_vco / p);
445	*m_result = m;
446	*n_result = n;
447	switch(p)
448	{
449	case 1:
450		p = 0x00;
451		break;
452	case 2:
453		p = 0x01;
454		break;
455	case 4:
456		p = 0x02;
457		break;
458	case 8:
459		p = 0x03;
460		break;
461	case 16:
462		p = 0x04;
463		break;
464	}
465	*p_result = p;
466
467	/* display the found pixelclock values */
468	LOG(2,("DAC: pix PLL check: requested %fMHz got %fMHz, mnp 0x%02x 0x%02x 0x%02x\n",
469		req_pclk, *calc_pclk, *m_result, *n_result, *p_result));
470
471	return B_OK;
472}
473
474/* find nearest valid system PLL setting */
475status_t nv_dac_sys_pll_find(
476	float req_sclk, float* calc_sclk, uint8* m_result, uint8* n_result, uint8* p_result, uint8 test)
477{
478	int m = 0, n = 0, p = 0, m_max, p_max;
479	float error, error_best = 999999999;
480	int best[3];
481	float f_vco, discr_low, discr_high;
482
483	/* determine the max. reference-frequency postscaler setting for the
484	 * current requested clock */
485	switch (si->ps.card_arch)
486	{
487	case NV04A:
488		LOG(4,("DAC: NV04 restrictions apply\n"));
489		/* set phase-discriminator frequency range (Mhz) (verified) */
490		discr_low = 1.0;
491		discr_high = 2.0;
492		/* set max. useable reference frequency postscaler divider factor */
493		m_max = 14;
494		/* set max. useable VCO output postscaler divider factor */
495		p_max = 16;
496		break;
497	default:
498		switch (si->ps.card_type)
499		{
500		case NV28:
501			//fixme: how about some other cards???
502			LOG(4,("DAC: NV28 restrictions apply\n"));
503			/* set max. useable reference frequency postscaler divider factor;
504			 * apparantly we would get distortions on high PLL output frequencies if
505			 * we use the phase-discriminator at low frequencies */
506			if (req_sclk > 340.0) m_max = 2;			/* Fpll > 340Mhz */
507			else if (req_sclk > 200.0) m_max = 4;		/* 200Mhz < Fpll <= 340Mhz */
508				else if (req_sclk > 150.0) m_max = 6;	/* 150Mhz < Fpll <= 200Mhz */
509					else m_max = 14;					/* Fpll < 150Mhz */
510
511			/* set max. useable VCO output postscaler divider factor */
512			p_max = 32;
513			/* set phase-discriminator frequency range (Mhz) (verified) */
514			discr_low = 1.0;
515			discr_high = 27.0;
516			break;
517		default:
518			LOG(4,("DAC: NV10/NV20/NV30 restrictions apply\n"));
519			/* set max. useable reference frequency postscaler divider factor;
520			 * apparantly we would get distortions on high PLL output frequencies if
521			 * we use the phase-discriminator at low frequencies */
522			if (req_sclk > 340.0) m_max = 2;		/* Fpll > 340Mhz */
523			else if (req_sclk > 250.0) m_max = 6;	/* 250Mhz < Fpll <= 340Mhz */
524				else m_max = 14;					/* Fpll < 250Mhz */
525
526			/* set max. useable VCO output postscaler divider factor */
527			p_max = 16;
528			/* set phase-discriminator frequency range (Mhz) (verified) */
529			if (si->ps.card_type == NV36) discr_low = 3.2;
530			else discr_low = 1.0;
531			/* (high discriminator spec is failsafe) */
532			discr_high = 14.0;
533			break;
534		}
535		break;
536	}
537
538	LOG(4,("DAC: PLL reference frequency postscaler divider range is 1 - %d\n", m_max));
539	LOG(4,("DAC: PLL VCO output postscaler divider range is 1 - %d\n", p_max));
540	LOG(4,("DAC: PLL discriminator input frequency range is %2.2fMhz - %2.2fMhz\n",
541		discr_low, discr_high));
542
543	/* Make sure the requested clock is within the PLL's operational limits */
544	/* lower limit is min_system_vco divided by highest postscaler-factor */
545	if (req_sclk < (si->ps.min_system_vco / ((float)p_max)))
546	{
547		LOG(4,("DAC: clamping sysclock: requested %fMHz, set to %fMHz\n",
548			req_sclk, (si->ps.min_system_vco / ((float)p_max))));
549		req_sclk = (si->ps.min_system_vco / ((float)p_max));
550	}
551	/* upper limit is given by pins */
552	if (req_sclk > si->ps.max_system_vco)
553	{
554		LOG(4,("DAC: clamping sysclock: requested %fMHz, set to %fMHz\n",
555			req_sclk, (float)si->ps.max_system_vco));
556		req_sclk = si->ps.max_system_vco;
557	}
558
559	/* iterate through all valid PLL postscaler settings */
560	for (p=0x01; p <= p_max; p = p<<1)
561	{
562		/* calculate the needed VCO frequency for this postscaler setting */
563		f_vco = req_sclk * p;
564
565		/* check if this is within range of the VCO specs */
566		if ((f_vco >= si->ps.min_system_vco) && (f_vco <= si->ps.max_system_vco))
567		{
568			/* FX5600 and FX5700 tweak for 2nd set N and M scalers */
569			if (si->ps.ext_pll) f_vco /= 4;
570
571			/* iterate trough all valid reference-frequency postscaler settings */
572			for (m = 1; m <= m_max; m++)
573			{
574				/* check if phase-discriminator will be within operational limits */
575				if (((si->ps.f_ref / m) < discr_low) || ((si->ps.f_ref / m) > discr_high))
576					continue;
577
578				/* calculate VCO postscaler setting for current setup.. */
579				n = (int)(((f_vco * m) / si->ps.f_ref) + 0.5);
580
581				/* ..and check for validity */
582				if ((n < 1) || (n > 255)) continue;
583
584				/* find error in frequency this setting gives */
585				if (si->ps.ext_pll)
586				{
587					/* FX5600 and FX5700 tweak for 2nd set N and M scalers */
588					error = fabs((req_sclk / 4) - (((si->ps.f_ref / m) * n) / p));
589				}
590				else
591					error = fabs(req_sclk - (((si->ps.f_ref / m) * n) / p));
592
593				/* note the setting if best yet */
594				if (error < error_best)
595				{
596					error_best = error;
597					best[0]=m;
598					best[1]=n;
599					best[2]=p;
600				}
601			}
602		}
603	}
604
605	/* setup the scalers programming values for found optimum setting */
606	m = best[0];
607	n = best[1];
608	p = best[2];
609
610	/* log the VCO frequency found */
611	f_vco = ((si->ps.f_ref / m) * n);
612	/* FX5600 and FX5700 tweak for 2nd set N and M scalers */
613	if (si->ps.ext_pll) f_vco *= 4;
614
615	LOG(2,("DAC: sys VCO frequency found %fMhz\n", f_vco));
616
617	/* return the results */
618	*calc_sclk = (f_vco / p);
619	*m_result = m;
620	*n_result = n;
621	switch(p)
622	{
623	case 1:
624		p = 0x00;
625		break;
626	case 2:
627		p = 0x01;
628		break;
629	case 4:
630		p = 0x02;
631		break;
632	case 8:
633		p = 0x03;
634		break;
635	case 16:
636		p = 0x04;
637		break;
638	case 32:
639		p = 0x05;
640		break;
641	}
642	*p_result = p;
643
644	/* display the found pixelclock values */
645	LOG(2,("DAC: sys PLL check: requested %fMHz got %fMHz, mnp 0x%02x 0x%02x 0x%02x\n",
646		req_sclk, *calc_sclk, *m_result, *n_result, *p_result));
647
648	return B_OK;
649}
650