Lines Matching refs:no
44 u32 no; member
79 .nr = _nr, .nf = (u32)((u64)hz * _nr * _no / OSC_HZ), .no = _no};\
97 uint output_hz = vco_hz / div->no; in rkclk_set_pll()
100 (uint)pll, div->nf, div->nr, div->no, vco_hz, output_hz); in rkclk_set_pll()
103 (div->no == 1 || !(div->no % 2))); in rkclk_set_pll()
110 ((div->nr - 1) << CLKR_SHIFT) | (div->no - 1)); in rkclk_set_pll()
128 {.nf = 75, .nr = 1, .no = 6}, in rkclk_configure_ddr()
129 {.nf = 400, .nr = 9, .no = 2}, in rkclk_configure_ddr()
130 {.nf = 500, .nr = 9, .no = 2}, in rkclk_configure_ddr()
131 {.nf = 100, .nr = 3, .no = 1}, in rkclk_configure_ddr()
174 {.nf = 50, .nr = 1, .no = 2}, in rkclk_configure_cpu()
175 {.nf = 67, .nr = 1, .no = 1}, in rkclk_configure_cpu()
233 uint32_t nr, no, nf; in rkclk_pll_get_rate() local
251 no = ((con >> CLKOD_SHIFT) & CLKOD_MASK) + 1; in rkclk_pll_get_rate()
256 return (24 * nf / (nr * no)) * 1000000; in rkclk_pll_get_rate()