mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-13 20:36:02 +01:00
Now that the PMIC driver implements the DM_PMIC uclass, those functions can be used instead of the platform-specific "pmic_bus" functions. Since the driver still uses the single set of register definitions from axpXXX.h (as selected by AXPxxx_POWER), it still depends on one of those choices, and therefore also AXP_PMIC_BUS. Signed-off-by: Samuel Holland <samuel@sholland.org>
124 lines
2.6 KiB
C
124 lines
2.6 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2015 Hans de Goede <hdegoede@redhat.com>
|
|
*
|
|
* X-Powers AXP Power Management ICs gpio driver
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/gpio.h>
|
|
#include <axp_pmic.h>
|
|
#include <dm.h>
|
|
#include <errno.h>
|
|
#include <power/pmic.h>
|
|
|
|
#define AXP_GPIO_PREFIX "AXP0-"
|
|
#define AXP_GPIO_COUNT 4
|
|
|
|
static int axp_gpio_set_value(struct udevice *dev, unsigned pin, int val);
|
|
|
|
static u8 axp_get_gpio_ctrl_reg(unsigned pin)
|
|
{
|
|
switch (pin) {
|
|
case 0: return AXP_GPIO0_CTRL;
|
|
case 1: return AXP_GPIO1_CTRL;
|
|
#ifdef AXP_GPIO2_CTRL
|
|
case 2: return AXP_GPIO2_CTRL;
|
|
#endif
|
|
#ifdef AXP_GPIO3_CTRL
|
|
case 3: return AXP_GPIO3_CTRL;
|
|
#endif
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int axp_gpio_direction_input(struct udevice *dev, unsigned pin)
|
|
{
|
|
u8 reg;
|
|
|
|
reg = axp_get_gpio_ctrl_reg(pin);
|
|
if (reg == 0)
|
|
return -EINVAL;
|
|
|
|
return pmic_reg_write(dev->parent, reg, AXP_GPIO_CTRL_INPUT);
|
|
}
|
|
|
|
static int axp_gpio_direction_output(struct udevice *dev, unsigned pin,
|
|
int val)
|
|
{
|
|
u8 reg;
|
|
|
|
reg = axp_get_gpio_ctrl_reg(pin);
|
|
if (reg == 0)
|
|
return -EINVAL;
|
|
|
|
return pmic_reg_write(dev->parent, reg,
|
|
val ? AXP_GPIO_CTRL_OUTPUT_HIGH :
|
|
AXP_GPIO_CTRL_OUTPUT_LOW);
|
|
}
|
|
|
|
static int axp_gpio_get_value(struct udevice *dev, unsigned pin)
|
|
{
|
|
u8 reg, mask;
|
|
int ret;
|
|
|
|
reg = axp_get_gpio_ctrl_reg(pin);
|
|
if (reg == 0)
|
|
return -EINVAL;
|
|
|
|
ret = pmic_reg_read(dev->parent, AXP_GPIO_STATE);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
mask = 1 << (pin + AXP_GPIO_STATE_OFFSET);
|
|
|
|
return (ret & mask) ? 1 : 0;
|
|
}
|
|
|
|
static int axp_gpio_set_value(struct udevice *dev, unsigned pin, int val)
|
|
{
|
|
u8 reg;
|
|
|
|
reg = axp_get_gpio_ctrl_reg(pin);
|
|
if (reg == 0)
|
|
return -EINVAL;
|
|
|
|
return pmic_reg_write(dev->parent, reg,
|
|
val ? AXP_GPIO_CTRL_OUTPUT_HIGH :
|
|
AXP_GPIO_CTRL_OUTPUT_LOW);
|
|
}
|
|
|
|
static const struct dm_gpio_ops axp_gpio_ops = {
|
|
.direction_input = axp_gpio_direction_input,
|
|
.direction_output = axp_gpio_direction_output,
|
|
.get_value = axp_gpio_get_value,
|
|
.set_value = axp_gpio_set_value,
|
|
};
|
|
|
|
static int axp_gpio_probe(struct udevice *dev)
|
|
{
|
|
struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
|
|
|
|
/* Tell the uclass how many GPIOs we have */
|
|
uc_priv->bank_name = AXP_GPIO_PREFIX;
|
|
uc_priv->gpio_count = AXP_GPIO_COUNT;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct udevice_id axp_gpio_ids[] = {
|
|
{ .compatible = "x-powers,axp152-gpio" },
|
|
{ .compatible = "x-powers,axp209-gpio" },
|
|
{ .compatible = "x-powers,axp221-gpio" },
|
|
{ .compatible = "x-powers,axp813-gpio" },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(axp_gpio) = {
|
|
.name = "axp_gpio",
|
|
.id = UCLASS_GPIO,
|
|
.of_match = axp_gpio_ids,
|
|
.probe = axp_gpio_probe,
|
|
.ops = &axp_gpio_ops,
|
|
};
|