gpio-tc3589x.c 10.8 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/irq.h>
16
#include <linux/irqdomain.h>
R
Rabin Vincent 已提交
17
#include <linux/interrupt.h>
18
#include <linux/mfd/tc3589x.h>
R
Rabin Vincent 已提交
19 20 21 22 23 24 25 26 27 28

/*
 * 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

29
struct tc3589x_gpio {
R
Rabin Vincent 已提交
30
	struct gpio_chip chip;
31
	struct tc3589x *tc3589x;
R
Rabin Vincent 已提交
32 33
	struct device *dev;
	struct mutex irq_lock;
34
	struct irq_domain *domain;
R
Rabin Vincent 已提交
35 36 37 38 39 40 41 42

	int irq_base;

	/* Caches of interrupt control registers for bus_lock */
	u8 regs[CACHE_NR_REGS][CACHE_NR_BANKS];
	u8 oldregs[CACHE_NR_REGS][CACHE_NR_BANKS];
};

43
static inline struct tc3589x_gpio *to_tc3589x_gpio(struct gpio_chip *chip)
R
Rabin Vincent 已提交
44
{
45
	return container_of(chip, struct tc3589x_gpio, chip);
R
Rabin Vincent 已提交
46 47
}

48
static int tc3589x_gpio_get(struct gpio_chip *chip, unsigned offset)
R
Rabin Vincent 已提交
49
{
50 51 52
	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 已提交
53 54 55
	u8 mask = 1 << (offset % 8);
	int ret;

56
	ret = tc3589x_reg_read(tc3589x, reg);
R
Rabin Vincent 已提交
57 58 59 60 61 62
	if (ret < 0)
		return ret;

	return ret & mask;
}

63
static void tc3589x_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
R
Rabin Vincent 已提交
64
{
65 66 67
	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 已提交
68 69 70
	unsigned pos = offset % 8;
	u8 data[] = {!!val << pos, 1 << pos};

71
	tc3589x_block_write(tc3589x, reg, ARRAY_SIZE(data), data);
R
Rabin Vincent 已提交
72 73
}

74
static int tc3589x_gpio_direction_output(struct gpio_chip *chip,
R
Rabin Vincent 已提交
75 76
					 unsigned offset, int val)
{
77 78 79
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	u8 reg = TC3589x_GPIODIR0 + offset / 8;
R
Rabin Vincent 已提交
80 81
	unsigned pos = offset % 8;

82
	tc3589x_gpio_set(chip, offset, val);
R
Rabin Vincent 已提交
83

84
	return tc3589x_set_bits(tc3589x, reg, 1 << pos, 1 << pos);
R
Rabin Vincent 已提交
85 86
}

87
static int tc3589x_gpio_direction_input(struct gpio_chip *chip,
R
Rabin Vincent 已提交
88 89
					unsigned offset)
{
90 91 92
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
	u8 reg = TC3589x_GPIODIR0 + offset / 8;
R
Rabin Vincent 已提交
93 94
	unsigned pos = offset % 8;

95
	return tc3589x_set_bits(tc3589x, reg, 1 << pos, 0);
R
Rabin Vincent 已提交
96 97
}

98
/**
99
 * tc3589x_gpio_irq_get_irq(): Map a hardware IRQ on a chip to a Linux IRQ
100 101
 *
 * @tc3589x_gpio: tc3589x_gpio_irq controller to operate on.
102
 * @irq: index of the hardware interrupt requested in the chip IRQs
103 104 105
 *
 * Useful for drivers to request their own IRQs.
 */
106 107
static int tc3589x_gpio_irq_get_irq(struct tc3589x_gpio *tc3589x_gpio,
				     int hwirq)
108 109 110 111
{
	if (!tc3589x_gpio)
		return -EINVAL;

112
	return irq_create_mapping(tc3589x_gpio->domain, hwirq);
113 114
}

115
static int tc3589x_gpio_to_irq(struct gpio_chip *chip, unsigned offset)
R
Rabin Vincent 已提交
116
{
117
	struct tc3589x_gpio *tc3589x_gpio = to_tc3589x_gpio(chip);
R
Rabin Vincent 已提交
118

119
	return tc3589x_gpio_irq_get_irq(tc3589x_gpio, offset);
R
Rabin Vincent 已提交
120 121 122
}

static struct gpio_chip template_chip = {
123
	.label			= "tc3589x",
R
Rabin Vincent 已提交
124
	.owner			= THIS_MODULE,
125 126 127 128 129
	.direction_input	= tc3589x_gpio_direction_input,
	.get			= tc3589x_gpio_get,
	.direction_output	= tc3589x_gpio_direction_output,
	.set			= tc3589x_gpio_set,
	.to_irq			= tc3589x_gpio_to_irq,
R
Rabin Vincent 已提交
130 131 132
	.can_sleep		= 1,
};

