Lines Matching refs:pll
2235 const struct dib0090_pll *pll = state->current_pll_table_index; in dib0090_tune() local
2349 pll = dib0090_pll_table; in dib0090_tune()
2351 pll = dib0090_p1g_pll_table; in dib0090_tune()
2356 while (state->rf_request > pll->max_freq) in dib0090_tune()
2357 pll++; in dib0090_tune()
2360 state->current_pll_table_index = pll; in dib0090_tune()
2364 VCOF_kHz = (pll->hfdiv * state->rf_request) * 2; in dib0090_tune()
2370 FBDiv = (VCOF_kHz / pll->topresc / FREF); in dib0090_tune()
2371 Rest = (VCOF_kHz / pll->topresc) - FBDiv * FREF; in dib0090_tune()
2390 if (pll->vco_band) in dib0090_tune()
2395 if (pll->vco_band) in dib0090_tune()
2413 …lo5 |= (pll->hfdiv_code << 11) | (pll->vco_band << 7); /* bit 15 is the split to the slave, we do … in dib0090_tune()
2470 dprintk("HFDIV code: %d", (u32) pll->hfdiv_code); in dib0090_tune()
2471 dprintk("VCO = %d", (u32) pll->vco_band); in dib0090_tune()
2472 …dprintk("VCOF in kHz: %d ((%d*%d) << 1))", (u32) ((pll->hfdiv * state->rf_request) * 2), (u32) pll… in dib0090_tune()