Lines Matching defs:regmap
14 #include <linux/regmap.h>
21 #include "clk-regmap.h"
2990 struct regmap *regmap;
2993 regmap = qcom_cc_map(pdev, &gcc_sm7150_desc);
2994 if (IS_ERR(regmap))
2995 return PTR_ERR(regmap);
3001 regmap_update_bits(regmap, 0x09ffc, 0x3, 0x3);
3002 regmap_update_bits(regmap, 0x4d110, 0x3, 0x3);
3003 regmap_update_bits(regmap, 0x71028, 0x3, 0x3);
3011 regmap_update_bits(regmap, 0x48004, BIT(0), BIT(0));
3012 regmap_update_bits(regmap, 0x0b004, BIT(0), BIT(0));
3013 regmap_update_bits(regmap, 0x0b008, BIT(0), BIT(0));
3014 regmap_update_bits(regmap, 0x0b00c, BIT(0), BIT(0));
3015 regmap_update_bits(regmap, 0x0b02c, BIT(0), BIT(0));
3016 regmap_update_bits(regmap, 0x0b028, BIT(0), BIT(0));
3017 regmap_update_bits(regmap, 0x0b030, BIT(0), BIT(0));
3018 regmap_update_bits(regmap, 0x71004, BIT(0), BIT(0));
3020 ret = qcom_cc_register_rcg_dfs(regmap, gcc_sm7150_dfs_desc,
3025 return qcom_cc_really_probe(pdev, &gcc_sm7150_desc, regmap);