2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-09-15 11:34:06 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2016 Texas Instruments Incorporated, <www.ti.com>
|
|
|
|
* Keerthy <j-keerthy@ti.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <fdtdec.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <i2c.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2016-09-15 11:34:06 +00:00
|
|
|
#include <asm/gpio.h>
|
|
|
|
#include <power/pmic.h>
|
|
|
|
#include <power/regulator.h>
|
|
|
|
|
2020-07-19 16:15:44 +00:00
|
|
|
#include "regulator_common.h"
|
|
|
|
|
2016-09-15 11:34:06 +00:00
|
|
|
#define GPIO_REGULATOR_MAX_STATES 2
|
|
|
|
|
2020-12-03 23:55:23 +00:00
|
|
|
struct gpio_regulator_plat {
|
|
|
|
struct regulator_common_plat common;
|
2016-09-15 11:34:06 +00:00
|
|
|
struct gpio_desc gpio; /* GPIO for regulator voltage control */
|
|
|
|
int states[GPIO_REGULATOR_MAX_STATES];
|
|
|
|
int voltages[GPIO_REGULATOR_MAX_STATES];
|
|
|
|
};
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
static int gpio_regulator_of_to_plat(struct udevice *dev)
|
2016-09-15 11:34:06 +00:00
|
|
|
{
|
2020-12-03 23:55:18 +00:00
|
|
|
struct dm_regulator_uclass_plat *uc_pdata;
|
2020-12-03 23:55:23 +00:00
|
|
|
struct gpio_regulator_plat *dev_pdata;
|
2016-09-15 11:34:06 +00:00
|
|
|
struct gpio_desc *gpio;
|
|
|
|
int ret, count, i, j;
|
2020-09-10 16:18:16 +00:00
|
|
|
u32 states_array[GPIO_REGULATOR_MAX_STATES * 2];
|
2016-09-15 11:34:06 +00:00
|
|
|
|
2020-12-03 23:55:20 +00:00
|
|
|
dev_pdata = dev_get_plat(dev);
|
2020-12-03 23:55:18 +00:00
|
|
|
uc_pdata = dev_get_uclass_plat(dev);
|
2016-09-15 11:34:06 +00:00
|
|
|
if (!uc_pdata)
|
|
|
|
return -ENXIO;
|
|
|
|
|
|
|
|
/* Set type to gpio */
|
|
|
|
uc_pdata->type = REGULATOR_TYPE_GPIO;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get gpio regulator gpio desc
|
|
|
|
* Assuming one GPIO per regulator.
|
|
|
|
* Can be extended later to multiple GPIOs
|
|
|
|
* per gpio-regulator. As of now no instance with multiple
|
|
|
|
* gpios is presnt
|
|
|
|
*/
|
|
|
|
gpio = &dev_pdata->gpio;
|
|
|
|
ret = gpio_request_by_name(dev, "gpios", 0, gpio, GPIOD_IS_OUT);
|
|
|
|
if (ret)
|
|
|
|
debug("regulator gpio - not found! Error: %d", ret);
|
|
|
|
|
2020-09-10 16:18:17 +00:00
|
|
|
ret = dev_read_size(dev, "states");
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
count = ret / sizeof(states_array[0]);
|
|
|
|
if (count > ARRAY_SIZE(states_array)) {
|
|
|
|
debug("regulator gpio - to many states (%d > %d)",
|
|
|
|
count / 2, GPIO_REGULATOR_MAX_STATES);
|
|
|
|
count = ARRAY_SIZE(states_array);
|
|
|
|
}
|
2016-09-15 11:34:06 +00:00
|
|
|
|
2020-09-10 16:18:17 +00:00
|
|
|
ret = dev_read_u32_array(dev, "states", states_array, count);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2016-09-15 11:34:06 +00:00
|
|
|
|
|
|
|
for (i = 0, j = 0; i < count; i += 2) {
|
|
|
|
dev_pdata->voltages[j] = states_array[i];
|
|
|
|
dev_pdata->states[j] = states_array[i + 1];
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:55:21 +00:00
|
|
|
return regulator_common_of_to_plat(dev, &dev_pdata->common, "enable-gpios");
|
2016-09-15 11:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int gpio_regulator_get_value(struct udevice *dev)
|
|
|
|
{
|
2020-12-03 23:55:18 +00:00
|
|
|
struct dm_regulator_uclass_plat *uc_pdata;
|
2020-12-03 23:55:23 +00:00
|
|
|
struct gpio_regulator_plat *dev_pdata = dev_get_plat(dev);
|
2016-09-15 11:34:06 +00:00
|
|
|
int enable;
|
|
|
|
|
|
|
|
if (!dev_pdata->gpio.dev)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
2020-12-03 23:55:18 +00:00
|
|
|
uc_pdata = dev_get_uclass_plat(dev);
|
2016-09-15 11:34:06 +00:00
|
|
|
if (uc_pdata->min_uV > uc_pdata->max_uV) {
|
|
|
|
debug("Invalid constraints for: %s\n", uc_pdata->name);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
enable = dm_gpio_get_value(&dev_pdata->gpio);
|
|
|
|
if (enable == dev_pdata->states[0])
|
|
|
|
return dev_pdata->voltages[0];
|
|
|
|
else
|
|
|
|
return dev_pdata->voltages[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gpio_regulator_set_value(struct udevice *dev, int uV)
|
|
|
|
{
|
2020-12-03 23:55:23 +00:00
|
|
|
struct gpio_regulator_plat *dev_pdata = dev_get_plat(dev);
|
2016-09-15 11:34:06 +00:00
|
|
|
int ret;
|
|
|
|
bool enable;
|
|
|
|
|
|
|
|
if (!dev_pdata->gpio.dev)
|
|
|
|
return -ENOSYS;
|
|
|
|
|
|
|
|
if (uV == dev_pdata->voltages[0])
|
|
|
|
enable = dev_pdata->states[0];
|
|
|
|
else if (uV == dev_pdata->voltages[1])
|
|
|
|
enable = dev_pdata->states[1];
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ret = dm_gpio_set_value(&dev_pdata->gpio, enable);
|
|
|
|
if (ret) {
|
2017-09-16 05:10:41 +00:00
|
|
|
pr_err("Can't set regulator : %s gpio to: %d\n", dev->name,
|
2016-09-15 11:34:06 +00:00
|
|
|
enable);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-06-24 11:03:34 +00:00
|
|
|
static int gpio_regulator_get_enable(struct udevice *dev)
|
|
|
|
{
|
2020-12-03 23:55:23 +00:00
|
|
|
struct gpio_regulator_plat *dev_pdata = dev_get_plat(dev);
|
2019-06-24 11:03:34 +00:00
|
|
|
return regulator_common_get_enable(dev, &dev_pdata->common);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gpio_regulator_set_enable(struct udevice *dev, bool enable)
|
|
|
|
{
|
2020-12-03 23:55:23 +00:00
|
|
|
struct gpio_regulator_plat *dev_pdata = dev_get_plat(dev);
|
2019-06-24 11:03:34 +00:00
|
|
|
return regulator_common_set_enable(dev, &dev_pdata->common, enable);
|
|
|
|
}
|
|
|
|
|
2016-09-15 11:34:06 +00:00
|
|
|
static const struct dm_regulator_ops gpio_regulator_ops = {
|
|
|
|
.get_value = gpio_regulator_get_value,
|
|
|
|
.set_value = gpio_regulator_set_value,
|
2019-06-24 11:03:34 +00:00
|
|
|
.get_enable = gpio_regulator_get_enable,
|
|
|
|
.set_enable = gpio_regulator_set_enable,
|
2016-09-15 11:34:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct udevice_id gpio_regulator_ids[] = {
|
|
|
|
{ .compatible = "regulator-gpio" },
|
|
|
|
{ },
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(gpio_regulator) = {
|
|
|
|
.name = "gpio regulator",
|
|
|
|
.id = UCLASS_REGULATOR,
|
|
|
|
.ops = &gpio_regulator_ops,
|
|
|
|
.of_match = gpio_regulator_ids,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = gpio_regulator_of_to_plat,
|
2020-12-03 23:55:23 +00:00
|
|
|
.plat_auto = sizeof(struct gpio_regulator_plat),
|
2016-09-15 11:34:06 +00:00
|
|
|
};
|