Lines Matching defs:regmap
11 #include <linux/regmap.h>
18 #include "clk-regmap.h"
19 #include "clk-regmap-divider.h"
20 #include "clk-regmap-mux.h"
21 #include "clk-regmap-phy-mux.h"
3874 struct regmap *regmap;
3877 regmap = qcom_cc_map(pdev, &gcc_sm6375_desc);
3878 if (IS_ERR(regmap))
3879 return PTR_ERR(regmap);
3881 ret = qcom_cc_register_rcg_dfs(regmap, gcc_dfs_clocks, ARRAY_SIZE(gcc_dfs_clocks));
3889 regmap_update_bits(regmap, 0x17028, BIT(0), BIT(0));
3890 regmap_update_bits(regmap, 0x2b004, BIT(0), BIT(0));
3891 regmap_update_bits(regmap, 0x1702c, BIT(0), BIT(0));
3893 clk_lucid_pll_configure(&gpll10, regmap, &gpll10_config);
3894 clk_lucid_pll_configure(&gpll11, regmap, &gpll11_config);
3895 clk_lucid_pll_configure(&gpll8, regmap, &gpll8_config);
3896 clk_zonda_pll_configure(&gpll9, regmap, &gpll9_config);
3898 return qcom_cc_really_probe(pdev, &gcc_sm6375_desc, regmap);