4 * Copyright 2008 Wolfson Microelectronics PLC.
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * Copyright (c) 2009 Nokia Corporation
9 * Roger Quadros <ext-roger.quadros@nokia.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of the
14 * License, or (at your option) any later version.
16 * This is useful for systems with mixed controllable and
17 * non-controllable regulators, as well as for allowing testing on
18 * systems with no controllable regulators.
21 #include <linux/err.h>
22 #include <linux/mutex.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/regulator/driver.h>
26 #include <linux/regulator/fixed.h>
27 #include <linux/gpio.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
31 struct fixed_voltage_data
{
32 struct regulator_desc desc
;
33 struct regulator_dev
*dev
;
36 unsigned startup_delay
;
41 static int fixed_voltage_is_enabled(struct regulator_dev
*dev
)
43 struct fixed_voltage_data
*data
= rdev_get_drvdata(dev
);
45 return data
->is_enabled
;
48 static int fixed_voltage_enable(struct regulator_dev
*dev
)
50 struct fixed_voltage_data
*data
= rdev_get_drvdata(dev
);
52 if (gpio_is_valid(data
->gpio
)) {
53 gpio_set_value_cansleep(data
->gpio
, data
->enable_high
);
54 data
->is_enabled
= true;
60 static int fixed_voltage_disable(struct regulator_dev
*dev
)
62 struct fixed_voltage_data
*data
= rdev_get_drvdata(dev
);
64 if (gpio_is_valid(data
->gpio
)) {
65 gpio_set_value_cansleep(data
->gpio
, !data
->enable_high
);
66 data
->is_enabled
= false;
72 static int fixed_voltage_enable_time(struct regulator_dev
*dev
)
74 struct fixed_voltage_data
*data
= rdev_get_drvdata(dev
);
76 return data
->startup_delay
;
79 static int fixed_voltage_get_voltage(struct regulator_dev
*dev
)
81 struct fixed_voltage_data
*data
= rdev_get_drvdata(dev
);
83 return data
->microvolts
;
86 static int fixed_voltage_list_voltage(struct regulator_dev
*dev
,
89 struct fixed_voltage_data
*data
= rdev_get_drvdata(dev
);
94 return data
->microvolts
;
97 static struct regulator_ops fixed_voltage_ops
= {
98 .is_enabled
= fixed_voltage_is_enabled
,
99 .enable
= fixed_voltage_enable
,
100 .disable
= fixed_voltage_disable
,
101 .enable_time
= fixed_voltage_enable_time
,
102 .get_voltage
= fixed_voltage_get_voltage
,
103 .list_voltage
= fixed_voltage_list_voltage
,
106 static int __devinit
reg_fixed_voltage_probe(struct platform_device
*pdev
)
108 struct fixed_voltage_config
*config
= pdev
->dev
.platform_data
;
109 struct fixed_voltage_data
*drvdata
;
112 drvdata
= kzalloc(sizeof(struct fixed_voltage_data
), GFP_KERNEL
);
113 if (drvdata
== NULL
) {
114 dev_err(&pdev
->dev
, "Failed to allocate device data\n");
119 drvdata
->desc
.name
= kstrdup(config
->supply_name
, GFP_KERNEL
);
120 if (drvdata
->desc
.name
== NULL
) {
121 dev_err(&pdev
->dev
, "Failed to allocate supply name\n");
125 drvdata
->desc
.type
= REGULATOR_VOLTAGE
;
126 drvdata
->desc
.owner
= THIS_MODULE
;
127 drvdata
->desc
.ops
= &fixed_voltage_ops
;
128 drvdata
->desc
.n_voltages
= 1;
130 drvdata
->microvolts
= config
->microvolts
;
131 drvdata
->gpio
= config
->gpio
;
132 drvdata
->startup_delay
= config
->startup_delay
;
134 if (gpio_is_valid(config
->gpio
)) {
135 drvdata
->enable_high
= config
->enable_high
;
137 /* FIXME: Remove below print warning
139 * config->gpio must be set to -EINVAL by platform code if
140 * GPIO control is not required. However, early adopters
141 * not requiring GPIO control may forget to initialize
142 * config->gpio to -EINVAL. This will cause GPIO 0 to be used
145 * This warning will be removed once there are a couple of users
150 "using GPIO 0 for regulator enable control\n");
152 ret
= gpio_request(config
->gpio
, config
->supply_name
);
155 "Could not obtain regulator enable GPIO %d: %d\n",
160 /* set output direction without changing state
163 drvdata
->is_enabled
= config
->enabled_at_boot
;
164 ret
= drvdata
->is_enabled
?
165 config
->enable_high
: !config
->enable_high
;
167 ret
= gpio_direction_output(config
->gpio
, ret
);
170 "Could not configure regulator enable GPIO %d direction: %d\n",
176 /* Regulator without GPIO control is considered
179 drvdata
->is_enabled
= true;
182 drvdata
->dev
= regulator_register(&drvdata
->desc
, &pdev
->dev
,
183 config
->init_data
, drvdata
);
184 if (IS_ERR(drvdata
->dev
)) {
185 ret
= PTR_ERR(drvdata
->dev
);
186 dev_err(&pdev
->dev
, "Failed to register regulator: %d\n", ret
);
190 platform_set_drvdata(pdev
, drvdata
);
192 dev_dbg(&pdev
->dev
, "%s supplying %duV\n", drvdata
->desc
.name
,
193 drvdata
->microvolts
);
198 if (gpio_is_valid(config
->gpio
))
199 gpio_free(config
->gpio
);
201 kfree(drvdata
->desc
.name
);
207 static int __devexit
reg_fixed_voltage_remove(struct platform_device
*pdev
)
209 struct fixed_voltage_data
*drvdata
= platform_get_drvdata(pdev
);
211 regulator_unregister(drvdata
->dev
);
212 if (gpio_is_valid(drvdata
->gpio
))
213 gpio_free(drvdata
->gpio
);
214 kfree(drvdata
->desc
.name
);
220 static struct platform_driver regulator_fixed_voltage_driver
= {
221 .probe
= reg_fixed_voltage_probe
,
222 .remove
= __devexit_p(reg_fixed_voltage_remove
),
224 .name
= "reg-fixed-voltage",
225 .owner
= THIS_MODULE
,
229 static int __init
regulator_fixed_voltage_init(void)
231 return platform_driver_register(®ulator_fixed_voltage_driver
);
233 subsys_initcall(regulator_fixed_voltage_init
);
235 static void __exit
regulator_fixed_voltage_exit(void)
237 platform_driver_unregister(®ulator_fixed_voltage_driver
);
239 module_exit(regulator_fixed_voltage_exit
);
241 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
242 MODULE_DESCRIPTION("Fixed voltage regulator");
243 MODULE_LICENSE("GPL");
244 MODULE_ALIAS("platform:reg-fixed-voltage");