diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-11-20 11:18:30 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-12-06 10:45:37 +0900 |
commit | 417528a2e35f46bc42721de5c4efd33a0eba019d (patch) | |
tree | 622d88ef2f82910063e841fd70d8720465c4dcef /arch/sh/Kconfig | |
parent | 716067f28931d46b9f460acbeae1478a337e58ec (diff) | |
download | linux-3.10-417528a2e35f46bc42721de5c4efd33a0eba019d.tar.gz linux-3.10-417528a2e35f46bc42721de5c4efd33a0eba019d.tar.bz2 linux-3.10-417528a2e35f46bc42721de5c4efd33a0eba019d.zip |
sh: Configurable timer IRQ.
All of the various CPU subtypes currently hardcode TIMER_IRQ,
switch this to a config option in the few places we need this.
This allows further removal of hardcoded IRQ headers..
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r-- | arch/sh/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig index ba7a1501630..b95dbb8db66 100644 --- a/arch/sh/Kconfig +++ b/arch/sh/Kconfig @@ -405,6 +405,13 @@ source "arch/sh/boards/renesas/rts7751r2d/Kconfig" source "arch/sh/boards/renesas/r7780rp/Kconfig" +config SH_TIMER_IRQ + int + default "28" if CPU_SUBTYPE_SH7780 + default "86" if CPU_SUBTYPE_SH7619 + default "140" if CPU_SUBTYPE_SH7206 + default "16" + config SH_PCLK_FREQ int "Peripheral clock frequency (in Hz)" default "27000000" if CPU_SUBTYPE_SH73180 || CPU_SUBTYPE_SH7343 |