133
static int tc3589x_gpio_irq_set_type(struct irq_data *d, unsigned int type)
R
Rabin Vincent 已提交
134
{
135
	struct tc3589x_gpio *tc3589x_gpio = irq_data_get_irq_chip_data(d);
136
	int offset = d->hwirq;
R
Rabin Vincent 已提交
137 138 139 140
	int regoffset = offset / 8;
	int mask = 1 << (offset % 8);

	if (type == IRQ_TYPE_EDGE_BOTH) {
141
		tc3589x_gpio->regs[REG_IBE][regoffset] |= mask;
R
Rabin Vincent 已提交
142 143 144
		return 0;
	}

145
	tc3589x_gpio->regs[REG_IBE][regoffset] &= ~mask;
R
Rabin Vincent 已提交
146 147

	if (type == IRQ_TYPE_LEVEL_LOW || type == IRQ_TYPE_LEVEL_HIGH)
148
		tc3589x_gpio->regs[REG_IS][regoffset] |= mask;
R
Rabin Vincent 已提交
149
	else
150
		tc3589x_gpio->regs[REG_IS][regoffset] &= ~mask;
R
Rabin Vincent 已提交
151 152

	if (type == IRQ_TYPE_EDGE_RISING || type == IRQ_TYPE_LEVEL_HIGH)
153
		tc3589x_gpio->regs[REG_IEV][regoffset] |= mask;
R
Rabin Vincent 已提交
154
	else
155
		tc3589x_gpio->regs[REG_IEV][regoffset] &= ~mask;
R
Rabin Vincent 已提交
156 157 158 159

	return 0;
}

160
static void tc3589x_gpio_irq_lock(struct irq_data *d)
R
Rabin Vincent 已提交
161
{
162
	struct tc3589x_gpio *tc3589x_gpio = irq_data_get_irq_chip_data(d);
R
Rabin Vincent 已提交
163

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

167
static void tc3589x_gpio_irq_sync_unlock(struct irq_data *d)
R
Rabin Vincent 已提交
168
{
169
	struct tc3589x_gpio *tc3589x_gpio = irq_data_get_irq_chip_data(d);
170
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
R
Rabin Vincent 已提交
171
	static const u8 regmap[] = {
172 173 174 175
		[REG_IBE]	= TC3589x_GPIOIBE0,
		[REG_IEV]	= TC3589x_GPIOIEV0,
		[REG_IS]	= TC3589x_GPIOIS0,
		[REG_IE]	= TC3589x_GPIOIE0,
R
Rabin Vincent 已提交
176 177 178 179 180
	};
	int i, j;

	for (i = 0; i < CACHE_NR_REGS; i++) {
		for (j = 0; j < CACHE_NR_BANKS; j++) {
181 182
			u8 old = tc3589x_gpio->oldregs[i][j];
			u8 new = tc3589x_gpio->regs[i][j];
R
Rabin Vincent 已提交
183 184 185 186

			if (new == old)
				continue;

187 188
			tc3589x_gpio->oldregs[i][j] = new;
			tc3589x_reg_write(tc3589x, regmap[i] + j * 8, new);
R
Rabin Vincent 已提交
189 190 191
		}
	}

192
	mutex_unlock(&tc3589x_gpio->irq_lock);
R
Rabin Vincent 已提交
193 194
}

195
static void tc3589x_gpio_irq_mask(struct irq_data *d)
R
Rabin Vincent 已提交
196
{
197
	struct tc3589x_gpio *tc3589x_gpio = irq_data_get_irq_chip_data(d);
198
	int offset = d->hwirq;
R
Rabin Vincent 已提交
199 200 201
	int regoffset = offset / 8;
	int mask = 1 << (offset % 8);

202
	tc3589x_gpio->regs[REG_IE][regoffset] &= ~mask;
R
Rabin Vincent 已提交
203 204
}

205
static void tc3589x_gpio_irq_unmask(struct irq_data *d)
R
Rabin Vincent 已提交
206
{
207
	struct tc3589x_gpio *tc3589x_gpio = irq_data_get_irq_chip_data(d);
208
	int offset = d->hwirq;
R
Rabin Vincent 已提交
209 210 211
	int regoffset = offset / 8;
	int mask = 1 << (offset % 8);

212
	tc3589x_gpio->regs[REG_IE][regoffset] |= mask;
R
Rabin Vincent 已提交
213 214
}

215 216
static struct irq_chip tc3589x_gpio_irq_chip = {
	.name			= "tc3589x-gpio",
217 218 219 220 221
	.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 已提交
222 223
};

224
static irqreturn_t tc3589x_gpio_irq(int irq, void *dev)
R
Rabin Vincent 已提交
225
{
226 227
	struct tc3589x_gpio *tc3589x_gpio = dev;
	struct tc3589x *tc3589x = tc3589x_gpio->tc3589x;
R
Rabin Vincent 已提交
228 229 230 231
	u8 status[CACHE_NR_BANKS];
	int ret;
	int i;

232
	ret = tc3589x_block_read(tc3589x, TC3589x_GPIOMIS0,
R
Rabin Vincent 已提交
233 234 235 236 237 238 239 240 241 242 243 244
				 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;
245
			int irq = tc3589x_gpio_irq_get_irq(tc3589x_gpio, line);
R
Rabin Vincent 已提交
246

247
			handle_nested_irq(irq);
R
Rabin Vincent 已提交
248 249 250
			stat &= ~(1 << bit);
		}

251
		tc3589x_reg_write(tc3589x, TC3589x_GPIOIC0 + i, status[i]);
R
Rabin Vincent 已提交
252 253 254 255 256
	}

	return IRQ_HANDLED;
}

