Lines Matching defs:regmap
12 #include <linux/regmap.h>
19 #include "clk-regmap.h"
24 #include "clk-regmap-divider.h"
25 #include "clk-regmap-mux.h"
4584 struct regmap *regmap;
4586 regmap = qcom_cc_map(pdev, &gcc_ipq6018_desc);
4587 if (IS_ERR(regmap))
4588 return PTR_ERR(regmap);
4591 regmap_update_bits(regmap, 0x3e078, BIT(0), 0x0);
4593 regmap_update_bits(regmap, 0x3e078, BIT(2), BIT(2));
4595 regmap_update_bits(regmap, 0x3f078, BIT(0), 0x0);
4597 regmap_update_bits(regmap, 0x3f078, BIT(2), BIT(2));
4600 regmap_update_bits(regmap, 0x2501c, BIT(26), BIT(26));
4602 clk_alpha_pll_configure(&ubi32_pll_main, regmap, &ubi32_pll_config);
4604 clk_alpha_pll_configure(&nss_crypto_pll_main, regmap,
4607 return qcom_cc_really_probe(pdev, &gcc_ipq6018_desc, regmap);