1 // SPDX-License-Identifier: GPL-2.0
3 // Device driver for regulators in Hi655x IC
5 // Copyright (c) 2016 HiSilicon Ltd.
8 // Chen Feng <puck.chen@hisilicon.com>
9 // Fei Wang <w.f@huawei.com>
11 #include <linux/bitops.h>
12 #include <linux/device.h>
13 #include <linux/err.h>
14 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/regmap.h>
19 #include <linux/regulator/driver.h>
20 #include <linux/regulator/machine.h>
21 #include <linux/regulator/of_regulator.h>
22 #include <linux/mfd/hi655x-pmic.h>
24 struct hi655x_regulator {
25 unsigned int disable_reg;
26 unsigned int status_reg;
27 struct regulator_desc rdesc;
31 static const unsigned int ldo7_voltages[] = {
32 1800000, 1850000, 2850000, 2900000,
33 3000000, 3100000, 3200000, 3300000,
36 static const unsigned int ldo19_voltages[] = {
37 1800000, 1850000, 1900000, 1750000,
38 2800000, 2850000, 2900000, 3000000,
41 static const unsigned int ldo22_voltages[] = {
42 900000, 1000000, 1050000, 1100000,
43 1150000, 1175000, 1185000, 1200000,
46 enum hi655x_regulator_id {
72 static int hi655x_is_enabled(struct regulator_dev *rdev)
74 unsigned int value = 0;
75 const struct hi655x_regulator *regulator = rdev_get_drvdata(rdev);
77 regmap_read(rdev->regmap, regulator->status_reg, &value);
78 return (value & rdev->desc->enable_mask);
81 static int hi655x_disable(struct regulator_dev *rdev)
83 const struct hi655x_regulator *regulator = rdev_get_drvdata(rdev);
85 return regmap_write(rdev->regmap, regulator->disable_reg,
86 rdev->desc->enable_mask);
89 static const struct regulator_ops hi655x_regulator_ops = {
90 .enable = regulator_enable_regmap,
91 .disable = hi655x_disable,
92 .is_enabled = hi655x_is_enabled,
93 .list_voltage = regulator_list_voltage_table,
94 .get_voltage_sel = regulator_get_voltage_sel_regmap,
95 .set_voltage_sel = regulator_set_voltage_sel_regmap,
98 static const struct regulator_ops hi655x_ldo_linear_ops = {
99 .enable = regulator_enable_regmap,
100 .disable = hi655x_disable,
101 .is_enabled = hi655x_is_enabled,
102 .list_voltage = regulator_list_voltage_linear,
103 .get_voltage_sel = regulator_get_voltage_sel_regmap,
104 .set_voltage_sel = regulator_set_voltage_sel_regmap,
107 #define HI655X_LDO(_ID, vreg, vmask, ereg, dreg, \
108 sreg, cmask, vtable) { \
111 .of_match = of_match_ptr(#_ID), \
112 .ops = &hi655x_regulator_ops, \
113 .regulators_node = of_match_ptr("regulators"), \
114 .type = REGULATOR_VOLTAGE, \
115 .id = HI655X_##_ID, \
116 .owner = THIS_MODULE, \
117 .n_voltages = ARRAY_SIZE(vtable), \
118 .volt_table = vtable, \
119 .vsel_reg = HI655X_BUS_ADDR(vreg), \
120 .vsel_mask = vmask, \
121 .enable_reg = HI655X_BUS_ADDR(ereg), \
122 .enable_mask = BIT(cmask), \
124 .disable_reg = HI655X_BUS_ADDR(dreg), \
125 .status_reg = HI655X_BUS_ADDR(sreg), \
128 #define HI655X_LDO_LINEAR(_ID, vreg, vmask, ereg, dreg, \
129 sreg, cmask, minv, nvolt, vstep) { \
132 .of_match = of_match_ptr(#_ID), \
133 .ops = &hi655x_ldo_linear_ops, \
134 .regulators_node = of_match_ptr("regulators"), \
135 .type = REGULATOR_VOLTAGE, \
136 .id = HI655X_##_ID, \
137 .owner = THIS_MODULE, \
139 .n_voltages = nvolt, \
141 .vsel_reg = HI655X_BUS_ADDR(vreg), \
142 .vsel_mask = vmask, \
143 .enable_reg = HI655X_BUS_ADDR(ereg), \
144 .enable_mask = BIT(cmask), \
146 .disable_reg = HI655X_BUS_ADDR(dreg), \
147 .status_reg = HI655X_BUS_ADDR(sreg), \
150 static const struct hi655x_regulator regulators[] = {
151 HI655X_LDO_LINEAR(LDO2, 0x72, 0x07, 0x29, 0x2a, 0x2b, 0x01,
153 HI655X_LDO(LDO7, 0x78, 0x07, 0x29, 0x2a, 0x2b, 0x06, ldo7_voltages),
154 HI655X_LDO(LDO10, 0x78, 0x07, 0x29, 0x2a, 0x2b, 0x01, ldo7_voltages),
155 HI655X_LDO_LINEAR(LDO13, 0x7e, 0x07, 0x2c, 0x2d, 0x2e, 0x04,
157 HI655X_LDO_LINEAR(LDO14, 0x7f, 0x07, 0x2c, 0x2d, 0x2e, 0x05,
159 HI655X_LDO_LINEAR(LDO15, 0x80, 0x07, 0x2c, 0x2d, 0x2e, 0x06,
161 HI655X_LDO_LINEAR(LDO17, 0x82, 0x07, 0x2f, 0x30, 0x31, 0x00,
163 HI655X_LDO(LDO19, 0x84, 0x07, 0x2f, 0x30, 0x31, 0x02, ldo19_voltages),
164 HI655X_LDO_LINEAR(LDO21, 0x86, 0x07, 0x2f, 0x30, 0x31, 0x04,
166 HI655X_LDO(LDO22, 0x87, 0x07, 0x2f, 0x30, 0x31, 0x05, ldo22_voltages),
169 static int hi655x_regulator_probe(struct platform_device *pdev)
172 struct hi655x_pmic *pmic;
173 struct regulator_config config = { };
174 struct regulator_dev *rdev;
176 pmic = dev_get_drvdata(pdev->dev.parent);
178 dev_err(&pdev->dev, "no pmic in the regulator parent node\n");
182 config.dev = pdev->dev.parent;
183 config.regmap = pmic->regmap;
184 for (i = 0; i < ARRAY_SIZE(regulators); i++) {
185 config.driver_data = (void *) ®ulators[i];
187 rdev = devm_regulator_register(&pdev->dev,
188 ®ulators[i].rdesc,
191 dev_err(&pdev->dev, "failed to register regulator %s\n",
192 regulators[i].rdesc.name);
193 return PTR_ERR(rdev);
199 static const struct platform_device_id hi655x_regulator_table[] = {
200 { .name = "hi655x-regulator" },
203 MODULE_DEVICE_TABLE(platform, hi655x_regulator_table);
205 static struct platform_driver hi655x_regulator_driver = {
206 .id_table = hi655x_regulator_table,
208 .name = "hi655x-regulator",
209 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
211 .probe = hi655x_regulator_probe,
213 module_platform_driver(hi655x_regulator_driver);
215 MODULE_AUTHOR("Chen Feng <puck.chen@hisilicon.com>");
216 MODULE_DESCRIPTION("Hisilicon Hi655x regulator driver");
217 MODULE_LICENSE("GPL v2");