gpio-tc3589x.c 9.0 KB
Newer Older
R
Rabin Vincent 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) ST-Ericsson SA 2010
 *
 * License Terms: GNU General Public License, version 2
 * Author: Hanumath Prasad <hanumath.prasad@stericsson.com> for ST-Ericsson
 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/gpio.h>
14
#include <linux/of.h>
R
Rabin Vincent 已提交
15
#include <linux/interrupt.h>
16
#include <linux/mfd/tc3589x.h>
R
Rabin Vincent 已提交
17 18 19 20 21 22 23 24 25 26

/*
 * These registers are modified under the irq bus lock and cached to avoid
 * unnecessary writes in bus_sync_unlock.
 */
enum { REG_IBE, REG_IEV, REG_IS, REG_IE };

#define CACHE_NR_REGS	4
#define CACHE_NR_BANKS	3

27
struct tc3589x_gpio {
R
Rabin Vincent 已提交
28
	struct gpio_chip chip;
29
	struct tc3589x *tc3589x;
R
Rabin Vincent 已提交
30 31 32 33 34 35 36
	struct device *dev;
	struct mutex irq_lock;
	/* Caches of interrupt control registers for bus_lock */
	u8 regs[CACHE_NR_REGS][CACHE_NR_BANKS];
	u8 oldregs[CACHE_NR_REGS][CACHE_NR_BANKS];
};

37
static inline struct tc3589x_gpio *to_tc3589x_gpio(struct gpio_chip *chip)
R
Rabin Vincent 已提交
38
{
39
	return container_of(chip, struct tc3589x_gpio, chip);
R
Rabin Vincent 已提交
40 41
}

42
static int tc3589x_gpio_get(struct gpio_chip *chip, unsigned offset)
R
Rabin Vincent 已提交
43
{
44 45 46
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	u8 reg = TC3589x_GPIODATA0 + (offset / 8) * 2;
R
Rabin Vincent 已提交
47 48 49
	u8 mask = 1 << (offset % 8);
	int ret;

50
	ret = tc3589x_reg_read(tc3589x, reg);
R
Rabin Vincent 已提交
51 52 53 54 55 56
	if (ret < 0)
		return ret;

	return ret & mask;
}

57
static void tc3589x_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
R
Rabin Vincent 已提交
58
{
59 60 61
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	u8 reg = TC3589x_GPIODATA0 + (offset / 8) * 2;
R
Rabin Vincent 已提交
62 63 64
	unsigned pos = offset % 8;
	u8 data[] = {!!val << pos, 1 << pos};

65
	tc3589x_block_write(tc3589x, reg, ARRAY_SIZE(data), data);
R
Rabin Vincent 已提交
66 67
}

68
static int tc3589x_gpio_direction_output(struct gpio_chip *chip,
R
Rabin Vincent 已提交
69 70
					 unsigned offset, int val)
{
71 72 73
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	u8 reg = TC3589x_GPIODIR0 + offset / 8;
R
Rabin Vincent 已提交
74 75
	unsigned pos = offset % 8;

76
	tc3589x_gpio_set(chip, offset, val);
R
Rabin Vincent 已提交
77

78
	return tc3589x_set_bits(tc3589x, reg, 1 << pos, 1 << pos);
R
Rabin Vincent 已提交
79 80
}

81
static int tc3589x_gpio_direction_input(struct gpio_chip *chip,
R
Rabin Vincent 已提交
82 83
					unsigned offset)
{
84 85 86
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	u8 reg = TC3589x_GPIODIR0 + offset / 8;
R
Rabin Vincent 已提交
87 88
	unsigned pos = offset % 8;

89
	return tc3589x_set_bits(tc3589x, reg, 1 << pos, 0);
R
Rabin Vincent 已提交
90 91 92
}

static struct gpio_chip template_chip = {
93
	.label			= "tc3589x",
R
Rabin Vincent 已提交
94
	.owner			= THIS_MODULE,
95 96 97 98
	.direction_input	= tc3589x_gpio_direction_input,
	.get			= tc3589x_gpio_get,
	.direction_output	= tc3589x_gpio_direction_output,
	.set			= tc3589x_gpio_set,
99
	.can_sleep		= true,
R
Rabin Vincent 已提交
100 101
};

