2005-04-16 16:20:36 -06:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2003 Ralf Baechle
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Handler for RM9000 extended interrupts. These are a non-standard
|
|
|
|
* feature so we handle them separately from standard interrupts.
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
2010-10-07 07:08:54 -06:00
|
|
|
#include <linux/irq.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
|
|
|
#include <asm/irq_cpu.h>
|
|
|
|
#include <asm/mipsregs.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
|
2011-03-23 15:09:01 -06:00
|
|
|
static inline void unmask_rm9k_irq(struct irq_data *d)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2011-03-23 15:09:01 -06:00
|
|
|
set_c0_intcontrol(0x1000 << (d->irq - RM9K_CPU_IRQ_BASE));
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
2011-03-23 15:09:01 -06:00
|
|
|
static inline void mask_rm9k_irq(struct irq_data *d)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2011-03-23 15:09:01 -06:00
|
|
|
clear_c0_intcontrol(0x1000 << (d->irq - RM9K_CPU_IRQ_BASE));
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
2011-03-23 15:09:01 -06:00
|
|
|
static inline void rm9k_cpu_irq_enable(struct irq_data *d)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
local_irq_save(flags);
|
2011-03-23 15:09:01 -06:00
|
|
|
unmask_rm9k_irq(d);
|
2005-04-16 16:20:36 -06:00
|
|
|
local_irq_restore(flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Performance counter interrupts are global on all processors.
|
|
|
|
*/
|
|
|
|
static void local_rm9k_perfcounter_irq_startup(void *args)
|
|
|
|
{
|
2011-03-23 15:09:01 -06:00
|
|
|
rm9k_cpu_irq_enable(args);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
2011-03-23 15:09:01 -06:00
|
|
|
static unsigned int rm9k_perfcounter_irq_startup(struct irq_data *d)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2011-03-23 15:09:01 -06:00
|
|
|
on_each_cpu(local_rm9k_perfcounter_irq_startup, d, 1);
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void local_rm9k_perfcounter_irq_shutdown(void *args)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
local_irq_save(flags);
|
2011-03-23 15:09:01 -06:00
|
|
|
mask_rm9k_irq(args);
|
2005-04-16 16:20:36 -06:00
|
|
|
local_irq_restore(flags);
|
|
|
|
}
|
|
|
|
|
2011-03-23 15:09:01 -06:00
|
|
|
static void rm9k_perfcounter_irq_shutdown(struct irq_data *d)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2011-03-23 15:09:01 -06:00
|
|
|
on_each_cpu(local_rm9k_perfcounter_irq_shutdown, d, 1);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
2006-07-02 07:41:42 -06:00
|
|
|
static struct irq_chip rm9k_irq_controller = {
|
2007-01-14 08:07:25 -07:00
|
|
|
.name = "RM9000",
|
2011-03-23 15:09:01 -06:00
|
|
|
.irq_ack = mask_rm9k_irq,
|
|
|
|
.irq_mask = mask_rm9k_irq,
|
|
|
|
.irq_mask_ack = mask_rm9k_irq,
|
|
|
|
.irq_unmask = unmask_rm9k_irq,
|
|
|
|
.irq_eoi = unmask_rm9k_irq
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
2006-07-02 07:41:42 -06:00
|
|
|
static struct irq_chip rm9k_perfcounter_irq = {
|
2007-01-14 08:07:25 -07:00
|
|
|
.name = "RM9000",
|
2011-03-23 15:09:01 -06:00
|
|
|
.irq_startup = rm9k_perfcounter_irq_startup,
|
|
|
|
.irq_shutdown = rm9k_perfcounter_irq_shutdown,
|
|
|
|
.irq_ack = mask_rm9k_irq,
|
|
|
|
.irq_mask = mask_rm9k_irq,
|
|
|
|
.irq_mask_ack = mask_rm9k_irq,
|
|
|
|
.irq_unmask = unmask_rm9k_irq,
|
2005-04-16 16:20:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
unsigned int rm9000_perfcount_irq;
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(rm9000_perfcount_irq);
|
|
|
|
|
2007-01-07 10:14:29 -07:00
|
|
|
void __init rm9k_cpu_irq_init(void)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2007-01-07 10:14:29 -07:00
|
|
|
int base = RM9K_CPU_IRQ_BASE;
|
2005-04-16 16:20:36 -06:00
|
|
|
int i;
|
|
|
|
|
|
|
|
clear_c0_intcontrol(0x0000f000); /* Mask all */
|
|
|
|
|
2006-11-01 10:08:36 -07:00
|
|
|
for (i = base; i < base + 4; i++)
|
2011-03-27 07:19:28 -06:00
|
|
|
irq_set_chip_and_handler(i, &rm9k_irq_controller,
|
2006-11-13 09:13:18 -07:00
|
|
|
handle_level_irq);
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
rm9000_perfcount_irq = base + 1;
|
2011-03-27 07:19:28 -06:00
|
|
|
irq_set_chip_and_handler(rm9000_perfcount_irq, &rm9k_perfcounter_irq,
|
2007-11-15 12:37:15 -07:00
|
|
|
handle_percpu_irq);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|