gpio-tb10x.c 6.3 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-only
C
Christian Ruppert 已提交
2 3 4 5 6 7 8 9 10 11 12
/* Abilis Systems MODULE DESCRIPTION
 *
 * Copyright (C) Abilis Systems 2013
 *
 * Authors: Sascha Leuenberger <sascha.leuenberger@abilis.com>
 *          Christian Ruppert <christian.ruppert@abilis.com>
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
13
#include <linux/gpio/driver.h>
C
Christian Ruppert 已提交
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
#include <linux/slab.h>
#include <linux/irq.h>
#include <linux/irqdomain.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/spinlock.h>
#include <linux/bitops.h>
#include <linux/pinctrl/consumer.h>

#define TB10X_GPIO_DIR_IN	(0x00000000)
#define TB10X_GPIO_DIR_OUT	(0x00000001)
#define OFFSET_TO_REG_DDR	(0x00)
#define OFFSET_TO_REG_DATA	(0x04)
#define OFFSET_TO_REG_INT_EN	(0x08)
#define OFFSET_TO_REG_CHANGE	(0x0C)
#define OFFSET_TO_REG_WRMASK	(0x10)
#define OFFSET_TO_REG_INT_TYPE	(0x14)


/**
 * @base: register base address
 * @domain: IRQ domain of GPIO generated interrupts managed by this controller
 * @irq: Interrupt line of parent interrupt controller
 * @gc: gpio_chip structure associated to this GPIO controller
 */
struct tb10x_gpio {
	void __iomem *base;
	struct irq_domain *domain;
	int irq;
	struct gpio_chip gc;
};

static inline u32 tb10x_reg_read(struct tb10x_gpio *gpio, unsigned int offs)
{
	return ioread32(gpio->base + offs);
}

static inline void tb10x_reg_write(struct tb10x_gpio *gpio, unsigned int offs,
				u32 val)
{
	iowrite32(val, gpio->base + offs);
}

static inline void tb10x_set_bits(struct tb10x_gpio *gpio, unsigned int offs,
				u32 mask, u32 val)
{
	u32 r;
	unsigned long flags;

L
Linus Walleij 已提交
65
	spin_lock_irqsave(&gpio->gc.bgpio_lock, flags);
C
Christian Ruppert 已提交
66 67 68 69 70 71

	r = tb10x_reg_read(gpio, offs);
	r = (r & ~mask) | (val & mask);

	tb10x_reg_write(gpio, offs, r);

L
Linus Walleij 已提交
72
	spin_unlock_irqrestore(&gpio->gc.bgpio_lock, flags);
C
Christian Ruppert 已提交
73 74 75 76
}

static int tb10x_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
{
77
	struct tb10x_gpio *tb10x_gpio = gpiochip_get_data(chip);
C
Christian Ruppert 已提交
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

	return irq_create_mapping(tb10x_gpio->domain, offset);
}

static int tb10x_gpio_irq_set_type(struct irq_data *data, unsigned int type)
{
	if ((type & IRQF_TRIGGER_MASK) != IRQ_TYPE_EDGE_BOTH) {
		pr_err("Only (both) edge triggered interrupts supported.\n");
		return -EINVAL;
	}

	irqd_set_trigger_type(data, type);

	return IRQ_SET_MASK_OK;
}

static irqreturn_t tb10x_gpio_irq_cascade(int irq, void *data)
{
	struct tb10x_gpio *tb10x_gpio = data;
	u32 r = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_CHANGE);
	u32 m = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_INT_EN);
	const unsigned long bits = r & m;
	int i;

	for_each_set_bit(i, &bits, 32)
103
		generic_handle_domain_irq(tb10x_gpio->domain, i);
C
Christian Ruppert 已提交
104 105 106 107 108 109 110

	return IRQ_HANDLED;
}

