/drivers/clk/bcm/ |
D | clk-iproc-pll.c | 95 u64 ndiv_int, ndiv_frac, residual; in pll_calc_param() local 97 ndiv_int = target_rate / parent_rate; in pll_calc_param() 99 if (!ndiv_int || (ndiv_int > 255)) in pll_calc_param() 102 residual = target_rate - (ndiv_int * parent_rate); in pll_calc_param() 112 vco_out->ndiv_int = ndiv_int; in pll_calc_param() 116 vco_out->rate = vco_out->ndiv_int * parent_rate; in pll_calc_param() 291 u32 ndiv_int; in pll_fractional_change_only() local 299 val = readl(pll->control_base + ctrl->ndiv_int.offset); in pll_fractional_change_only() 300 ndiv_int = (val >> ctrl->ndiv_int.shift) & in pll_fractional_change_only() 301 bit_mask(ctrl->ndiv_int.width); in pll_fractional_change_only() [all …]
|
D | clk-iproc-armpll.c | 154 unsigned int ndiv_int, ndiv_frac, ndiv; in __get_ndiv() local 162 ndiv_int = (val >> IPROC_CLK_PLLARM_NDIV_INT_OFFSET_SHIFT) & in __get_ndiv() 164 if (ndiv_int == 0) in __get_ndiv() 165 ndiv_int = 256; in __get_ndiv() 171 ndiv_int = (val >> IPROC_CLK_PLLARMA_NDIV_INT_SHIFT) & in __get_ndiv() 173 if (ndiv_int == 0) in __get_ndiv() 174 ndiv_int = 1024; in __get_ndiv() 180 ndiv = (ndiv_int << 20) | ndiv_frac; in __get_ndiv()
|
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),
|
D | clk-ns2.c | 46 .ndiv_int = REG_VAL(0x8, 4, 10), 109 .ndiv_int = REG_VAL(0x8, 4, 10), 171 .ndiv_int = REG_VAL(0x8, 4, 10), 233 .ndiv_int = REG_VAL(0x8, 4, 10),
|
D | clk-cygnus.c | 64 .ndiv_int = REG_VAL(0x10, 20, 10), 123 .ndiv_int = REG_VAL(0x4, 16, 10), 200 .ndiv_int = REG_VAL(0x10, 20, 10), 279 .ndiv_int = REG_VAL(0x8, 0, 10),
|
D | clk-iproc.h | 96 unsigned int ndiv_int; member 172 struct iproc_clk_reg_op ndiv_int; member
|
D | clk-nsp.c | 50 .ndiv_int = REG_VAL(0x14, 20, 10), 107 .ndiv_int = REG_VAL(0x4, 20, 8),
|
/drivers/ssb/ |
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 …]
|