102
static int tc3589x_gpio_irq_set_type(struct irq_data *d, unsigned int type)
R
Rabin Vincent 已提交
103
{
104 105
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
	struct tc3589x_gpio *tc3589x_gpio = container_of(gc, struct tc3589x_gpio, chip);
106
	int offset = d->hwirq;
R
Rabin Vincent 已提交
107 108 109 110
	int regoffset = offset / 8;
	int mask = 1 << (offset % 8);

	if (type == IRQ_TYPE_EDGE_BOTH) {
111
		tc3589x_gpio->regs[REG_IBE][regoffset] |= mask;
R
Rabin Vincent 已提交
112 113 114
		return 0;
	}

115
	tc3589x_gpio->regs[REG_IBE][regoffset] &= ~mask;
R
Rabin Vincent 已提交
116 117

	if (type == IRQ_TYPE_LEVEL_LOW || type == IRQ_TYPE_LEVEL_HIGH)
118
		tc3589x_gpio->regs[REG_IS][regoffset] |= mask;
R
Rabin Vincent 已提交
119
	else
120
		tc3589x_gpio->regs[REG_IS][regoffset] &= ~mask;
R
Rabin Vincent 已提交
121 122

	if (type == IRQ_TYPE_EDGE_RISING || type == IRQ_TYPE_LEVEL_HIGH)
123
		tc3589x_gpio->regs[REG_IEV][regoffset] |= mask;
R
Rabin Vincent 已提交
124
	else
125
		tc3589x_gpio->regs[REG_IEV][regoffset] &= ~mask;
R
Rabin Vincent 已提交
126 127 128 129

	return 0;
}

130
static void tc3589x_gpio_irq_lock(struct irq_data *d)
R
Rabin Vincent 已提交
131
{
132 133
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
	struct tc3589x_gpio *tc3589x_gpio = container_of(gc, struct tc3589x_gpio, chip);
R
Rabin Vincent 已提交
134

135
	mutex_lock(&tc3589x_gpio->irq_lock);
R
Rabin Vincent 已提交
136 137
}

138
static void tc3589x_gpio_irq_sync_unlock(struct irq_data *d)
R
Rabin Vincent 已提交
139
{
140 141
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
	struct tc3589x_gpio *tc3589x_gpio = container_of(gc, struct tc3589x_gpio, chip);
142
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
R
Rabin Vincent 已提交
143
	static const u8 regmap[] = {
144 145 146 147
		[REG_IBE]	= TC3589x_GPIOIBE0,
		[REG_IEV]	= TC3589x_GPIOIEV0,
		[REG_IS]	= TC3589x_GPIOIS0,
		[REG_IE]	= TC3589x_GPIOIE0,
R
Rabin Vincent 已提交
148 149 150 151 152
	};
	int i, j;

	for (i = 0; i < CACHE_NR_REGS; i++) {
		for (j = 0; j < CACHE_NR_BANKS; j++) {
153 154
			u8 old = tc3589x_gpio->oldregs[i][j];
			u8 new = tc3589x_gpio->regs[i][j];
R
Rabin Vincent 已提交
155 156 157 158

			if (new == old)
				continue;

159 160
			tc3589x_gpio->oldregs[i][j] = new;
			tc3589x_reg_write(tc3589x, regmap[i] + j * 8, new);
R
Rabin Vincent 已提交
161 162 163
		}
	}

164
	mutex_unlock(&tc3589x_gpio->irq_lock);
R
Rabin Vincent 已提交
165 166
}

167
static void tc3589x_gpio_irq_mask(struct irq_data *d)
R
Rabin Vincent 已提交
168
{
169 170
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
	struct tc3589x_gpio *tc3589x_gpio = container_of(gc, struct tc3589x_gpio, chip);
171
	int offset = d->hwirq;
R
Rabin Vincent 已提交
172 173 174
	int regoffset = offset / 8;
	int mask = 1 << (offset % 8);

175
	tc3589x_gpio->regs[REG_IE][regoffset] &= ~mask;
R
Rabin Vincent 已提交
176 177
}