static int tb10x_gpio_probe(struct platform_device *pdev)
{
	struct tb10x_gpio *tb10x_gpio;
111 112
	struct device *dev = &pdev->dev;
	struct device_node *np = dev->of_node;
C
Christian Ruppert 已提交
113 114 115
	int ret = -EBUSY;
	u32 ngpio;

116
	if (!np)
C
Christian Ruppert 已提交
117 118
		return -EINVAL;

119
	if (of_property_read_u32(np, "abilis,ngpio", &ngpio))
C
Christian Ruppert 已提交
120 121
		return -EINVAL;

122
	tb10x_gpio = devm_kzalloc(dev, sizeof(*tb10x_gpio), GFP_KERNEL);
C
Christian Ruppert 已提交
123 124 125
	if (tb10x_gpio == NULL)
		return -ENOMEM;

126
	tb10x_gpio->base = devm_platform_ioremap_resource(pdev, 0);
127 128
	if (IS_ERR(tb10x_gpio->base))
		return PTR_ERR(tb10x_gpio->base);
C
Christian Ruppert 已提交
129

130 131
	tb10x_gpio->gc.label =
		devm_kasprintf(dev, GFP_KERNEL, "%pOF", pdev->dev.of_node);
132 133 134
	if (!tb10x_gpio->gc.label)
		return -ENOMEM;

L
Linus Walleij 已提交
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
	/*
	 * Initialize generic GPIO with one single register for reading and setting
	 * the lines, no special set or clear registers and a data direction register
	 * wher 1 means "output".
	 */
	ret = bgpio_init(&tb10x_gpio->gc, dev, 4,
			 tb10x_gpio->base + OFFSET_TO_REG_DATA,
			 NULL,
			 NULL,
			 tb10x_gpio->base + OFFSET_TO_REG_DDR,
			 NULL,
			 0);
	if (ret) {
		dev_err(dev, "unable to init generic GPIO\n");
		return ret;
	}
	tb10x_gpio->gc.base = -1;
	tb10x_gpio->gc.parent = dev;
	tb10x_gpio->gc.owner = THIS_MODULE;
	/*
	 * ngpio is set by bgpio_init() but we override it, this .request()
	 * callback also overrides the one set up by generic GPIO.
	 */
	tb10x_gpio->gc.ngpio = ngpio;
	tb10x_gpio->gc.request = gpiochip_generic_request;
	tb10x_gpio->gc.free = gpiochip_generic_free;

	ret = devm_gpiochip_add_data(dev, &tb10x_gpio->gc, tb10x_gpio);
C
Christian Ruppert 已提交
163
	if (ret < 0) {
164
		dev_err(dev, "Could not add gpiochip.\n");
165
		return ret;
C
Christian Ruppert 已提交
166 167 168 169
	}

	platform_set_drvdata(pdev, tb10x_gpio);

170
	if (of_find_property(np, "interrupt-controller", NULL)) {
C
Christian Ruppert 已提交
171 172 173
		struct irq_chip_generic *gc;

		ret = platform_get_irq(pdev, 0);
174
		if (ret < 0)
175
			return ret;
C
Christian Ruppert 已提交
176 177 178 179

		tb10x_gpio->gc.to_irq	= tb10x_gpio_to_irq;
		tb10x_gpio->irq		= ret;

180
		ret = devm_request_irq(dev, ret, tb10x_gpio_irq_cascade,
C
Christian Ruppert 已提交
181
				IRQF_TRIGGER_NONE | IRQF_SHARED,
182
				dev_name(dev), tb10x_gpio);
C
Christian Ruppert 已提交
183
		if (ret != 0)
184
			return ret;
C
Christian Ruppert 已提交
185

186
		tb10x_gpio->domain = irq_domain_add_linear(np,
C
Christian Ruppert 已提交
187 188 189
						tb10x_gpio->gc.ngpio,
						&irq_generic_chip_ops, NULL);
		if (!tb10x_gpio->domain) {
190
			return -ENOMEM;
C
Christian Ruppert 已提交
191 192 193 194 195 196 197
		}

		ret = irq_alloc_domain_generic_chips(tb10x_gpio->domain,
				tb10x_gpio->gc.ngpio, 1, tb10x_gpio->gc.label,
				handle_edge_irq, IRQ_NOREQUEST, IRQ_NOPROBE,
				IRQ_GC_INIT_MASK_CACHE);
		if (ret)
198
			return ret;
C
Christian Ruppert 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213

		gc = tb10x_gpio->domain->gc->gc[0];
		gc->reg_base                         = tb10x_gpio->base;
		gc->chip_types[0].type               = IRQ_TYPE_EDGE_BOTH;
		gc->chip_types[0].chip.irq_ack       = irq_gc_ack_set_bit;
		gc->chip_types[0].chip.irq_mask      = irq_gc_mask_clr_bit;
		gc->chip_types[0].chip.irq_unmask    = irq_gc_mask_set_bit;
		gc->chip_types[0].chip.irq_set_type  = tb10x_gpio_irq_set_type;
		gc->chip_types[0].regs.ack           = OFFSET_TO_REG_CHANGE;
		gc->chip_types[0].regs.mask          = OFFSET_TO_REG_INT_EN;
	}

	return 0;
}

214
static int tb10x_gpio_remove(struct platform_device *pdev)
C
Christian Ruppert 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
{
	struct tb10x_gpio *tb10x_gpio = platform_get_drvdata(pdev);

	if (tb10x_gpio->gc.to_irq) {
		irq_remove_generic_chip(tb10x_gpio->domain->gc->gc[0],
					BIT(tb10x_gpio->gc.ngpio) - 1, 0, 0);
		kfree(tb10x_gpio->domain->gc);
		irq_domain_remove(tb10x_gpio->domain);
	}

	return 0;
}

static const struct of_device_id tb10x_gpio_dt_ids[] = {
	{ .compatible = "abilis,tb10x-gpio" },
	{ }
};
MODULE_DEVICE_TABLE(of, tb10x_gpio_dt_ids);

static struct platform_driver tb10x_gpio_driver = {
	.probe		= tb10x_gpio_probe,
	.remove		= tb10x_gpio_remove,
	.driver = {
		.name	= "tb10x-gpio",
239
		.of_match_table = tb10x_gpio_dt_ids,
C
Christian Ruppert 已提交
240 241 242
	}
};

243
module_platform_driver(tb10x_gpio_driver);
C
Christian Ruppert 已提交
244 245
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("tb10x gpio.");