lib:utils:add reset and gpio device
This commit is contained in:
@@ -14,6 +14,10 @@ config FDT_GPIO_SIFIVE
|
||||
bool "SiFive GPIO FDT driver"
|
||||
default n
|
||||
|
||||
config FDT_GPIO_SOPHGO
|
||||
bool "Sophgo GPIO FDT driver"
|
||||
default n
|
||||
|
||||
config FDT_GPIO_STARFIVE
|
||||
bool "StarFive GPIO FDT driver"
|
||||
default n
|
||||
|
||||
141
lib/utils/gpio/fdt_gpio_sophgo.c
Normal file
141
lib/utils/gpio/fdt_gpio_sophgo.c
Normal file
@@ -0,0 +1,141 @@
|
||||
/*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*
|
||||
* Copyright (c) 2023 Sophgo
|
||||
*
|
||||
* Author:
|
||||
* Chunzhi Lin <chunzhi.lin@sophgo.com>
|
||||
*/
|
||||
|
||||
#include <libfdt.h>
|
||||
#include <sbi/riscv_io.h>
|
||||
#include <sbi/sbi_error.h>
|
||||
#include <sbi/sbi_console.h>
|
||||
#include <sbi_utils/fdt/fdt_helper.h>
|
||||
#include <sbi_utils/gpio/fdt_gpio.h>
|
||||
|
||||
#define SOPHGO_GPIO_CHIP_MAX 3
|
||||
|
||||
#define SOPHGO_GPIO_PINS_MIN 0
|
||||
#define SOPHGO_GPIO_PINS_MAX 31
|
||||
#define SOPHGO_GPIO_PINS_DEF 16
|
||||
|
||||
#define SOPHGO_GPIO_SWPORTA_DR_OFFSET 0x00
|
||||
#define SOPHGO_GPIO_SWPORTA_DDR_OFFSET 0x04
|
||||
#define SOPHGO_GPIO_SWPORTA_CTL_OFFSET 0x08
|
||||
|
||||
#define SOPHGO_GPIO_BIT(offset) (1U << (offset))
|
||||
|
||||
struct sophgo_gpio_chip {
|
||||
unsigned long addr;
|
||||
struct gpio_chip chip;
|
||||
};
|
||||
|
||||
static unsigned int sophgo_gpio_chip_count;
|
||||
static struct sophgo_gpio_chip sophgo_gpio_chip_array[SOPHGO_GPIO_CHIP_MAX];
|
||||
|
||||
static int sophgo_gpio_direction_output(struct gpio_pin *gp, int value)
|
||||
{
|
||||
unsigned int v;
|
||||
struct sophgo_gpio_chip *chip =
|
||||
container_of(gp->chip, struct sophgo_gpio_chip, chip);
|
||||
|
||||
v = readl((volatile void *)(chip->addr + SOPHGO_GPIO_SWPORTA_DDR_OFFSET));
|
||||
v |= SOPHGO_GPIO_BIT(gp->offset);
|
||||
writel(v, (volatile void *)(chip->addr + SOPHGO_GPIO_SWPORTA_DDR_OFFSET));
|
||||
|
||||
v = readl((volatile void *)(chip->addr + SOPHGO_GPIO_SWPORTA_DR_OFFSET));
|
||||
if (!value)
|
||||
v &= ~SOPHGO_GPIO_BIT(gp->offset);
|
||||
else
|
||||
v |= SOPHGO_GPIO_BIT(gp->offset);
|
||||
writel(v, (volatile void *)(chip->addr + SOPHGO_GPIO_SWPORTA_DR_OFFSET));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void sophgo_gpio_set(struct gpio_pin *gp, int value)
|
||||
{
|
||||
unsigned int v;
|
||||
struct sophgo_gpio_chip *chip =
|
||||
container_of(gp->chip, struct sophgo_gpio_chip, chip);
|
||||
|
||||
v = readl((volatile void *)(chip->addr + SOPHGO_GPIO_SWPORTA_DR_OFFSET));
|
||||
|
||||
if (!value)
|
||||
v &= ~SOPHGO_GPIO_BIT(gp->offset);
|
||||
else
|
||||
v |= SOPHGO_GPIO_BIT(gp->offset);
|
||||
|
||||
writel(v, (volatile void *)(chip->addr + SOPHGO_GPIO_SWPORTA_DR_OFFSET));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static int sophgo_gpio_addr_get(void *fdt, int nodeoff, unsigned long *addr)
|
||||
{
|
||||
int rc;
|
||||
unsigned long addr_high, addr_low;
|
||||
|
||||
rc = fdt_get_node_addr_size(fdt, nodeoff, 1, &addr_low, NULL);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
rc = fdt_get_node_addr_size(fdt, nodeoff, 0, &addr_high, NULL);
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
*addr = addr_high << 32 | addr_low;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
extern struct fdt_gpio fdt_gpio_sophgo;
|
||||
|
||||
static int sophgo_gpio_init(void *fdt, int nodeoff, u32 phandle,
|
||||
const struct fdt_match *match)
|
||||
{
|
||||
int rc;
|
||||
struct sophgo_gpio_chip *chip;
|
||||
unsigned long addr;
|
||||
|
||||
if (SOPHGO_GPIO_CHIP_MAX <= sophgo_gpio_chip_count) {
|
||||
rc = SBI_ENOSPC;
|
||||
goto out;
|
||||
}
|
||||
|
||||
chip = &sophgo_gpio_chip_array[sophgo_gpio_chip_count];
|
||||
|
||||
rc = sophgo_gpio_addr_get(fdt, nodeoff, &addr);
|
||||
if (rc)
|
||||
goto out;
|
||||
|
||||
chip->addr = addr;
|
||||
chip->chip.driver = &fdt_gpio_sophgo;
|
||||
chip->chip.id = phandle;
|
||||
chip->chip.ngpio = SOPHGO_GPIO_PINS_MAX;
|
||||
chip->chip.direction_output = sophgo_gpio_direction_output;
|
||||
chip->chip.set = sophgo_gpio_set;
|
||||
rc = gpio_chip_add(&chip->chip);
|
||||
|
||||
if (rc)
|
||||
goto out;
|
||||
|
||||
sophgo_gpio_chip_count++;
|
||||
|
||||
out:
|
||||
fdt_del_node(fdt, nodeoff);
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
static const struct fdt_match sophgo_gpio_match[] = {
|
||||
{ .compatible = "sophgo,gpio0" },
|
||||
{ },
|
||||
};
|
||||
|
||||
struct fdt_gpio fdt_gpio_sophgo = {
|
||||
.match_table = sophgo_gpio_match,
|
||||
.xlate = fdt_gpio_simple_xlate,
|
||||
.init = sophgo_gpio_init,
|
||||
};
|
||||
@@ -13,6 +13,9 @@ libsbiutils-objs-$(CONFIG_FDT_GPIO) += gpio/fdt_gpio_drivers.o
|
||||
carray-fdt_gpio_drivers-$(CONFIG_FDT_GPIO_SIFIVE) += fdt_gpio_sifive
|
||||
libsbiutils-objs-$(CONFIG_FDT_GPIO_SIFIVE) += gpio/fdt_gpio_sifive.o
|
||||
|
||||
carray-fdt_gpio_drivers-$(CONFIG_FDT_GPIO_SOPHGO) += fdt_gpio_sophgo
|
||||
libsbiutils-objs-$(CONFIG_FDT_GPIO_SOPHGO) += gpio/fdt_gpio_sophgo.o
|
||||
|
||||
carray-fdt_gpio_drivers-$(CONFIG_FDT_GPIO_STARFIVE) += fdt_gpio_starfive
|
||||
libsbiutils-objs-$(CONFIG_FDT_GPIO_STARFIVE) += gpio/fdt_gpio_starfive.o
|
||||
|
||||
|
||||
Reference in New Issue
Block a user