Lines Matching defs:pll
15 #include "clk-pll.h"
42 struct clk_pll *pll;
47 pll = devm_kzalloc(dev, sizeof(*pll), GFP_KERNEL);
48 if (!pll)
60 pll->l_reg = 0x04;
61 pll->m_reg = 0x08;
62 pll->n_reg = 0x0c;
63 pll->config_reg = 0x14;
64 pll->mode_reg = 0x00;
65 pll->status_reg = 0x1c;
66 pll->status_bit = 16;
67 pll->freq_tbl = a53pll_freq;
74 pll->clkr.hw.init = &init;
76 ret = devm_clk_register_regmap(dev, &pll->clkr);
83 &pll->clkr.hw);