2019-02-14 15:52:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
//
|
|
|
|
// Copyright (C) 2006, 2019 Texas Instruments.
|
|
|
|
//
|
|
|
|
// Interrupt handler for DaVinci boards.
|
|
|
|
|
2007-04-30 19:37:19 +01:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
2008-09-06 12:10:45 +01:00
|
|
|
#include <linux/io.h>
|
2019-02-14 15:51:57 +01:00
|
|
|
#include <linux/irqdomain.h>
|
2007-04-30 19:37:19 +01:00
|
|
|
|
2008-08-05 16:14:15 +01:00
|
|
|
#include <mach/hardware.h>
|
2009-04-14 07:53:02 -05:00
|
|
|
#include <mach/cputype.h>
|
2009-04-15 12:40:00 -07:00
|
|
|
#include <mach/common.h>
|
2007-04-30 19:37:19 +01:00
|
|
|
#include <asm/mach/irq.h>
|
2019-02-14 15:51:58 +01:00
|
|
|
#include <asm/exception.h>
|
2007-04-30 19:37:19 +01:00
|
|
|
|
2019-02-14 15:52:03 +01:00
|
|
|
#include "irqs.h"
|
|
|
|
|
2019-02-14 15:52:07 +01:00
|
|
|
#define DAVINCI_AINTC_FIQ_REG0 0x00
|
|
|
|
#define DAVINCI_AINTC_FIQ_REG1 0x04
|
|
|
|
#define DAVINCI_AINTC_IRQ_REG0 0x08
|
|
|
|
#define DAVINCI_AINTC_IRQ_REG1 0x0c
|
|
|
|
#define DAVINCI_AINTC_IRQ_IRQENTRY 0x14
|
|
|
|
#define DAVINCI_AINTC_IRQ_ENT_REG0 0x18
|
|
|
|
#define DAVINCI_AINTC_IRQ_ENT_REG1 0x1c
|
|
|
|
#define DAVINCI_AINTC_IRQ_INCTL_REG 0x20
|
|
|
|
#define DAVINCI_AINTC_IRQ_EABASE_REG 0x24
|
|
|
|
#define DAVINCI_AINTC_IRQ_INTPRI0_REG 0x30
|
|
|
|
#define DAVINCI_AINTC_IRQ_INTPRI7_REG 0x4c
|
2019-02-14 15:52:06 +01:00
|
|
|
|
|
|
|
static void __iomem *davinci_aintc_base;
|
|
|
|
static struct irq_domain *davinci_aintc_irq_domain;
|
|
|
|
|
|
|
|
static inline void davinci_aintc_writel(unsigned long value, int offset)
|
2007-04-30 19:37:19 +01:00
|
|
|
{
|
2019-02-14 15:52:08 +01:00
|
|
|
writel_relaxed(value, davinci_aintc_base + offset);
|
2007-04-30 19:37:19 +01:00
|
|
|
}
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
static inline unsigned long davinci_aintc_readl(int offset)
|
2019-02-14 15:51:58 +01:00
|
|
|
{
|
2019-02-14 15:52:06 +01:00
|
|
|
return readl_relaxed(davinci_aintc_base + offset);
|
2019-02-14 15:51:58 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 11:19:57 +02:00
|
|
|
static __init void
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_setup_gc(void __iomem *base,
|
|
|
|
unsigned int irq_start, unsigned int num)
|
2007-04-30 19:37:19 +01:00
|
|
|
{
|
2011-04-15 11:19:57 +02:00
|
|
|
struct irq_chip_generic *gc;
|
|
|
|
struct irq_chip_type *ct;
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
gc = irq_get_domain_generic_chip(davinci_aintc_irq_domain, irq_start);
|
2019-02-14 15:51:57 +01:00
|
|
|
gc->reg_base = base;
|
|
|
|
gc->irq_base = irq_start;
|
2011-07-16 22:39:35 -07:00
|
|
|
|
2011-04-15 11:19:57 +02:00
|
|
|
ct = gc->chip_types;
|
2011-07-06 12:41:31 -04:00
|
|
|
ct->chip.irq_ack = irq_gc_ack_set_bit;
|
2011-04-15 11:19:57 +02:00
|
|
|
ct->chip.irq_mask = irq_gc_mask_clr_bit;
|
|
|
|
ct->chip.irq_unmask = irq_gc_mask_set_bit;
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
ct->regs.ack = DAVINCI_AINTC_IRQ_REG0;
|
|
|
|
ct->regs.mask = DAVINCI_AINTC_IRQ_ENT_REG0;
|
2011-04-15 11:19:57 +02:00
|
|
|
irq_setup_generic_chip(gc, IRQ_MSK(num), IRQ_GC_INIT_MASK_CACHE,
|
|
|
|
IRQ_NOREQUEST | IRQ_NOPROBE, 0);
|
2007-04-30 19:37:19 +01:00
|
|
|
}
|
|
|
|
|
2019-02-14 15:51:58 +01:00
|
|
|
static asmlinkage void __exception_irq_entry
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_handle_irq(struct pt_regs *regs)
|
2019-02-14 15:51:58 +01:00
|
|
|
{
|
2019-02-14 15:52:06 +01:00
|
|
|
int irqnr = davinci_aintc_readl(DAVINCI_AINTC_IRQ_IRQENTRY);
|
2019-02-14 15:51:58 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the formula for entry vector index generation from section
|
|
|
|
* 8.3.3 of the manual.
|
|
|
|
*/
|
|
|
|
irqnr >>= 2;
|
|
|
|
irqnr -= 1;
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
handle_domain_irq(davinci_aintc_irq_domain, irqnr, regs);
|
2019-02-14 15:51:58 +01:00
|
|
|
}
|
|
|
|
|
2007-04-30 19:37:19 +01:00
|
|
|
/* ARM Interrupt Controller Initialization */
|
2019-02-14 15:52:06 +01:00
|
|
|
void __init davinci_aintc_init(void)
|
2007-04-30 19:37:19 +01:00
|
|
|
{
|
2011-04-15 11:19:57 +02:00
|
|
|
unsigned i, j;
|
2009-04-15 12:40:00 -07:00
|
|
|
const u8 *davinci_def_priorities = davinci_soc_info.intc_irq_prios;
|
2019-02-14 15:51:57 +01:00
|
|
|
int ret, irq_base;
|
2007-04-30 19:37:19 +01:00
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_base = ioremap(davinci_soc_info.intc_base, SZ_4K);
|
|
|
|
if (WARN_ON(!davinci_aintc_base))
|
2010-05-07 17:06:37 -04:00
|
|
|
return;
|
|
|
|
|
2007-04-30 19:37:19 +01:00
|
|
|
/* Clear all interrupt requests */
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG0);
|
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG1);
|
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG0);
|
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG1);
|
2007-04-30 19:37:19 +01:00
|
|
|
|
|
|
|
/* Disable all interrupts */
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_writel(0x0, DAVINCI_AINTC_IRQ_ENT_REG0);
|
|
|
|
davinci_aintc_writel(0x0, DAVINCI_AINTC_IRQ_ENT_REG1);
|
2007-04-30 19:37:19 +01:00
|
|
|
|
|
|
|
/* Interrupts disabled immediately, IRQ entry reflects all */
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_writel(0x0, DAVINCI_AINTC_IRQ_INCTL_REG);
|
2007-04-30 19:37:19 +01:00
|
|
|
|
|
|
|
/* we don't use the hardware vector table, just its entry addresses */
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_writel(0, DAVINCI_AINTC_IRQ_EABASE_REG);
|
2007-04-30 19:37:19 +01:00
|
|
|
|
|
|
|
/* Clear all interrupt requests */
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG0);
|
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_FIQ_REG1);
|
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG0);
|
|
|
|
davinci_aintc_writel(~0x0, DAVINCI_AINTC_IRQ_REG1);
|
2007-04-30 19:37:19 +01:00
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
for (i = DAVINCI_AINTC_IRQ_INTPRI0_REG;
|
|
|
|
i <= DAVINCI_AINTC_IRQ_INTPRI7_REG; i += 4) {
|
2007-04-30 19:37:19 +01:00
|
|
|
u32 pri;
|
|
|
|
|
2009-04-14 07:53:02 -05:00
|
|
|
for (j = 0, pri = 0; j < 32; j += 4, davinci_def_priorities++)
|
|
|
|
pri |= (*davinci_def_priorities & 0x07) << j;
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_writel(pri, i);
|
2007-04-30 19:37:19 +01:00
|
|
|
}
|
|
|
|
|
2019-02-14 15:51:57 +01:00
|
|
|
irq_base = irq_alloc_descs(-1, 0, davinci_soc_info.intc_irq_num, 0);
|
|
|
|
if (WARN_ON(irq_base < 0))
|
|
|
|
return;
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
davinci_aintc_irq_domain = irq_domain_add_legacy(NULL,
|
2019-02-14 15:51:57 +01:00
|
|
|
davinci_soc_info.intc_irq_num,
|
|
|
|
irq_base, 0, &irq_domain_simple_ops,
|
|
|
|
NULL);
|
2019-02-14 15:52:06 +01:00
|
|
|
if (WARN_ON(!davinci_aintc_irq_domain))
|
2019-02-14 15:51:57 +01:00
|
|
|
return;
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
ret = irq_alloc_domain_generic_chips(davinci_aintc_irq_domain, 32, 1,
|
|
|
|
"AINTC", handle_edge_irq,
|
|
|
|
IRQ_NOREQUEST | IRQ_NOPROBE, 0, 0);
|
2019-02-14 15:51:57 +01:00
|
|
|
if (WARN_ON(ret))
|
|
|
|
return;
|
|
|
|
|
2019-02-14 15:52:06 +01:00
|
|
|
for (i = 0, j = 0; i < davinci_soc_info.intc_irq_num;
|
|
|
|
i += 32, j += 0x04)
|
|
|
|
davinci_aintc_setup_gc(davinci_aintc_base + j,
|
|
|
|
irq_base + i, 32);
|
2011-04-15 11:19:57 +02:00
|
|
|
|
2019-02-14 15:52:01 +01:00
|
|
|
irq_set_handler(DAVINCI_INTC_IRQ(IRQ_TINT1_TINT34), handle_level_irq);
|
2019-02-14 15:52:06 +01:00
|
|
|
set_handle_irq(davinci_aintc_handle_irq);
|
2007-04-30 19:37:19 +01:00
|
|
|
}
|