Lines Matching defs:regmap
12 #include <linux/regmap.h>
19 #include "clk-regmap.h"
20 #include "clk-regmap-divider.h"
3635 struct regmap *regmap;
3638 regmap = qcom_cc_map(pdev, &gcc_sm8250_desc);
3639 if (IS_ERR(regmap))
3640 return PTR_ERR(regmap);
3646 regmap_update_bits(regmap, 0x4d110, 0x3, 0x3);
3647 regmap_update_bits(regmap, 0x71028, 0x3, 0x3);
3655 regmap_update_bits(regmap, 0x0b004, BIT(0), BIT(0));
3656 regmap_update_bits(regmap, 0x0b008, BIT(0), BIT(0));
3657 regmap_update_bits(regmap, 0x0b00c, BIT(0), BIT(0));
3658 regmap_update_bits(regmap, 0x4818c, BIT(0), BIT(0));
3659 regmap_update_bits(regmap, 0x71004, BIT(0), BIT(0));
3660 regmap_update_bits(regmap, 0x52000, BIT(0), BIT(0));
3662 ret = qcom_cc_register_rcg_dfs(regmap, gcc_dfs_clocks,
3667 return qcom_cc_really_probe(pdev, &gcc_sm8250_desc, regmap);