Lines Matching refs:pll
818 struct bcm2835_pll *pll = container_of(hw, struct bcm2835_pll, hw); in bcm2835_pll_is_on() local
819 struct bcm2835_cprman *cprman = pll->cprman; in bcm2835_pll_is_on()
820 const struct bcm2835_pll_data *data = pll->data; in bcm2835_pll_is_on()
865 struct bcm2835_pll *pll = container_of(hw, struct bcm2835_pll, hw); in bcm2835_pll_get_rate() local
866 struct bcm2835_cprman *cprman = pll->cprman; in bcm2835_pll_get_rate()
867 const struct bcm2835_pll_data *data = pll->data; in bcm2835_pll_get_rate()
889 struct bcm2835_pll *pll = container_of(hw, struct bcm2835_pll, hw); in bcm2835_pll_off() local
890 struct bcm2835_cprman *cprman = pll->cprman; in bcm2835_pll_off()
891 const struct bcm2835_pll_data *data = pll->data; in bcm2835_pll_off()
905 struct bcm2835_pll *pll = container_of(hw, struct bcm2835_pll, hw); in bcm2835_pll_on() local
906 struct bcm2835_cprman *cprman = pll->cprman; in bcm2835_pll_on()
907 const struct bcm2835_pll_data *data = pll->data; in bcm2835_pll_on()
953 struct bcm2835_pll *pll = container_of(hw, struct bcm2835_pll, hw); in bcm2835_pll_set_rate() local
954 struct bcm2835_cprman *cprman = pll->cprman; in bcm2835_pll_set_rate()
955 const struct bcm2835_pll_data *data = pll->data; in bcm2835_pll_set_rate()
1326 struct bcm2835_pll *pll; in bcm2835_register_pll() local
1338 pll = kzalloc(sizeof(*pll), GFP_KERNEL); in bcm2835_register_pll()
1339 if (!pll) in bcm2835_register_pll()
1342 pll->cprman = cprman; in bcm2835_register_pll()
1343 pll->data = data; in bcm2835_register_pll()
1344 pll->hw.init = &init; in bcm2835_register_pll()
1346 return devm_clk_register(cprman->dev, &pll->hw); in bcm2835_register_pll()