Lines Matching refs:pll
2237 const struct dib0090_pll *pll = state->current_pll_table_index; in dib0090_tune() local
2351 pll = dib0090_pll_table; in dib0090_tune()
2353 pll = dib0090_p1g_pll_table; in dib0090_tune()
2358 while (state->rf_request > pll->max_freq) in dib0090_tune()
2359 pll++; in dib0090_tune()
2362 state->current_pll_table_index = pll; in dib0090_tune()
2366 VCOF_kHz = (pll->hfdiv * state->rf_request) * 2; in dib0090_tune()
2372 FBDiv = (VCOF_kHz / pll->topresc / FREF); in dib0090_tune()
2373 Rest = (VCOF_kHz / pll->topresc) - FBDiv * FREF; in dib0090_tune()
2392 if (pll->vco_band) in dib0090_tune()
2397 if (pll->vco_band) in dib0090_tune()
2415 …lo5 |= (pll->hfdiv_code << 11) | (pll->vco_band << 7); /* bit 15 is the split to the slave, we do … in dib0090_tune()
2472 dprintk("HFDIV code: %d", (u32) pll->hfdiv_code); in dib0090_tune()
2473 dprintk("VCO = %d", (u32) pll->vco_band); in dib0090_tune()
2474 …dprintk("VCOF in kHz: %d ((%d*%d) << 1))", (u32) ((pll->hfdiv * state->rf_request) * 2), (u32) pll… in dib0090_tune()