Lines Matching refs:pllr
66 unsigned int pllr;
71 regmap_read(regmap, offset, &pllr);
72 div = PLL_DIV(pllr);
73 mul = PLL_MUL(pllr, layout);
280 unsigned int pllr, pllr_out, pllr_count;
286 regmap_read(pll->regmap, PLL_REG(pll->id), &pllr);
288 calc_rate = (pll->pms.parent_rate / PLL_DIV(pllr)) *
289 (PLL_MUL(pllr, pll->layout) + 1);
290 pllr_count = (pllr >> PLL_COUNT_SHIFT) & PLL_MAX_COUNT;
291 pllr_out = (pllr >> PLL_OUT_SHIFT) & out;
321 unsigned int pllr;
342 regmap_read(regmap, offset, &pllr);
343 pll->div = PLL_DIV(pllr);
344 pll->mul = PLL_MUL(pllr, layout);