/linux/drivers/clk/bcm/ |
H A D | clk-iproc-pll.c | 85 u64 ndiv_int, ndiv_frac, residual; in pll_calc_param() local 87 ndiv_int = target_rate / parent_rate; in pll_calc_param() 89 if (!ndiv_int || (ndiv_int > 255)) in pll_calc_param() 92 residual = target_rate - (ndiv_int * parent_rate); in pll_calc_param() 102 vco_out->ndiv_int = ndiv_int; in pll_calc_param() 106 vco_out->rate = vco_out->ndiv_int * parent_rate; in pll_calc_param() 281 u32 ndiv_int; in pll_fractional_change_only() local 289 val = readl(pll->control_base + ctrl->ndiv_int.offset); in pll_fractional_change_only() 290 ndiv_int = (val >> ctrl->ndiv_int.shift) & in pll_fractional_change_only() 291 bit_mask(ctrl->ndiv_int.width); in pll_fractional_change_only() [all …]
|
H A D | clk-iproc-armpll.c | 144 unsigned int ndiv_int, ndiv_frac, ndiv; in __get_ndiv() local 152 ndiv_int = (val >> IPROC_CLK_PLLARM_NDIV_INT_OFFSET_SHIFT) & in __get_ndiv() 154 if (ndiv_int == 0) in __get_ndiv() 155 ndiv_int = 256; in __get_ndiv() 161 ndiv_int = (val >> IPROC_CLK_PLLARMA_NDIV_INT_SHIFT) & in __get_ndiv() 163 if (ndiv_int == 0) in __get_ndiv() 164 ndiv_int = 1024; in __get_ndiv() 170 ndiv = (ndiv_int << 20) | ndiv_frac; in __get_ndiv()
|
H A D | clk-sr.c | 41 .ndiv_int = REG_VAL(0x10, 20, 10), 101 .ndiv_int = REG_VAL(0x10, 20, 10), 160 .ndiv_int = REG_VAL(0x10, 20, 10), 195 .ndiv_int = REG_VAL(0x10, 20, 10), 249 .ndiv_int = REG_VAL(0x10, 20, 10), 286 .ndiv_int = REG_VAL(0x4, 16, 10), 331 .ndiv_int = REG_VAL(0x4, 16, 10), 370 .ndiv_int = REG_VAL(0x4, 16, 10),
|
H A D | clk-ns2.c | 36 .ndiv_int = REG_VAL(0x8, 4, 10), 99 .ndiv_int = REG_VAL(0x8, 4, 10), 161 .ndiv_int = REG_VAL(0x8, 4, 10), 223 .ndiv_int = REG_VAL(0x8, 4, 10),
|
H A D | clk-cygnus.c | 54 .ndiv_int = REG_VAL(0x10, 20, 10), 113 .ndiv_int = REG_VAL(0x4, 16, 10), 190 .ndiv_int = REG_VAL(0x10, 20, 10), 269 .ndiv_int = REG_VAL(0x8, 0, 10),
|
H A D | clk-iproc.h | 86 unsigned int ndiv_int; member 162 struct iproc_clk_reg_op ndiv_int; member
|
H A D | clk-nsp.c | 40 .ndiv_int = REG_VAL(0x14, 20, 10), 97 .ndiv_int = REG_VAL(0x4, 20, 8),
|
/linux/drivers/ssb/ |
H A D | driver_chipcommon_pmu.c | 180 u8 ndiv_int; member 187 { .freq = 12000, .xf = 1, .p1div = 3, .p2div = 22, .ndiv_int = 0x9, .ndiv_frac = 0xFFFFEF, }, 188 { .freq = 13000, .xf = 2, .p1div = 1, .p2div = 6, .ndiv_int = 0xb, .ndiv_frac = 0x483483, }, 189 { .freq = 14400, .xf = 3, .p1div = 1, .p2div = 10, .ndiv_int = 0xa, .ndiv_frac = 0x1C71C7, }, 190 { .freq = 15360, .xf = 4, .p1div = 1, .p2div = 5, .ndiv_int = 0xb, .ndiv_frac = 0x755555, }, 191 { .freq = 16200, .xf = 5, .p1div = 1, .p2div = 10, .ndiv_int = 0x5, .ndiv_frac = 0x6E9E06, }, 192 { .freq = 16800, .xf = 6, .p1div = 1, .p2div = 10, .ndiv_int = 0x5, .ndiv_frac = 0x3CF3CF, }, 193 { .freq = 19200, .xf = 7, .p1div = 1, .p2div = 9, .ndiv_int = 0x5, .ndiv_frac = 0x17B425, }, 194 { .freq = 19800, .xf = 8, .p1div = 1, .p2div = 11, .ndiv_int = 0x4, .ndiv_frac = 0xA57EB, }, 195 { .freq = 20000, .xf = 9, .p1div = 1, .p2div = 11, .ndiv_int = 0x4, .ndiv_frac = 0, }, [all …]
|