4 * Copyright (C) 2014 Texas Instruments Incorporated - https://www.ti.com/
5 * Author: Balaji T K <balajitk@ti.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation version 2.
11 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
12 * kind, whether express or implied; without even the implied warranty
13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <linux/err.h>
19 #include <linux/module.h>
20 #include <linux/mfd/syscon.h>
21 #include <linux/platform_device.h>
22 #include <linux/regulator/driver.h>
23 #include <linux/regulator/machine.h>
24 #include <linux/regulator/of_regulator.h>
25 #include <linux/regmap.h>
26 #include <linux/slab.h>
29 struct pbias_reg_info
{
34 unsigned int enable_time
;
36 const unsigned int *pbias_volt_table
;
40 struct pbias_of_data
{
44 static const unsigned int pbias_volt_table_3_0V
[] = {
49 static const unsigned int pbias_volt_table_3_3V
[] = {
54 static const struct regulator_ops pbias_regulator_voltage_ops
= {
55 .list_voltage
= regulator_list_voltage_table
,
56 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
57 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
58 .enable
= regulator_enable_regmap
,
59 .disable
= regulator_disable_regmap
,
60 .is_enabled
= regulator_is_enabled_regmap
,
63 static const struct pbias_reg_info pbias_mmc_omap2430
= {
65 .enable_mask
= BIT(1),
69 .pbias_volt_table
= pbias_volt_table_3_0V
,
71 .name
= "pbias_mmc_omap2430"
74 static const struct pbias_reg_info pbias_sim_omap3
= {
76 .enable_mask
= BIT(9),
79 .pbias_volt_table
= pbias_volt_table_3_0V
,
81 .name
= "pbias_sim_omap3"
84 static const struct pbias_reg_info pbias_mmc_omap4
= {
85 .enable
= BIT(26) | BIT(22),
86 .enable_mask
= BIT(26) | BIT(25) | BIT(22),
87 .disable_val
= BIT(25),
90 .pbias_volt_table
= pbias_volt_table_3_0V
,
92 .name
= "pbias_mmc_omap4"
95 static const struct pbias_reg_info pbias_mmc_omap5
= {
96 .enable
= BIT(27) | BIT(26),
97 .enable_mask
= BIT(27) | BIT(25) | BIT(26),
98 .disable_val
= BIT(25),
101 .pbias_volt_table
= pbias_volt_table_3_3V
,
103 .name
= "pbias_mmc_omap5"
106 static struct of_regulator_match pbias_matches
[] = {
107 { .name
= "pbias_mmc_omap2430", .driver_data
= (void *)&pbias_mmc_omap2430
},
108 { .name
= "pbias_sim_omap3", .driver_data
= (void *)&pbias_sim_omap3
},
109 { .name
= "pbias_mmc_omap4", .driver_data
= (void *)&pbias_mmc_omap4
},
110 { .name
= "pbias_mmc_omap5", .driver_data
= (void *)&pbias_mmc_omap5
},
112 #define PBIAS_NUM_REGS ARRAY_SIZE(pbias_matches)
114 /* Offset from SCM general area (and syscon) base */
116 static const struct pbias_of_data pbias_of_data_omap2
= {
120 static const struct pbias_of_data pbias_of_data_omap3
= {
124 static const struct pbias_of_data pbias_of_data_omap4
= {
128 static const struct pbias_of_data pbias_of_data_omap5
= {
132 static const struct pbias_of_data pbias_of_data_dra7
= {
136 static const struct of_device_id pbias_of_match
[] = {
137 { .compatible
= "ti,pbias-omap", },
138 { .compatible
= "ti,pbias-omap2", .data
= &pbias_of_data_omap2
, },
139 { .compatible
= "ti,pbias-omap3", .data
= &pbias_of_data_omap3
, },
140 { .compatible
= "ti,pbias-omap4", .data
= &pbias_of_data_omap4
, },
141 { .compatible
= "ti,pbias-omap5", .data
= &pbias_of_data_omap5
, },
142 { .compatible
= "ti,pbias-dra7", .data
= &pbias_of_data_dra7
, },
145 MODULE_DEVICE_TABLE(of
, pbias_of_match
);
147 static int pbias_regulator_probe(struct platform_device
*pdev
)
149 struct device_node
*np
= pdev
->dev
.of_node
;
150 struct resource
*res
;
151 struct regulator_config cfg
= { };
152 struct regulator_desc
*desc
;
153 struct regulator_dev
*rdev
;
154 struct regmap
*syscon
;
155 const struct pbias_reg_info
*info
;
157 const struct pbias_of_data
*data
;
160 count
= of_regulator_match(&pdev
->dev
, np
, pbias_matches
,
165 desc
= devm_kcalloc(&pdev
->dev
, count
, sizeof(*desc
), GFP_KERNEL
);
169 syscon
= syscon_regmap_lookup_by_phandle(np
, "syscon");
171 return PTR_ERR(syscon
);
173 data
= of_device_get_match_data(&pdev
->dev
);
175 offset
= data
->offset
;
177 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
183 "using legacy dt data for pbias offset\n");
187 cfg
.dev
= &pdev
->dev
;
189 for (idx
= 0; idx
< PBIAS_NUM_REGS
&& count
; idx
++) {
190 if (!pbias_matches
[idx
].init_data
||
191 !pbias_matches
[idx
].of_node
)
194 info
= pbias_matches
[idx
].driver_data
;
198 desc
->name
= info
->name
;
199 desc
->owner
= THIS_MODULE
;
200 desc
->type
= REGULATOR_VOLTAGE
;
201 desc
->ops
= &pbias_regulator_voltage_ops
;
202 desc
->volt_table
= info
->pbias_volt_table
;
203 desc
->n_voltages
= info
->n_voltages
;
204 desc
->enable_time
= info
->enable_time
;
205 desc
->vsel_reg
= offset
;
206 desc
->vsel_mask
= info
->vmode
;
207 desc
->enable_reg
= offset
;
208 desc
->enable_mask
= info
->enable_mask
;
209 desc
->enable_val
= info
->enable
;
210 desc
->disable_val
= info
->disable_val
;
212 cfg
.init_data
= pbias_matches
[idx
].init_data
;
213 cfg
.of_node
= pbias_matches
[idx
].of_node
;
215 rdev
= devm_regulator_register(&pdev
->dev
, desc
, &cfg
);
219 "Failed to register regulator: %d\n", ret
);
229 static struct platform_driver pbias_regulator_driver
= {
230 .probe
= pbias_regulator_probe
,
232 .name
= "pbias-regulator",
233 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
234 .of_match_table
= of_match_ptr(pbias_of_match
),
238 module_platform_driver(pbias_regulator_driver
);
240 MODULE_AUTHOR("Balaji T K <balajitk@ti.com>");
241 MODULE_DESCRIPTION("pbias voltage regulator");
242 MODULE_LICENSE("GPL");
243 MODULE_ALIAS("platform:pbias-regulator");