2009-03-27 14:25:49 +01:00
/*
* Copyright ( C ) 2007 - 2009 Michal Simek < monstr @ monstr . eu >
* 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 .
*/
# include <linux/init.h>
2012-01-26 14:10:13 -07:00
# include <linux/irqdomain.h>
2009-03-27 14:25:49 +01:00
# include <linux/irq.h>
# include <asm/page.h>
# include <linux/io.h>
2009-07-29 22:08:40 +10:00
# include <linux/bug.h>
2009-03-27 14:25:49 +01:00
# include <asm/prom.h>
# include <asm/irq.h>
# ifdef CONFIG_SELFMOD_INTC
# include <asm/selfmod.h>
# define INTC_BASE BARRIER_BASE_ADDR
# else
static unsigned int intc_baseaddr ;
# define INTC_BASE intc_baseaddr
# endif
/* 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)
2011-02-06 19:36:30 +00:00
static void intc_enable_or_unmask ( struct irq_data * d )
2009-03-27 14:25:49 +01:00
{
2011-12-09 10:45:20 +01:00
unsigned long mask = 1 < < d - > hwirq ;
pr_debug ( " enable_or_unmask: %ld \n " , d - > hwirq ) ;
2009-11-17 08:43:39 -06:00
out_be32 ( INTC_BASE + SIE , mask ) ;
/* 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 14:52:04 +01:00
if ( irqd_is_level_type ( d ) )
2009-11-17 08:43:39 -06:00
out_be32 ( INTC_BASE + IAR , mask ) ;
2009-03-27 14:25:49 +01:00
}
2011-02-06 19:36:30 +00:00
static void intc_disable_or_mask ( struct irq_data * d )
2009-03-27 14:25:49 +01:00
{
2011-12-09 10:45:20 +01:00
pr_debug ( " disable: %ld \n " , d - > hwirq ) ;
out_be32 ( INTC_BASE + CIE , 1 < < d - > hwirq ) ;
2009-03-27 14:25:49 +01:00
}
2011-02-06 19:36:30 +00:00
static void intc_ack ( struct irq_data * d )
2009-03-27 14:25:49 +01:00
{
2011-12-09 10:45:20 +01:00
pr_debug ( " ack: %ld \n " , d - > hwirq ) ;
out_be32 ( INTC_BASE + IAR , 1 < < d - > hwirq ) ;
2009-03-27 14:25:49 +01:00
}
2011-02-06 19:36:30 +00:00
static void intc_mask_ack ( struct irq_data * d )
2009-03-27 14:25:49 +01:00
{
2011-12-09 10:45:20 +01:00
unsigned long mask = 1 < < d - > hwirq ;
pr_debug ( " disable_and_ack: %ld \n " , d - > hwirq ) ;
2009-03-27 14:25:49 +01:00
out_be32 ( INTC_BASE + CIE , mask ) ;
out_be32 ( INTC_BASE + IAR , mask ) ;
}
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 14:25:49 +01:00
} ;
2012-01-26 14:10:13 -07:00
static struct irq_domain * root_domain ;
unsigned int get_irq ( void )
2009-03-27 14:25:49 +01:00
{
2012-01-26 14:10:13 -07:00
unsigned int hwirq , irq = - 1 ;
2009-03-27 14:25:49 +01:00
2012-01-26 14:10:13 -07:00
hwirq = in_be32 ( INTC_BASE + IVR ) ;
if ( hwirq ! = - 1U )
irq = irq_find_mapping ( root_domain , hwirq ) ;
pr_debug ( " get_irq: hwirq=%d, irq=%d \n " , hwirq , irq ) ;
2009-03-27 14:25:49 +01:00
return irq ;
}
2012-01-26 14:10:13 -07:00
int xintc_map ( struct irq_domain * d , unsigned int irq , irq_hw_number_t hw )
{
u32 intr_mask = ( u32 ) d - > host_data ;
if ( intr_mask & ( 1 < < hw ) ) {
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 ,
} ;
2009-03-27 14:25:49 +01:00
void __init init_IRQ ( void )
{
2012-01-26 14:10:13 -07:00
u32 nr_irq , intr_mask ;
2009-03-27 14:25:49 +01:00
struct device_node * intc = NULL ;
# ifdef CONFIG_SELFMOD_INTC
unsigned int intc_baseaddr = 0 ;
static int arr_func [ ] = {
( int ) & get_irq ,
( int ) & intc_enable_or_unmask ,
( int ) & intc_disable_or_mask ,
( int ) & intc_mask_ack ,
( int ) & intc_ack ,
( int ) & intc_end ,
0
} ;
# endif
2011-12-09 12:26:16 +01:00
intc = of_find_compatible_node ( NULL , NULL , " xlnx,xps-intc-1.00.a " ) ;
2009-07-29 22:08:40 +10:00
BUG_ON ( ! intc ) ;
2009-03-27 14:25:49 +01:00
2011-12-09 10:45:20 +01:00
intc_baseaddr = be32_to_cpup ( of_get_property ( intc , " reg " , NULL ) ) ;
2009-03-27 14:25:49 +01:00
intc_baseaddr = ( unsigned long ) ioremap ( intc_baseaddr , PAGE_SIZE ) ;
2010-09-28 16:04:14 +10:00
nr_irq = be32_to_cpup ( of_get_property ( intc ,
" xlnx,num-intr-inputs " , NULL ) ) ;
2009-03-27 14:25:49 +01:00
2011-12-09 12:26:55 +01:00
intr_mask =
be32_to_cpup ( of_get_property ( intc , " xlnx,kind-of-intr " , NULL ) ) ;
if ( intr_mask > ( u32 ) ( ( 1ULL < < nr_irq ) - 1 ) )
2009-05-14 13:35:52 +02:00
printk ( KERN_INFO " ERROR: Mismatch in kind-of-intr param \n " ) ;
2009-03-27 14:25:49 +01:00
# ifdef CONFIG_SELFMOD_INTC
selfmod_function ( ( int * ) arr_func , intc_baseaddr ) ;
# endif
2011-11-07 13:42:12 +01:00
printk ( KERN_INFO " %s #0 at 0x%08x, num_irq=%d, edge=0x%x \n " ,
intc - > name , intc_baseaddr , nr_irq , intr_mask ) ;
2009-03-27 14:25:49 +01:00
/*
* Disable all external interrupts until they are
* explicity requested .
*/
out_be32 ( intc_baseaddr + IER , 0 ) ;
/* Acknowledge any pending interrupts just in case. */
out_be32 ( intc_baseaddr + IAR , 0xffffffff ) ;
/* Turn on the Master Enable. */
out_be32 ( intc_baseaddr + MER , MER_HIE | MER_ME ) ;
2012-01-26 14:10:13 -07:00
/* Yeah, okay, casting the intr_mask to a void* is butt-ugly, but I'm
* lazy and Michal can clean it up to something nicer when he tests
* and commits this patch . ~ ~ gcl */
root_domain = irq_domain_add_linear ( intc , nr_irq , & xintc_irq_domain_ops ,
( void * ) intr_mask ) ;
2009-03-27 14:25:49 +01:00
}