Lines Matching defs:regmap
12 #include <linux/regmap.h>
19 #include "clk-regmap.h"
20 #include "clk-regmap-divider.h"
3632 struct regmap *regmap;
3635 regmap = qcom_cc_map(pdev, &gcc_sm8250_desc);
3636 if (IS_ERR(regmap))
3637 return PTR_ERR(regmap);
3643 regmap_update_bits(regmap, 0x4d110, 0x3, 0x3);
3644 regmap_update_bits(regmap, 0x71028, 0x3, 0x3);
3652 regmap_update_bits(regmap, 0x0b004, BIT(0), BIT(0));
3653 regmap_update_bits(regmap, 0x0b008, BIT(0), BIT(0));
3654 regmap_update_bits(regmap, 0x0b00c, BIT(0), BIT(0));
3655 regmap_update_bits(regmap, 0x4818c, BIT(0), BIT(0));
3656 regmap_update_bits(regmap, 0x71004, BIT(0), BIT(0));
3657 regmap_update_bits(regmap, 0x52000, BIT(0), BIT(0));
3659 ret = qcom_cc_register_rcg_dfs(regmap, gcc_dfs_clocks,
3664 return qcom_cc_really_probe(pdev, &gcc_sm8250_desc, regmap);