linux/drivers/video/aty/mach64_ct.c
<<
>>
Prefs
   1
   2/*
   3 *  ATI Mach64 CT/VT/GT/LT Support
   4 */
   5
   6#include <linux/fb.h>
   7#include <linux/delay.h>
   8#include <asm/io.h>
   9#include <video/mach64.h>
  10#include "atyfb.h"
  11
  12#undef DEBUG
  13
  14static int aty_valid_pll_ct (const struct fb_info *info, u32 vclk_per, struct pll_ct *pll);
  15static int aty_dsp_gt       (const struct fb_info *info, u32 bpp, struct pll_ct *pll);
  16static int aty_var_to_pll_ct(const struct fb_info *info, u32 vclk_per, u32 bpp, union aty_pll *pll);
  17static u32 aty_pll_to_var_ct(const struct fb_info *info, const union aty_pll *pll);
  18
  19u8 aty_ld_pll_ct(int offset, const struct atyfb_par *par)
  20{
  21        u8 res;
  22
  23        /* write addr byte */
  24        aty_st_8(CLOCK_CNTL_ADDR, (offset << 2) & PLL_ADDR, par);
  25        /* read the register value */
  26        res = aty_ld_8(CLOCK_CNTL_DATA, par);
  27        return res;
  28}
  29
  30static void aty_st_pll_ct(int offset, u8 val, const struct atyfb_par *par)
  31{
  32        /* write addr byte */
  33        aty_st_8(CLOCK_CNTL_ADDR, ((offset << 2) & PLL_ADDR) | PLL_WR_EN, par);
  34        /* write the register value */
  35        aty_st_8(CLOCK_CNTL_DATA, val & PLL_DATA, par);
  36        aty_st_8(CLOCK_CNTL_ADDR, ((offset << 2) & PLL_ADDR) & ~PLL_WR_EN, par);
  37}
  38
  39/*
  40 * by Daniel Mantione
  41 *                                  <daniel.mantione@freepascal.org>
  42 *
  43 *
  44 * ATI Mach64 CT clock synthesis description.
  45 *
  46 * All clocks on the Mach64 can be calculated using the same principle:
  47 *
  48 *       XTALIN * x * FB_DIV
  49 * CLK = ----------------------
  50 *       PLL_REF_DIV * POST_DIV
  51 *
  52 * XTALIN is a fixed speed clock. Common speeds are 14.31 MHz and 29.50 MHz.
  53 * PLL_REF_DIV can be set by the user, but is the same for all clocks.
  54 * FB_DIV can be set by the user for each clock individually, it should be set
  55 * between 128 and 255, the chip will generate a bad clock signal for too low
  56 * values.
  57 * x depends on the type of clock; usually it is 2, but for the MCLK it can also
  58 * be set to 4.
  59 * POST_DIV can be set by the user for each clock individually, Possible values
  60 * are 1,2,4,8 and for some clocks other values are available too.
  61 * CLK is of course the clock speed that is generated.
  62 *
  63 * The Mach64 has these clocks:
  64 *
  65 * MCLK                 The clock rate of the chip
  66 * XCLK                 The clock rate of the on-chip memory
  67 * VCLK0                First pixel clock of first CRT controller
  68 * VCLK1    Second pixel clock of first CRT controller
  69 * VCLK2                Third pixel clock of first CRT controller
  70 * VCLK3    Fourth pixel clock of first CRT controller
  71 * VCLK                 Selected pixel clock, one of VCLK0, VCLK1, VCLK2, VCLK3
  72 * V2CLK                Pixel clock of the second CRT controller.
  73 * SCLK                 Multi-purpose clock
  74 *
  75 * - MCLK and XCLK use the same FB_DIV
  76 * - VCLK0 .. VCLK3 use the same FB_DIV
  77 * - V2CLK is needed when the second CRTC is used (can be used for dualhead);
  78 *   i.e. CRT monitor connected to laptop has different resolution than built
  79 *   in LCD monitor.
  80 * - SCLK is not available on all cards; it is know to exist on the Rage LT-PRO,
  81 *   Rage XL and Rage Mobility. It is know not to exist on the Mach64 VT.
  82 * - V2CLK is not available on all cards, most likely only the Rage LT-PRO,
  83 *   the Rage XL and the Rage Mobility
  84 *
  85 * SCLK can be used to:
  86 * - Clock the chip instead of MCLK
  87 * - Replace XTALIN with a user defined frequency
  88 * - Generate the pixel clock for the LCD monitor (instead of VCLK)
  89 */
  90
  91 /*
  92  * It can be quite hard to calculate XCLK and MCLK if they don't run at the
  93  * same frequency. Luckily, until now all cards that need asynchrone clock
  94  * speeds seem to have SCLK.
  95  * So this driver uses SCLK to clock the chip and XCLK to clock the memory.
  96  */
  97
  98/* ------------------------------------------------------------------------- */
  99
 100/*
 101 *  PLL programming (Mach64 CT family)
 102 *
 103 *
 104 * This procedure sets the display fifo. The display fifo is a buffer that
 105 * contains data read from the video memory that waits to be processed by
 106 * the CRT controller.
 107 *
 108 * On the more modern Mach64 variants, the chip doesn't calculate the
 109 * interval after which the display fifo has to be reloaded from memory
 110 * automatically, the driver has to do it instead.
 111 */
 112
 113#define Maximum_DSP_PRECISION 7
 114static u8 postdividers[] = {1,2,4,8,3};
 115
 116static int aty_dsp_gt(const struct fb_info *info, u32 bpp, struct pll_ct *pll)
 117{
 118        u32 dsp_off, dsp_on, dsp_xclks;
 119        u32 multiplier, divider, ras_multiplier, ras_divider, tmp;
 120        u8 vshift, xshift;
 121        s8 dsp_precision;
 122
 123        multiplier = ((u32)pll->mclk_fb_div) * pll->vclk_post_div_real;
 124        divider = ((u32)pll->vclk_fb_div) * pll->xclk_ref_div;
 125
 126        ras_multiplier = pll->xclkmaxrasdelay;
 127        ras_divider = 1;
 128
 129        if (bpp>=8)
 130                divider = divider * (bpp >> 2);
 131
 132        vshift = (6 - 2) - pll->xclk_post_div;  /* FIFO is 64 bits wide in accelerator mode ... */
 133
 134        if (bpp == 0)
 135                vshift--;       /* ... but only 32 bits in VGA mode. */
 136
 137#ifdef CONFIG_FB_ATY_GENERIC_LCD
 138        if (pll->xres != 0) {
 139                struct atyfb_par *par = (struct atyfb_par *) info->par;
 140
 141                multiplier = multiplier * par->lcd_width;
 142                divider = divider * pll->xres & ~7;
 143
 144                ras_multiplier = ras_multiplier * par->lcd_width;
 145                ras_divider = ras_divider * pll->xres & ~7;
 146        }
 147#endif
 148        /* If we don't do this, 32 bits for multiplier & divider won't be
 149        enough in certain situations! */
 150        while (((multiplier | divider) & 1) == 0) {
 151                multiplier = multiplier >> 1;
 152                divider = divider >> 1;
 153        }
 154
 155        /* Determine DSP precision first */
 156        tmp = ((multiplier * pll->fifo_size) << vshift) / divider;
 157
 158        for (dsp_precision = -5;  tmp;  dsp_precision++)
 159                tmp >>= 1;
 160        if (dsp_precision < 0)
 161                dsp_precision = 0;
 162        else if (dsp_precision > Maximum_DSP_PRECISION)
 163                dsp_precision = Maximum_DSP_PRECISION;
 164
 165        xshift = 6 - dsp_precision;
 166        vshift += xshift;
 167
 168        /* Move on to dsp_off */
 169        dsp_off = ((multiplier * (pll->fifo_size - 1)) << vshift) / divider -
 170                (1 << (vshift - xshift));
 171
 172/*    if (bpp == 0)
 173        dsp_on = ((multiplier * 20 << vshift) + divider) / divider;
 174    else */
 175        {
 176                dsp_on = ((multiplier << vshift) + divider) / divider;
 177                tmp = ((ras_multiplier << xshift) + ras_divider) / ras_divider;
 178                if (dsp_on < tmp)
 179                dsp_on = tmp;
 180                dsp_on = dsp_on + (tmp * 2) + (pll->xclkpagefaultdelay << xshift);
 181        }
 182
 183        /* Calculate rounding factor and apply it to dsp_on */
 184        tmp = ((1 << (Maximum_DSP_PRECISION - dsp_precision)) - 1) >> 1;
 185        dsp_on = ((dsp_on + tmp) / (tmp + 1)) * (tmp + 1);
 186
 187        if (dsp_on >= ((dsp_off / (tmp + 1)) * (tmp + 1))) {
 188                dsp_on = dsp_off - (multiplier << vshift) / divider;
 189                dsp_on = (dsp_on / (tmp + 1)) * (tmp + 1);
 190        }
 191
 192        /* Last but not least:  dsp_xclks */
 193        dsp_xclks = ((multiplier << (vshift + 5)) + divider) / divider;
 194
 195        /* Get register values. */
 196        pll->dsp_on_off = (dsp_on << 16) + dsp_off;
 197        pll->dsp_config = (dsp_precision << 20) | (pll->dsp_loop_latency << 16) | dsp_xclks;
 198#ifdef DEBUG
 199        printk("atyfb(%s): dsp_config 0x%08x, dsp_on_off 0x%08x\n",
 200                __FUNCTION__, pll->dsp_config, pll->dsp_on_off);
 201#endif
 202        return 0;
 203}
 204
 205static int aty_valid_pll_ct(const struct fb_info *info, u32 vclk_per, struct pll_ct *pll)
 206{
 207        u32 q;
 208        struct atyfb_par *par = (struct atyfb_par *) info->par;
 209        int pllvclk;
 210
 211        /* FIXME: use the VTB/GTB /{3,6,12} post dividers if they're better suited */
 212        q = par->ref_clk_per * pll->pll_ref_div * 4 / vclk_per;
 213        if (q < 16*8 || q > 255*8) {
 214                printk(KERN_CRIT "atyfb: vclk out of range\n");
 215                return -EINVAL;
 216        } else {
 217                pll->vclk_post_div  = (q < 128*8);
 218                pll->vclk_post_div += (q <  64*8);
 219                pll->vclk_post_div += (q <  32*8);
 220        }
 221        pll->vclk_post_div_real = postdividers[pll->vclk_post_div];
 222        //    pll->vclk_post_div <<= 6;
 223        pll->vclk_fb_div = q * pll->vclk_post_div_real / 8;
 224        pllvclk = (1000000 * 2 * pll->vclk_fb_div) /
 225                (par->ref_clk_per * pll->pll_ref_div);
 226#ifdef DEBUG
 227        printk("atyfb(%s): pllvclk=%d MHz, vclk=%d MHz\n",
 228                __FUNCTION__, pllvclk, pllvclk / pll->vclk_post_div_real);
 229#endif
 230        pll->pll_vclk_cntl = 0x03; /* VCLK = PLL_VCLK/VCLKx_POST */
 231
 232        /* Set ECP (scaler/overlay clock) divider */
 233        if (par->pll_limits.ecp_max) {
 234                int ecp = pllvclk / pll->vclk_post_div_real;
 235                int ecp_div = 0;
 236
 237                while (ecp > par->pll_limits.ecp_max && ecp_div < 2) {
 238                        ecp >>= 1;
 239                        ecp_div++;
 240                }
 241                pll->pll_vclk_cntl |= ecp_div << 4;
 242        }
 243
 244        return 0;
 245}
 246
 247static int aty_var_to_pll_ct(const struct fb_info *info, u32 vclk_per, u32 bpp, union aty_pll *pll)
 248{
 249        struct atyfb_par *par = (struct atyfb_par *) info->par;
 250        int err;
 251
 252        if ((err = aty_valid_pll_ct(info, vclk_per, &pll->ct)))
 253                return err;
 254        if (M64_HAS(GTB_DSP) && (err = aty_dsp_gt(info, bpp, &pll->ct)))
 255                return err;
 256        /*aty_calc_pll_ct(info, &pll->ct);*/
 257        return 0;
 258}
 259
 260static u32 aty_pll_to_var_ct(const struct fb_info *info, const union aty_pll *pll)
 261{
 262        struct atyfb_par *par = (struct atyfb_par *) info->par;
 263        u32 ret;
 264        ret = par->ref_clk_per * pll->ct.pll_ref_div * pll->ct.vclk_post_div_real / pll->ct.vclk_fb_div / 2;
 265#ifdef CONFIG_FB_ATY_GENERIC_LCD
 266        if(pll->ct.xres > 0) {
 267                ret *= par->lcd_width;
 268                ret /= pll->ct.xres;
 269        }
 270#endif
 271#ifdef DEBUG
 272        printk("atyfb(%s): calculated 0x%08X(%i)\n", __FUNCTION__, ret, ret);
 273#endif
 274        return ret;
 275}
 276
 277void aty_set_pll_ct(const struct fb_info *info, const union aty_pll *pll)
 278{
 279        struct atyfb_par *par = (struct atyfb_par *) info->par;
 280        u32 crtc_gen_cntl, lcd_gen_cntrl;
 281        u8 tmp, tmp2;
 282
 283        lcd_gen_cntrl = 0;
 284#ifdef DEBUG
 285        printk("atyfb(%s): about to program:\n"
 286                "pll_ext_cntl=0x%02x pll_gen_cntl=0x%02x pll_vclk_cntl=0x%02x\n",
 287                __FUNCTION__,
 288                pll->ct.pll_ext_cntl, pll->ct.pll_gen_cntl, pll->ct.pll_vclk_cntl);
 289
 290        printk("atyfb(%s): setting clock %lu for FeedBackDivider %i, ReferenceDivider %i, PostDivider %i(%i)\n",
 291                __FUNCTION__,
 292                par->clk_wr_offset, pll->ct.vclk_fb_div,
 293                pll->ct.pll_ref_div, pll->ct.vclk_post_div, pll->ct.vclk_post_div_real);
 294#endif
 295#ifdef CONFIG_FB_ATY_GENERIC_LCD
 296        if (par->lcd_table != 0) {
 297                /* turn off LCD */
 298                lcd_gen_cntrl = aty_ld_lcd(LCD_GEN_CNTL, par);
 299                aty_st_lcd(LCD_GEN_CNTL, lcd_gen_cntrl & ~LCD_ON, par);
 300        }
 301#endif
 302        aty_st_8(CLOCK_CNTL, par->clk_wr_offset | CLOCK_STROBE, par);
 303
 304        /* Temporarily switch to accelerator mode */
 305        crtc_gen_cntl = aty_ld_le32(CRTC_GEN_CNTL, par);
 306        if (!(crtc_gen_cntl & CRTC_EXT_DISP_EN))
 307                aty_st_le32(CRTC_GEN_CNTL, crtc_gen_cntl | CRTC_EXT_DISP_EN, par);
 308
 309        /* Reset VCLK generator */
 310        aty_st_pll_ct(PLL_VCLK_CNTL, pll->ct.pll_vclk_cntl, par);
 311
 312        /* Set post-divider */
 313        tmp2 = par->clk_wr_offset << 1;
 314        tmp = aty_ld_pll_ct(VCLK_POST_DIV, par);
 315        tmp &= ~(0x03U << tmp2);
 316        tmp |= ((pll->ct.vclk_post_div & 0x03U) << tmp2);
 317        aty_st_pll_ct(VCLK_POST_DIV, tmp, par);
 318
 319        /* Set extended post-divider */
 320        tmp = aty_ld_pll_ct(PLL_EXT_CNTL, par);
 321        tmp &= ~(0x10U << par->clk_wr_offset);
 322        tmp &= 0xF0U;
 323        tmp |= pll->ct.pll_ext_cntl;
 324        aty_st_pll_ct(PLL_EXT_CNTL, tmp, par);
 325
 326        /* Set feedback divider */
 327        tmp = VCLK0_FB_DIV + par->clk_wr_offset;
 328        aty_st_pll_ct(tmp, (pll->ct.vclk_fb_div & 0xFFU), par);
 329
 330        aty_st_pll_ct(PLL_GEN_CNTL, (pll->ct.pll_gen_cntl & (~(PLL_OVERRIDE | PLL_MCLK_RST))) | OSC_EN, par);
 331
 332        /* End VCLK generator reset */
 333        aty_st_pll_ct(PLL_VCLK_CNTL, pll->ct.pll_vclk_cntl & ~(PLL_VCLK_RST), par);
 334        mdelay(5);
 335
 336        aty_st_pll_ct(PLL_GEN_CNTL, pll->ct.pll_gen_cntl, par);
 337        aty_st_pll_ct(PLL_VCLK_CNTL, pll->ct.pll_vclk_cntl, par);
 338        mdelay(1);
 339
 340        /* Restore mode register */
 341        if (!(crtc_gen_cntl & CRTC_EXT_DISP_EN))
 342                aty_st_le32(CRTC_GEN_CNTL, crtc_gen_cntl, par);
 343
 344        if (M64_HAS(GTB_DSP)) {
 345                u8 dll_cntl;
 346
 347                if (M64_HAS(XL_DLL))
 348                        dll_cntl = 0x80;
 349                else if (par->ram_type >= SDRAM)
 350                        dll_cntl = 0xa6;
 351                else
 352                        dll_cntl = 0xa0;
 353                aty_st_pll_ct(DLL_CNTL, dll_cntl, par);
 354                aty_st_pll_ct(VFC_CNTL, 0x1b, par);
 355                aty_st_le32(DSP_CONFIG, pll->ct.dsp_config, par);
 356                aty_st_le32(DSP_ON_OFF, pll->ct.dsp_on_off, par);
 357
 358                mdelay(10);
 359                aty_st_pll_ct(DLL_CNTL, dll_cntl, par);
 360                mdelay(10);
 361                aty_st_pll_ct(DLL_CNTL, dll_cntl | 0x40, par);
 362                mdelay(10);
 363                aty_st_pll_ct(DLL_CNTL, dll_cntl & ~0x40, par);
 364        }
 365#ifdef CONFIG_FB_ATY_GENERIC_LCD
 366        if (par->lcd_table != 0) {
 367                /* restore LCD */
 368                aty_st_lcd(LCD_GEN_CNTL, lcd_gen_cntrl, par);
 369        }
 370#endif
 371}
 372
 373static void __devinit aty_get_pll_ct(const struct fb_info *info,
 374                                     union aty_pll *pll)
 375{
 376        struct atyfb_par *par = (struct atyfb_par *) info->par;
 377        u8 tmp, clock;
 378
 379        clock = aty_ld_8(CLOCK_CNTL, par) & 0x03U;
 380        tmp = clock << 1;
 381        pll->ct.vclk_post_div = (aty_ld_pll_ct(VCLK_POST_DIV, par) >> tmp) & 0x03U;
 382
 383        pll->ct.pll_ext_cntl = aty_ld_pll_ct(PLL_EXT_CNTL, par) & 0x0FU;
 384        pll->ct.vclk_fb_div = aty_ld_pll_ct(VCLK0_FB_DIV + clock, par) & 0xFFU;
 385        pll->ct.pll_ref_div = aty_ld_pll_ct(PLL_REF_DIV, par);
 386        pll->ct.mclk_fb_div = aty_ld_pll_ct(MCLK_FB_DIV, par);
 387
 388        pll->ct.pll_gen_cntl = aty_ld_pll_ct(PLL_GEN_CNTL, par);
 389        pll->ct.pll_vclk_cntl = aty_ld_pll_ct(PLL_VCLK_CNTL, par);
 390
 391        if (M64_HAS(GTB_DSP)) {
 392                pll->ct.dsp_config = aty_ld_le32(DSP_CONFIG, par);
 393                pll->ct.dsp_on_off = aty_ld_le32(DSP_ON_OFF, par);
 394        }
 395}
 396
 397static int __devinit aty_init_pll_ct(const struct fb_info *info,
 398                                     union aty_pll *pll)
 399{
 400        struct atyfb_par *par = (struct atyfb_par *) info->par;
 401        u8 mpost_div, xpost_div, sclk_post_div_real;
 402        u32 q, memcntl, trp;
 403        u32 dsp_config, dsp_on_off, vga_dsp_config, vga_dsp_on_off;
 404#ifdef DEBUG
 405        int pllmclk, pllsclk;
 406#endif
 407        pll->ct.pll_ext_cntl = aty_ld_pll_ct(PLL_EXT_CNTL, par);
 408        pll->ct.xclk_post_div = pll->ct.pll_ext_cntl & 0x07;
 409        pll->ct.xclk_ref_div = 1;
 410        switch (pll->ct.xclk_post_div) {
 411        case 0:  case 1:  case 2:  case 3:
 412                break;
 413
 414        case 4:
 415                pll->ct.xclk_ref_div = 3;
 416                pll->ct.xclk_post_div = 0;
 417                break;
 418
 419        default:
 420                printk(KERN_CRIT "atyfb: Unsupported xclk source:  %d.\n", pll->ct.xclk_post_div);
 421                return -EINVAL;
 422        }
 423        pll->ct.mclk_fb_mult = 2;
 424        if(pll->ct.pll_ext_cntl & PLL_MFB_TIMES_4_2B) {
 425                pll->ct.mclk_fb_mult = 4;
 426                pll->ct.xclk_post_div -= 1;
 427        }
 428
 429#ifdef DEBUG
 430        printk("atyfb(%s): mclk_fb_mult=%d, xclk_post_div=%d\n",
 431                __FUNCTION__, pll->ct.mclk_fb_mult, pll->ct.xclk_post_div);
 432#endif
 433
 434        memcntl = aty_ld_le32(MEM_CNTL, par);
 435        trp = (memcntl & 0x300) >> 8;
 436
 437        pll->ct.xclkpagefaultdelay = ((memcntl & 0xc00) >> 10) + ((memcntl & 0x1000) >> 12) + trp + 2;
 438        pll->ct.xclkmaxrasdelay = ((memcntl & 0x70000) >> 16) + trp + 2;
 439
 440        if (M64_HAS(FIFO_32)) {
 441                pll->ct.fifo_size = 32;
 442        } else {
 443                pll->ct.fifo_size = 24;
 444                pll->ct.xclkpagefaultdelay += 2;
 445                pll->ct.xclkmaxrasdelay += 3;
 446        }
 447
 448        switch (par->ram_type) {
 449        case DRAM:
 450                if (info->fix.smem_len<=ONE_MB) {
 451                        pll->ct.dsp_loop_latency = 10;
 452                } else {
 453                        pll->ct.dsp_loop_latency = 8;
 454                        pll->ct.xclkpagefaultdelay += 2;
 455                }
 456                break;
 457        case EDO:
 458        case PSEUDO_EDO:
 459                if (info->fix.smem_len<=ONE_MB) {
 460                        pll->ct.dsp_loop_latency = 9;
 461                } else {
 462                        pll->ct.dsp_loop_latency = 8;
 463                        pll->ct.xclkpagefaultdelay += 1;
 464                }
 465                break;
 466        case SDRAM:
 467                if (info->fix.smem_len<=ONE_MB) {
 468                        pll->ct.dsp_loop_latency = 11;
 469                } else {
 470                        pll->ct.dsp_loop_latency = 10;
 471                        pll->ct.xclkpagefaultdelay += 1;
 472                }
 473                break;
 474        case SGRAM:
 475                pll->ct.dsp_loop_latency = 8;
 476                pll->ct.xclkpagefaultdelay += 3;
 477                break;
 478        default:
 479                pll->ct.dsp_loop_latency = 11;
 480                pll->ct.xclkpagefaultdelay += 3;
 481                break;
 482        }
 483
 484        if (pll->ct.xclkmaxrasdelay <= pll->ct.xclkpagefaultdelay)
 485                pll->ct.xclkmaxrasdelay = pll->ct.xclkpagefaultdelay + 1;
 486
 487        /* Allow BIOS to override */
 488        dsp_config = aty_ld_le32(DSP_CONFIG, par);
 489        dsp_on_off = aty_ld_le32(DSP_ON_OFF, par);
 490        vga_dsp_config = aty_ld_le32(VGA_DSP_CONFIG, par);
 491        vga_dsp_on_off = aty_ld_le32(VGA_DSP_ON_OFF, par);
 492
 493        if (dsp_config)
 494                pll->ct.dsp_loop_latency = (dsp_config & DSP_LOOP_LATENCY) >> 16;
 495#if 0
 496        FIXME: is it relevant for us?
 497        if ((!dsp_on_off && !M64_HAS(RESET_3D)) ||
 498                ((dsp_on_off == vga_dsp_on_off) &&
 499                (!dsp_config || !((dsp_config ^ vga_dsp_config) & DSP_XCLKS_PER_QW)))) {
 500                vga_dsp_on_off &= VGA_DSP_OFF;
 501                vga_dsp_config &= VGA_DSP_XCLKS_PER_QW;
 502                if (ATIDivide(vga_dsp_on_off, vga_dsp_config, 5, 1) > 24)
 503                        pll->ct.fifo_size = 32;
 504                else
 505                        pll->ct.fifo_size = 24;
 506        }
 507#endif
 508        /* Exit if the user does not want us to tamper with the clock
 509        rates of her chip. */
 510        if (par->mclk_per == 0) {
 511                u8 mclk_fb_div, pll_ext_cntl;
 512                pll->ct.pll_ref_div = aty_ld_pll_ct(PLL_REF_DIV, par);
 513                pll_ext_cntl = aty_ld_pll_ct(PLL_EXT_CNTL, par);
 514                pll->ct.xclk_post_div_real = postdividers[pll_ext_cntl & 0x07];
 515                mclk_fb_div = aty_ld_pll_ct(MCLK_FB_DIV, par);
 516                if (pll_ext_cntl & PLL_MFB_TIMES_4_2B)
 517                        mclk_fb_div <<= 1;
 518                pll->ct.mclk_fb_div = mclk_fb_div;
 519                return 0;
 520        }
 521
 522        pll->ct.pll_ref_div = par->pll_per * 2 * 255 / par->ref_clk_per;
 523
 524        /* FIXME: use the VTB/GTB /3 post divider if it's better suited */
 525        q = par->ref_clk_per * pll->ct.pll_ref_div * 8 /
 526                (pll->ct.mclk_fb_mult * par->xclk_per);
 527
 528        if (q < 16*8 || q > 255*8) {
 529                printk(KERN_CRIT "atxfb: xclk out of range\n");
 530                return -EINVAL;
 531        } else {
 532                xpost_div  = (q < 128*8);
 533                xpost_div += (q <  64*8);
 534                xpost_div += (q <  32*8);
 535        }
 536        pll->ct.xclk_post_div_real = postdividers[xpost_div];
 537        pll->ct.mclk_fb_div = q * pll->ct.xclk_post_div_real / 8;
 538
 539#ifdef DEBUG
 540        pllmclk = (1000000 * pll->ct.mclk_fb_mult * pll->ct.mclk_fb_div) /
 541                        (par->ref_clk_per * pll->ct.pll_ref_div);
 542        printk("atyfb(%s): pllmclk=%d MHz, xclk=%d MHz\n",
 543                __FUNCTION__, pllmclk, pllmclk / pll->ct.xclk_post_div_real);
 544#endif
 545
 546        if (M64_HAS(SDRAM_MAGIC_PLL) && (par->ram_type >= SDRAM))
 547                pll->ct.pll_gen_cntl = OSC_EN;
 548        else
 549                pll->ct.pll_gen_cntl = OSC_EN | DLL_PWDN /* | FORCE_DCLK_TRI_STATE */;
 550
 551        if (M64_HAS(MAGIC_POSTDIV))
 552                pll->ct.pll_ext_cntl = 0;
 553        else
 554                pll->ct.pll_ext_cntl = xpost_div;
 555
 556        if (pll->ct.mclk_fb_mult == 4)
 557                pll->ct.pll_ext_cntl |= PLL_MFB_TIMES_4_2B;
 558
 559        if (par->mclk_per == par->xclk_per) {
 560                pll->ct.pll_gen_cntl |= (xpost_div << 4); /* mclk == xclk */
 561        } else {
 562                /*
 563                * The chip clock is not equal to the memory clock.
 564                * Therefore we will use sclk to clock the chip.
 565                */
 566                pll->ct.pll_gen_cntl |= (6 << 4); /* mclk == sclk */
 567
 568                q = par->ref_clk_per * pll->ct.pll_ref_div * 4 / par->mclk_per;
 569                if (q < 16*8 || q > 255*8) {
 570                        printk(KERN_CRIT "atyfb: mclk out of range\n");
 571                        return -EINVAL;
 572                } else {
 573                        mpost_div  = (q < 128*8);
 574                        mpost_div += (q <  64*8);
 575                        mpost_div += (q <  32*8);
 576                }
 577                sclk_post_div_real = postdividers[mpost_div];
 578                pll->ct.sclk_fb_div = q * sclk_post_div_real / 8;
 579                pll->ct.spll_cntl2 = mpost_div << 4;
 580#ifdef DEBUG
 581                pllsclk = (1000000 * 2 * pll->ct.sclk_fb_div) /
 582                        (par->ref_clk_per * pll->ct.pll_ref_div);
 583                printk("atyfb(%s): use sclk, pllsclk=%d MHz, sclk=mclk=%d MHz\n",
 584                        __FUNCTION__, pllsclk, pllsclk / sclk_post_div_real);
 585#endif
 586        }
 587
 588        /* Disable the extra precision pixel clock controls since we do not use them. */
 589        pll->ct.ext_vpll_cntl = aty_ld_pll_ct(EXT_VPLL_CNTL, par);
 590        pll->ct.ext_vpll_cntl &= ~(EXT_VPLL_EN | EXT_VPLL_VGA_EN | EXT_VPLL_INSYNC);
 591
 592        return 0;
 593}
 594
 595static void aty_resume_pll_ct(const struct fb_info *info,
 596                              union aty_pll *pll)
 597{
 598        struct atyfb_par *par = info->par;
 599
 600        if (par->mclk_per != par->xclk_per) {
 601                /*
 602                * This disables the sclk, crashes the computer as reported:
 603                * aty_st_pll_ct(SPLL_CNTL2, 3, info);
 604                *
 605                * So it seems the sclk must be enabled before it is used;
 606                * so PLL_GEN_CNTL must be programmed *after* the sclk.
 607                */
 608                aty_st_pll_ct(SCLK_FB_DIV, pll->ct.sclk_fb_div, par);
 609                aty_st_pll_ct(SPLL_CNTL2, pll->ct.spll_cntl2, par);
 610                /*
 611                 * SCLK has been started. Wait for the PLL to lock. 5 ms
 612                 * should be enough according to mach64 programmer's guide.
 613                 */
 614                mdelay(5);
 615        }
 616
 617        aty_st_pll_ct(PLL_REF_DIV, pll->ct.pll_ref_div, par);
 618        aty_st_pll_ct(PLL_GEN_CNTL, pll->ct.pll_gen_cntl, par);
 619        aty_st_pll_ct(MCLK_FB_DIV, pll->ct.mclk_fb_div, par);
 620        aty_st_pll_ct(PLL_EXT_CNTL, pll->ct.pll_ext_cntl, par);
 621        aty_st_pll_ct(EXT_VPLL_CNTL, pll->ct.ext_vpll_cntl, par);
 622}
 623
 624static int dummy(void)
 625{
 626        return 0;
 627}
 628
 629const struct aty_dac_ops aty_dac_ct = {
 630        .set_dac        = (void *) dummy,
 631};
 632
 633const struct aty_pll_ops aty_pll_ct = {
 634        .var_to_pll     = aty_var_to_pll_ct,
 635        .pll_to_var     = aty_pll_to_var_ct,
 636        .set_pll        = aty_set_pll_ct,
 637        .get_pll        = aty_get_pll_ct,
 638        .init_pll       = aty_init_pll_ct,
 639        .resume_pll     = aty_resume_pll_ct,
 640};
 641