2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2015-06-23 13:54:19 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2015 Marek Vasut <marex@denx.de>
|
|
|
|
*
|
|
|
|
* DesignWare APB GPIO driver
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:05 +00:00
|
|
|
#include <log.h>
|
2015-06-23 13:54:19 +00:00
|
|
|
#include <malloc.h>
|
|
|
|
#include <asm/arch/gpio.h>
|
|
|
|
#include <asm/gpio.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <dm.h>
|
|
|
|
#include <dm/device-internal.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <dm/device_compat.h>
|
2020-02-03 14:36:15 +00:00
|
|
|
#include <dm/devres.h>
|
2015-06-23 13:54:19 +00:00
|
|
|
#include <dm/lists.h>
|
|
|
|
#include <dm/root.h>
|
|
|
|
#include <errno.h>
|
2018-09-04 06:04:58 +00:00
|
|
|
#include <reset.h>
|
2020-05-10 17:40:13 +00:00
|
|
|
#include <linux/bitops.h>
|
2015-06-23 13:54:19 +00:00
|
|
|
|
2016-11-03 11:05:12 +00:00
|
|
|
#define GPIO_SWPORT_DR(p) (0x00 + (p) * 0xc)
|
|
|
|
#define GPIO_SWPORT_DDR(p) (0x04 + (p) * 0xc)
|
2015-06-23 13:54:19 +00:00
|
|
|
#define GPIO_INTEN 0x30
|
|
|
|
#define GPIO_INTMASK 0x34
|
|
|
|
#define GPIO_INTTYPE_LEVEL 0x38
|
|
|
|
#define GPIO_INT_POLARITY 0x3c
|
|
|
|
#define GPIO_INTSTATUS 0x40
|
|
|
|
#define GPIO_PORTA_DEBOUNCE 0x48
|
|
|
|
#define GPIO_PORTA_EOI 0x4c
|
2016-11-03 11:05:12 +00:00
|
|
|
#define GPIO_EXT_PORT(p) (0x50 + (p) * 4)
|
2015-06-23 13:54:19 +00:00
|
|
|
|
2018-09-04 06:04:58 +00:00
|
|
|
struct gpio_dwapb_priv {
|
|
|
|
struct reset_ctl_bulk resets;
|
|
|
|
};
|
|
|
|
|
2015-06-23 13:54:19 +00:00
|
|
|
struct gpio_dwapb_platdata {
|
|
|
|
const char *name;
|
|
|
|
int bank;
|
|
|
|
int pins;
|
|
|
|
fdt_addr_t base;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int dwapb_gpio_direction_input(struct udevice *dev, unsigned pin)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
2016-11-03 11:05:12 +00:00
|
|
|
clrbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
|
2015-06-23 13:54:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dwapb_gpio_direction_output(struct udevice *dev, unsigned pin,
|
|
|
|
int val)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
2016-11-03 11:05:12 +00:00
|
|
|
setbits_le32(plat->base + GPIO_SWPORT_DDR(plat->bank), 1 << pin);
|
2015-06-23 13:54:19 +00:00
|
|
|
|
|
|
|
if (val)
|
2016-11-03 11:05:12 +00:00
|
|
|
setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
|
2015-06-23 13:54:19 +00:00
|
|
|
else
|
2016-11-03 11:05:12 +00:00
|
|
|
clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
|
2015-06-23 13:54:19 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dwapb_gpio_get_value(struct udevice *dev, unsigned pin)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
2016-11-03 11:05:12 +00:00
|
|
|
return !!(readl(plat->base + GPIO_EXT_PORT(plat->bank)) & (1 << pin));
|
2015-06-23 13:54:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int dwapb_gpio_set_value(struct udevice *dev, unsigned pin, int val)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
|
|
|
|
|
|
|
if (val)
|
2016-11-03 11:05:12 +00:00
|
|
|
setbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
|
2015-06-23 13:54:19 +00:00
|
|
|
else
|
2016-11-03 11:05:12 +00:00
|
|
|
clrbits_le32(plat->base + GPIO_SWPORT_DR(plat->bank), 1 << pin);
|
2015-06-23 13:54:19 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-16 05:46:30 +00:00
|
|
|
static int dwapb_gpio_get_function(struct udevice *dev, unsigned offset)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
|
|
|
u32 gpio;
|
|
|
|
|
|
|
|
gpio = readl(plat->base + GPIO_SWPORT_DDR(plat->bank));
|
|
|
|
|
|
|
|
if (gpio & BIT(offset))
|
|
|
|
return GPIOF_OUTPUT;
|
|
|
|
else
|
|
|
|
return GPIOF_INPUT;
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:54:19 +00:00
|
|
|
static const struct dm_gpio_ops gpio_dwapb_ops = {
|
|
|
|
.direction_input = dwapb_gpio_direction_input,
|
|
|
|
.direction_output = dwapb_gpio_direction_output,
|
|
|
|
.get_value = dwapb_gpio_get_value,
|
|
|
|
.set_value = dwapb_gpio_set_value,
|
2018-08-16 05:46:30 +00:00
|
|
|
.get_function = dwapb_gpio_get_function,
|
2015-06-23 13:54:19 +00:00
|
|
|
};
|
|
|
|
|
2018-09-04 06:04:58 +00:00
|
|
|
static int gpio_dwapb_reset(struct udevice *dev)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct gpio_dwapb_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
ret = reset_get_bulk(dev, &priv->resets);
|
|
|
|
if (ret) {
|
|
|
|
/* Return 0 if error due to !CONFIG_DM_RESET and reset
|
|
|
|
* DT property is not present.
|
|
|
|
*/
|
|
|
|
if (ret == -ENOENT || ret == -ENOTSUPP)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
dev_warn(dev, "Can't get reset: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = reset_deassert_bulk(&priv->resets);
|
|
|
|
if (ret) {
|
|
|
|
reset_release_bulk(&priv->resets);
|
|
|
|
dev_err(dev, "Failed to reset: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:54:19 +00:00
|
|
|
static int gpio_dwapb_probe(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct gpio_dev_priv *priv = dev_get_uclass_priv(dev);
|
|
|
|
struct gpio_dwapb_platdata *plat = dev->platdata;
|
|
|
|
|
2018-09-04 06:04:58 +00:00
|
|
|
if (!plat) {
|
|
|
|
/* Reset on parent device only */
|
|
|
|
return gpio_dwapb_reset(dev);
|
|
|
|
}
|
2015-06-23 13:54:19 +00:00
|
|
|
|
|
|
|
priv->gpio_count = plat->pins;
|
|
|
|
priv->bank_name = plat->name;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gpio_dwapb_bind(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct udevice *subdev;
|
|
|
|
fdt_addr_t base;
|
2019-05-09 20:12:00 +00:00
|
|
|
int ret, bank = 0;
|
|
|
|
ofnode node;
|
2015-06-23 13:54:19 +00:00
|
|
|
|
|
|
|
/* If this is a child device, there is nothing to do here */
|
|
|
|
if (plat)
|
|
|
|
return 0;
|
|
|
|
|
2018-08-15 18:05:54 +00:00
|
|
|
base = dev_read_addr(dev);
|
2015-06-23 13:54:19 +00:00
|
|
|
if (base == FDT_ADDR_T_NONE) {
|
|
|
|
debug("Can't get the GPIO register base address\n");
|
|
|
|
return -ENXIO;
|
|
|
|
}
|
|
|
|
|
2019-05-09 20:12:00 +00:00
|
|
|
for (node = dev_read_first_subnode(dev); ofnode_valid(node);
|
|
|
|
node = dev_read_next_subnode(node)) {
|
|
|
|
if (!ofnode_read_bool(node, "gpio-controller"))
|
2015-06-23 13:54:19 +00:00
|
|
|
continue;
|
|
|
|
|
2018-09-19 08:26:33 +00:00
|
|
|
plat = devm_kcalloc(dev, 1, sizeof(*plat), GFP_KERNEL);
|
2015-06-23 13:54:19 +00:00
|
|
|
if (!plat)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
plat->base = base;
|
|
|
|
plat->bank = bank;
|
2019-05-09 20:12:00 +00:00
|
|
|
plat->pins = ofnode_read_u32_default(node, "snps,nr-gpios", 0);
|
|
|
|
|
|
|
|
if (ofnode_read_string_index(node, "bank-name", 0,
|
|
|
|
&plat->name)) {
|
2018-11-02 10:54:50 +00:00
|
|
|
/*
|
|
|
|
* Fall back to node name. This means accessing pins
|
|
|
|
* via bank name won't work.
|
|
|
|
*/
|
2019-05-09 20:12:00 +00:00
|
|
|
plat->name = ofnode_get_name(node);
|
2018-11-02 10:54:50 +00:00
|
|
|
}
|
2015-06-23 13:54:19 +00:00
|
|
|
|
2019-05-21 20:03:12 +00:00
|
|
|
ret = device_bind_ofnode(dev, dev->driver, plat->name,
|
|
|
|
plat, node, &subdev);
|
2015-06-23 13:54:19 +00:00
|
|
|
if (ret)
|
2018-09-19 08:26:33 +00:00
|
|
|
return ret;
|
2015-06-23 13:54:19 +00:00
|
|
|
|
|
|
|
bank++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-09-04 06:04:58 +00:00
|
|
|
static int gpio_dwapb_remove(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct gpio_dwapb_platdata *plat = dev_get_platdata(dev);
|
|
|
|
struct gpio_dwapb_priv *priv = dev_get_priv(dev);
|
|
|
|
|
|
|
|
if (!plat && priv)
|
|
|
|
return reset_release_bulk(&priv->resets);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-23 13:54:19 +00:00
|
|
|
static const struct udevice_id gpio_dwapb_ids[] = {
|
|
|
|
{ .compatible = "snps,dw-apb-gpio" },
|
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(gpio_dwapb) = {
|
|
|
|
.name = "gpio-dwapb",
|
|
|
|
.id = UCLASS_GPIO,
|
|
|
|
.of_match = gpio_dwapb_ids,
|
|
|
|
.ops = &gpio_dwapb_ops,
|
|
|
|
.bind = gpio_dwapb_bind,
|
|
|
|
.probe = gpio_dwapb_probe,
|
2018-09-04 06:04:58 +00:00
|
|
|
.remove = gpio_dwapb_remove,
|
|
|
|
.priv_auto_alloc_size = sizeof(struct gpio_dwapb_priv),
|
2015-06-23 13:54:19 +00:00
|
|
|
};
|