178
static void tc3589x_gpio_irq_unmask(struct irq_data *d)
R
Rabin Vincent 已提交
179
{
180 181
	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
	struct tc3589x_gpio *tc3589x_gpio = container_of(gc, struct tc3589x_gpio, chip);
182
	int offset = d->hwirq;
R
Rabin Vincent 已提交
183 184 185
	int regoffset = offset / 8;
	int mask = 1 << (offset % 8);

186
	tc3589x_gpio->regs[REG_IE][regoffset] |= mask;
R
Rabin Vincent 已提交
187 188
}

189 190
static struct irq_chip tc3589x_gpio_irq_chip = {
	.name			= "tc3589x-gpio",
191 192 193 194 195
	.irq_bus_lock		= tc3589x_gpio_irq_lock,
	.irq_bus_sync_unlock	= tc3589x_gpio_irq_sync_unlock,
	.irq_mask		= tc3589x_gpio_irq_mask,
	.irq_unmask		= tc3589x_gpio_irq_unmask,
	.irq_set_type		= tc3589x_gpio_irq_set_type,
R
Rabin Vincent 已提交
196 197
};

198
static irqreturn_t tc3589x_gpio_irq(int irq, void *dev)
R
Rabin Vincent 已提交
199
{
200 201
	struct tc3589x_gpio *tc3589x_gpio = dev;
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
R
Rabin Vincent 已提交
202 203 204 205
	u8 status[CACHE_NR_BANKS];
	int ret;
	int i;

206
	ret = tc3589x_block_read(tc3589x, TC3589x_GPIOMIS0,
R
Rabin Vincent 已提交
207 208 209 210 211 212 213 214 215 216 217 218
				 ARRAY_SIZE(status), status);
	if (ret < 0)
		return IRQ_NONE;

	for (i = 0; i < ARRAY_SIZE(status); i++) {
		unsigned int stat = status[i];
		if (!stat)
			continue;

		while (stat) {
			int bit = __ffs(stat);
			int line = i * 8 + bit;
219 220
			int irq = irq_find_mapping(tc3589x_gpio->chip.irqdomain,
						   line);
R
Rabin Vincent 已提交
221

222
			handle_nested_irq(irq);
R
Rabin Vincent 已提交
223 224 225
			stat &= ~(1 << bit);
		}

226
		tc3589x_reg_write(tc3589x, TC3589x_GPIOIC0 + i, status[i]);
R
Rabin Vincent 已提交
227 228 229 230 231
	}

	return IRQ_HANDLED;
}

B
Bill Pemberton 已提交
232
static int tc3589x_gpio_probe(struct platform_device *pdev)
R
Rabin Vincent 已提交
233
{
234 235
	struct tc3589x *tc3589x = dev_get_drvdata(pdev->dev.parent);
	struct tc3589x_gpio_platform_data *pdata;
236
	struct device_node *np = pdev->dev.of_node;
237
	struct tc3589x_gpio *tc3589x_gpio;
R
Rabin Vincent 已提交
238 239 240
	int ret;
	int irq;

241
	pdata = tc3589x->pdata->gpio;
242 243 244 245 246

	if (!(pdata || np)) {
		dev_err(&pdev->dev, "No platform data or Device Tree found\n");
		return -EINVAL;
	}
R
Rabin Vincent 已提交
247 248 249 250 251

	irq = platform_get_irq(pdev, 0);
	if (irq < 0)
		return irq;

252 253
	tc3589x_gpio = devm_kzalloc(&pdev->dev, sizeof(struct tc3589x_gpio),
				    GFP_KERNEL);
254
	if (!tc3589x_gpio)
R
Rabin Vincent 已提交
255 256
		return -ENOMEM;

257
	mutex_init(&tc3589x_gpio->irq_lock);
R
Rabin Vincent 已提交
258

259 260
	tc3589x_gpio->dev = &pdev->dev;
	tc3589x_gpio->tc3589x = tc3589x;
R
Rabin Vincent 已提交
261

262 263 264
	tc3589x_gpio->chip = template_chip;
	tc3589x_gpio->chip.ngpio = tc3589x->num_gpio;
	tc3589x_gpio->chip.dev = &pdev->dev;
265
	tc3589x_gpio->chip.base = (pdata) ? pdata->gpio_base : -1;
R
Rabin Vincent 已提交
266

267
#ifdef CONFIG_OF_GPIO
268
	tc3589x_gpio->chip.of_node = np;
269
#endif
R
Rabin Vincent 已提交
270 271

	/* Bring the GPIO module out of reset */
272 273
	ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL,
			       TC3589x_RSTCTRL_GPIRST, 0);
