Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * Broadcom Kona GPIO Driver
  4 *
  5 * Author: Broadcom Corporation <bcm-kernel-feedback-list@broadcom.com>
  6 * Copyright (C) 2012-2014 Broadcom Corporation
 
 
 
 
 
 
 
 
 
  7 */
  8
  9#include <linux/bitops.h>
 10#include <linux/err.h>
 
 11#include <linux/gpio/driver.h>
 
 
 12#include <linux/init.h>
 13#include <linux/io.h>
 14#include <linux/irqdomain.h>
 15#include <linux/irqchip/chained_irq.h>
 16#include <linux/mod_devicetable.h>
 17#include <linux/platform_device.h>
 18#include <linux/property.h>
 19
 20#define BCM_GPIO_PASSWD				0x00a5a501
 21#define GPIO_PER_BANK				32
 22#define GPIO_MAX_BANK_NUM			8
 23
 24#define GPIO_BANK(gpio)				((gpio) >> 5)
 25#define GPIO_BIT(gpio)				((gpio) & (GPIO_PER_BANK - 1))
 26
 27/* There is a GPIO control register for each GPIO */
 28#define GPIO_CONTROL(gpio)			(0x00000100 + ((gpio) << 2))
 29
 30/* The remaining registers are per GPIO bank */
 31#define GPIO_OUT_STATUS(bank)			(0x00000000 + ((bank) << 2))
 32#define GPIO_IN_STATUS(bank)			(0x00000020 + ((bank) << 2))
 33#define GPIO_OUT_SET(bank)			(0x00000040 + ((bank) << 2))
 34#define GPIO_OUT_CLEAR(bank)			(0x00000060 + ((bank) << 2))
 35#define GPIO_INT_STATUS(bank)			(0x00000080 + ((bank) << 2))
 36#define GPIO_INT_MASK(bank)			(0x000000a0 + ((bank) << 2))
 37#define GPIO_INT_MSKCLR(bank)			(0x000000c0 + ((bank) << 2))
 38#define GPIO_PWD_STATUS(bank)			(0x00000500 + ((bank) << 2))
 39
 40#define GPIO_GPPWR_OFFSET			0x00000520
 41
 42#define GPIO_GPCTR0_DBR_SHIFT			5
 43#define GPIO_GPCTR0_DBR_MASK			0x000001e0
 44
 45#define GPIO_GPCTR0_ITR_SHIFT			3
 46#define GPIO_GPCTR0_ITR_MASK			0x00000018
 47#define GPIO_GPCTR0_ITR_CMD_RISING_EDGE		0x00000001
 48#define GPIO_GPCTR0_ITR_CMD_FALLING_EDGE	0x00000002
 49#define GPIO_GPCTR0_ITR_CMD_BOTH_EDGE		0x00000003
 50
 51#define GPIO_GPCTR0_IOTR_MASK			0x00000001
 52#define GPIO_GPCTR0_IOTR_CMD_0UTPUT		0x00000000
 53#define GPIO_GPCTR0_IOTR_CMD_INPUT		0x00000001
 54
 55#define GPIO_GPCTR0_DB_ENABLE_MASK		0x00000100
 56
 57#define LOCK_CODE				0xffffffff
 58#define UNLOCK_CODE				0x00000000
 59
 60struct bcm_kona_gpio {
 61	void __iomem *reg_base;
 62	int num_bank;
 63	raw_spinlock_t lock;
 64	struct gpio_chip gpio_chip;
 65	struct irq_domain *irq_domain;
 66	struct bcm_kona_gpio_bank *banks;
 
 67};
 68
 69struct bcm_kona_gpio_bank {
 70	int id;
 71	int irq;
 72	/*
 73	 * Used to keep track of lock/unlock operations for each GPIO in the
 74	 * bank.
 75	 *
 76	 * All GPIOs are locked by default (see bcm_kona_gpio_reset), and the
 77	 * unlock count for all GPIOs is 0 by default. Each unlock increments
 78	 * the counter, and each lock decrements the counter.
 79	 *
 80	 * The lock function only locks the GPIO once its unlock counter is
 81	 * down to 0. This is necessary because the GPIO is unlocked in two
 82	 * places in this driver: once for requested GPIOs, and once for
 83	 * requested IRQs. Since it is possible for a GPIO to be requested
 84	 * as both a GPIO and an IRQ, we need to ensure that we don't lock it
 85	 * too early.
 86	 */
 87	u8 gpio_unlock_count[GPIO_PER_BANK];
 88	/* Used in the interrupt handler */
 89	struct bcm_kona_gpio *kona_gpio;
 90};
 91
 92static inline void bcm_kona_gpio_write_lock_regs(void __iomem *reg_base,
 93						int bank_id, u32 lockcode)
 94{
 95	writel(BCM_GPIO_PASSWD, reg_base + GPIO_GPPWR_OFFSET);
 96	writel(lockcode, reg_base + GPIO_PWD_STATUS(bank_id));
 97}
 98
 99static void bcm_kona_gpio_lock_gpio(struct bcm_kona_gpio *kona_gpio,
100					unsigned gpio)
101{
102	u32 val;
103	unsigned long flags;
104	int bank_id = GPIO_BANK(gpio);
105	int bit = GPIO_BIT(gpio);
106	struct bcm_kona_gpio_bank *bank = &kona_gpio->banks[bank_id];
107
108	if (bank->gpio_unlock_count[bit] == 0) {
109		dev_err(kona_gpio->gpio_chip.parent,
110			"Unbalanced locks for GPIO %u\n", gpio);
111		return;
112	}
113
114	if (--bank->gpio_unlock_count[bit] == 0) {
115		raw_spin_lock_irqsave(&kona_gpio->lock, flags);
116
117		val = readl(kona_gpio->reg_base + GPIO_PWD_STATUS(bank_id));
118		val |= BIT(bit);
119		bcm_kona_gpio_write_lock_regs(kona_gpio->reg_base, bank_id, val);
120
121		raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
122	}
123}
124
125static void bcm_kona_gpio_unlock_gpio(struct bcm_kona_gpio *kona_gpio,
126					unsigned gpio)
127{
128	u32 val;
129	unsigned long flags;
130	int bank_id = GPIO_BANK(gpio);
131	int bit = GPIO_BIT(gpio);
132	struct bcm_kona_gpio_bank *bank = &kona_gpio->banks[bank_id];
133
134	if (bank->gpio_unlock_count[bit] == 0) {
135		raw_spin_lock_irqsave(&kona_gpio->lock, flags);
136
137		val = readl(kona_gpio->reg_base + GPIO_PWD_STATUS(bank_id));
138		val &= ~BIT(bit);
139		bcm_kona_gpio_write_lock_regs(kona_gpio->reg_base, bank_id, val);
140
141		raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
142	}
 
143
144	++bank->gpio_unlock_count[bit];
145}
146
147static int bcm_kona_gpio_get_dir(struct gpio_chip *chip, unsigned gpio)
148{
149	struct bcm_kona_gpio *kona_gpio = gpiochip_get_data(chip);
150	void __iomem *reg_base = kona_gpio->reg_base;
151	u32 val;
152
153	val = readl(reg_base + GPIO_CONTROL(gpio)) & GPIO_GPCTR0_IOTR_MASK;
154	return val ? GPIO_LINE_DIRECTION_IN : GPIO_LINE_DIRECTION_OUT;
155}
156
157static void bcm_kona_gpio_set(struct gpio_chip *chip, unsigned gpio, int value)
158{
159	struct bcm_kona_gpio *kona_gpio;
160	void __iomem *reg_base;
161	int bank_id = GPIO_BANK(gpio);
162	int bit = GPIO_BIT(gpio);
163	u32 val, reg_offset;
164	unsigned long flags;
165
166	kona_gpio = gpiochip_get_data(chip);
167	reg_base = kona_gpio->reg_base;
168	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
169
170	/* this function only applies to output pin */
171	if (bcm_kona_gpio_get_dir(chip, gpio) == GPIO_LINE_DIRECTION_IN)
172		goto out;
173
174	reg_offset = value ? GPIO_OUT_SET(bank_id) : GPIO_OUT_CLEAR(bank_id);
175
176	val = readl(reg_base + reg_offset);
177	val |= BIT(bit);
178	writel(val, reg_base + reg_offset);
179
180out:
181	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
182}
183
184static int bcm_kona_gpio_get(struct gpio_chip *chip, unsigned gpio)
185{
186	struct bcm_kona_gpio *kona_gpio;
187	void __iomem *reg_base;
188	int bank_id = GPIO_BANK(gpio);
189	int bit = GPIO_BIT(gpio);
190	u32 val, reg_offset;
191	unsigned long flags;
192
193	kona_gpio = gpiochip_get_data(chip);
194	reg_base = kona_gpio->reg_base;
195	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
196
197	if (bcm_kona_gpio_get_dir(chip, gpio) == GPIO_LINE_DIRECTION_IN)
198		reg_offset = GPIO_IN_STATUS(bank_id);
199	else
200		reg_offset = GPIO_OUT_STATUS(bank_id);
201
202	/* read the GPIO bank status */
203	val = readl(reg_base + reg_offset);
204
205	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
206
207	/* return the specified bit status */
208	return !!(val & BIT(bit));
209}
210
211static int bcm_kona_gpio_request(struct gpio_chip *chip, unsigned gpio)
212{
213	struct bcm_kona_gpio *kona_gpio = gpiochip_get_data(chip);
214
215	bcm_kona_gpio_unlock_gpio(kona_gpio, gpio);
216	return 0;
217}
218
219static void bcm_kona_gpio_free(struct gpio_chip *chip, unsigned gpio)
220{
221	struct bcm_kona_gpio *kona_gpio = gpiochip_get_data(chip);
222
223	bcm_kona_gpio_lock_gpio(kona_gpio, gpio);
224}
225
226static int bcm_kona_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
227{
228	struct bcm_kona_gpio *kona_gpio;
229	void __iomem *reg_base;
230	u32 val;
231	unsigned long flags;
232
233	kona_gpio = gpiochip_get_data(chip);
234	reg_base = kona_gpio->reg_base;
235	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
236
237	val = readl(reg_base + GPIO_CONTROL(gpio));
238	val &= ~GPIO_GPCTR0_IOTR_MASK;
239	val |= GPIO_GPCTR0_IOTR_CMD_INPUT;
240	writel(val, reg_base + GPIO_CONTROL(gpio));
241
242	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
243
244	return 0;
245}
246
247static int bcm_kona_gpio_direction_output(struct gpio_chip *chip,
248					  unsigned gpio, int value)
249{
250	struct bcm_kona_gpio *kona_gpio;
251	void __iomem *reg_base;
252	int bank_id = GPIO_BANK(gpio);
253	int bit = GPIO_BIT(gpio);
254	u32 val, reg_offset;
255	unsigned long flags;
256
257	kona_gpio = gpiochip_get_data(chip);
258	reg_base = kona_gpio->reg_base;
259	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
260
261	val = readl(reg_base + GPIO_CONTROL(gpio));
262	val &= ~GPIO_GPCTR0_IOTR_MASK;
263	val |= GPIO_GPCTR0_IOTR_CMD_0UTPUT;
264	writel(val, reg_base + GPIO_CONTROL(gpio));
265	reg_offset = value ? GPIO_OUT_SET(bank_id) : GPIO_OUT_CLEAR(bank_id);
266
267	val = readl(reg_base + reg_offset);
268	val |= BIT(bit);
269	writel(val, reg_base + reg_offset);
270
271	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
272
273	return 0;
274}
275
276static int bcm_kona_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
277{
278	struct bcm_kona_gpio *kona_gpio;
279
280	kona_gpio = gpiochip_get_data(chip);
281	if (gpio >= kona_gpio->gpio_chip.ngpio)
282		return -ENXIO;
283	return irq_create_mapping(kona_gpio->irq_domain, gpio);
284}
285
286static int bcm_kona_gpio_set_debounce(struct gpio_chip *chip, unsigned gpio,
287				      unsigned debounce)
288{
289	struct bcm_kona_gpio *kona_gpio;
290	void __iomem *reg_base;
291	u32 val, res;
292	unsigned long flags;
293
294	kona_gpio = gpiochip_get_data(chip);
295	reg_base = kona_gpio->reg_base;
296	/* debounce must be 1-128ms (or 0) */
297	if ((debounce > 0 && debounce < 1000) || debounce > 128000) {
298		dev_err(chip->parent, "Debounce value %u not in range\n",
299			debounce);
300		return -EINVAL;
301	}
302
303	/* calculate debounce bit value */
304	if (debounce != 0) {
305		/* Convert to ms */
306		debounce /= 1000;
307		/* find the MSB */
308		res = fls(debounce) - 1;
309		/* Check if MSB-1 is set (round up or down) */
310		if (res > 0 && (debounce & BIT(res - 1)))
311			res++;
312	}
313
314	/* spin lock for read-modify-write of the GPIO register */
315	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
316
317	val = readl(reg_base + GPIO_CONTROL(gpio));
318	val &= ~GPIO_GPCTR0_DBR_MASK;
319
320	if (debounce == 0) {
321		/* disable debounce */
322		val &= ~GPIO_GPCTR0_DB_ENABLE_MASK;
323	} else {
324		val |= GPIO_GPCTR0_DB_ENABLE_MASK |
325		    (res << GPIO_GPCTR0_DBR_SHIFT);
326	}
327
328	writel(val, reg_base + GPIO_CONTROL(gpio));
329
330	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
331
332	return 0;
333}
334
335static int bcm_kona_gpio_set_config(struct gpio_chip *chip, unsigned gpio,
336				    unsigned long config)
337{
338	u32 debounce;
339
340	if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
341		return -ENOTSUPP;
342
343	debounce = pinconf_to_config_argument(config);
344	return bcm_kona_gpio_set_debounce(chip, gpio, debounce);
345}
346
347static const struct gpio_chip template_chip = {
348	.label = "bcm-kona-gpio",
349	.owner = THIS_MODULE,
350	.request = bcm_kona_gpio_request,
351	.free = bcm_kona_gpio_free,
352	.get_direction = bcm_kona_gpio_get_dir,
353	.direction_input = bcm_kona_gpio_direction_input,
354	.get = bcm_kona_gpio_get,
355	.direction_output = bcm_kona_gpio_direction_output,
356	.set = bcm_kona_gpio_set,
357	.set_config = bcm_kona_gpio_set_config,
358	.to_irq = bcm_kona_gpio_to_irq,
359	.base = 0,
360};
361
362static void bcm_kona_gpio_irq_ack(struct irq_data *d)
363{
364	struct bcm_kona_gpio *kona_gpio;
365	void __iomem *reg_base;
366	unsigned gpio = d->hwirq;
367	int bank_id = GPIO_BANK(gpio);
368	int bit = GPIO_BIT(gpio);
369	u32 val;
370	unsigned long flags;
371
372	kona_gpio = irq_data_get_irq_chip_data(d);
373	reg_base = kona_gpio->reg_base;
374	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
375
376	val = readl(reg_base + GPIO_INT_STATUS(bank_id));
377	val |= BIT(bit);
378	writel(val, reg_base + GPIO_INT_STATUS(bank_id));
379
380	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
381}
382
383static void bcm_kona_gpio_irq_mask(struct irq_data *d)
384{
385	struct bcm_kona_gpio *kona_gpio;
386	void __iomem *reg_base;
387	unsigned gpio = d->hwirq;
388	int bank_id = GPIO_BANK(gpio);
389	int bit = GPIO_BIT(gpio);
390	u32 val;
391	unsigned long flags;
392
393	kona_gpio = irq_data_get_irq_chip_data(d);
394	reg_base = kona_gpio->reg_base;
395
396	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
397
398	val = readl(reg_base + GPIO_INT_MASK(bank_id));
399	val |= BIT(bit);
400	writel(val, reg_base + GPIO_INT_MASK(bank_id));
401	gpiochip_disable_irq(&kona_gpio->gpio_chip, gpio);
402
403	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
404}
405
406static void bcm_kona_gpio_irq_unmask(struct irq_data *d)
407{
408	struct bcm_kona_gpio *kona_gpio;
409	void __iomem *reg_base;
410	unsigned gpio = d->hwirq;
411	int bank_id = GPIO_BANK(gpio);
412	int bit = GPIO_BIT(gpio);
413	u32 val;
414	unsigned long flags;
415
416	kona_gpio = irq_data_get_irq_chip_data(d);
417	reg_base = kona_gpio->reg_base;
418
419	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
420
421	val = readl(reg_base + GPIO_INT_MSKCLR(bank_id));
422	val |= BIT(bit);
423	writel(val, reg_base + GPIO_INT_MSKCLR(bank_id));
424	gpiochip_enable_irq(&kona_gpio->gpio_chip, gpio);
425
426	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
427}
428
429static int bcm_kona_gpio_irq_set_type(struct irq_data *d, unsigned int type)
430{
431	struct bcm_kona_gpio *kona_gpio;
432	void __iomem *reg_base;
433	unsigned gpio = d->hwirq;
434	u32 lvl_type;
435	u32 val;
436	unsigned long flags;
437
438	kona_gpio = irq_data_get_irq_chip_data(d);
439	reg_base = kona_gpio->reg_base;
440	switch (type & IRQ_TYPE_SENSE_MASK) {
441	case IRQ_TYPE_EDGE_RISING:
442		lvl_type = GPIO_GPCTR0_ITR_CMD_RISING_EDGE;
443		break;
444
445	case IRQ_TYPE_EDGE_FALLING:
446		lvl_type = GPIO_GPCTR0_ITR_CMD_FALLING_EDGE;
447		break;
448
449	case IRQ_TYPE_EDGE_BOTH:
450		lvl_type = GPIO_GPCTR0_ITR_CMD_BOTH_EDGE;
451		break;
452
453	case IRQ_TYPE_LEVEL_HIGH:
454	case IRQ_TYPE_LEVEL_LOW:
455		/* BCM GPIO doesn't support level triggering */
456	default:
457		dev_err(kona_gpio->gpio_chip.parent,
458			"Invalid BCM GPIO irq type 0x%x\n", type);
459		return -EINVAL;
460	}
461
462	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
463
464	val = readl(reg_base + GPIO_CONTROL(gpio));
465	val &= ~GPIO_GPCTR0_ITR_MASK;
466	val |= lvl_type << GPIO_GPCTR0_ITR_SHIFT;
467	writel(val, reg_base + GPIO_CONTROL(gpio));
468
469	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
470
471	return 0;
472}
473
474static void bcm_kona_gpio_irq_handler(struct irq_desc *desc)
475{
476	void __iomem *reg_base;
477	int bit, bank_id;
478	unsigned long sta;
479	struct bcm_kona_gpio_bank *bank = irq_desc_get_handler_data(desc);
480	struct irq_chip *chip = irq_desc_get_chip(desc);
481
482	chained_irq_enter(chip, desc);
483
484	/*
485	 * For bank interrupts, we can't use chip_data to store the kona_gpio
486	 * pointer, since GIC needs it for its own purposes. Therefore, we get
487	 * our pointer from the bank structure.
488	 */
489	reg_base = bank->kona_gpio->reg_base;
490	bank_id = bank->id;
491
492	while ((sta = readl(reg_base + GPIO_INT_STATUS(bank_id)) &
493		    (~(readl(reg_base + GPIO_INT_MASK(bank_id)))))) {
494		for_each_set_bit(bit, &sta, 32) {
495			int hwirq = GPIO_PER_BANK * bank_id + bit;
 
 
 
496			/*
497			 * Clear interrupt before handler is called so we don't
498			 * miss any interrupt occurred during executing them.
499			 */
500			writel(readl(reg_base + GPIO_INT_STATUS(bank_id)) |
501			       BIT(bit), reg_base + GPIO_INT_STATUS(bank_id));
502			/* Invoke interrupt handler */
503			generic_handle_domain_irq(bank->kona_gpio->irq_domain,
504						  hwirq);
505		}
506	}
507
508	chained_irq_exit(chip, desc);
509}
510
511static int bcm_kona_gpio_irq_reqres(struct irq_data *d)
512{
513	struct bcm_kona_gpio *kona_gpio = irq_data_get_irq_chip_data(d);
514	unsigned int gpio = d->hwirq;
515
516	/*
517	 * We need to unlock the GPIO before any other operations are performed
518	 * on the relevant GPIO configuration registers
519	 */
520	bcm_kona_gpio_unlock_gpio(kona_gpio, gpio);
521
522	return gpiochip_reqres_irq(&kona_gpio->gpio_chip, gpio);
523}
524
525static void bcm_kona_gpio_irq_relres(struct irq_data *d)
526{
527	struct bcm_kona_gpio *kona_gpio = irq_data_get_irq_chip_data(d);
528	unsigned int gpio = d->hwirq;
529
530	/* Once we no longer use it, lock the GPIO again */
531	bcm_kona_gpio_lock_gpio(kona_gpio, gpio);
532
533	gpiochip_relres_irq(&kona_gpio->gpio_chip, gpio);
534}
535
536static struct irq_chip bcm_gpio_irq_chip = {
537	.name = "bcm-kona-gpio",
538	.irq_ack = bcm_kona_gpio_irq_ack,
539	.irq_mask = bcm_kona_gpio_irq_mask,
540	.irq_unmask = bcm_kona_gpio_irq_unmask,
541	.irq_set_type = bcm_kona_gpio_irq_set_type,
542	.irq_request_resources = bcm_kona_gpio_irq_reqres,
543	.irq_release_resources = bcm_kona_gpio_irq_relres,
544};
545
546static struct of_device_id const bcm_kona_gpio_of_match[] = {
547	{ .compatible = "brcm,kona-gpio" },
548	{}
549};
550
551/*
552 * This lock class tells lockdep that GPIO irqs are in a different
553 * category than their parents, so it won't report false recursion.
554 */
555static struct lock_class_key gpio_lock_class;
556static struct lock_class_key gpio_request_class;
557
558static int bcm_kona_gpio_irq_map(struct irq_domain *d, unsigned int irq,
559				 irq_hw_number_t hwirq)
560{
561	int ret;
562
563	ret = irq_set_chip_data(irq, d->host_data);
564	if (ret < 0)
565		return ret;
566	irq_set_lockdep_class(irq, &gpio_lock_class, &gpio_request_class);
567	irq_set_chip_and_handler(irq, &bcm_gpio_irq_chip, handle_simple_irq);
568	irq_set_noprobe(irq);
569
570	return 0;
571}
572
573static void bcm_kona_gpio_irq_unmap(struct irq_domain *d, unsigned int irq)
574{
575	irq_set_chip_and_handler(irq, NULL, NULL);
576	irq_set_chip_data(irq, NULL);
577}
578
579static const struct irq_domain_ops bcm_kona_irq_ops = {
580	.map = bcm_kona_gpio_irq_map,
581	.unmap = bcm_kona_gpio_irq_unmap,
582	.xlate = irq_domain_xlate_twocell,
583};
584
585static void bcm_kona_gpio_reset(struct bcm_kona_gpio *kona_gpio)
586{
587	void __iomem *reg_base;
588	int i;
589
590	reg_base = kona_gpio->reg_base;
591	/* disable interrupts and clear status */
592	for (i = 0; i < kona_gpio->num_bank; i++) {
593		/* Unlock the entire bank first */
594		bcm_kona_gpio_write_lock_regs(reg_base, i, UNLOCK_CODE);
595		writel(0xffffffff, reg_base + GPIO_INT_MASK(i));
596		writel(0xffffffff, reg_base + GPIO_INT_STATUS(i));
597		/* Now re-lock the bank */
598		bcm_kona_gpio_write_lock_regs(reg_base, i, LOCK_CODE);
599	}
600}
601
602static int bcm_kona_gpio_probe(struct platform_device *pdev)
603{
604	struct device *dev = &pdev->dev;
 
605	struct bcm_kona_gpio_bank *bank;
606	struct bcm_kona_gpio *kona_gpio;
607	struct gpio_chip *chip;
608	int ret;
609	int i;
610
 
 
 
 
 
 
611	kona_gpio = devm_kzalloc(dev, sizeof(*kona_gpio), GFP_KERNEL);
612	if (!kona_gpio)
613		return -ENOMEM;
614
615	kona_gpio->gpio_chip = template_chip;
616	chip = &kona_gpio->gpio_chip;
617	ret = platform_irq_count(pdev);
618	if (!ret) {
619		dev_err(dev, "Couldn't determine # GPIO banks\n");
620		return -ENOENT;
621	} else if (ret < 0) {
622		return dev_err_probe(dev, ret, "Couldn't determine GPIO banks\n");
623	}
624	kona_gpio->num_bank = ret;
625
626	if (kona_gpio->num_bank > GPIO_MAX_BANK_NUM) {
627		dev_err(dev, "Too many GPIO banks configured (max=%d)\n",
628			GPIO_MAX_BANK_NUM);
629		return -ENXIO;
630	}
631	kona_gpio->banks = devm_kcalloc(dev,
632					kona_gpio->num_bank,
633					sizeof(*kona_gpio->banks),
634					GFP_KERNEL);
635	if (!kona_gpio->banks)
636		return -ENOMEM;
637
638	chip->parent = dev;
 
 
639	chip->ngpio = kona_gpio->num_bank * GPIO_PER_BANK;
640
641	kona_gpio->irq_domain = irq_domain_create_linear(dev_fwnode(dev),
642							 chip->ngpio,
643							 &bcm_kona_irq_ops,
644							 kona_gpio);
645	if (!kona_gpio->irq_domain) {
646		dev_err(dev, "Couldn't allocate IRQ domain\n");
647		return -ENXIO;
648	}
649
650	kona_gpio->reg_base = devm_platform_ioremap_resource(pdev, 0);
651	if (IS_ERR(kona_gpio->reg_base)) {
652		ret = PTR_ERR(kona_gpio->reg_base);
653		goto err_irq_domain;
654	}
655
656	for (i = 0; i < kona_gpio->num_bank; i++) {
657		bank = &kona_gpio->banks[i];
658		bank->id = i;
659		bank->irq = platform_get_irq(pdev, i);
660		bank->kona_gpio = kona_gpio;
661		if (bank->irq < 0) {
662			dev_err(dev, "Couldn't get IRQ for bank %d\n", i);
663			ret = -ENOENT;
664			goto err_irq_domain;
665		}
666	}
667
668	dev_info(&pdev->dev, "Setting up Kona GPIO\n");
669
670	bcm_kona_gpio_reset(kona_gpio);
671
672	ret = devm_gpiochip_add_data(dev, chip, kona_gpio);
673	if (ret < 0) {
674		dev_err(dev, "Couldn't add GPIO chip -- %d\n", ret);
675		goto err_irq_domain;
676	}
677	for (i = 0; i < kona_gpio->num_bank; i++) {
678		bank = &kona_gpio->banks[i];
679		irq_set_chained_handler_and_data(bank->irq,
680						 bcm_kona_gpio_irq_handler,
681						 bank);
682	}
683
684	raw_spin_lock_init(&kona_gpio->lock);
685
686	return 0;
687
688err_irq_domain:
689	irq_domain_remove(kona_gpio->irq_domain);
690
691	return ret;
692}
693
694static struct platform_driver bcm_kona_gpio_driver = {
695	.driver = {
696			.name = "bcm-kona-gpio",
697			.of_match_table = bcm_kona_gpio_of_match,
698	},
699	.probe = bcm_kona_gpio_probe,
700};
701builtin_platform_driver(bcm_kona_gpio_driver);
v5.4
 
  1/*
  2 * Broadcom Kona GPIO Driver
  3 *
  4 * Author: Broadcom Corporation <bcm-kernel-feedback-list@broadcom.com>
  5 * Copyright (C) 2012-2014 Broadcom Corporation
  6 *
  7 * This program is free software; you can redistribute it and/or
  8 * modify it under the terms of the GNU General Public License as
  9 * published by the Free Software Foundation version 2.
 10 *
 11 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
 12 * kind, whether express or implied; without even the implied warranty
 13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 14 * GNU General Public License for more details.
 15 */
 16
 17#include <linux/bitops.h>
 18#include <linux/err.h>
 19#include <linux/io.h>
 20#include <linux/gpio/driver.h>
 21#include <linux/of_device.h>
 22#include <linux/of_irq.h>
 23#include <linux/init.h>
 
 24#include <linux/irqdomain.h>
 25#include <linux/irqchip/chained_irq.h>
 
 
 
 26
 27#define BCM_GPIO_PASSWD				0x00a5a501
 28#define GPIO_PER_BANK				32
 29#define GPIO_MAX_BANK_NUM			8
 30
 31#define GPIO_BANK(gpio)				((gpio) >> 5)
 32#define GPIO_BIT(gpio)				((gpio) & (GPIO_PER_BANK - 1))
 33
 34/* There is a GPIO control register for each GPIO */
 35#define GPIO_CONTROL(gpio)			(0x00000100 + ((gpio) << 2))
 36
 37/* The remaining registers are per GPIO bank */
 38#define GPIO_OUT_STATUS(bank)			(0x00000000 + ((bank) << 2))
 39#define GPIO_IN_STATUS(bank)			(0x00000020 + ((bank) << 2))
 40#define GPIO_OUT_SET(bank)			(0x00000040 + ((bank) << 2))
 41#define GPIO_OUT_CLEAR(bank)			(0x00000060 + ((bank) << 2))
 42#define GPIO_INT_STATUS(bank)			(0x00000080 + ((bank) << 2))
 43#define GPIO_INT_MASK(bank)			(0x000000a0 + ((bank) << 2))
 44#define GPIO_INT_MSKCLR(bank)			(0x000000c0 + ((bank) << 2))
 45#define GPIO_PWD_STATUS(bank)			(0x00000500 + ((bank) << 2))
 46
 47#define GPIO_GPPWR_OFFSET			0x00000520
 48
 49#define GPIO_GPCTR0_DBR_SHIFT			5
 50#define GPIO_GPCTR0_DBR_MASK			0x000001e0
 51
 52#define GPIO_GPCTR0_ITR_SHIFT			3
 53#define GPIO_GPCTR0_ITR_MASK			0x00000018
 54#define GPIO_GPCTR0_ITR_CMD_RISING_EDGE		0x00000001
 55#define GPIO_GPCTR0_ITR_CMD_FALLING_EDGE	0x00000002
 56#define GPIO_GPCTR0_ITR_CMD_BOTH_EDGE		0x00000003
 57
 58#define GPIO_GPCTR0_IOTR_MASK			0x00000001
 59#define GPIO_GPCTR0_IOTR_CMD_0UTPUT		0x00000000
 60#define GPIO_GPCTR0_IOTR_CMD_INPUT		0x00000001
 61
 62#define GPIO_GPCTR0_DB_ENABLE_MASK		0x00000100
 63
 64#define LOCK_CODE				0xffffffff
 65#define UNLOCK_CODE				0x00000000
 66
 67struct bcm_kona_gpio {
 68	void __iomem *reg_base;
 69	int num_bank;
 70	raw_spinlock_t lock;
 71	struct gpio_chip gpio_chip;
 72	struct irq_domain *irq_domain;
 73	struct bcm_kona_gpio_bank *banks;
 74	struct platform_device *pdev;
 75};
 76
 77struct bcm_kona_gpio_bank {
 78	int id;
 79	int irq;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 80	/* Used in the interrupt handler */
 81	struct bcm_kona_gpio *kona_gpio;
 82};
 83
 84static inline void bcm_kona_gpio_write_lock_regs(void __iomem *reg_base,
 85						int bank_id, u32 lockcode)
 86{
 87	writel(BCM_GPIO_PASSWD, reg_base + GPIO_GPPWR_OFFSET);
 88	writel(lockcode, reg_base + GPIO_PWD_STATUS(bank_id));
 89}
 90
 91static void bcm_kona_gpio_lock_gpio(struct bcm_kona_gpio *kona_gpio,
 92					unsigned gpio)
 93{
 94	u32 val;
 95	unsigned long flags;
 96	int bank_id = GPIO_BANK(gpio);
 
 
 97
 98	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
 
 
 
 
 
 
 
 99
100	val = readl(kona_gpio->reg_base + GPIO_PWD_STATUS(bank_id));
101	val |= BIT(gpio);
102	bcm_kona_gpio_write_lock_regs(kona_gpio->reg_base, bank_id, val);
103
104	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
 
105}
106
107static void bcm_kona_gpio_unlock_gpio(struct bcm_kona_gpio *kona_gpio,
108					unsigned gpio)
109{
110	u32 val;
111	unsigned long flags;
112	int bank_id = GPIO_BANK(gpio);
 
 
 
 
 
113
114	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
 
 
115
116	val = readl(kona_gpio->reg_base + GPIO_PWD_STATUS(bank_id));
117	val &= ~BIT(gpio);
118	bcm_kona_gpio_write_lock_regs(kona_gpio->reg_base, bank_id, val);
119
120	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
121}
122
123static int bcm_kona_gpio_get_dir(struct gpio_chip *chip, unsigned gpio)
124{
125	struct bcm_kona_gpio *kona_gpio = gpiochip_get_data(chip);
126	void __iomem *reg_base = kona_gpio->reg_base;
127	u32 val;
128
129	val = readl(reg_base + GPIO_CONTROL(gpio)) & GPIO_GPCTR0_IOTR_MASK;
130	return !!val;
131}
132
133static void bcm_kona_gpio_set(struct gpio_chip *chip, unsigned gpio, int value)
134{
135	struct bcm_kona_gpio *kona_gpio;
136	void __iomem *reg_base;
137	int bank_id = GPIO_BANK(gpio);
138	int bit = GPIO_BIT(gpio);
139	u32 val, reg_offset;
140	unsigned long flags;
141
142	kona_gpio = gpiochip_get_data(chip);
143	reg_base = kona_gpio->reg_base;
144	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
145
146	/* this function only applies to output pin */
147	if (bcm_kona_gpio_get_dir(chip, gpio) == 1)
148		goto out;
149
150	reg_offset = value ? GPIO_OUT_SET(bank_id) : GPIO_OUT_CLEAR(bank_id);
151
152	val = readl(reg_base + reg_offset);
153	val |= BIT(bit);
154	writel(val, reg_base + reg_offset);
155
156out:
157	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
158}
159
160static int bcm_kona_gpio_get(struct gpio_chip *chip, unsigned gpio)
161{
162	struct bcm_kona_gpio *kona_gpio;
163	void __iomem *reg_base;
164	int bank_id = GPIO_BANK(gpio);
165	int bit = GPIO_BIT(gpio);
166	u32 val, reg_offset;
167	unsigned long flags;
168
169	kona_gpio = gpiochip_get_data(chip);
170	reg_base = kona_gpio->reg_base;
171	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
172
173	if (bcm_kona_gpio_get_dir(chip, gpio) == 1)
174		reg_offset = GPIO_IN_STATUS(bank_id);
175	else
176		reg_offset = GPIO_OUT_STATUS(bank_id);
177
178	/* read the GPIO bank status */
179	val = readl(reg_base + reg_offset);
180
181	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
182
183	/* return the specified bit status */
184	return !!(val & BIT(bit));
185}
186
187static int bcm_kona_gpio_request(struct gpio_chip *chip, unsigned gpio)
188{
189	struct bcm_kona_gpio *kona_gpio = gpiochip_get_data(chip);
190
191	bcm_kona_gpio_unlock_gpio(kona_gpio, gpio);
192	return 0;
193}
194
195static void bcm_kona_gpio_free(struct gpio_chip *chip, unsigned gpio)
196{
197	struct bcm_kona_gpio *kona_gpio = gpiochip_get_data(chip);
198
199	bcm_kona_gpio_lock_gpio(kona_gpio, gpio);
200}
201
202static int bcm_kona_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
203{
204	struct bcm_kona_gpio *kona_gpio;
205	void __iomem *reg_base;
206	u32 val;
207	unsigned long flags;
208
209	kona_gpio = gpiochip_get_data(chip);
210	reg_base = kona_gpio->reg_base;
211	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
212
213	val = readl(reg_base + GPIO_CONTROL(gpio));
214	val &= ~GPIO_GPCTR0_IOTR_MASK;
215	val |= GPIO_GPCTR0_IOTR_CMD_INPUT;
216	writel(val, reg_base + GPIO_CONTROL(gpio));
217
218	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
219
220	return 0;
221}
222
223static int bcm_kona_gpio_direction_output(struct gpio_chip *chip,
224					  unsigned gpio, int value)
225{
226	struct bcm_kona_gpio *kona_gpio;
227	void __iomem *reg_base;
228	int bank_id = GPIO_BANK(gpio);
229	int bit = GPIO_BIT(gpio);
230	u32 val, reg_offset;
231	unsigned long flags;
232
233	kona_gpio = gpiochip_get_data(chip);
234	reg_base = kona_gpio->reg_base;
235	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
236
237	val = readl(reg_base + GPIO_CONTROL(gpio));
238	val &= ~GPIO_GPCTR0_IOTR_MASK;
239	val |= GPIO_GPCTR0_IOTR_CMD_0UTPUT;
240	writel(val, reg_base + GPIO_CONTROL(gpio));
241	reg_offset = value ? GPIO_OUT_SET(bank_id) : GPIO_OUT_CLEAR(bank_id);
242
243	val = readl(reg_base + reg_offset);
244	val |= BIT(bit);
245	writel(val, reg_base + reg_offset);
246
247	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
248
249	return 0;
250}
251
252static int bcm_kona_gpio_to_irq(struct gpio_chip *chip, unsigned gpio)
253{
254	struct bcm_kona_gpio *kona_gpio;
255
256	kona_gpio = gpiochip_get_data(chip);
257	if (gpio >= kona_gpio->gpio_chip.ngpio)
258		return -ENXIO;
259	return irq_create_mapping(kona_gpio->irq_domain, gpio);
260}
261
262static int bcm_kona_gpio_set_debounce(struct gpio_chip *chip, unsigned gpio,
263				      unsigned debounce)
264{
265	struct bcm_kona_gpio *kona_gpio;
266	void __iomem *reg_base;
267	u32 val, res;
268	unsigned long flags;
269
270	kona_gpio = gpiochip_get_data(chip);
271	reg_base = kona_gpio->reg_base;
272	/* debounce must be 1-128ms (or 0) */
273	if ((debounce > 0 && debounce < 1000) || debounce > 128000) {
274		dev_err(chip->parent, "Debounce value %u not in range\n",
275			debounce);
276		return -EINVAL;
277	}
278
279	/* calculate debounce bit value */
280	if (debounce != 0) {
281		/* Convert to ms */
282		debounce /= 1000;
283		/* find the MSB */
284		res = fls(debounce) - 1;
285		/* Check if MSB-1 is set (round up or down) */
286		if (res > 0 && (debounce & BIT(res - 1)))
287			res++;
288	}
289
290	/* spin lock for read-modify-write of the GPIO register */
291	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
292
293	val = readl(reg_base + GPIO_CONTROL(gpio));
294	val &= ~GPIO_GPCTR0_DBR_MASK;
295
296	if (debounce == 0) {
297		/* disable debounce */
298		val &= ~GPIO_GPCTR0_DB_ENABLE_MASK;
299	} else {
300		val |= GPIO_GPCTR0_DB_ENABLE_MASK |
301		    (res << GPIO_GPCTR0_DBR_SHIFT);
302	}
303
304	writel(val, reg_base + GPIO_CONTROL(gpio));
305
306	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
307
308	return 0;
309}
310
311static int bcm_kona_gpio_set_config(struct gpio_chip *chip, unsigned gpio,
312				    unsigned long config)
313{
314	u32 debounce;
315
316	if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
317		return -ENOTSUPP;
318
319	debounce = pinconf_to_config_argument(config);
320	return bcm_kona_gpio_set_debounce(chip, gpio, debounce);
321}
322
323static const struct gpio_chip template_chip = {
324	.label = "bcm-kona-gpio",
325	.owner = THIS_MODULE,
326	.request = bcm_kona_gpio_request,
327	.free = bcm_kona_gpio_free,
328	.get_direction = bcm_kona_gpio_get_dir,
329	.direction_input = bcm_kona_gpio_direction_input,
330	.get = bcm_kona_gpio_get,
331	.direction_output = bcm_kona_gpio_direction_output,
332	.set = bcm_kona_gpio_set,
333	.set_config = bcm_kona_gpio_set_config,
334	.to_irq = bcm_kona_gpio_to_irq,
335	.base = 0,
336};
337
338static void bcm_kona_gpio_irq_ack(struct irq_data *d)
339{
340	struct bcm_kona_gpio *kona_gpio;
341	void __iomem *reg_base;
342	unsigned gpio = d->hwirq;
343	int bank_id = GPIO_BANK(gpio);
344	int bit = GPIO_BIT(gpio);
345	u32 val;
346	unsigned long flags;
347
348	kona_gpio = irq_data_get_irq_chip_data(d);
349	reg_base = kona_gpio->reg_base;
350	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
351
352	val = readl(reg_base + GPIO_INT_STATUS(bank_id));
353	val |= BIT(bit);
354	writel(val, reg_base + GPIO_INT_STATUS(bank_id));
355
356	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
357}
358
359static void bcm_kona_gpio_irq_mask(struct irq_data *d)
360{
361	struct bcm_kona_gpio *kona_gpio;
362	void __iomem *reg_base;
363	unsigned gpio = d->hwirq;
364	int bank_id = GPIO_BANK(gpio);
365	int bit = GPIO_BIT(gpio);
366	u32 val;
367	unsigned long flags;
368
369	kona_gpio = irq_data_get_irq_chip_data(d);
370	reg_base = kona_gpio->reg_base;
 
371	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
372
373	val = readl(reg_base + GPIO_INT_MASK(bank_id));
374	val |= BIT(bit);
375	writel(val, reg_base + GPIO_INT_MASK(bank_id));
376	gpiochip_disable_irq(&kona_gpio->gpio_chip, gpio);
377
378	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
379}
380
381static void bcm_kona_gpio_irq_unmask(struct irq_data *d)
382{
383	struct bcm_kona_gpio *kona_gpio;
384	void __iomem *reg_base;
385	unsigned gpio = d->hwirq;
386	int bank_id = GPIO_BANK(gpio);
387	int bit = GPIO_BIT(gpio);
388	u32 val;
389	unsigned long flags;
390
391	kona_gpio = irq_data_get_irq_chip_data(d);
392	reg_base = kona_gpio->reg_base;
 
393	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
394
395	val = readl(reg_base + GPIO_INT_MSKCLR(bank_id));
396	val |= BIT(bit);
397	writel(val, reg_base + GPIO_INT_MSKCLR(bank_id));
398	gpiochip_enable_irq(&kona_gpio->gpio_chip, gpio);
399
400	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
401}
402
403static int bcm_kona_gpio_irq_set_type(struct irq_data *d, unsigned int type)
404{
405	struct bcm_kona_gpio *kona_gpio;
406	void __iomem *reg_base;
407	unsigned gpio = d->hwirq;
408	u32 lvl_type;
409	u32 val;
410	unsigned long flags;
411
412	kona_gpio = irq_data_get_irq_chip_data(d);
413	reg_base = kona_gpio->reg_base;
414	switch (type & IRQ_TYPE_SENSE_MASK) {
415	case IRQ_TYPE_EDGE_RISING:
416		lvl_type = GPIO_GPCTR0_ITR_CMD_RISING_EDGE;
417		break;
418
419	case IRQ_TYPE_EDGE_FALLING:
420		lvl_type = GPIO_GPCTR0_ITR_CMD_FALLING_EDGE;
421		break;
422
423	case IRQ_TYPE_EDGE_BOTH:
424		lvl_type = GPIO_GPCTR0_ITR_CMD_BOTH_EDGE;
425		break;
426
427	case IRQ_TYPE_LEVEL_HIGH:
428	case IRQ_TYPE_LEVEL_LOW:
429		/* BCM GPIO doesn't support level triggering */
430	default:
431		dev_err(kona_gpio->gpio_chip.parent,
432			"Invalid BCM GPIO irq type 0x%x\n", type);
433		return -EINVAL;
434	}
435
436	raw_spin_lock_irqsave(&kona_gpio->lock, flags);
437
438	val = readl(reg_base + GPIO_CONTROL(gpio));
439	val &= ~GPIO_GPCTR0_ITR_MASK;
440	val |= lvl_type << GPIO_GPCTR0_ITR_SHIFT;
441	writel(val, reg_base + GPIO_CONTROL(gpio));
442
443	raw_spin_unlock_irqrestore(&kona_gpio->lock, flags);
444
445	return 0;
446}
447
448static void bcm_kona_gpio_irq_handler(struct irq_desc *desc)
449{
450	void __iomem *reg_base;
451	int bit, bank_id;
452	unsigned long sta;
453	struct bcm_kona_gpio_bank *bank = irq_desc_get_handler_data(desc);
454	struct irq_chip *chip = irq_desc_get_chip(desc);
455
456	chained_irq_enter(chip, desc);
457
458	/*
459	 * For bank interrupts, we can't use chip_data to store the kona_gpio
460	 * pointer, since GIC needs it for its own purposes. Therefore, we get
461	 * our pointer from the bank structure.
462	 */
463	reg_base = bank->kona_gpio->reg_base;
464	bank_id = bank->id;
465
466	while ((sta = readl(reg_base + GPIO_INT_STATUS(bank_id)) &
467		    (~(readl(reg_base + GPIO_INT_MASK(bank_id)))))) {
468		for_each_set_bit(bit, &sta, 32) {
469			int hwirq = GPIO_PER_BANK * bank_id + bit;
470			int child_irq =
471				irq_find_mapping(bank->kona_gpio->irq_domain,
472						 hwirq);
473			/*
474			 * Clear interrupt before handler is called so we don't
475			 * miss any interrupt occurred during executing them.
476			 */
477			writel(readl(reg_base + GPIO_INT_STATUS(bank_id)) |
478			       BIT(bit), reg_base + GPIO_INT_STATUS(bank_id));
479			/* Invoke interrupt handler */
480			generic_handle_irq(child_irq);
 
481		}
482	}
483
484	chained_irq_exit(chip, desc);
485}
486
487static int bcm_kona_gpio_irq_reqres(struct irq_data *d)
488{
489	struct bcm_kona_gpio *kona_gpio = irq_data_get_irq_chip_data(d);
 
 
 
 
 
 
 
490
491	return gpiochip_reqres_irq(&kona_gpio->gpio_chip, d->hwirq);
492}
493
494static void bcm_kona_gpio_irq_relres(struct irq_data *d)
495{
496	struct bcm_kona_gpio *kona_gpio = irq_data_get_irq_chip_data(d);
 
 
 
 
497
498	gpiochip_relres_irq(&kona_gpio->gpio_chip, d->hwirq);
499}
500
501static struct irq_chip bcm_gpio_irq_chip = {
502	.name = "bcm-kona-gpio",
503	.irq_ack = bcm_kona_gpio_irq_ack,
504	.irq_mask = bcm_kona_gpio_irq_mask,
505	.irq_unmask = bcm_kona_gpio_irq_unmask,
506	.irq_set_type = bcm_kona_gpio_irq_set_type,
507	.irq_request_resources = bcm_kona_gpio_irq_reqres,
508	.irq_release_resources = bcm_kona_gpio_irq_relres,
509};
510
511static struct of_device_id const bcm_kona_gpio_of_match[] = {
512	{ .compatible = "brcm,kona-gpio" },
513	{}
514};
515
516/*
517 * This lock class tells lockdep that GPIO irqs are in a different
518 * category than their parents, so it won't report false recursion.
519 */
520static struct lock_class_key gpio_lock_class;
521static struct lock_class_key gpio_request_class;
522
523static int bcm_kona_gpio_irq_map(struct irq_domain *d, unsigned int irq,
524				 irq_hw_number_t hwirq)
525{
526	int ret;
527
528	ret = irq_set_chip_data(irq, d->host_data);
529	if (ret < 0)
530		return ret;
531	irq_set_lockdep_class(irq, &gpio_lock_class, &gpio_request_class);
532	irq_set_chip_and_handler(irq, &bcm_gpio_irq_chip, handle_simple_irq);
533	irq_set_noprobe(irq);
534
535	return 0;
536}
537
538static void bcm_kona_gpio_irq_unmap(struct irq_domain *d, unsigned int irq)
539{
540	irq_set_chip_and_handler(irq, NULL, NULL);
541	irq_set_chip_data(irq, NULL);
542}
543
544static const struct irq_domain_ops bcm_kona_irq_ops = {
545	.map = bcm_kona_gpio_irq_map,
546	.unmap = bcm_kona_gpio_irq_unmap,
547	.xlate = irq_domain_xlate_twocell,
548};
549
550static void bcm_kona_gpio_reset(struct bcm_kona_gpio *kona_gpio)
551{
552	void __iomem *reg_base;
553	int i;
554
555	reg_base = kona_gpio->reg_base;
556	/* disable interrupts and clear status */
557	for (i = 0; i < kona_gpio->num_bank; i++) {
558		/* Unlock the entire bank first */
559		bcm_kona_gpio_write_lock_regs(reg_base, i, UNLOCK_CODE);
560		writel(0xffffffff, reg_base + GPIO_INT_MASK(i));
561		writel(0xffffffff, reg_base + GPIO_INT_STATUS(i));
562		/* Now re-lock the bank */
563		bcm_kona_gpio_write_lock_regs(reg_base, i, LOCK_CODE);
564	}
565}
566
567static int bcm_kona_gpio_probe(struct platform_device *pdev)
568{
569	struct device *dev = &pdev->dev;
570	const struct of_device_id *match;
571	struct bcm_kona_gpio_bank *bank;
572	struct bcm_kona_gpio *kona_gpio;
573	struct gpio_chip *chip;
574	int ret;
575	int i;
576
577	match = of_match_device(bcm_kona_gpio_of_match, dev);
578	if (!match) {
579		dev_err(dev, "Failed to find gpio controller\n");
580		return -ENODEV;
581	}
582
583	kona_gpio = devm_kzalloc(dev, sizeof(*kona_gpio), GFP_KERNEL);
584	if (!kona_gpio)
585		return -ENOMEM;
586
587	kona_gpio->gpio_chip = template_chip;
588	chip = &kona_gpio->gpio_chip;
589	kona_gpio->num_bank = of_irq_count(dev->of_node);
590	if (kona_gpio->num_bank == 0) {
591		dev_err(dev, "Couldn't determine # GPIO banks\n");
592		return -ENOENT;
 
 
593	}
 
 
594	if (kona_gpio->num_bank > GPIO_MAX_BANK_NUM) {
595		dev_err(dev, "Too many GPIO banks configured (max=%d)\n",
596			GPIO_MAX_BANK_NUM);
597		return -ENXIO;
598	}
599	kona_gpio->banks = devm_kcalloc(dev,
600					kona_gpio->num_bank,
601					sizeof(*kona_gpio->banks),
602					GFP_KERNEL);
603	if (!kona_gpio->banks)
604		return -ENOMEM;
605
606	kona_gpio->pdev = pdev;
607	platform_set_drvdata(pdev, kona_gpio);
608	chip->of_node = dev->of_node;
609	chip->ngpio = kona_gpio->num_bank * GPIO_PER_BANK;
610
611	kona_gpio->irq_domain = irq_domain_add_linear(dev->of_node,
612						      chip->ngpio,
613						      &bcm_kona_irq_ops,
614						      kona_gpio);
615	if (!kona_gpio->irq_domain) {
616		dev_err(dev, "Couldn't allocate IRQ domain\n");
617		return -ENXIO;
618	}
619
620	kona_gpio->reg_base = devm_platform_ioremap_resource(pdev, 0);
621	if (IS_ERR(kona_gpio->reg_base)) {
622		ret = -ENXIO;
623		goto err_irq_domain;
624	}
625
626	for (i = 0; i < kona_gpio->num_bank; i++) {
627		bank = &kona_gpio->banks[i];
628		bank->id = i;
629		bank->irq = platform_get_irq(pdev, i);
630		bank->kona_gpio = kona_gpio;
631		if (bank->irq < 0) {
632			dev_err(dev, "Couldn't get IRQ for bank %d", i);
633			ret = -ENOENT;
634			goto err_irq_domain;
635		}
636	}
637
638	dev_info(&pdev->dev, "Setting up Kona GPIO\n");
639
640	bcm_kona_gpio_reset(kona_gpio);
641
642	ret = devm_gpiochip_add_data(dev, chip, kona_gpio);
643	if (ret < 0) {
644		dev_err(dev, "Couldn't add GPIO chip -- %d\n", ret);
645		goto err_irq_domain;
646	}
647	for (i = 0; i < kona_gpio->num_bank; i++) {
648		bank = &kona_gpio->banks[i];
649		irq_set_chained_handler_and_data(bank->irq,
650						 bcm_kona_gpio_irq_handler,
651						 bank);
652	}
653
654	raw_spin_lock_init(&kona_gpio->lock);
655
656	return 0;
657
658err_irq_domain:
659	irq_domain_remove(kona_gpio->irq_domain);
660
661	return ret;
662}
663
664static struct platform_driver bcm_kona_gpio_driver = {
665	.driver = {
666			.name = "bcm-kona-gpio",
667			.of_match_table = bcm_kona_gpio_of_match,
668	},
669	.probe = bcm_kona_gpio_probe,
670};
671builtin_platform_driver(bcm_kona_gpio_driver);