1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2022 Starfive Technology Co., Ltd.
* Author: Mason Huo <mason.huo@starfivetech.com>
*/
#include <linux/err.h>
#include <linux/gpio.h>
#include <linux/i2c.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/regmap.h>
#include <linux/regulator/driver.h>
#include <linux/regulator/machine.h>
#include <linux/regulator/of_regulator.h>
#include <linux/regulator/jh7110.h>
#include <linux/slab.h>
#define JH7110_PM_POWER_SW_0 0x80
#define JH7110_PM_POWER_SW_1 0x81
#define ENABLE_MASK(id) BIT(id)
static const struct regmap_config jh7110_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = JH7110_PM_POWER_SW_1,
.cache_type = REGCACHE_FLAT,
};
static const struct regulator_ops jh7110_ldo_ops = {
.enable = regulator_enable_regmap,
.disable = regulator_disable_regmap,
.is_enabled = regulator_is_enabled_regmap,
};
#define JH7110_LDO(_id, _name, en_reg, en_mask) \
{\
.name = (_name),\
.ops = &jh7110_ldo_ops,\
.of_match = of_match_ptr(_name),\
.regulators_node = of_match_ptr("regulators"),\
.type = REGULATOR_VOLTAGE,\
.id = JH7110_ID_##_id,\
.owner = THIS_MODULE,\
.enable_reg = JH7110_PM_POWER_SW_##en_reg,\
.enable_mask = ENABLE_MASK(en_mask),\
}
static const struct regulator_desc jh7110_regulators[] = {
JH7110_LDO(LDO_REG1, "hdmi_1p8", 0, 0),
JH7110_LDO(LDO_REG2, "mipitx_1p8", 0, 1),
JH7110_LDO(LDO_REG3, "mipirx_1p8", 0, 2),
JH7110_LDO(LDO_REG4, "hdmi_0p9", 0, 3),
JH7110_LDO(LDO_REG5, "mipitx_0p9", 0, 4),
JH7110_LDO(LDO_REG6, "mipirx_0p9", 0, 5),
JH7110_LDO(LDO_REG7, "sdio_vdd", 1, 0),
};
static int jh7110_i2c_probe(struct i2c_client *i2c)
{
struct regulator_config config = { };
struct regulator_dev *rdev;
struct regulator_init_data *init_data;
struct regmap *regmap;
int i, ret;
regmap = devm_regmap_init_i2c(i2c, &jh7110_regmap_config);
if (IS_ERR(regmap)) {
ret = PTR_ERR(regmap);
dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
ret);
return ret;
}
init_data = of_get_regulator_init_data(&i2c->dev, i2c->dev.of_node, NULL);
if (!init_data)
return -ENOMEM;
config.init_data = init_data;
for (i = 0; i < JH7110_MAX_REGULATORS; i++) {
config.dev = &i2c->dev;
config.regmap = regmap;
rdev = devm_regulator_register(&i2c->dev,
&jh7110_regulators[i], &config);
if (IS_ERR(rdev)) {
dev_err(&i2c->dev,
"Failed to register JH7110 regulator\n");
return PTR_ERR(rdev);
}
}
return 0;
}
static const struct i2c_device_id jh7110_i2c_id[] = {
{"jh7110_evb_reg", 0},
{},
};
MODULE_DEVICE_TABLE(i2c, jh7110_i2c_id);
#ifdef CONFIG_OF
static const struct of_device_id jh7110_dt_ids[] = {
{ .compatible = "starfive,jh7110-evb-regulator",
.data = &jh7110_i2c_id[0] },
{},
};
MODULE_DEVICE_TABLE(of, jh7110_dt_ids);
#endif
static struct i2c_driver jh7110_regulator_driver = {
.driver = {
.name = "jh7110-evb-regulator",
.of_match_table = of_match_ptr(jh7110_dt_ids),
},
.probe_new = jh7110_i2c_probe,
.id_table = jh7110_i2c_id,
};
module_i2c_driver(jh7110_regulator_driver);
MODULE_AUTHOR("Mason Huo <mason.huo@starfivetech.com>");
MODULE_DESCRIPTION("Regulator device driver for Starfive JH7110");
MODULE_LICENSE("GPL v2");
|