257
static int tc3589x_gpio_irq_map(struct irq_domain *d, unsigned int irq,
258
				irq_hw_number_t hwirq)
R
Rabin Vincent 已提交
259
{
260
	struct tc3589x *tc3589x_gpio = d->host_data;
R
Rabin Vincent 已提交
261

262 263
	irq_set_chip_data(irq, tc3589x_gpio);
	irq_set_chip_and_handler(irq, &tc3589x_gpio_irq_chip,
264
				handle_simple_irq);
265
	irq_set_nested_thread(irq, 1);
R
Rabin Vincent 已提交
266
#ifdef CONFIG_ARM
267
	set_irq_flags(irq, IRQF_VALID);
R
Rabin Vincent 已提交
268
#else
269
	irq_set_noprobe(irq);
R
Rabin Vincent 已提交
270 271 272 273 274
#endif

	return 0;
}

275
static void tc3589x_gpio_irq_unmap(struct irq_domain *d, unsigned int irq)
R
Rabin Vincent 已提交
276 277
{
#ifdef CONFIG_ARM
278
	set_irq_flags(irq, 0);
R
Rabin Vincent 已提交
279
#endif
280 281
	irq_set_chip_and_handler(irq, NULL, NULL);
	irq_set_chip_data(irq, NULL);
282 283 284
}

static struct irq_domain_ops tc3589x_irq_ops = {
285 286 287
	.map    = tc3589x_gpio_irq_map,
	.unmap  = tc3589x_gpio_irq_unmap,
	.xlate  = irq_domain_xlate_twocell,
288 289
};

290 291
static int tc3589x_gpio_irq_init(struct tc3589x_gpio *tc3589x_gpio,
				struct device_node *np)
292 293 294
{
	int base = tc3589x_gpio->irq_base;

295 296 297 298 299 300 301 302 303
	/*
	 * If this results in a linear domain, irq_create_mapping() will
	 * take care of allocating IRQ descriptors at runtime. When a base
	 * is provided, the IRQ descriptors will be allocated when the
	 * domain is instantiated.
	 */
	tc3589x_gpio->domain = irq_domain_add_simple(np,
			tc3589x_gpio->chip.ngpio, base, &tc3589x_irq_ops,
			tc3589x_gpio);
304 305 306 307 308 309
	if (!tc3589x_gpio->domain) {
		dev_err(tc3589x_gpio->dev, "Failed to create irqdomain\n");
		return -ENOSYS;
	}

	return 0;
R
Rabin Vincent 已提交
310 311
}

