2 * Copyright (c) 2014 MediaTek Inc.
3 * Author: Flora Fu <flora.fu@mediatek.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/regmap.h>
19 #include <linux/mfd/mt6397/core.h>
20 #include <linux/mfd/mt6397/registers.h>
21 #include <linux/regulator/driver.h>
22 #include <linux/regulator/machine.h>
23 #include <linux/regulator/mt6397-regulator.h>
24 #include <linux/regulator/of_regulator.h>
26 #define MT6397_BUCK_MODE_AUTO 0
27 #define MT6397_BUCK_MODE_FORCE_PWM 1
30 * MT6397 regulators' information
32 * @desc: standard fields of regulator description.
33 * @qi: Mask for query enable signal status of regulators
34 * @vselon_reg: Register sections for hardware control mode of bucks
35 * @vselctrl_reg: Register for controlling the buck control mode.
36 * @vselctrl_mask: Mask for query buck's voltage control mode.
38 struct mt6397_regulator_info
{
39 struct regulator_desc desc
;
49 #define MT6397_BUCK(match, vreg, min, max, step, volt_ranges, enreg, \
50 vosel, vosel_mask, voselon, vosel_ctrl, _modeset_reg, \
52 [MT6397_ID_##vreg] = { \
55 .of_match = of_match_ptr(match), \
56 .ops = &mt6397_volt_range_ops, \
57 .type = REGULATOR_VOLTAGE, \
58 .id = MT6397_ID_##vreg, \
59 .owner = THIS_MODULE, \
60 .n_voltages = (max - min)/step + 1, \
61 .linear_ranges = volt_ranges, \
62 .n_linear_ranges = ARRAY_SIZE(volt_ranges), \
64 .vsel_mask = vosel_mask, \
65 .enable_reg = enreg, \
66 .enable_mask = BIT(0), \
69 .vselon_reg = voselon, \
70 .vselctrl_reg = vosel_ctrl, \
71 .vselctrl_mask = BIT(1), \
72 .modeset_reg = _modeset_reg, \
73 .modeset_mask = BIT(_modeset_shift), \
74 .modeset_shift = _modeset_shift \
77 #define MT6397_LDO(match, vreg, ldo_volt_table, enreg, enbit, vosel, \
79 [MT6397_ID_##vreg] = { \
82 .of_match = of_match_ptr(match), \
83 .ops = &mt6397_volt_table_ops, \
84 .type = REGULATOR_VOLTAGE, \
85 .id = MT6397_ID_##vreg, \
86 .owner = THIS_MODULE, \
87 .n_voltages = ARRAY_SIZE(ldo_volt_table), \
88 .volt_table = ldo_volt_table, \
90 .vsel_mask = vosel_mask, \
91 .enable_reg = enreg, \
92 .enable_mask = BIT(enbit), \
97 #define MT6397_REG_FIXED(match, vreg, enreg, enbit, volt) \
98 [MT6397_ID_##vreg] = { \
101 .of_match = of_match_ptr(match), \
102 .ops = &mt6397_volt_fixed_ops, \
103 .type = REGULATOR_VOLTAGE, \
104 .id = MT6397_ID_##vreg, \
105 .owner = THIS_MODULE, \
107 .enable_reg = enreg, \
108 .enable_mask = BIT(enbit), \
114 static const struct regulator_linear_range buck_volt_range1
[] = {
115 REGULATOR_LINEAR_RANGE(700000, 0, 0x7f, 6250),
118 static const struct regulator_linear_range buck_volt_range2
[] = {
119 REGULATOR_LINEAR_RANGE(800000, 0, 0x7f, 6250),
122 static const struct regulator_linear_range buck_volt_range3
[] = {
123 REGULATOR_LINEAR_RANGE(1500000, 0, 0x1f, 20000),
126 static const u32 ldo_volt_table1
[] = {
127 1500000, 1800000, 2500000, 2800000,
130 static const u32 ldo_volt_table2
[] = {
134 static const u32 ldo_volt_table3
[] = {
138 static const u32 ldo_volt_table4
[] = {
139 1220000, 1300000, 1500000, 1800000, 2500000, 2800000, 3000000, 3300000,
142 static const u32 ldo_volt_table5
[] = {
143 1200000, 1300000, 1500000, 1800000, 2500000, 2800000, 3000000, 3300000,
146 static const u32 ldo_volt_table5_v2
[] = {
147 1200000, 1000000, 1500000, 1800000, 2500000, 2800000, 3000000, 3300000,
150 static const u32 ldo_volt_table6
[] = {
151 1200000, 1300000, 1500000, 1800000, 2500000, 2800000, 3000000, 2000000,
154 static const u32 ldo_volt_table7
[] = {
155 1300000, 1500000, 1800000, 2000000, 2500000, 2800000, 3000000, 3300000,
158 static int mt6397_regulator_set_mode(struct regulator_dev
*rdev
,
161 struct mt6397_regulator_info
*info
= rdev_get_drvdata(rdev
);
165 case REGULATOR_MODE_FAST
:
166 val
= MT6397_BUCK_MODE_FORCE_PWM
;
168 case REGULATOR_MODE_NORMAL
:
169 val
= MT6397_BUCK_MODE_AUTO
;
176 dev_dbg(&rdev
->dev
, "mt6397 buck set_mode %#x, %#x, %#x, %#x\n",
177 info
->modeset_reg
, info
->modeset_mask
,
178 info
->modeset_shift
, val
);
180 val
<<= info
->modeset_shift
;
181 ret
= regmap_update_bits(rdev
->regmap
, info
->modeset_reg
,
182 info
->modeset_mask
, val
);
186 "Failed to set mt6397 buck mode: %d\n", ret
);
193 static unsigned int mt6397_regulator_get_mode(struct regulator_dev
*rdev
)
195 struct mt6397_regulator_info
*info
= rdev_get_drvdata(rdev
);
198 ret
= regmap_read(rdev
->regmap
, info
->modeset_reg
, ®val
);
201 "Failed to get mt6397 buck mode: %d\n", ret
);
205 switch ((regval
& info
->modeset_mask
) >> info
->modeset_shift
) {
206 case MT6397_BUCK_MODE_AUTO
:
207 return REGULATOR_MODE_NORMAL
;
208 case MT6397_BUCK_MODE_FORCE_PWM
:
209 return REGULATOR_MODE_FAST
;
215 static int mt6397_get_status(struct regulator_dev
*rdev
)
219 struct mt6397_regulator_info
*info
= rdev_get_drvdata(rdev
);
221 ret
= regmap_read(rdev
->regmap
, info
->desc
.enable_reg
, ®val
);
223 dev_err(&rdev
->dev
, "Failed to get enable reg: %d\n", ret
);
227 return (regval
& info
->qi
) ? REGULATOR_STATUS_ON
: REGULATOR_STATUS_OFF
;
230 static const struct regulator_ops mt6397_volt_range_ops
= {
231 .list_voltage
= regulator_list_voltage_linear_range
,
232 .map_voltage
= regulator_map_voltage_linear_range
,
233 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
234 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
235 .set_voltage_time_sel
= regulator_set_voltage_time_sel
,
236 .enable
= regulator_enable_regmap
,
237 .disable
= regulator_disable_regmap
,
238 .is_enabled
= regulator_is_enabled_regmap
,
239 .get_status
= mt6397_get_status
,
240 .set_mode
= mt6397_regulator_set_mode
,
241 .get_mode
= mt6397_regulator_get_mode
,
244 static const struct regulator_ops mt6397_volt_table_ops
= {
245 .list_voltage
= regulator_list_voltage_table
,
246 .map_voltage
= regulator_map_voltage_iterate
,
247 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
248 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
249 .set_voltage_time_sel
= regulator_set_voltage_time_sel
,
250 .enable
= regulator_enable_regmap
,
251 .disable
= regulator_disable_regmap
,
252 .is_enabled
= regulator_is_enabled_regmap
,
253 .get_status
= mt6397_get_status
,
256 static const struct regulator_ops mt6397_volt_fixed_ops
= {
257 .list_voltage
= regulator_list_voltage_linear
,
258 .enable
= regulator_enable_regmap
,
259 .disable
= regulator_disable_regmap
,
260 .is_enabled
= regulator_is_enabled_regmap
,
261 .get_status
= mt6397_get_status
,
264 /* The array is indexed by id(MT6397_ID_XXX) */
265 static struct mt6397_regulator_info mt6397_regulators
[] = {
266 MT6397_BUCK("buck_vpca15", VPCA15
, 700000, 1493750, 6250,
267 buck_volt_range1
, MT6397_VCA15_CON7
, MT6397_VCA15_CON9
, 0x7f,
268 MT6397_VCA15_CON10
, MT6397_VCA15_CON5
, MT6397_VCA15_CON2
, 11),
269 MT6397_BUCK("buck_vpca7", VPCA7
, 700000, 1493750, 6250,
270 buck_volt_range1
, MT6397_VPCA7_CON7
, MT6397_VPCA7_CON9
, 0x7f,
271 MT6397_VPCA7_CON10
, MT6397_VPCA7_CON5
, MT6397_VPCA7_CON2
, 8),
272 MT6397_BUCK("buck_vsramca15", VSRAMCA15
, 700000, 1493750, 6250,
273 buck_volt_range1
, MT6397_VSRMCA15_CON7
, MT6397_VSRMCA15_CON9
,
274 0x7f, MT6397_VSRMCA15_CON10
, MT6397_VSRMCA15_CON5
,
275 MT6397_VSRMCA15_CON2
, 8),
276 MT6397_BUCK("buck_vsramca7", VSRAMCA7
, 700000, 1493750, 6250,
277 buck_volt_range1
, MT6397_VSRMCA7_CON7
, MT6397_VSRMCA7_CON9
,
278 0x7f, MT6397_VSRMCA7_CON10
, MT6397_VSRMCA7_CON5
,
279 MT6397_VSRMCA7_CON2
, 8),
280 MT6397_BUCK("buck_vcore", VCORE
, 700000, 1493750, 6250,
281 buck_volt_range1
, MT6397_VCORE_CON7
, MT6397_VCORE_CON9
, 0x7f,
282 MT6397_VCORE_CON10
, MT6397_VCORE_CON5
, MT6397_VCORE_CON2
, 8),
283 MT6397_BUCK("buck_vgpu", VGPU
, 700000, 1493750, 6250, buck_volt_range1
,
284 MT6397_VGPU_CON7
, MT6397_VGPU_CON9
, 0x7f,
285 MT6397_VGPU_CON10
, MT6397_VGPU_CON5
, MT6397_VGPU_CON2
, 8),
286 MT6397_BUCK("buck_vdrm", VDRM
, 800000, 1593750, 6250, buck_volt_range2
,
287 MT6397_VDRM_CON7
, MT6397_VDRM_CON9
, 0x7f,
288 MT6397_VDRM_CON10
, MT6397_VDRM_CON5
, MT6397_VDRM_CON2
, 8),
289 MT6397_BUCK("buck_vio18", VIO18
, 1500000, 2120000, 20000,
290 buck_volt_range3
, MT6397_VIO18_CON7
, MT6397_VIO18_CON9
, 0x1f,
291 MT6397_VIO18_CON10
, MT6397_VIO18_CON5
, MT6397_VIO18_CON2
, 8),
292 MT6397_REG_FIXED("ldo_vtcxo", VTCXO
, MT6397_ANALDO_CON0
, 10, 2800000),
293 MT6397_REG_FIXED("ldo_va28", VA28
, MT6397_ANALDO_CON1
, 14, 2800000),
294 MT6397_LDO("ldo_vcama", VCAMA
, ldo_volt_table1
,
295 MT6397_ANALDO_CON2
, 15, MT6397_ANALDO_CON6
, 0xC0),
296 MT6397_REG_FIXED("ldo_vio28", VIO28
, MT6397_DIGLDO_CON0
, 14, 2800000),
297 MT6397_REG_FIXED("ldo_vusb", VUSB
, MT6397_DIGLDO_CON1
, 14, 3300000),
298 MT6397_LDO("ldo_vmc", VMC
, ldo_volt_table2
,
299 MT6397_DIGLDO_CON2
, 12, MT6397_DIGLDO_CON29
, 0x10),
300 MT6397_LDO("ldo_vmch", VMCH
, ldo_volt_table3
,
301 MT6397_DIGLDO_CON3
, 14, MT6397_DIGLDO_CON17
, 0x80),
302 MT6397_LDO("ldo_vemc3v3", VEMC3V3
, ldo_volt_table3
,
303 MT6397_DIGLDO_CON4
, 14, MT6397_DIGLDO_CON18
, 0x10),
304 MT6397_LDO("ldo_vgp1", VGP1
, ldo_volt_table4
,
305 MT6397_DIGLDO_CON5
, 15, MT6397_DIGLDO_CON19
, 0xE0),
306 MT6397_LDO("ldo_vgp2", VGP2
, ldo_volt_table5
,
307 MT6397_DIGLDO_CON6
, 15, MT6397_DIGLDO_CON20
, 0xE0),
308 MT6397_LDO("ldo_vgp3", VGP3
, ldo_volt_table5
,
309 MT6397_DIGLDO_CON7
, 15, MT6397_DIGLDO_CON21
, 0xE0),
310 MT6397_LDO("ldo_vgp4", VGP4
, ldo_volt_table5
,
311 MT6397_DIGLDO_CON8
, 15, MT6397_DIGLDO_CON22
, 0xE0),
312 MT6397_LDO("ldo_vgp5", VGP5
, ldo_volt_table6
,
313 MT6397_DIGLDO_CON9
, 15, MT6397_DIGLDO_CON23
, 0xE0),
314 MT6397_LDO("ldo_vgp6", VGP6
, ldo_volt_table5
,
315 MT6397_DIGLDO_CON10
, 15, MT6397_DIGLDO_CON33
, 0xE0),
316 MT6397_LDO("ldo_vibr", VIBR
, ldo_volt_table7
,
317 MT6397_DIGLDO_CON24
, 15, MT6397_DIGLDO_CON25
, 0xE00),
320 static int mt6397_set_buck_vosel_reg(struct platform_device
*pdev
)
322 struct mt6397_chip
*mt6397
= dev_get_drvdata(pdev
->dev
.parent
);
326 for (i
= 0; i
< MT6397_MAX_REGULATOR
; i
++) {
327 if (mt6397_regulators
[i
].vselctrl_reg
) {
328 if (regmap_read(mt6397
->regmap
,
329 mt6397_regulators
[i
].vselctrl_reg
,
332 "Failed to read buck ctrl\n");
336 if (regval
& mt6397_regulators
[i
].vselctrl_mask
) {
337 mt6397_regulators
[i
].desc
.vsel_reg
=
338 mt6397_regulators
[i
].vselon_reg
;
346 static int mt6397_regulator_probe(struct platform_device
*pdev
)
348 struct mt6397_chip
*mt6397
= dev_get_drvdata(pdev
->dev
.parent
);
349 struct regulator_config config
= {};
350 struct regulator_dev
*rdev
;
352 u32 reg_value
, version
;
354 /* Query buck controller to select activated voltage register part */
355 if (mt6397_set_buck_vosel_reg(pdev
))
358 /* Read PMIC chip revision to update constraints and voltage table */
359 if (regmap_read(mt6397
->regmap
, MT6397_CID
, ®_value
) < 0) {
360 dev_err(&pdev
->dev
, "Failed to read Chip ID\n");
363 dev_info(&pdev
->dev
, "Chip ID = 0x%x\n", reg_value
);
365 version
= (reg_value
& 0xFF);
367 case MT6397_REGULATOR_ID91
:
368 mt6397_regulators
[MT6397_ID_VGP2
].desc
.volt_table
=
375 for (i
= 0; i
< MT6397_MAX_REGULATOR
; i
++) {
376 config
.dev
= &pdev
->dev
;
377 config
.driver_data
= &mt6397_regulators
[i
];
378 config
.regmap
= mt6397
->regmap
;
379 rdev
= devm_regulator_register(&pdev
->dev
,
380 &mt6397_regulators
[i
].desc
, &config
);
382 dev_err(&pdev
->dev
, "failed to register %s\n",
383 mt6397_regulators
[i
].desc
.name
);
384 return PTR_ERR(rdev
);
391 static const struct platform_device_id mt6397_platform_ids
[] = {
392 {"mt6397-regulator", 0},
395 MODULE_DEVICE_TABLE(platform
, mt6397_platform_ids
);
397 static const struct of_device_id mt6397_of_match
[] = {
398 { .compatible
= "mediatek,mt6397-regulator", },
401 MODULE_DEVICE_TABLE(of
, mt6397_of_match
);
403 static struct platform_driver mt6397_regulator_driver
= {
405 .name
= "mt6397-regulator",
406 .of_match_table
= of_match_ptr(mt6397_of_match
),
408 .probe
= mt6397_regulator_probe
,
409 .id_table
= mt6397_platform_ids
,
412 module_platform_driver(mt6397_regulator_driver
);
414 MODULE_AUTHOR("Flora Fu <flora.fu@mediatek.com>");
415 MODULE_DESCRIPTION("Regulator Driver for MediaTek MT6397 PMIC");
416 MODULE_LICENSE("GPL");