2005-04-16 15:20:36 -07:00
/*
2005-09-08 23:07:38 +01:00
* linux / arch / arm / mach - omap1 / irq . c
2005-04-16 15:20:36 -07:00
*
* Interrupt handler for all OMAP boards
*
* Copyright ( C ) 2004 Nokia Corporation
* Written by Tony Lindgren < tony @ atomide . com >
2007-10-19 23:21:04 +02:00
* Major cleanups by Juha Yrjölä < juha . yrjola @ nokia . com >
2005-04-16 15:20:36 -07:00
*
* Completely re - written to support various OMAP chips with bank specific
* interrupt handlers .
*
* Some snippets of the code taken from the older OMAP interrupt handler
* Copyright ( C ) 2001 RidgeRun , Inc . Greg Lonnon < glonnon @ ridgerun . com >
*
* GPIO interrupt handler moved to gpio . c by Juha Yrjola
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation ; either version 2 of the License , or ( at your
* option ) any later version .
*
* THIS SOFTWARE IS PROVIDED ` ` AS IS ' ' AND ANY EXPRESS OR IMPLIED
* WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED . IN
* NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
* NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF
* USE , DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
* 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
2011-07-26 10:53:52 +01:00
# include <linux/gpio.h>
2005-04-16 15:20:36 -07:00
# include <linux/init.h>
# include <linux/module.h>
# include <linux/sched.h>
# include <linux/interrupt.h>
2008-09-06 12:10:45 +01:00
# include <linux/io.h>
2005-04-16 15:20:36 -07:00
# include <asm/irq.h>
2015-05-20 09:01:21 -07:00
# include <asm/exception.h>
2005-04-16 15:20:36 -07:00
# include <asm/mach/irq.h>
2012-02-24 10:34:34 -08:00
2012-10-05 13:25:59 -07:00
# include "soc.h"
2005-04-16 15:20:36 -07:00
2012-02-24 10:34:34 -08:00
# include <mach/hardware.h>
2012-04-13 06:34:26 -06:00
# include "common.h"
2005-04-16 15:20:36 -07:00
# define IRQ_BANK(irq) ((irq) >> 5)
# define IRQ_BIT(irq) ((irq) & 0x1f)
struct omap_irq_bank {
unsigned long base_reg ;
2015-05-20 09:01:21 -07:00
void __iomem * va ;
2005-04-16 15:20:36 -07:00
unsigned long trigger_map ;
2005-07-10 19:58:09 +01:00
unsigned long wake_enable ;
2005-04-16 15:20:36 -07:00
} ;
2015-05-20 09:01:21 -07:00
static u32 omap_l2_irq ;
2006-04-02 17:46:27 +01:00
static unsigned int irq_bank_count ;
2005-04-16 15:20:36 -07:00
static struct omap_irq_bank * irq_banks ;
2015-05-20 09:01:21 -07:00
static struct irq_domain * domain ;
2005-04-16 15:20:36 -07:00
2015-05-20 09:01:21 -07:00
static inline unsigned int irq_bank_readl ( int bank , int offset )
2005-04-16 15:20:36 -07:00
{
2015-05-20 09:01:21 -07:00
return readl_relaxed ( irq_banks [ bank ] . va + offset ) ;
2005-04-16 15:20:36 -07:00
}
2015-05-20 09:01:21 -07:00
static inline void irq_bank_writel ( unsigned long value , int bank , int offset )
2005-04-16 15:20:36 -07:00
{
2015-05-20 09:01:21 -07:00
writel_relaxed ( value , irq_banks [ bank ] . va + offset ) ;
2005-04-16 15:20:36 -07:00
}
2015-05-20 09:01:21 -07:00
static void omap_ack_irq ( int irq )
2005-04-16 15:20:36 -07:00
{
2015-05-20 09:01:21 -07:00
if ( irq > 31 )
writel_relaxed ( 0x1 , irq_banks [ 1 ] . va + IRQ_CONTROL_REG_OFFSET ) ;
2005-04-16 15:20:36 -07:00
2015-05-20 09:01:21 -07:00
writel_relaxed ( 0x1 , irq_banks [ 0 ] . va + IRQ_CONTROL_REG_OFFSET ) ;
2005-04-16 15:20:36 -07:00
}
2010-11-29 10:39:27 +01:00
static void omap_mask_ack_irq ( struct irq_data * d )
2005-04-16 15:20:36 -07:00
{
2015-05-20 09:01:21 -07:00
struct irq_chip_type * ct = irq_data_get_chip_type ( d ) ;
2005-07-10 19:58:09 +01:00
2015-05-20 09:01:21 -07:00
ct - > chip . irq_mask ( d ) ;
omap_ack_irq ( d - > irq ) ;
2005-07-10 19:58:09 +01:00
}
2005-04-16 15:20:36 -07:00
/*
* Allows tuning the IRQ type and priority
*
* NOTE : There is currently no OMAP fiq handler for Linux . Read the
* mailing list threads on FIQ handlers if you are planning to
* add a FIQ handler for OMAP .
*/
static void omap_irq_set_cfg ( int irq , int fiq , int priority , int trigger )
{
signed int bank ;
unsigned long val , offset ;
bank = IRQ_BANK ( irq ) ;
/* FIQ is only available on bank 0 interrupts */
fiq = bank ? 0 : ( fiq & 0x1 ) ;
val = fiq | ( ( priority & 0x1f ) < < 2 ) | ( ( trigger & 0x1 ) < < 1 ) ;
offset = IRQ_ILR0_REG_OFFSET + IRQ_BIT ( irq ) * 0x4 ;
irq_bank_writel ( val , bank , offset ) ;
}
2009-09-22 06:33:04 +01:00
# if defined (CONFIG_ARCH_OMAP730) || defined (CONFIG_ARCH_OMAP850)
2009-09-22 10:02:58 +01:00
static struct omap_irq_bank omap7xx_irq_banks [ ] = {
2006-04-02 17:46:27 +01:00
{ . base_reg = OMAP_IH1_BASE , . trigger_map = 0xb3f8e22f } ,
{ . base_reg = OMAP_IH2_BASE , . trigger_map = 0xfdb9c1f2 } ,
2005-04-16 15:20:36 -07:00
{ . base_reg = OMAP_IH2_BASE + 0x100 , . trigger_map = 0x800040f3 } ,
} ;
# endif
2005-11-10 14:26:48 +00:00
# ifdef CONFIG_ARCH_OMAP15XX
2005-04-16 15:20:36 -07:00
static struct omap_irq_bank omap1510_irq_banks [ ] = {
2006-04-02 17:46:27 +01:00
{ . base_reg = OMAP_IH1_BASE , . trigger_map = 0xb3febfff } ,
{ . base_reg = OMAP_IH2_BASE , . trigger_map = 0xffbfffed } ,
2005-04-16 15:20:36 -07:00
} ;
2005-11-10 14:26:48 +00:00
static struct omap_irq_bank omap310_irq_banks [ ] = {
2006-04-02 17:46:27 +01:00
{ . base_reg = OMAP_IH1_BASE , . trigger_map = 0xb3faefc3 } ,
{ . base_reg = OMAP_IH2_BASE , . trigger_map = 0x65b3c061 } ,
2005-11-10 14:26:48 +00:00
} ;
2005-04-16 15:20:36 -07:00
# endif
# if defined(CONFIG_ARCH_OMAP16XX)
static struct omap_irq_bank omap1610_irq_banks [ ] = {
2006-04-02 17:46:27 +01:00
{ . base_reg = OMAP_IH1_BASE , . trigger_map = 0xb3fefe8f } ,
{ . base_reg = OMAP_IH2_BASE , . trigger_map = 0xfdb7c1fd } ,
2005-07-10 19:58:09 +01:00
{ . base_reg = OMAP_IH2_BASE + 0x100 , . trigger_map = 0xffffb7ff } ,
2005-04-16 15:20:36 -07:00
{ . base_reg = OMAP_IH2_BASE + 0x200 , . trigger_map = 0xffffffff } ,
} ;
# endif
2015-05-20 09:01:21 -07:00
asmlinkage void __exception_irq_entry omap1_handle_irq ( struct pt_regs * regs )
{
void __iomem * l1 = irq_banks [ 0 ] . va ;
void __iomem * l2 = irq_banks [ 1 ] . va ;
u32 irqnr ;
do {
irqnr = readl_relaxed ( l1 + IRQ_ITR_REG_OFFSET ) ;
irqnr & = ~ ( readl_relaxed ( l1 + IRQ_MIR_REG_OFFSET ) & 0xffffffff ) ;
if ( ! irqnr )
break ;
irqnr = readl_relaxed ( l1 + IRQ_SIR_FIQ_REG_OFFSET ) ;
if ( irqnr )
goto irq ;
irqnr = readl_relaxed ( l1 + IRQ_SIR_IRQ_REG_OFFSET ) ;
if ( irqnr = = omap_l2_irq ) {
irqnr = readl_relaxed ( l2 + IRQ_SIR_IRQ_REG_OFFSET ) ;
if ( irqnr )
irqnr + = 32 ;
}
irq :
if ( irqnr )
handle_domain_irq ( domain , irqnr , regs ) ;
else
break ;
} while ( irqnr ) ;
}
2015-05-20 09:01:21 -07:00
static __init void
omap_alloc_gc ( void __iomem * base , unsigned int irq_start , unsigned int num )
{
struct irq_chip_generic * gc ;
struct irq_chip_type * ct ;
gc = irq_alloc_generic_chip ( " MPU " , 1 , irq_start , base ,
handle_level_irq ) ;
ct = gc - > chip_types ;
ct - > chip . irq_ack = omap_mask_ack_irq ;
ct - > chip . irq_mask = irq_gc_mask_set_bit ;
ct - > chip . irq_unmask = irq_gc_mask_clr_bit ;
ct - > chip . irq_set_wake = irq_gc_set_wake ;
ct - > regs . mask = IRQ_MIR_REG_OFFSET ;
irq_setup_generic_chip ( gc , IRQ_MSK ( num ) , IRQ_GC_INIT_MASK_CACHE ,
IRQ_NOREQUEST | IRQ_NOPROBE , 0 ) ;
}
2005-04-16 15:20:36 -07:00
2011-05-17 03:51:26 -07:00
void __init omap1_init_irq ( void )
2005-04-16 15:20:36 -07:00
{
2015-05-20 09:01:21 -07:00
struct irq_chip_type * ct ;
struct irq_data * d = NULL ;
int i , j , irq_base ;
unsigned long nr_irqs ;
2005-04-16 15:20:36 -07:00
2009-09-22 06:33:04 +01:00
# if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
if ( cpu_is_omap7xx ( ) ) {
2009-09-22 10:02:58 +01:00
irq_banks = omap7xx_irq_banks ;
irq_bank_count = ARRAY_SIZE ( omap7xx_irq_banks ) ;
2005-04-16 15:20:36 -07:00
}
# endif
2005-11-10 14:26:48 +00:00
# ifdef CONFIG_ARCH_OMAP15XX
2005-04-16 15:20:36 -07:00
if ( cpu_is_omap1510 ( ) ) {
irq_banks = omap1510_irq_banks ;
irq_bank_count = ARRAY_SIZE ( omap1510_irq_banks ) ;
}
2005-11-10 14:26:48 +00:00
if ( cpu_is_omap310 ( ) ) {
irq_banks = omap310_irq_banks ;
irq_bank_count = ARRAY_SIZE ( omap310_irq_banks ) ;
}
2005-04-16 15:20:36 -07:00
# endif
# if defined(CONFIG_ARCH_OMAP16XX)
if ( cpu_is_omap16xx ( ) ) {
irq_banks = omap1610_irq_banks ;
irq_bank_count = ARRAY_SIZE ( omap1610_irq_banks ) ;
}
# endif
2015-05-20 09:01:21 -07:00
for ( i = 0 ; i < irq_bank_count ; i + + ) {
irq_banks [ i ] . va = ioremap ( irq_banks [ i ] . base_reg , 0xff ) ;
if ( WARN_ON ( ! irq_banks [ i ] . va ) )
return ;
}
nr_irqs = irq_bank_count * 32 ;
irq_base = irq_alloc_descs ( - 1 , 0 , nr_irqs , 0 ) ;
if ( irq_base < 0 ) {
pr_warn ( " Couldn't allocate IRQ numbers \n " ) ;
irq_base = 0 ;
}
2015-05-20 09:01:21 -07:00
omap_l2_irq = cpu_is_omap7xx ( ) ? irq_base + 1 : irq_base ;
2015-05-20 09:01:21 -07:00
omap_l2_irq - = NR_IRQS_LEGACY ;
2015-05-20 09:01:21 -07:00
domain = irq_domain_add_legacy ( NULL , nr_irqs , irq_base , 0 ,
& irq_domain_simple_ops , NULL ) ;
pr_info ( " Total of %lu interrupts in %i interrupt banks \n " ,
nr_irqs , irq_bank_count ) ;
2005-04-16 15:20:36 -07:00
/* Mask and clear all interrupts */
for ( i = 0 ; i < irq_bank_count ; i + + ) {
irq_bank_writel ( ~ 0x0 , i , IRQ_MIR_REG_OFFSET ) ;
irq_bank_writel ( 0x0 , i , IRQ_ITR_REG_OFFSET ) ;
}
/* Clear any pending interrupts */
irq_bank_writel ( 0x03 , 0 , IRQ_CONTROL_REG_OFFSET ) ;
irq_bank_writel ( 0x03 , 1 , IRQ_CONTROL_REG_OFFSET ) ;
/* Enable interrupts in global mask */
2009-03-23 18:07:45 -07:00
if ( cpu_is_omap7xx ( ) )
2005-04-16 15:20:36 -07:00
irq_bank_writel ( 0x0 , 0 , IRQ_GMR_REG_OFFSET ) ;
/* Install the interrupt handlers for each bank */
for ( i = 0 ; i < irq_bank_count ; i + + ) {
for ( j = i * 32 ; j < ( i + 1 ) * 32 ; j + + ) {
int irq_trigger ;
irq_trigger = irq_banks [ i ] . trigger_map > > IRQ_BIT ( j ) ;
omap_irq_set_cfg ( j , 0 , 0 , irq_trigger ) ;
2015-07-27 15:55:13 -05:00
irq_clear_status_flags ( j , IRQ_NOREQUEST ) ;
2005-04-16 15:20:36 -07:00
}
2015-05-20 09:01:21 -07:00
omap_alloc_gc ( irq_banks [ i ] . va , irq_base + i * 32 , 32 ) ;
2005-04-16 15:20:36 -07:00
}
/* Unmask level 2 handler */
2015-05-20 09:01:21 -07:00
d = irq_get_irq_data ( irq_find_mapping ( domain , omap_l2_irq ) ) ;
2015-05-20 09:01:21 -07:00
if ( d ) {
ct = irq_data_get_chip_type ( d ) ;
ct - > chip . irq_unmask ( d ) ;
}
2005-04-16 15:20:36 -07:00
}