Release 4.12 drivers/irqchip/irq-atmel-aic.c
  
  
  
/*
 * Atmel AT91 AIC (Advanced Interrupt Controller) driver
 *
 *  Copyright (C) 2004 SAN People
 *  Copyright (C) 2004 ATMEL
 *  Copyright (C) Rick Bronson
 *  Copyright (C) 2014 Free Electrons
 *
 *  Author: Boris BREZILLON <boris.brezillon@free-electrons.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */
#include <linux/init.h>
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/bitmap.h>
#include <linux/types.h>
#include <linux/irq.h>
#include <linux/irqchip.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
#include <linux/irqdomain.h>
#include <linux/err.h>
#include <linux/slab.h>
#include <linux/io.h>
#include <asm/exception.h>
#include <asm/mach/irq.h>
#include "irq-atmel-aic-common.h"
/* Number of irq lines managed by AIC */
#define NR_AIC_IRQS	32
#define AT91_AIC_SMR(n)			((n) * 4)
#define AT91_AIC_SVR(n)			(0x80 + ((n) * 4))
#define AT91_AIC_IVR			0x100
#define AT91_AIC_FVR			0x104
#define AT91_AIC_ISR			0x108
#define AT91_AIC_IPR			0x10c
#define AT91_AIC_IMR			0x110
#define AT91_AIC_CISR			0x114
#define AT91_AIC_IECR			0x120
#define AT91_AIC_IDCR			0x124
#define AT91_AIC_ICCR			0x128
#define AT91_AIC_ISCR			0x12c
#define AT91_AIC_EOICR			0x130
#define AT91_AIC_SPU			0x134
#define AT91_AIC_DCR			0x138
static struct irq_domain *aic_domain;
static asmlinkage void __exception_irq_entry
aic_handle(struct pt_regs *regs)
{
	struct irq_domain_chip_generic *dgc = aic_domain->gc;
	struct irq_chip_generic *gc = dgc->gc[0];
	u32 irqnr;
	u32 irqstat;
	irqnr = irq_reg_readl(gc, AT91_AIC_IVR);
	irqstat = irq_reg_readl(gc, AT91_AIC_ISR);
	if (!irqstat)
		irq_reg_writel(gc, 0, AT91_AIC_EOICR);
	else
		handle_domain_irq(aic_domain, irqnr, regs);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 75 | 91.46% | 1 | 33.33% | 
| Kevin Cernekee | 4 | 4.88% | 1 | 33.33% | 
| Marc Zyngier | 3 | 3.66% | 1 | 33.33% | 
| Total | 82 | 100.00% | 3 | 100.00% | 
static int aic_retrigger(struct irq_data *d)
{
	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
	/* Enable interrupt on AIC5 */
	irq_gc_lock(gc);
	irq_reg_writel(gc, d->mask, AT91_AIC_ISCR);
	irq_gc_unlock(gc);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 44 | 95.65% | 1 | 50.00% | 
| Kevin Cernekee | 2 | 4.35% | 1 | 50.00% | 
| Total | 46 | 100.00% | 2 | 100.00% | 
static int aic_set_type(struct irq_data *d, unsigned type)
{
	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
	unsigned int smr;
	int ret;
	smr = irq_reg_readl(gc, AT91_AIC_SMR(d->hwirq));
	ret = aic_common_set_type(d, type, &smr);
	if (ret)
		return ret;
	irq_reg_writel(gc, smr, AT91_AIC_SMR(d->hwirq));
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 78 | 96.30% | 1 | 50.00% | 
| Kevin Cernekee | 3 | 3.70% | 1 | 50.00% | 
| Total | 81 | 100.00% | 2 | 100.00% | 
#ifdef CONFIG_PM
static void aic_suspend(struct irq_data *d)
{
	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
	irq_gc_lock(gc);
	irq_reg_writel(gc, gc->mask_cache, AT91_AIC_IDCR);
	irq_reg_writel(gc, gc->wake_active, AT91_AIC_IECR);
	irq_gc_unlock(gc);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 49 | 92.45% | 1 | 50.00% | 
| Kevin Cernekee | 4 | 7.55% | 1 | 50.00% | 
| Total | 53 | 100.00% | 2 | 100.00% | 
static void aic_resume(struct irq_data *d)
{
	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
	irq_gc_lock(gc);
	irq_reg_writel(gc, gc->wake_active, AT91_AIC_IDCR);
	irq_reg_writel(gc, gc->mask_cache, AT91_AIC_IECR);
	irq_gc_unlock(gc);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 49 | 92.45% | 1 | 50.00% | 
| Kevin Cernekee | 4 | 7.55% | 1 | 50.00% | 
| Total | 53 | 100.00% | 2 | 100.00% | 
static void aic_pm_shutdown(struct irq_data *d)
{
	struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
	irq_gc_lock(gc);
	irq_reg_writel(gc, 0xffffffff, AT91_AIC_IDCR);
	irq_reg_writel(gc, 0xffffffff, AT91_AIC_ICCR);
	irq_gc_unlock(gc);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 45 | 91.84% | 1 | 50.00% | 
| Kevin Cernekee | 4 | 8.16% | 1 | 50.00% | 
| Total | 49 | 100.00% | 2 | 100.00% | 
#else
#define aic_suspend		NULL
#define aic_resume		NULL
#define aic_pm_shutdown		NULL
#endif /* CONFIG_PM */
static void __init aic_hw_init(struct irq_domain *domain)
{
	struct irq_chip_generic *gc = irq_get_domain_generic_chip(domain, 0);
	int i;
	/*
         * Perform 8 End Of Interrupt Command to make sure AIC
         * will not Lock out nIRQ
         */
	for (i = 0; i < 8; i++)
		irq_reg_writel(gc, 0, AT91_AIC_EOICR);
	/*
         * Spurious Interrupt ID in Spurious Vector Register.
         * When there is no current interrupt, the IRQ Vector Register
         * reads the value stored in AIC_SPU
         */
	irq_reg_writel(gc, 0xffffffff, AT91_AIC_SPU);
	/* No debugging in AIC: Debug (Protect) Control Register */
	irq_reg_writel(gc, 0, AT91_AIC_DCR);
	/* Disable and clear all interrupts initially */
	irq_reg_writel(gc, 0xffffffff, AT91_AIC_IDCR);
	irq_reg_writel(gc, 0xffffffff, AT91_AIC_ICCR);
	for (i = 0; i < 32; i++)
		irq_reg_writel(gc, i, AT91_AIC_SVR(i));
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 102 | 89.47% | 1 | 50.00% | 
| Kevin Cernekee | 12 | 10.53% | 1 | 50.00% | 
| Total | 114 | 100.00% | 2 | 100.00% | 
static int aic_irq_domain_xlate(struct irq_domain *d,
				struct device_node *ctrlr,
				const u32 *intspec, unsigned int intsize,
				irq_hw_number_t *out_hwirq,
				unsigned int *out_type)
{
	struct irq_domain_chip_generic *dgc = d->gc;
	struct irq_chip_generic *gc;
	unsigned long flags;
	unsigned smr;
	int idx;
	int ret;
	if (!dgc)
		return -EINVAL;
	ret = aic_common_irq_domain_xlate(d, ctrlr, intspec, intsize,
					  out_hwirq, out_type);
	if (ret)
		return ret;
	idx = intspec[0] / dgc->irqs_per_chip;
	if (idx >= dgc->num_chips)
		return -EINVAL;
	gc = dgc->gc[idx];
	irq_gc_lock_irqsave(gc, flags);
	smr = irq_reg_readl(gc, AT91_AIC_SMR(*out_hwirq));
	aic_common_set_priority(intspec[2], &smr);
	irq_reg_writel(gc, smr, AT91_AIC_SMR(*out_hwirq));
	irq_gc_unlock_irqrestore(gc, flags);
	return ret;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 177 | 98.33% | 2 | 66.67% | 
| Kevin Cernekee | 3 | 1.67% | 1 | 33.33% | 
| Total | 180 | 100.00% | 3 | 100.00% | 
static const struct irq_domain_ops aic_irq_ops = {
	.map	= irq_map_generic_chip,
	.xlate	= aic_irq_domain_xlate,
};
static void __init at91rm9200_aic_irq_fixup(struct device_node *root)
{
	aic_common_rtc_irq_fixup(root);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 17 | 100.00% | 2 | 100.00% | 
| Total | 17 | 100.00% | 2 | 100.00% | 
static void __init at91sam9260_aic_irq_fixup(struct device_node *root)
{
	aic_common_rtt_irq_fixup(root);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 17 | 100.00% | 1 | 100.00% | 
| Total | 17 | 100.00% | 1 | 100.00% | 
static void __init at91sam9g45_aic_irq_fixup(struct device_node *root)
{
	aic_common_rtc_irq_fixup(root);
	aic_common_rtt_irq_fixup(root);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 22 | 100.00% | 1 | 100.00% | 
| Total | 22 | 100.00% | 1 | 100.00% | 
static const struct of_device_id aic_irq_fixups[] __initconst = {
	{ .compatible = "atmel,at91rm9200", .data = at91rm9200_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9g45", .data = at91sam9g45_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9n12", .data = at91rm9200_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9rl", .data = at91sam9g45_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9x5", .data = at91rm9200_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9260", .data = at91sam9260_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9261", .data = at91sam9260_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9263", .data = at91sam9260_aic_irq_fixup },
	{ .compatible = "atmel,at91sam9g20", .data = at91sam9260_aic_irq_fixup },
	{ /* sentinel */ },
};
static int __init aic_of_init(struct device_node *node,
			      struct device_node *parent)
{
	struct irq_chip_generic *gc;
	struct irq_domain *domain;
	if (aic_domain)
		return -EEXIST;
	domain = aic_common_of_init(node, &aic_irq_ops, "atmel-aic",
				    NR_AIC_IRQS, aic_irq_fixups);
	if (IS_ERR(domain))
		return PTR_ERR(domain);
	aic_domain = domain;
	gc = irq_get_domain_generic_chip(domain, 0);
	gc->chip_types[0].regs.eoi = AT91_AIC_EOICR;
	gc->chip_types[0].regs.enable = AT91_AIC_IECR;
	gc->chip_types[0].regs.disable = AT91_AIC_IDCR;
	gc->chip_types[0].chip.irq_mask = irq_gc_mask_disable_reg;
	gc->chip_types[0].chip.irq_unmask = irq_gc_unmask_enable_reg;
	gc->chip_types[0].chip.irq_retrigger = aic_retrigger;
	gc->chip_types[0].chip.irq_set_type = aic_set_type;
	gc->chip_types[0].chip.irq_suspend = aic_suspend;
	gc->chip_types[0].chip.irq_resume = aic_resume;
	gc->chip_types[0].chip.irq_pm_shutdown = aic_pm_shutdown;
	aic_hw_init(domain);
	set_handle_irq(aic_handle);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 218 | 99.09% | 1 | 50.00% | 
| Kim (Woogyom) Milo | 2 | 0.91% | 1 | 50.00% | 
| Total | 220 | 100.00% | 2 | 100.00% | 
IRQCHIP_DECLARE(at91rm9200_aic, "atmel,at91rm9200-aic", aic_of_init);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Boris Brezillon | 1187 | 96.35% | 7 | 58.33% | 
| Kevin Cernekee | 36 | 2.92% | 1 | 8.33% | 
| Marc Zyngier | 3 | 0.24% | 1 | 8.33% | 
| Joël Porquet | 3 | 0.24% | 1 | 8.33% | 
| Kim (Woogyom) Milo | 2 | 0.16% | 1 | 8.33% | 
| Nico Pitre | 1 | 0.08% | 1 | 8.33% | 
| Total | 1232 | 100.00% | 12 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.