diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2008-02-24 23:04:57 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-02-24 23:04:57 -0500 |
commit | fe9ec9b9698b95ad21617c1db21eb0d1c040b93d (patch) | |
tree | 43a7cab7941c9ac34389e924f655762c0e227e60 /arch | |
parent | 181afa94989f431e93eccd784c14c37ccb395a00 (diff) |
[Blackfin] arch: fix bug - Move IWR Enable All to the end of init_arch_irq otherwise it fails
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/mach-common/ints-priority.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/arch/blackfin/mach-common/ints-priority.c b/arch/blackfin/mach-common/ints-priority.c index 880595afe98d..b321c4a92a67 100644 --- a/arch/blackfin/mach-common/ints-priority.c +++ b/arch/blackfin/mach-common/ints-priority.c | |||
@@ -969,15 +969,11 @@ int __init init_arch_irq(void) | |||
969 | #if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) | 969 | #if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) |
970 | bfin_write_SIC_IMASK0(SIC_UNMASK_ALL); | 970 | bfin_write_SIC_IMASK0(SIC_UNMASK_ALL); |
971 | bfin_write_SIC_IMASK1(SIC_UNMASK_ALL); | 971 | bfin_write_SIC_IMASK1(SIC_UNMASK_ALL); |
972 | bfin_write_SIC_IWR0(IWR_ENABLE_ALL); | ||
973 | bfin_write_SIC_IWR1(IWR_ENABLE_ALL); | ||
974 | # ifdef CONFIG_BF54x | 972 | # ifdef CONFIG_BF54x |
975 | bfin_write_SIC_IMASK2(SIC_UNMASK_ALL); | 973 | bfin_write_SIC_IMASK2(SIC_UNMASK_ALL); |
976 | bfin_write_SIC_IWR2(IWR_ENABLE_ALL); | ||
977 | # endif | 974 | # endif |
978 | #else | 975 | #else |
979 | bfin_write_SIC_IMASK(SIC_UNMASK_ALL); | 976 | bfin_write_SIC_IMASK(SIC_UNMASK_ALL); |
980 | bfin_write_SIC_IWR(IWR_ENABLE_ALL); | ||
981 | #endif | 977 | #endif |
982 | SSYNC(); | 978 | SSYNC(); |
983 | 979 | ||
@@ -1106,6 +1102,16 @@ int __init init_arch_irq(void) | |||
1106 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | | 1102 | IMASK_IVG14 | IMASK_IVG13 | IMASK_IVG12 | IMASK_IVG11 | |
1107 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; | 1103 | IMASK_IVG10 | IMASK_IVG9 | IMASK_IVG8 | IMASK_IVG7 | IMASK_IVGHW; |
1108 | 1104 | ||
1105 | #if defined(CONFIG_BF54x) || defined(CONFIG_BF52x) || defined(CONFIG_BF561) | ||
1106 | bfin_write_SIC_IWR0(IWR_ENABLE_ALL); | ||
1107 | bfin_write_SIC_IWR1(IWR_ENABLE_ALL); | ||
1108 | # ifdef CONFIG_BF54x | ||
1109 | bfin_write_SIC_IWR2(IWR_ENABLE_ALL); | ||
1110 | # endif | ||
1111 | #else | ||
1112 | bfin_write_SIC_IWR(IWR_ENABLE_ALL); | ||
1113 | #endif | ||
1114 | |||
1109 | return 0; | 1115 | return 0; |
1110 | } | 1116 | } |
1111 | 1117 | ||