Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) 2016-2017 Socionext Inc. * Author: Masahiro Yamada <yamada.masahiro@socionext.com> */ #include <dm.h> #include <linux/bitops.h> #include <linux/io.h> #include <linux/sizes.h> #include <linux/errno.h> #include <asm/global_data.h> #include <asm/gpio.h> #include <dt-bindings/gpio/uniphier-gpio.h> #define UNIPHIER_GPIO_PORT_DATA 0x0 /* data */ #define UNIPHIER_GPIO_PORT_DIR 0x4 /* direction (1:in, 0:out) */ #define UNIPHIER_GPIO_IRQ_EN 0x90 /* irq enable */ struct uniphier_gpio_priv { void __iomem *regs; }; static unsigned int uniphier_gpio_bank_to_reg(unsigned int bank) { unsigned int reg; reg = (bank + 1) * 8; /* * Unfortunately, the GPIO port registers are not contiguous because * offset 0x90-0x9f is used for IRQ. Add 0x10 when crossing the region. */ if (reg >= UNIPHIER_GPIO_IRQ_EN) reg += 0x10; return reg; } static void uniphier_gpio_get_bank_and_mask(unsigned int offset, unsigned int *bank, u32 *mask) { *bank = offset / UNIPHIER_GPIO_LINES_PER_BANK; *mask = BIT(offset % UNIPHIER_GPIO_LINES_PER_BANK); } static void uniphier_gpio_reg_update(struct uniphier_gpio_priv *priv, unsigned int reg, u32 mask, u32 val) { u32 tmp; tmp = readl(priv->regs + reg); tmp &= ~mask; tmp |= mask & val; writel(tmp, priv->regs + reg); } static void uniphier_gpio_bank_write(struct udevice *dev, unsigned int bank, unsigned int reg, u32 mask, u32 val) { struct uniphier_gpio_priv *priv = dev_get_priv(dev); if (!mask) return; uniphier_gpio_reg_update(priv, uniphier_gpio_bank_to_reg(bank) + reg, mask, val); } static void uniphier_gpio_offset_write(struct udevice *dev, unsigned int offset, unsigned int reg, int val) { unsigned int bank; u32 mask; uniphier_gpio_get_bank_and_mask(offset, &bank, &mask); uniphier_gpio_bank_write(dev, bank, reg, mask, val ? mask : 0); } static int uniphier_gpio_offset_read(struct udevice *dev, unsigned int offset, unsigned int reg) { struct uniphier_gpio_priv *priv = dev_get_priv(dev); unsigned int bank, reg_offset; u32 mask; uniphier_gpio_get_bank_and_mask(offset, &bank, &mask); reg_offset = uniphier_gpio_bank_to_reg(bank) + reg; return !!(readl(priv->regs + reg_offset) & mask); } static int uniphier_gpio_get_function(struct udevice *dev, unsigned int offset) { return uniphier_gpio_offset_read(dev, offset, UNIPHIER_GPIO_PORT_DIR) ? GPIOF_INPUT : GPIOF_OUTPUT; } static int uniphier_gpio_direction_input(struct udevice *dev, unsigned int offset) { uniphier_gpio_offset_write(dev, offset, UNIPHIER_GPIO_PORT_DIR, 1); return 0; } static int uniphier_gpio_direction_output(struct udevice *dev, unsigned int offset, int value) { uniphier_gpio_offset_write(dev, offset, UNIPHIER_GPIO_PORT_DATA, value); uniphier_gpio_offset_write(dev, offset, UNIPHIER_GPIO_PORT_DIR, 0); return 0; } static int uniphier_gpio_get_value(struct udevice *dev, unsigned int offset) { return uniphier_gpio_offset_read(dev, offset, UNIPHIER_GPIO_PORT_DATA); } static int uniphier_gpio_set_value(struct udevice *dev, unsigned int offset, int value) { uniphier_gpio_offset_write(dev, offset, UNIPHIER_GPIO_PORT_DATA, value); return 0; } static const struct dm_gpio_ops uniphier_gpio_ops = { .direction_input = uniphier_gpio_direction_input, .direction_output = uniphier_gpio_direction_output, .get_value = uniphier_gpio_get_value, .set_value = uniphier_gpio_set_value, .get_function = uniphier_gpio_get_function, }; static int uniphier_gpio_probe(struct udevice *dev) { struct uniphier_gpio_priv *priv = dev_get_priv(dev); struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev); fdt_addr_t addr; addr = dev_read_addr(dev); if (addr == FDT_ADDR_T_NONE) return -EINVAL; priv->regs = devm_ioremap(dev, addr, SZ_512); if (!priv->regs) return -ENOMEM; uc_priv->gpio_count = fdtdec_get_uint(gd->fdt_blob, dev_of_offset(dev), "ngpios", 0); return 0; } static const struct udevice_id uniphier_gpio_match[] = { { .compatible = "socionext,uniphier-gpio" }, { /* sentinel */ } }; U_BOOT_DRIVER(uniphier_gpio) = { .name = "uniphier-gpio", .id = UCLASS_GPIO, .of_match = uniphier_gpio_match, .probe = uniphier_gpio_probe, .priv_auto = sizeof(struct uniphier_gpio_priv), .ops = &uniphier_gpio_ops, }; |