R
Rabin Vincent 已提交
274
	if (ret < 0)
275
		return ret;
R
Rabin Vincent 已提交
276

277 278 279 280
	ret = devm_request_threaded_irq(&pdev->dev,
					irq, NULL, tc3589x_gpio_irq,
					IRQF_ONESHOT, "tc3589x-gpio",
					tc3589x_gpio);
R
Rabin Vincent 已提交
281 282
	if (ret) {
		dev_err(&pdev->dev, "unable to get irq: %d\n", ret);
283
		return ret;
R
Rabin Vincent 已提交
284 285
	}

286
	ret = gpiochip_add(&tc3589x_gpio->chip);
R
Rabin Vincent 已提交
287 288
	if (ret) {
		dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret);
289
		return ret;
R
Rabin Vincent 已提交
290 291
	}

292 293 294 295 296 297 298 299 300 301 302
	ret =  gpiochip_irqchip_add(&tc3589x_gpio->chip,
				    &tc3589x_gpio_irq_chip,
				    0,
				    handle_simple_irq,
				    IRQ_TYPE_NONE);
	if (ret) {
		dev_err(&pdev->dev,
			"could not connect irqchip to gpiochip\n");
		return ret;
	}

303
	if (pdata && pdata->setup)
304
		pdata->setup(tc3589x, tc3589x_gpio->chip.base);
305

306
	platform_set_drvdata(pdev, tc3589x_gpio);
R
Rabin Vincent 已提交
307 308 309 310

	return 0;
}

B
Bill Pemberton 已提交
311
static int tc3589x_gpio_remove(struct platform_device *pdev)
R
Rabin Vincent 已提交
312
{
313 314 315
	struct tc3589x_gpio *tc3589x_gpio = platform_get_drvdata(pdev);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	struct tc3589x_gpio_platform_data *pdata = tc3589x->pdata->gpio;
R
Rabin Vincent 已提交
316 317
	int ret;

318
	if (pdata && pdata->remove)
319
		pdata->remove(tc3589x, tc3589x_gpio->chip.base);
320

321
	ret = gpiochip_remove(&tc3589x_gpio->chip);
R
Rabin Vincent 已提交
322
	if (ret < 0) {
323
		dev_err(tc3589x_gpio->dev,
R
Rabin Vincent 已提交
324 325 326 327 328 329 330
			"unable to remove gpiochip: %d\n", ret);
		return ret;
	}

	return 0;
}

331 332
static struct platform_driver tc3589x_gpio_driver = {
	.driver.name	= "tc3589x-gpio",
R
Rabin Vincent 已提交
333
	.driver.owner	= THIS_MODULE,
334
	.probe		= tc3589x_gpio_probe,
B
Bill Pemberton 已提交
335
	.remove		= tc3589x_gpio_remove,
R
Rabin Vincent 已提交
336 337
};

338
static int __init tc3589x_gpio_init(void)
R
Rabin Vincent 已提交
339
{
340
	return platform_driver_register(&tc3589x_gpio_driver);
R
Rabin Vincent 已提交
341
}
342
subsys_initcall(tc3589x_gpio_init);
R
Rabin Vincent 已提交
343

344
static void __exit tc3589x_gpio_exit(void)
R
Rabin Vincent 已提交
345
{
346
	platform_driver_unregister(&tc3589x_gpio_driver);
R
Rabin Vincent 已提交
347
}
348
module_exit(tc3589x_gpio_exit);
R
Rabin Vincent 已提交
349 350

MODULE_LICENSE("GPL v2");
351
MODULE_DESCRIPTION("TC3589x GPIO driver");
R
Rabin Vincent 已提交
352
MODULE_AUTHOR("Hanumath Prasad, Rabin Vincent");