2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/arch/m32r/kernel/setup_oaks32r.c
|
|
|
|
*
|
|
|
|
* Setup routines for OAKS32R Board
|
|
|
|
*
|
2005-07-08 00:59:32 +00:00
|
|
|
* Copyright (c) 2002-2005 Hiroyuki Kondo, Hirokazu Takata,
|
|
|
|
* Hitoshi Yamamoto, Mamoru Sakugawa
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
|
|
|
#include <asm/system.h>
|
|
|
|
#include <asm/m32r.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
#define irq2port(x) (M32R_ICU_CR1_PORTL + ((x - 1) * sizeof(unsigned long)))
|
|
|
|
|
|
|
|
icu_data_t icu_data[NR_IRQS];
|
|
|
|
|
|
|
|
static void disable_oaks32r_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned long port, data;
|
|
|
|
|
|
|
|
port = irq2port(irq);
|
|
|
|
data = icu_data[irq].icucr|M32R_ICUCR_ILEVEL7;
|
|
|
|
outl(data, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void enable_oaks32r_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned long port, data;
|
|
|
|
|
|
|
|
port = irq2port(irq);
|
|
|
|
data = icu_data[irq].icucr|M32R_ICUCR_IEN|M32R_ICUCR_ILEVEL6;
|
|
|
|
outl(data, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mask_and_ack_mappi(unsigned int irq)
|
|
|
|
{
|
|
|
|
disable_oaks32r_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void end_oaks32r_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
enable_oaks32r_irq(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int startup_oaks32r_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
enable_oaks32r_irq(irq);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void shutdown_oaks32r_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
unsigned long port;
|
|
|
|
|
|
|
|
port = irq2port(irq);
|
|
|
|
outl(M32R_ICUCR_ILEVEL7, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct hw_interrupt_type oaks32r_irq_type =
|
|
|
|
{
|
2005-06-22 00:16:13 +00:00
|
|
|
.typename = "OAKS32R-IRQ",
|
|
|
|
.startup = startup_oaks32r_irq,
|
|
|
|
.shutdown = shutdown_oaks32r_irq,
|
|
|
|
.enable = enable_oaks32r_irq,
|
|
|
|
.disable = disable_oaks32r_irq,
|
|
|
|
.ack = mask_and_ack_mappi,
|
|
|
|
.end = end_oaks32r_irq
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void __init init_IRQ(void)
|
|
|
|
{
|
|
|
|
static int once = 0;
|
|
|
|
|
|
|
|
if (once)
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
once++;
|
|
|
|
|
|
|
|
#ifdef CONFIG_NE2000
|
|
|
|
/* INT3 : LAN controller (RTL8019AS) */
|
|
|
|
irq_desc[M32R_IRQ_INT3].status = IRQ_DISABLED;
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
irq_desc[M32R_IRQ_INT3].chip = &oaks32r_irq_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
irq_desc[M32R_IRQ_INT3].action = 0;
|
|
|
|
irq_desc[M32R_IRQ_INT3].depth = 1;
|
|
|
|
icu_data[M32R_IRQ_INT3].icucr = M32R_ICUCR_IEN|M32R_ICUCR_ISMOD10;
|
|
|
|
disable_oaks32r_irq(M32R_IRQ_INT3);
|
|
|
|
#endif /* CONFIG_M32R_NE2000 */
|
|
|
|
|
|
|
|
/* MFT2 : system timer */
|
|
|
|
irq_desc[M32R_IRQ_MFT2].status = IRQ_DISABLED;
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
irq_desc[M32R_IRQ_MFT2].chip = &oaks32r_irq_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
irq_desc[M32R_IRQ_MFT2].action = 0;
|
|
|
|
irq_desc[M32R_IRQ_MFT2].depth = 1;
|
|
|
|
icu_data[M32R_IRQ_MFT2].icucr = M32R_ICUCR_IEN;
|
|
|
|
disable_oaks32r_irq(M32R_IRQ_MFT2);
|
|
|
|
|
|
|
|
#ifdef CONFIG_SERIAL_M32R_SIO
|
|
|
|
/* SIO0_R : uart receive data */
|
|
|
|
irq_desc[M32R_IRQ_SIO0_R].status = IRQ_DISABLED;
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO0_R].chip = &oaks32r_irq_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO0_R].action = 0;
|
|
|
|
irq_desc[M32R_IRQ_SIO0_R].depth = 1;
|
|
|
|
icu_data[M32R_IRQ_SIO0_R].icucr = 0;
|
|
|
|
disable_oaks32r_irq(M32R_IRQ_SIO0_R);
|
|
|
|
|
|
|
|
/* SIO0_S : uart send data */
|
|
|
|
irq_desc[M32R_IRQ_SIO0_S].status = IRQ_DISABLED;
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO0_S].chip = &oaks32r_irq_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO0_S].action = 0;
|
|
|
|
irq_desc[M32R_IRQ_SIO0_S].depth = 1;
|
|
|
|
icu_data[M32R_IRQ_SIO0_S].icucr = 0;
|
|
|
|
disable_oaks32r_irq(M32R_IRQ_SIO0_S);
|
|
|
|
|
|
|
|
/* SIO1_R : uart receive data */
|
|
|
|
irq_desc[M32R_IRQ_SIO1_R].status = IRQ_DISABLED;
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO1_R].chip = &oaks32r_irq_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO1_R].action = 0;
|
|
|
|
irq_desc[M32R_IRQ_SIO1_R].depth = 1;
|
|
|
|
icu_data[M32R_IRQ_SIO1_R].icucr = 0;
|
|
|
|
disable_oaks32r_irq(M32R_IRQ_SIO1_R);
|
|
|
|
|
|
|
|
/* SIO1_S : uart send data */
|
|
|
|
irq_desc[M32R_IRQ_SIO1_S].status = IRQ_DISABLED;
|
[PATCH] genirq: rename desc->handler to desc->chip
This patch-queue improves the generic IRQ layer to be truly generic, by adding
various abstractions and features to it, without impacting existing
functionality.
While the queue can be best described as "fix and improve everything in the
generic IRQ layer that we could think of", and thus it consists of many
smaller features and lots of cleanups, the one feature that stands out most is
the new 'irq chip' abstraction.
The irq-chip abstraction is about describing and coding and IRQ controller
driver by mapping its raw hardware capabilities [and quirks, if needed] in a
straightforward way, without having to think about "IRQ flow"
(level/edge/etc.) type of details.
This stands in contrast with the current 'irq-type' model of genirq
architectures, which 'mixes' raw hardware capabilities with 'flow' details.
The patchset supports both types of irq controller designs at once, and
converts i386 and x86_64 to the new irq-chip design.
As a bonus side-effect of the irq-chip approach, chained interrupt controllers
(master/slave PIC constructs, etc.) are now supported by design as well.
The end result of this patchset intends to be simpler architecture-level code
and more consolidation between architectures.
We reused many bits of code and many concepts from Russell King's ARM IRQ
layer, the merging of which was one of the motivations for this patchset.
This patch:
rename desc->handler to desc->chip.
Originally i did not want to do this, because it's a big patch. But having
both "desc->handler", "desc->handle_irq" and "action->handler" caused a
large degree of confusion and made the code appear alot less clean than it
truly is.
I have also attempted a dual approach as well by introducing a
desc->chip alias - but that just wasnt robust enough and broke
frequently.
So lets get over with this quickly. The conversion was done automatically
via scripts and converts all the code in the kernel.
This renaming patch is the first one amongst the patches, so that the
remaining patches can stay flexible and can be merged and split up
without having some big monolithic patch act as a merge barrier.
[akpm@osdl.org: build fix]
[akpm@osdl.org: another build fix]
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-06-29 09:24:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO1_S].chip = &oaks32r_irq_type;
|
2005-04-16 22:20:36 +00:00
|
|
|
irq_desc[M32R_IRQ_SIO1_S].action = 0;
|
|
|
|
irq_desc[M32R_IRQ_SIO1_S].depth = 1;
|
|
|
|
icu_data[M32R_IRQ_SIO1_S].icucr = 0;
|
|
|
|
disable_oaks32r_irq(M32R_IRQ_SIO1_S);
|
|
|
|
#endif /* CONFIG_SERIAL_M32R_SIO */
|
|
|
|
}
|