B
Bill Pemberton 已提交
312
static int tc3589x_gpio_probe(struct platform_device *pdev)
R
Rabin Vincent 已提交
313
{
314 315
	struct tc3589x *tc3589x = dev_get_drvdata(pdev->dev.parent);
	struct tc3589x_gpio_platform_data *pdata;
316
	struct device_node *np = pdev->dev.of_node;
317
	struct tc3589x_gpio *tc3589x_gpio;
R
Rabin Vincent 已提交
318 319 320
	int ret;
	int irq;

321
	pdata = tc3589x->pdata->gpio;
322 323 324 325 326

	if (!(pdata || np)) {
		dev_err(&pdev->dev, "No platform data or Device Tree found\n");
		return -EINVAL;
	}
R
Rabin Vincent 已提交
327 328 329 330 331

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

332 333
	tc3589x_gpio = kzalloc(sizeof(struct tc3589x_gpio), GFP_KERNEL);
	if (!tc3589x_gpio)
R
Rabin Vincent 已提交
334 335
		return -ENOMEM;

336
	mutex_init(&tc3589x_gpio->irq_lock);
R
Rabin Vincent 已提交
337

338 339
	tc3589x_gpio->dev = &pdev->dev;
	tc3589x_gpio->tc3589x = tc3589x;
R
Rabin Vincent 已提交
340

341 342 343
	tc3589x_gpio->chip = template_chip;
	tc3589x_gpio->chip.ngpio = tc3589x->num_gpio;
	tc3589x_gpio->chip.dev = &pdev->dev;
344
	tc3589x_gpio->chip.base = (pdata) ? pdata->gpio_base : -1;
R
Rabin Vincent 已提交
345

346
#ifdef CONFIG_OF_GPIO
347
	tc3589x_gpio->chip.of_node = np;
348
#endif
R
Rabin Vincent 已提交
349

350 351 352
	tc3589x_gpio->irq_base = tc3589x->irq_base ?
		tc3589x->irq_base + TC3589x_INT_GPIO(0) : 0;

R
Rabin Vincent 已提交
353
	/* Bring the GPIO module out of reset */
354 355
	ret = tc3589x_set_bits(tc3589x, TC3589x_RSTCTRL,
			       TC3589x_RSTCTRL_GPIRST, 0);
R
Rabin Vincent 已提交
356 357 358
	if (ret < 0)
		goto out_free;

359
	ret = tc3589x_gpio_irq_init(tc3589x_gpio, np);
R
Rabin Vincent 已提交
360 361 362
	if (ret)
		goto out_free;

363 364
	ret = request_threaded_irq(irq, NULL, tc3589x_gpio_irq, IRQF_ONESHOT,
				   "tc3589x-gpio", tc3589x_gpio);
R
Rabin Vincent 已提交
365 366
	if (ret) {
		dev_err(&pdev->dev, "unable to get irq: %d\n", ret);
367
		goto out_free;
R
Rabin Vincent 已提交
368 369
	}

370
	ret = gpiochip_add(&tc3589x_gpio->chip);
R
Rabin Vincent 已提交
371 372 373 374 375
	if (ret) {
		dev_err(&pdev->dev, "unable to add gpiochip: %d\n", ret);
		goto out_freeirq;
	}

376
	if (pdata && pdata->setup)
377
		pdata->setup(tc3589x, tc3589x_gpio->chip.base);
378

379
	platform_set_drvdata(pdev, tc3589x_gpio);
R
Rabin Vincent 已提交
380 381 382 383

	return 0;

out_freeirq:
384
	free_irq(irq, tc3589x_gpio);
R
Rabin Vincent 已提交
385
out_free:
386
	kfree(tc3589x_gpio);
R
Rabin Vincent 已提交
387 388 389
	return ret;
}

B
Bill Pemberton 已提交
390
static int tc3589x_gpio_remove(struct platform_device *pdev)
R
Rabin Vincent 已提交
391
{
392 393 394
	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 已提交
395 396 397
	int irq = platform_get_irq(pdev, 0);
	int ret;

398
	if (pdata && pdata->remove)
399
		pdata->remove(tc3589x, tc3589x_gpio->chip.base);
400

401
	ret = gpiochip_remove(&tc3589x_gpio->chip);
R
Rabin Vincent 已提交
402
	if (ret < 0) {
403
		dev_err(tc3589x_gpio->dev,
R
Rabin Vincent 已提交
404 405 406 407
			"unable to remove gpiochip: %d\n", ret);
		return ret;
	}

408
	free_irq(irq, tc3589x_gpio);
R
Rabin Vincent 已提交
409

410
	kfree(tc3589x_gpio);
R
Rabin Vincent 已提交
411 412 413 414

	return 0;
}

415 416
static struct platform_driver tc3589x_gpio_driver = {
	.driver.name	= "tc3589x-gpio",
R
Rabin Vincent 已提交
417
	.driver.owner	= THIS_MODULE,
418
	.probe		= tc3589x_gpio_probe,
B
Bill Pemberton 已提交
419
	.remove		= tc3589x_gpio_remove,
R
Rabin Vincent 已提交
420 421
};

422
static int __init tc3589x_gpio_init(void)
R
Rabin Vincent 已提交
423
{
424
	return platform_driver_register(&tc3589x_gpio_driver);
R
Rabin Vincent 已提交
425
}
426
subsys_initcall(tc3589x_gpio_init);
R
Rabin Vincent 已提交
427

428
static void __exit tc3589x_gpio_exit(void)
R
Rabin Vincent 已提交
429
{
430
	platform_driver_unregister(&tc3589x_gpio_driver);
R
Rabin Vincent 已提交
431
}
432
module_exit(tc3589x_gpio_exit);
R
Rabin Vincent 已提交
433 434

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