Searched refs:pll_lim (Results 1 - 5 of 5) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/nouveau/
H A Dnouveau_calc.c265 getMNP_single(struct drm_device *dev, struct pll_lims *pll_lim, int clk, argument
278 int minvco = pll_lim->vco1.minfreq, maxvco = pll_lim->vco1.maxfreq;
279 int minM = pll_lim->vco1.min_m, maxM = pll_lim->vco1.max_m;
280 int minN = pll_lim->vco1.min_n, maxN = pll_lim->vco1.max_n;
281 int minU = pll_lim->vco1.min_inputfreq;
282 int maxU = pll_lim->vco1.max_inputfreq;
283 int minP = pll_lim
364 getMNP_double(struct drm_device *dev, struct pll_lims *pll_lim, int clk, struct nouveau_pll_vals *bestpv) argument
464 nouveau_calc_pll_mnp(struct drm_device *dev, struct pll_lims *pll_lim, int clk, struct nouveau_pll_vals *pv) argument
[all...]
H A Dnouveau_bios.c674 struct pll_lims pll_lim; local
682 ret = get_pll_limits(dev, reg > 0x405c ? reg : reg - 4, &pll_lim);
686 clk = nouveau_calc_pll_mnp(dev, &pll_lim, clk, &pllvals);
4674 int get_pll_limits(struct drm_device *dev, uint32_t limit_match, struct pll_lims *pll_lim) argument
4747 memset(pll_lim, 0, sizeof(struct pll_lims));
4752 pll_lim->vco1.minfreq = ROM32(pll_rec[0]);
4753 pll_lim->vco1.maxfreq = ROM32(pll_rec[4]);
4754 pll_lim->vco2.minfreq = ROM32(pll_rec[8]);
4755 pll_lim->vco2.maxfreq = ROM32(pll_rec[12]);
4756 pll_lim
[all...]
H A Dnouveau_hw.c324 struct pll_lims pll_lim; local
327 if (get_pll_limits(dev, Preg, &pll_lim))
330 Pval2 = pv->log2P + pll_lim.log2p_bias;
331 if (Pval2 > pll_lim.max_log2p)
332 Pval2 = pll_lim.max_log2p;
439 struct pll_lims pll_lim; local
471 ret = get_pll_limits(dev, plltype, &pll_lim);
475 pllvals->refclk = pll_lim.refclk;
525 struct pll_lims pll_lim; local
529 if (get_pll_limits(dev, head ? VPLL2 : VPLL1, &pll_lim))
[all...]
H A Dnv04_crtc.c110 struct pll_lims pll_lim; local
112 if (get_pll_limits(dev, nv_crtc->index ? VPLL2 : VPLL1, &pll_lim))
128 if (dev_priv->chipset > 0x40 && dot_clock <= (pll_lim.vco1.maxfreq / 2))
129 memset(&pll_lim.vco2, 0, sizeof(pll_lim.vco2));
131 if (!nouveau_calc_pll_mnp(dev, &pll_lim, dot_clock, pv))
H A Dnouveau_hw.h58 extern int nouveau_calc_pll_mnp(struct drm_device *, struct pll_lims *pll_lim,

Completed in 170 milliseconds