aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/mm/Kconfig
diff options
context:
space:
mode:
authorMagnus Damm <damm@igel.co.jp>2007-07-25 04:50:01 -0400
committerPaul Mundt <lethal@linux-sh.org>2007-09-20 22:57:46 -0400
commitec58f1f32de0b6f9e83aada94c857a8fa9b00070 (patch)
tree612397e5bc717d630b177aa799d8e4e2f30cb824 /arch/sh/mm/Kconfig
parent28b146c84ed571043f473d2ac2f2a27e48fda7d1 (diff)
sh: intc - add support for SH7706, SH7707, SH7708, SH7709
This patch unifies the cpu specific interrupt setup code for sh7706, sh7707, sh7708 and sh7709 and moves the code into a new file called setup-sh770x.c. It makes sense to share the setup code between these processors because most hardware blocks are identical from a software point of view. With this patch the sh770x processors now have a complete set of vectors that match with the information provided by the data sheets. This is a big improvement for sh7708. Vectors for IRQ4 and IRQ5 are enabled by default. Use plat_irq_setup_pins() if pins IRQ0-3 should be used in IRQ mode. This patch also unifies the platform device setup code which means that the rtc driver now has platform data for all sh770x processors. Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/Kconfig')
-rw-r--r--arch/sh/mm/Kconfig6
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/sh/mm/Kconfig b/arch/sh/mm/Kconfig
index a50636eb4ea8..093d491424fd 100644
--- a/arch/sh/mm/Kconfig
+++ b/arch/sh/mm/Kconfig
@@ -71,19 +71,21 @@ config CPU_SUBTYPE_SH7705
71config CPU_SUBTYPE_SH7706 71config CPU_SUBTYPE_SH7706
72 bool "Support SH7706 processor" 72 bool "Support SH7706 processor"
73 select CPU_SH3 73 select CPU_SH3
74 select CPU_HAS_IPR_IRQ 74 select CPU_HAS_INTC_IRQ
75 help 75 help
76 Select SH7706 if you have a 133 Mhz SH-3 HD6417706 CPU. 76 Select SH7706 if you have a 133 Mhz SH-3 HD6417706 CPU.
77 77
78config CPU_SUBTYPE_SH7707 78config CPU_SUBTYPE_SH7707
79 bool "Support SH7707 processor" 79 bool "Support SH7707 processor"
80 select CPU_SH3 80 select CPU_SH3
81 select CPU_HAS_INTC_IRQ
81 help 82 help
82 Select SH7707 if you have a 60 Mhz SH-3 HD6417707 CPU. 83 Select SH7707 if you have a 60 Mhz SH-3 HD6417707 CPU.
83 84
84config CPU_SUBTYPE_SH7708 85config CPU_SUBTYPE_SH7708
85 bool "Support SH7708 processor" 86 bool "Support SH7708 processor"
86 select CPU_SH3 87 select CPU_SH3
88 select CPU_HAS_INTC_IRQ
87 help 89 help
88 Select SH7708 if you have a 60 Mhz SH-3 HD6417708S or 90 Select SH7708 if you have a 60 Mhz SH-3 HD6417708S or
89 if you have a 100 Mhz SH-3 HD6417708R CPU. 91 if you have a 100 Mhz SH-3 HD6417708R CPU.
@@ -91,7 +93,7 @@ config CPU_SUBTYPE_SH7708
91config CPU_SUBTYPE_SH7709 93config CPU_SUBTYPE_SH7709
92 bool "Support SH7709 processor" 94 bool "Support SH7709 processor"
93 select CPU_SH3 95 select CPU_SH3
94 select CPU_HAS_IPR_IRQ 96 select CPU_HAS_INTC_IRQ
95 help 97 help
96 Select SH7709 if you have a 80 Mhz SH-3 HD6417709 CPU. 98 Select SH7709 if you have a 80 Mhz SH-3 HD6417709 CPU.
97 99