2009-03-27 13:25:49 +00:00
|
|
|
/*
|
2013-08-27 08:48:29 +00:00
|
|
|
* Copyright (C) 2007-2013 Michal Simek <monstr@monstr.eu>
|
|
|
|
* Copyright (C) 2012-2013 Xilinx, Inc.
|
2009-03-27 13:25:49 +00:00
|
|
|
* Copyright (C) 2007-2009 PetaLogix
|
|
|
|
* Copyright (C) 2006 Atmark Techno, Inc.
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
|
2012-01-26 21:10:13 +00:00
|
|
|
#include <linux/irqdomain.h>
|
2009-03-27 13:25:49 +00:00
|
|
|
#include <linux/irq.h>
|
2015-07-07 21:13:15 +00:00
|
|
|
#include <linux/irqchip.h>
|
2013-08-27 08:49:00 +00:00
|
|
|
#include <linux/of_address.h>
|
2009-03-27 13:25:49 +00:00
|
|
|
#include <linux/io.h>
|
2016-11-14 12:13:47 +00:00
|
|
|
#include <linux/jump_label.h>
|
2009-07-29 12:08:40 +00:00
|
|
|
#include <linux/bug.h>
|
2009-03-27 13:25:49 +00:00
|
|
|
|
|
|
|
/* No one else should require these constants, so define them locally here. */
|
|
|
|
#define ISR 0x00 /* Interrupt Status Register */
|
|
|
|
#define IPR 0x04 /* Interrupt Pending Register */
|
|
|
|
#define IER 0x08 /* Interrupt Enable Register */
|
|
|
|
#define IAR 0x0c /* Interrupt Acknowledge Register */
|
|
|
|
#define SIE 0x10 /* Set Interrupt Enable bits */
|
|
|
|
#define CIE 0x14 /* Clear Interrupt Enable bits */
|
|
|
|
#define IVR 0x18 /* Interrupt Vector Register */
|
|
|
|
#define MER 0x1c /* Master Enable Register */
|
|
|
|
|
|
|
|
#define MER_ME (1<<0)
|
|
|
|
#define MER_HIE (1<<1)
|
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
static DEFINE_STATIC_KEY_FALSE(xintc_is_be);
|
2014-02-24 13:56:32 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
struct xintc_irq_chip {
|
|
|
|
void __iomem *base;
|
|
|
|
struct irq_domain *root_domain;
|
|
|
|
u32 intr_mask;
|
|
|
|
};
|
2014-02-24 13:56:32 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
static struct xintc_irq_chip *xintc_irqc;
|
2014-02-24 13:56:32 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
static void xintc_write(int reg, u32 data)
|
2014-02-24 13:56:32 +00:00
|
|
|
{
|
2016-11-14 12:13:47 +00:00
|
|
|
if (static_branch_unlikely(&xintc_is_be))
|
|
|
|
iowrite32be(data, xintc_irqc->base + reg);
|
|
|
|
else
|
|
|
|
iowrite32(data, xintc_irqc->base + reg);
|
2014-02-24 13:56:32 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
static unsigned int xintc_read(int reg)
|
2014-02-24 13:56:32 +00:00
|
|
|
{
|
2016-11-14 12:13:47 +00:00
|
|
|
if (static_branch_unlikely(&xintc_is_be))
|
|
|
|
return ioread32be(xintc_irqc->base + reg);
|
|
|
|
else
|
|
|
|
return ioread32(xintc_irqc->base + reg);
|
2014-02-24 13:56:32 +00:00
|
|
|
}
|
|
|
|
|
2011-02-06 19:36:30 +00:00
|
|
|
static void intc_enable_or_unmask(struct irq_data *d)
|
2009-03-27 13:25:49 +00:00
|
|
|
{
|
2011-12-09 09:45:20 +00:00
|
|
|
unsigned long mask = 1 << d->hwirq;
|
|
|
|
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_debug("irq-xilinx: enable_or_unmask: %ld\n", d->hwirq);
|
2009-11-17 14:43:39 +00:00
|
|
|
|
|
|
|
/* ack level irqs because they can't be acked during
|
|
|
|
* ack function since the handle_level_irq function
|
|
|
|
* acks the irq before calling the interrupt handler
|
|
|
|
*/
|
2011-03-24 13:52:04 +00:00
|
|
|
if (irqd_is_level_type(d))
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(IAR, mask);
|
2012-11-05 10:51:13 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(SIE, mask);
|
2009-03-27 13:25:49 +00:00
|
|
|
}
|
|
|
|
|
2011-02-06 19:36:30 +00:00
|
|
|
static void intc_disable_or_mask(struct irq_data *d)
|
2009-03-27 13:25:49 +00:00
|
|
|
{
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_debug("irq-xilinx: disable: %ld\n", d->hwirq);
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(CIE, 1 << d->hwirq);
|
2009-03-27 13:25:49 +00:00
|
|
|
}
|
|
|
|
|
2011-02-06 19:36:30 +00:00
|
|
|
static void intc_ack(struct irq_data *d)
|
2009-03-27 13:25:49 +00:00
|
|
|
{
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_debug("irq-xilinx: ack: %ld\n", d->hwirq);
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(IAR, 1 << d->hwirq);
|
2009-03-27 13:25:49 +00:00
|
|
|
}
|
|
|
|
|
2011-02-06 19:36:30 +00:00
|
|
|
static void intc_mask_ack(struct irq_data *d)
|
2009-03-27 13:25:49 +00:00
|
|
|
{
|
2011-12-09 09:45:20 +00:00
|
|
|
unsigned long mask = 1 << d->hwirq;
|
|
|
|
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_debug("irq-xilinx: disable_and_ack: %ld\n", d->hwirq);
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(CIE, mask);
|
|
|
|
xintc_write(IAR, mask);
|
2009-03-27 13:25:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip intc_dev = {
|
|
|
|
.name = "Xilinx INTC",
|
2011-02-06 19:36:30 +00:00
|
|
|
.irq_unmask = intc_enable_or_unmask,
|
|
|
|
.irq_mask = intc_disable_or_mask,
|
|
|
|
.irq_ack = intc_ack,
|
|
|
|
.irq_mask_ack = intc_mask_ack,
|
2009-03-27 13:25:49 +00:00
|
|
|
};
|
|
|
|
|
2016-11-14 12:13:48 +00:00
|
|
|
unsigned int xintc_get_irq(void)
|
2009-03-27 13:25:49 +00:00
|
|
|
{
|
2012-01-26 21:10:13 +00:00
|
|
|
unsigned int hwirq, irq = -1;
|
2009-03-27 13:25:49 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
hwirq = xintc_read(IVR);
|
2012-01-26 21:10:13 +00:00
|
|
|
if (hwirq != -1U)
|
2016-11-14 12:13:47 +00:00
|
|
|
irq = irq_find_mapping(xintc_irqc->root_domain, hwirq);
|
2012-01-26 21:10:13 +00:00
|
|
|
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_debug("irq-xilinx: hwirq=%d, irq=%d\n", hwirq, irq);
|
2009-03-27 13:25:49 +00:00
|
|
|
|
|
|
|
return irq;
|
|
|
|
}
|
|
|
|
|
2012-12-13 16:30:05 +00:00
|
|
|
static int xintc_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw)
|
2012-01-26 21:10:13 +00:00
|
|
|
{
|
2016-11-14 12:13:47 +00:00
|
|
|
if (xintc_irqc->intr_mask & (1 << hw)) {
|
2012-01-26 21:10:13 +00:00
|
|
|
irq_set_chip_and_handler_name(irq, &intc_dev,
|
|
|
|
handle_edge_irq, "edge");
|
|
|
|
irq_clear_status_flags(irq, IRQ_LEVEL);
|
|
|
|
} else {
|
|
|
|
irq_set_chip_and_handler_name(irq, &intc_dev,
|
|
|
|
handle_level_irq, "level");
|
|
|
|
irq_set_status_flags(irq, IRQ_LEVEL);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct irq_domain_ops xintc_irq_domain_ops = {
|
|
|
|
.xlate = irq_domain_xlate_onetwocell,
|
|
|
|
.map = xintc_map,
|
|
|
|
};
|
|
|
|
|
2013-08-27 08:49:00 +00:00
|
|
|
static int __init xilinx_intc_of_init(struct device_node *intc,
|
|
|
|
struct device_node *parent)
|
2009-03-27 13:25:49 +00:00
|
|
|
{
|
2016-11-14 12:13:47 +00:00
|
|
|
u32 nr_irq;
|
2013-08-27 08:49:00 +00:00
|
|
|
int ret;
|
2016-11-14 12:13:47 +00:00
|
|
|
struct xintc_irq_chip *irqc;
|
2009-03-27 13:25:49 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
if (xintc_irqc) {
|
|
|
|
pr_err("irq-xilinx: Multiple instances aren't supported\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
irqc = kzalloc(sizeof(*irqc), GFP_KERNEL);
|
|
|
|
if (!irqc)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
xintc_irqc = irqc;
|
|
|
|
|
|
|
|
irqc->base = of_iomap(intc, 0);
|
|
|
|
BUG_ON(!irqc->base);
|
2013-08-27 08:49:00 +00:00
|
|
|
|
|
|
|
ret = of_property_read_u32(intc, "xlnx,num-intr-inputs", &nr_irq);
|
|
|
|
if (ret < 0) {
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_err("irq-xilinx: unable to read xlnx,num-intr-inputs\n");
|
2016-11-14 12:13:47 +00:00
|
|
|
goto err_alloc;
|
2013-08-27 08:49:00 +00:00
|
|
|
}
|
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
ret = of_property_read_u32(intc, "xlnx,kind-of-intr", &irqc->intr_mask);
|
2013-08-27 08:49:00 +00:00
|
|
|
if (ret < 0) {
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_err("irq-xilinx: unable to read xlnx,kind-of-intr\n");
|
2016-11-14 12:13:47 +00:00
|
|
|
goto err_alloc;
|
2013-08-27 08:49:00 +00:00
|
|
|
}
|
2009-03-27 13:25:49 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
if (irqc->intr_mask >> nr_irq)
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_warn("irq-xilinx: mismatch in kind-of-intr param\n");
|
2009-03-27 13:25:49 +00:00
|
|
|
|
2016-11-14 12:13:46 +00:00
|
|
|
pr_info("irq-xilinx: %s: num_irq=%d, edge=0x%x\n",
|
2016-11-14 12:13:47 +00:00
|
|
|
intc->full_name, nr_irq, irqc->intr_mask);
|
2009-03-27 13:25:49 +00:00
|
|
|
|
2014-02-24 13:56:32 +00:00
|
|
|
|
2009-03-27 13:25:49 +00:00
|
|
|
/*
|
|
|
|
* Disable all external interrupts until they are
|
|
|
|
* explicity requested.
|
|
|
|
*/
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(IER, 0);
|
2009-03-27 13:25:49 +00:00
|
|
|
|
|
|
|
/* Acknowledge any pending interrupts just in case. */
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(IAR, 0xffffffff);
|
2009-03-27 13:25:49 +00:00
|
|
|
|
|
|
|
/* Turn on the Master Enable. */
|
2016-11-14 12:13:47 +00:00
|
|
|
xintc_write(MER, MER_HIE | MER_ME);
|
|
|
|
if (!(xintc_read(MER) & (MER_HIE | MER_ME))) {
|
|
|
|
static_branch_enable(&xintc_is_be);
|
|
|
|
xintc_write(MER, MER_HIE | MER_ME);
|
2014-02-24 13:56:32 +00:00
|
|
|
}
|
2009-03-27 13:25:49 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
irqc->root_domain = irq_domain_add_linear(intc, nr_irq,
|
|
|
|
&xintc_irq_domain_ops, irqc);
|
|
|
|
if (!irqc->root_domain) {
|
|
|
|
pr_err("irq-xilinx: Unable to create IRQ domain\n");
|
|
|
|
goto err_alloc;
|
|
|
|
}
|
2013-03-17 09:48:56 +00:00
|
|
|
|
2016-11-14 12:13:47 +00:00
|
|
|
irq_set_default_host(irqc->root_domain);
|
2013-08-27 08:49:00 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-11-14 12:13:47 +00:00
|
|
|
|
|
|
|
err_alloc:
|
|
|
|
xintc_irqc = NULL;
|
|
|
|
kfree(irqc);
|
|
|
|
return ret;
|
|
|
|
|
2009-03-27 13:25:49 +00:00
|
|
|
}
|
2013-08-27 08:49:00 +00:00
|
|
|
|
|
|
|
IRQCHIP_DECLARE(xilinx_intc, "xlnx,xps-intc-1.00.a", xilinx_intc_of_init);
|