Lines Matching refs:freq_tbl
41 struct pll_freq_tbl *freq_tbl;
63 freq_tbl = devm_kcalloc(dev, count + 1, sizeof(*freq_tbl), GFP_KERNEL);
64 if (!freq_tbl)
78 freq_tbl[i].freq = freq;
79 freq_tbl[i].l = freq / xo_freq;
80 freq_tbl[i].n = 1;
85 return freq_tbl;
118 pll->freq_tbl = qcom_a53pll_get_freq_tbl(dev);
119 if (!pll->freq_tbl) {
120 /* Fall on a53pll_freq if no freq_tbl is found from OPP */
121 pll->freq_tbl = a53pll_freq;