Home | History | Annotate | Download | only in src

Lines Matching refs:pll

364 /* Read PLL information */
598 /* Read PLL parameters from BIOS block. Default to typical values if there
603 R128PLLPtr pll = &info->pll;
607 does set up the PLL registers properly and we can use
617 pll->reference_freq = 2950;
618 pll->min_pll_freq = 12500;
619 pll->max_pll_freq = 25000;
623 pll->reference_div =
629 pll->xclk = R128Div((2 * Nx * pll->reference_freq),
636 "Video BIOS not detected, using default PLL parameters!\n");
641 pll->reference_freq = 2950;
642 pll->reference_div = 65;
643 pll->min_pll_freq = 12500;
644 pll->max_pll_freq = 25000;
645 pll->xclk = 10300;
650 "Header at 0x%04x; PLL Information at 0x%04x\n",
653 pll->reference_freq = R128_BIOS16(pll_info_block + 0x0e);
654 pll->reference_div = R128_BIOS16(pll_info_block + 0x10);
655 pll->min_pll_freq = R128_BIOS32(pll_info_block + 0x12);
656 pll->max_pll_freq = R128_BIOS32(pll_info_block + 0x16);
657 pll->xclk = R128_BIOS16(pll_info_block + 0x08);
662 "PLL parameters: rf=%d rd=%d min=%d max=%d; xclk=%d\n",
663 pll->reference_freq,
664 pll->reference_div,
665 pll->min_pll_freq,
666 pll->max_pll_freq,
667 pll->xclk);
2392 /* Read PLL registers. */