Lines Matching defs:regmap
13 #include <linux/regmap.h>
20 #include "clk-regmap.h"
25 #include "clk-regmap-divider.h"
26 #include "clk-regmap-mux.h"
4582 struct regmap *regmap;
4584 regmap = qcom_cc_map(pdev, &gcc_ipq6018_desc);
4585 if (IS_ERR(regmap))
4586 return PTR_ERR(regmap);
4589 regmap_update_bits(regmap, 0x3e078, BIT(0), 0x0);
4591 regmap_update_bits(regmap, 0x3e078, BIT(2), BIT(2));
4593 regmap_update_bits(regmap, 0x3f078, BIT(0), 0x0);
4595 regmap_update_bits(regmap, 0x3f078, BIT(2), BIT(2));
4598 regmap_update_bits(regmap, 0x2501c, BIT(26), BIT(26));
4600 clk_alpha_pll_configure(&ubi32_pll_main, regmap, &ubi32_pll_config);
4602 clk_alpha_pll_configure(&nss_crypto_pll_main, regmap,
4605 return qcom_cc_really_probe(pdev, &gcc_ipq6018_desc, regmap);