3 * ATI Mach64 CT/VT/GT/LT Support
7 #include <linux/delay.h>
9 #include <video/mach64.h>
12 #include <asm/machdep.h>
17 static int aty_valid_pll_ct (const struct fb_info *info, u32 vclk_per, struct pll_ct *pll);
18 static int aty_dsp_gt (const struct fb_info *info, u32 bpp, struct pll_ct *pll);
19 static int aty_var_to_pll_ct(const struct fb_info *info, u32 vclk_per, u32 bpp, union aty_pll *pll);
20 static u32 aty_pll_to_var_ct(const struct fb_info *info, const union aty_pll *pll);
22 u8 aty_ld_pll_ct(int offset, const struct atyfb_par *par)
27 aty_st_8(CLOCK_CNTL_ADDR, (offset << 2) & PLL_ADDR, par);
28 /* read the register value */
29 res = aty_ld_8(CLOCK_CNTL_DATA, par);
33 static void aty_st_pll_ct(int offset, u8 val, const struct atyfb_par *par)
36 aty_st_8(CLOCK_CNTL_ADDR, ((offset << 2) & PLL_ADDR) | PLL_WR_EN, par);
37 /* write the register value */
38 aty_st_8(CLOCK_CNTL_DATA, val & PLL_DATA, par);
39 aty_st_8(CLOCK_CNTL_ADDR, ((offset << 2) & PLL_ADDR) & ~PLL_WR_EN, par);
44 * <daniel.mantione@freepascal.org>
47 * ATI Mach64 CT clock synthesis description.
49 * All clocks on the Mach64 can be calculated using the same principle:
52 * CLK = ----------------------
53 * PLL_REF_DIV * POST_DIV
55 * XTALIN is a fixed speed clock. Common speeds are 14.31 MHz and 29.50 MHz.
56 * PLL_REF_DIV can be set by the user, but is the same for all clocks.
57 * FB_DIV can be set by the user for each clock individually, it should be set
58 * between 128 and 255, the chip will generate a bad clock signal for too low
60 * x depends on the type of clock; usually it is 2, but for the MCLK it can also
62 * POST_DIV can be set by the user for each clock individually, Possible values
63 * are 1,2,4,8 and for some clocks other values are available too.
64 * CLK is of course the clock speed that is generated.
66 * The Mach64 has these clocks:
68 * MCLK The clock rate of the chip
69 * XCLK The clock rate of the on-chip memory
70 * VCLK0 First pixel clock of first CRT controller
71 * VCLK1 Second pixel clock of first CRT controller
72 * VCLK2 Third pixel clock of first CRT controller
73 * VCLK3 Fourth pixel clock of first CRT controller
74 * VCLK Selected pixel clock, one of VCLK0, VCLK1, VCLK2, VCLK3
75 * V2CLK Pixel clock of the second CRT controller.
76 * SCLK Multi-purpose clock
78 * - MCLK and XCLK use the same FB_DIV
79 * - VCLK0 .. VCLK3 use the same FB_DIV
80 * - V2CLK is needed when the second CRTC is used (can be used for dualhead);
81 * i.e. CRT monitor connected to laptop has different resolution than built
83 * - SCLK is not available on all cards; it is know to exist on the Rage LT-PRO,
84 * Rage XL and Rage Mobility. It is know not to exist on the Mach64 VT.
85 * - V2CLK is not available on all cards, most likely only the Rage LT-PRO,
86 * the Rage XL and the Rage Mobility
88 * SCLK can be used to:
89 * - Clock the chip instead of MCLK
90 * - Replace XTALIN with a user defined frequency
91 * - Generate the pixel clock for the LCD monitor (instead of VCLK)
95 * It can be quite hard to calculate XCLK and MCLK if they don't run at the
96 * same frequency. Luckily, until now all cards that need asynchrone clock
97 * speeds seem to have SCLK.
98 * So this driver uses SCLK to clock the chip and XCLK to clock the memory.
101 /* ------------------------------------------------------------------------- */
104 * PLL programming (Mach64 CT family)
107 * This procedure sets the display fifo. The display fifo is a buffer that
108 * contains data read from the video memory that waits to be processed by
109 * the CRT controller.
111 * On the more modern Mach64 variants, the chip doesn't calculate the
112 * interval after which the display fifo has to be reloaded from memory
113 * automatically, the driver has to do it instead.
116 #define Maximum_DSP_PRECISION 7
117 static u8 postdividers[] = {1,2,4,8,3};
119 static int aty_dsp_gt(const struct fb_info *info, u32 bpp, struct pll_ct *pll)
121 u32 dsp_off, dsp_on, dsp_xclks;
122 u32 multiplier, divider, ras_multiplier, ras_divider, tmp;
126 multiplier = ((u32)pll->mclk_fb_div) * pll->vclk_post_div_real;
127 divider = ((u32)pll->vclk_fb_div) * pll->xclk_ref_div;
129 ras_multiplier = pll->xclkmaxrasdelay;
133 divider = divider * (bpp >> 2);
135 vshift = (6 - 2) - pll->xclk_post_div; /* FIFO is 64 bits wide in accelerator mode ... */
138 vshift--; /* ... but only 32 bits in VGA mode. */
140 #ifdef CONFIG_FB_ATY_GENERIC_LCD
141 if (pll->xres != 0) {
142 struct atyfb_par *par = (struct atyfb_par *) info->par;
144 multiplier = multiplier * par->lcd_width;
145 divider = divider * pll->xres & ~7;
147 ras_multiplier = ras_multiplier * par->lcd_width;
148 ras_divider = ras_divider * pll->xres & ~7;
151 /* If we don't do this, 32 bits for multiplier & divider won't be
152 enough in certain situations! */
153 while (((multiplier | divider) & 1) == 0) {
154 multiplier = multiplier >> 1;
155 divider = divider >> 1;
158 /* Determine DSP precision first */
159 tmp = ((multiplier * pll->fifo_size) << vshift) / divider;
161 for (dsp_precision = -5; tmp; dsp_precision++)
163 if (dsp_precision < 0)
165 else if (dsp_precision > Maximum_DSP_PRECISION)
166 dsp_precision = Maximum_DSP_PRECISION;
168 xshift = 6 - dsp_precision;
171 /* Move on to dsp_off */
172 dsp_off = ((multiplier * (pll->fifo_size - 1)) << vshift) / divider -
173 (1 << (vshift - xshift));
176 dsp_on = ((multiplier * 20 << vshift) + divider) / divider;
179 dsp_on = ((multiplier << vshift) + divider) / divider;
180 tmp = ((ras_multiplier << xshift) + ras_divider) / ras_divider;
183 dsp_on = dsp_on + (tmp * 2) + (pll->xclkpagefaultdelay << xshift);
186 /* Calculate rounding factor and apply it to dsp_on */
187 tmp = ((1 << (Maximum_DSP_PRECISION - dsp_precision)) - 1) >> 1;
188 dsp_on = ((dsp_on + tmp) / (tmp + 1)) * (tmp + 1);
190 if (dsp_on >= ((dsp_off / (tmp + 1)) * (tmp + 1))) {
191 dsp_on = dsp_off - (multiplier << vshift) / divider;
192 dsp_on = (dsp_on / (tmp + 1)) * (tmp + 1);
195 /* Last but not least: dsp_xclks */
196 dsp_xclks = ((multiplier << (vshift + 5)) + divider) / divider;
198 /* Get register values. */
199 pll->dsp_on_off = (dsp_on << 16) + dsp_off;
200 pll->dsp_config = (dsp_precision << 20) | (pll->dsp_loop_latency << 16) | dsp_xclks;
202 printk("atyfb(%s): dsp_config 0x%08x, dsp_on_off 0x%08x\n",
203 __func__, pll->dsp_config, pll->dsp_on_off);
208 static int aty_valid_pll_ct(const struct fb_info *info, u32 vclk_per, struct pll_ct *pll)
211 struct atyfb_par *par = (struct atyfb_par *) info->par;
214 /* FIXME: use the VTB/GTB /{3,6,12} post dividers if they're better suited */
215 q = par->ref_clk_per * pll->pll_ref_div * 4 / vclk_per;
216 if (q < 16*8 || q > 255*8) {
217 printk(KERN_CRIT "atyfb: vclk out of range\n");
220 pll->vclk_post_div = (q < 128*8);
221 pll->vclk_post_div += (q < 64*8);
222 pll->vclk_post_div += (q < 32*8);
224 pll->vclk_post_div_real = postdividers[pll->vclk_post_div];
225 // pll->vclk_post_div <<= 6;
226 pll->vclk_fb_div = q * pll->vclk_post_div_real / 8;
227 pllvclk = (1000000 * 2 * pll->vclk_fb_div) /
228 (par->ref_clk_per * pll->pll_ref_div);
230 printk("atyfb(%s): pllvclk=%d MHz, vclk=%d MHz\n",
231 __func__, pllvclk, pllvclk / pll->vclk_post_div_real);
233 pll->pll_vclk_cntl = 0x03; /* VCLK = PLL_VCLK/VCLKx_POST */
235 /* Set ECP (scaler/overlay clock) divider */
236 if (par->pll_limits.ecp_max) {
237 int ecp = pllvclk / pll->vclk_post_div_real;
240 while (ecp > par->pll_limits.ecp_max && ecp_div < 2) {
244 pll->pll_vclk_cntl |= ecp_div << 4;
250 static int aty_var_to_pll_ct(const struct fb_info *info, u32 vclk_per, u32 bpp, union aty_pll *pll)
252 struct atyfb_par *par = (struct atyfb_par *) info->par;
255 if ((err = aty_valid_pll_ct(info, vclk_per, &pll->ct)))
257 if (M64_HAS(GTB_DSP) && (err = aty_dsp_gt(info, bpp, &pll->ct)))
259 /*aty_calc_pll_ct(info, &pll->ct);*/
263 static u32 aty_pll_to_var_ct(const struct fb_info *info, const union aty_pll *pll)
265 struct atyfb_par *par = (struct atyfb_par *) info->par;
267 ret = par->ref_clk_per * pll->ct.pll_ref_div * pll->ct.vclk_post_div_real / pll->ct.vclk_fb_div / 2;
268 #ifdef CONFIG_FB_ATY_GENERIC_LCD
269 if(pll->ct.xres > 0) {
270 ret *= par->lcd_width;
275 printk("atyfb(%s): calculated 0x%08X(%i)\n", __func__, ret, ret);
280 void aty_set_pll_ct(const struct fb_info *info, const union aty_pll *pll)
282 struct atyfb_par *par = (struct atyfb_par *) info->par;
283 u32 crtc_gen_cntl, lcd_gen_cntrl;
288 printk("atyfb(%s): about to program:\n"
289 "pll_ext_cntl=0x%02x pll_gen_cntl=0x%02x pll_vclk_cntl=0x%02x\n",
291 pll->ct.pll_ext_cntl, pll->ct.pll_gen_cntl, pll->ct.pll_vclk_cntl);
293 printk("atyfb(%s): setting clock %lu for FeedBackDivider %i, ReferenceDivider %i, PostDivider %i(%i)\n",
295 par->clk_wr_offset, pll->ct.vclk_fb_div,
296 pll->ct.pll_ref_div, pll->ct.vclk_post_div, pll->ct.vclk_post_div_real);
298 #ifdef CONFIG_FB_ATY_GENERIC_LCD
299 if (par->lcd_table != 0) {
301 lcd_gen_cntrl = aty_ld_lcd(LCD_GEN_CNTL, par);
302 aty_st_lcd(LCD_GEN_CNTL, lcd_gen_cntrl & ~LCD_ON, par);
305 aty_st_8(CLOCK_CNTL, par->clk_wr_offset | CLOCK_STROBE, par);
307 /* Temporarily switch to accelerator mode */
308 crtc_gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par);
309 if (!(crtc_gen_cntl & CRTC_EXT_DISP_EN))
310 aty_st_le32(CRTC_GEN_CNTL, crtc_gen_cntl | CRTC_EXT_DISP_EN, par);
312 /* Reset VCLK generator */
313 aty_st_pll_ct(PLL_VCLK_CNTL, pll->ct.pll_vclk_cntl, par);
315 /* Set post-divider */
316 tmp2 = par->clk_wr_offset << 1;
317 tmp = aty_ld_pll_ct(VCLK_POST_DIV, par);
318 tmp &= ~(0x03U << tmp2);
319 tmp |= ((pll->ct.vclk_post_div & 0x03U) << tmp2);
320 aty_st_pll_ct(VCLK_POST_DIV, tmp, par);
322 /* Set extended post-divider */
323 tmp = aty_ld_pll_ct(PLL_EXT_CNTL, par);
324 tmp &= ~(0x10U << par->clk_wr_offset);
326 tmp |= pll->ct.pll_ext_cntl;
327 aty_st_pll_ct(PLL_EXT_CNTL, tmp, par);
329 /* Set feedback divider */
330 tmp = VCLK0_FB_DIV + par->clk_wr_offset;
331 aty_st_pll_ct(tmp, (pll->ct.vclk_fb_div & 0xFFU), par);
333 aty_st_pll_ct(PLL_GEN_CNTL, (pll->ct.pll_gen_cntl & (~(PLL_OVERRIDE | PLL_MCLK_RST))) | OSC_EN, par);
335 /* End VCLK generator reset */
336 aty_st_pll_ct(PLL_VCLK_CNTL, pll->ct.pll_vclk_cntl & ~(PLL_VCLK_RST), par);
339 aty_st_pll_ct(PLL_GEN_CNTL, pll->ct.pll_gen_cntl, par);
340 aty_st_pll_ct(PLL_VCLK_CNTL, pll->ct.pll_vclk_cntl, par);
343 /* Restore mode register */
344 if (!(crtc_gen_cntl & CRTC_EXT_DISP_EN))
345 aty_st_le32(CRTC_GEN_CNTL, crtc_gen_cntl, par);
347 if (M64_HAS(GTB_DSP)) {
352 else if (par->ram_type >= SDRAM)
356 aty_st_pll_ct(DLL_CNTL, dll_cntl, par);
357 aty_st_pll_ct(VFC_CNTL, 0x1b, par);
358 aty_st_le32(DSP_CONFIG, pll->ct.dsp_config, par);
359 aty_st_le32(DSP_ON_OFF, pll->ct.dsp_on_off, par);
362 aty_st_pll_ct(DLL_CNTL, dll_cntl, par);
364 aty_st_pll_ct(DLL_CNTL, dll_cntl | 0x40, par);
366 aty_st_pll_ct(DLL_CNTL, dll_cntl & ~0x40, par);
368 #ifdef CONFIG_FB_ATY_GENERIC_LCD
369 if (par->lcd_table != 0) {
371 aty_st_lcd(LCD_GEN_CNTL, lcd_gen_cntrl, par);
376 static void __devinit aty_get_pll_ct(const struct fb_info *info,
379 struct atyfb_par *par = (struct atyfb_par *) info->par;
382 clock = aty_ld_8(CLOCK_CNTL, par) & 0x03U;
384 pll->ct.vclk_post_div = (aty_ld_pll_ct(VCLK_POST_DIV, par) >> tmp) & 0x03U;
386 pll->ct.pll_ext_cntl = aty_ld_pll_ct(PLL_EXT_CNTL, par) & 0x0FU;
387 pll->ct.vclk_fb_div = aty_ld_pll_ct(VCLK0_FB_DIV + clock, par) & 0xFFU;
388 pll->ct.pll_ref_div = aty_ld_pll_ct(PLL_REF_DIV, par);
389 pll->ct.mclk_fb_div = aty_ld_pll_ct(MCLK_FB_DIV, par);
391 pll->ct.pll_gen_cntl = aty_ld_pll_ct(PLL_GEN_CNTL, par);
392 pll->ct.pll_vclk_cntl = aty_ld_pll_ct(PLL_VCLK_CNTL, par);
394 if (M64_HAS(GTB_DSP)) {
395 pll->ct.dsp_config = aty_ld_le32(DSP_CONFIG, par);
396 pll->ct.dsp_on_off = aty_ld_le32(DSP_ON_OFF, par);
400 static int __devinit aty_init_pll_ct(const struct fb_info *info,
403 struct atyfb_par *par = (struct atyfb_par *) info->par;
404 u8 mpost_div, xpost_div, sclk_post_div_real;
406 u32 dsp_config, dsp_on_off, vga_dsp_config, vga_dsp_on_off;
408 int pllmclk, pllsclk;
410 pll->ct.pll_ext_cntl = aty_ld_pll_ct(PLL_EXT_CNTL, par);
411 pll->ct.xclk_post_div = pll->ct.pll_ext_cntl & 0x07;
412 pll->ct.xclk_ref_div = 1;
413 switch (pll->ct.xclk_post_div) {
414 case 0: case 1: case 2: case 3:
418 pll->ct.xclk_ref_div = 3;
419 pll->ct.xclk_post_div = 0;
423 printk(KERN_CRIT "atyfb: Unsupported xclk source: %d.\n", pll->ct.xclk_post_div);
426 pll->ct.mclk_fb_mult = 2;
427 if(pll->ct.pll_ext_cntl & PLL_MFB_TIMES_4_2B) {
428 pll->ct.mclk_fb_mult = 4;
429 pll->ct.xclk_post_div -= 1;
433 printk("atyfb(%s): mclk_fb_mult=%d, xclk_post_div=%d\n",
434 __func__, pll->ct.mclk_fb_mult, pll->ct.xclk_post_div);
437 memcntl = aty_ld_le32(MEM_CNTL, par);
438 trp = (memcntl & 0x300) >> 8;
440 pll->ct.xclkpagefaultdelay = ((memcntl & 0xc00) >> 10) + ((memcntl & 0x1000) >> 12) + trp + 2;
441 pll->ct.xclkmaxrasdelay = ((memcntl & 0x70000) >> 16) + trp + 2;
443 if (M64_HAS(FIFO_32)) {
444 pll->ct.fifo_size = 32;
446 pll->ct.fifo_size = 24;
447 pll->ct.xclkpagefaultdelay += 2;
448 pll->ct.xclkmaxrasdelay += 3;
451 switch (par->ram_type) {
453 if (info->fix.smem_len<=ONE_MB) {
454 pll->ct.dsp_loop_latency = 10;
456 pll->ct.dsp_loop_latency = 8;
457 pll->ct.xclkpagefaultdelay += 2;
462 if (info->fix.smem_len<=ONE_MB) {
463 pll->ct.dsp_loop_latency = 9;
465 pll->ct.dsp_loop_latency = 8;
466 pll->ct.xclkpagefaultdelay += 1;
470 if (info->fix.smem_len<=ONE_MB) {
471 pll->ct.dsp_loop_latency = 11;
473 pll->ct.dsp_loop_latency = 10;
474 pll->ct.xclkpagefaultdelay += 1;
478 pll->ct.dsp_loop_latency = 8;
479 pll->ct.xclkpagefaultdelay += 3;
482 pll->ct.dsp_loop_latency = 11;
483 pll->ct.xclkpagefaultdelay += 3;
487 if (pll->ct.xclkmaxrasdelay <= pll->ct.xclkpagefaultdelay)
488 pll->ct.xclkmaxrasdelay = pll->ct.xclkpagefaultdelay + 1;
490 /* Allow BIOS to override */
491 dsp_config = aty_ld_le32(DSP_CONFIG, par);
492 dsp_on_off = aty_ld_le32(DSP_ON_OFF, par);
493 vga_dsp_config = aty_ld_le32(VGA_DSP_CONFIG, par);
494 vga_dsp_on_off = aty_ld_le32(VGA_DSP_ON_OFF, par);
497 pll->ct.dsp_loop_latency = (dsp_config & DSP_LOOP_LATENCY) >> 16;
499 FIXME: is it relevant for us?
500 if ((!dsp_on_off && !M64_HAS(RESET_3D)) ||
501 ((dsp_on_off == vga_dsp_on_off) &&
502 (!dsp_config || !((dsp_config ^ vga_dsp_config) & DSP_XCLKS_PER_QW)))) {
503 vga_dsp_on_off &= VGA_DSP_OFF;
504 vga_dsp_config &= VGA_DSP_XCLKS_PER_QW;
505 if (ATIDivide(vga_dsp_on_off, vga_dsp_config, 5, 1) > 24)
506 pll->ct.fifo_size = 32;
508 pll->ct.fifo_size = 24;
511 /* Exit if the user does not want us to tamper with the clock
512 rates of her chip. */
513 if (par->mclk_per == 0) {
514 u8 mclk_fb_div, pll_ext_cntl;
515 pll->ct.pll_ref_div = aty_ld_pll_ct(PLL_REF_DIV, par);
516 pll_ext_cntl = aty_ld_pll_ct(PLL_EXT_CNTL, par);
517 pll->ct.xclk_post_div_real = postdividers[pll_ext_cntl & 0x07];
518 mclk_fb_div = aty_ld_pll_ct(MCLK_FB_DIV, par);
519 if (pll_ext_cntl & PLL_MFB_TIMES_4_2B)
521 pll->ct.mclk_fb_div = mclk_fb_div;
525 pll->ct.pll_ref_div = par->pll_per * 2 * 255 / par->ref_clk_per;
527 /* FIXME: use the VTB/GTB /3 post divider if it's better suited */
528 q = par->ref_clk_per * pll->ct.pll_ref_div * 8 /
529 (pll->ct.mclk_fb_mult * par->xclk_per);
531 if (q < 16*8 || q > 255*8) {
532 printk(KERN_CRIT "atxfb: xclk out of range\n");
535 xpost_div = (q < 128*8);
536 xpost_div += (q < 64*8);
537 xpost_div += (q < 32*8);
539 pll->ct.xclk_post_div_real = postdividers[xpost_div];
540 pll->ct.mclk_fb_div = q * pll->ct.xclk_post_div_real / 8;
543 if (machine_is(powermac)) {
544 /* Override PLL_EXT_CNTL & 0x07. */
545 pll->ct.xclk_post_div = xpost_div;
546 pll->ct.xclk_ref_div = 1;
551 pllmclk = (1000000 * pll->ct.mclk_fb_mult * pll->ct.mclk_fb_div) /
552 (par->ref_clk_per * pll->ct.pll_ref_div);
553 printk("atyfb(%s): pllmclk=%d MHz, xclk=%d MHz\n",
554 __func__, pllmclk, pllmclk / pll->ct.xclk_post_div_real);
557 if (M64_HAS(SDRAM_MAGIC_PLL) && (par->ram_type >= SDRAM))
558 pll->ct.pll_gen_cntl = OSC_EN;
560 pll->ct.pll_gen_cntl = OSC_EN | DLL_PWDN /* | FORCE_DCLK_TRI_STATE */;
562 if (M64_HAS(MAGIC_POSTDIV))
563 pll->ct.pll_ext_cntl = 0;
565 pll->ct.pll_ext_cntl = xpost_div;
567 if (pll->ct.mclk_fb_mult == 4)
568 pll->ct.pll_ext_cntl |= PLL_MFB_TIMES_4_2B;
570 if (par->mclk_per == par->xclk_per) {
571 pll->ct.pll_gen_cntl |= (xpost_div << 4); /* mclk == xclk */
574 * The chip clock is not equal to the memory clock.
575 * Therefore we will use sclk to clock the chip.
577 pll->ct.pll_gen_cntl |= (6 << 4); /* mclk == sclk */
579 q = par->ref_clk_per * pll->ct.pll_ref_div * 4 / par->mclk_per;
580 if (q < 16*8 || q > 255*8) {
581 printk(KERN_CRIT "atyfb: mclk out of range\n");
584 mpost_div = (q < 128*8);
585 mpost_div += (q < 64*8);
586 mpost_div += (q < 32*8);
588 sclk_post_div_real = postdividers[mpost_div];
589 pll->ct.sclk_fb_div = q * sclk_post_div_real / 8;
590 pll->ct.spll_cntl2 = mpost_div << 4;
592 pllsclk = (1000000 * 2 * pll->ct.sclk_fb_div) /
593 (par->ref_clk_per * pll->ct.pll_ref_div);
594 printk("atyfb(%s): use sclk, pllsclk=%d MHz, sclk=mclk=%d MHz\n",
595 __func__, pllsclk, pllsclk / sclk_post_div_real);
599 /* Disable the extra precision pixel clock controls since we do not use them. */
600 pll->ct.ext_vpll_cntl = aty_ld_pll_ct(EXT_VPLL_CNTL, par);
601 pll->ct.ext_vpll_cntl &= ~(EXT_VPLL_EN | EXT_VPLL_VGA_EN | EXT_VPLL_INSYNC);
606 static void aty_resume_pll_ct(const struct fb_info *info,
609 struct atyfb_par *par = info->par;
611 if (par->mclk_per != par->xclk_per) {
613 * This disables the sclk, crashes the computer as reported:
614 * aty_st_pll_ct(SPLL_CNTL2, 3, info);
616 * So it seems the sclk must be enabled before it is used;
617 * so PLL_GEN_CNTL must be programmed *after* the sclk.
619 aty_st_pll_ct(SCLK_FB_DIV, pll->ct.sclk_fb_div, par);
620 aty_st_pll_ct(SPLL_CNTL2, pll->ct.spll_cntl2, par);
622 * SCLK has been started. Wait for the PLL to lock. 5 ms
623 * should be enough according to mach64 programmer's guide.
628 aty_st_pll_ct(PLL_REF_DIV, pll->ct.pll_ref_div, par);
629 aty_st_pll_ct(PLL_GEN_CNTL, pll->ct.pll_gen_cntl, par);
630 aty_st_pll_ct(MCLK_FB_DIV, pll->ct.mclk_fb_div, par);
631 aty_st_pll_ct(PLL_EXT_CNTL, pll->ct.pll_ext_cntl, par);
632 aty_st_pll_ct(EXT_VPLL_CNTL, pll->ct.ext_vpll_cntl, par);
635 static int dummy(void)
640 const struct aty_dac_ops aty_dac_ct = {
641 .set_dac = (void *) dummy,
644 const struct aty_pll_ops aty_pll_ct = {
645 .var_to_pll = aty_var_to_pll_ct,
646 .pll_to_var = aty_pll_to_var_ct,
647 .set_pll = aty_set_pll_ct,
648 .get_pll = aty_get_pll_ct,
649 .init_pll = aty_init_pll_ct,
650 .resume_pll = aty_resume_pll_ct,