forked from Mirrors/opensbi

FDT gpio drivers have an extra .xlate operation, so they need to embed the `struct fdt_driver` inside the subsystem-specific type. The gpio subsystem always initializes the driver for a specific DT node. Signed-off-by: Samuel Holland <samuel.holland@sifive.com> Reviewed-by: Anup Patel <anup@brainfault.org>
119 lines
2.7 KiB
C
119 lines
2.7 KiB
C
/*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*
|
|
* Copyright (c) 2022 Starfive
|
|
*
|
|
* Authors:
|
|
* Minda.chen <Minda.chen@starfivetech.com>
|
|
*/
|
|
|
|
#include <sbi/riscv_io.h>
|
|
#include <sbi/sbi_error.h>
|
|
#include <sbi/sbi_heap.h>
|
|
#include <sbi/sbi_console.h>
|
|
#include <sbi_utils/fdt/fdt_helper.h>
|
|
#include <sbi_utils/gpio/fdt_gpio.h>
|
|
|
|
#define STARFIVE_GPIO_PINS_DEF 64
|
|
#define STARFIVE_GPIO_OUTVAL 0x40
|
|
#define STARFIVE_GPIO_MASK 0xff
|
|
#define STARFIVE_GPIO_REG_SHIFT_MASK 0x3
|
|
#define STARFIVE_GPIO_SHIFT_BITS 0x3
|
|
|
|
struct starfive_gpio_chip {
|
|
unsigned long addr;
|
|
struct gpio_chip chip;
|
|
};
|
|
|
|
static int starfive_gpio_direction_output(struct gpio_pin *gp, int value)
|
|
{
|
|
u32 val;
|
|
unsigned long reg_addr;
|
|
u32 bit_mask, shift_bits;
|
|
struct starfive_gpio_chip *chip =
|
|
container_of(gp->chip, struct starfive_gpio_chip, chip);
|
|
|
|
/* set out en*/
|
|
reg_addr = chip->addr + gp->offset;
|
|
reg_addr &= ~(STARFIVE_GPIO_REG_SHIFT_MASK);
|
|
|
|
shift_bits = (gp->offset & STARFIVE_GPIO_REG_SHIFT_MASK)
|
|
<< STARFIVE_GPIO_SHIFT_BITS;
|
|
bit_mask = STARFIVE_GPIO_MASK << shift_bits;
|
|
|
|
val = readl((void *)reg_addr);
|
|
val &= ~bit_mask;
|
|
writel(val, (void *)reg_addr);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void starfive_gpio_set(struct gpio_pin *gp, int value)
|
|
{
|
|
u32 val;
|
|
unsigned long reg_addr;
|
|
u32 bit_mask, shift_bits;
|
|
struct starfive_gpio_chip *chip =
|
|
container_of(gp->chip, struct starfive_gpio_chip, chip);
|
|
|
|
reg_addr = chip->addr + gp->offset;
|
|
reg_addr &= ~(STARFIVE_GPIO_REG_SHIFT_MASK);
|
|
|
|
shift_bits = (gp->offset & STARFIVE_GPIO_REG_SHIFT_MASK)
|
|
<< STARFIVE_GPIO_SHIFT_BITS;
|
|
bit_mask = STARFIVE_GPIO_MASK << shift_bits;
|
|
/* set output value */
|
|
val = readl((void *)(reg_addr + STARFIVE_GPIO_OUTVAL));
|
|
val &= ~bit_mask;
|
|
val |= value << shift_bits;
|
|
writel(val, (void *)(reg_addr + STARFIVE_GPIO_OUTVAL));
|
|
}
|
|
|
|
const struct fdt_gpio fdt_gpio_starfive;
|
|
|
|
static int starfive_gpio_init(const void *fdt, int nodeoff,
|
|
const struct fdt_match *match)
|
|
{
|
|
int rc;
|
|
struct starfive_gpio_chip *chip;
|
|
u64 addr;
|
|
|
|
chip = sbi_zalloc(sizeof(*chip));
|
|
if (!chip)
|
|
return SBI_ENOMEM;
|
|
|
|
rc = fdt_get_node_addr_size(fdt, nodeoff, 0, &addr, NULL);
|
|
if (rc) {
|
|
sbi_free(chip);
|
|
return rc;
|
|
}
|
|
|
|
chip->addr = addr;
|
|
chip->chip.driver = &fdt_gpio_starfive;
|
|
chip->chip.id = nodeoff;
|
|
chip->chip.ngpio = STARFIVE_GPIO_PINS_DEF;
|
|
chip->chip.direction_output = starfive_gpio_direction_output;
|
|
chip->chip.set = starfive_gpio_set;
|
|
rc = gpio_chip_add(&chip->chip);
|
|
if (rc) {
|
|
sbi_free(chip);
|
|
return rc;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct fdt_match starfive_gpio_match[] = {
|
|
{ .compatible = "starfive,jh7110-sys-pinctrl" },
|
|
{ .compatible = "starfive,iomux-pinctrl" },
|
|
{ },
|
|
};
|
|
|
|
const struct fdt_gpio fdt_gpio_starfive = {
|
|
.driver = {
|
|
.match_table = starfive_gpio_match,
|
|
.init = starfive_gpio_init,
|
|
},
|
|
.xlate = fdt_gpio_simple_xlate,
|
|
};
|