Correct GPIO setup (UART1/IRQ's) on yosemite & yellowstone
authorWolfgang Denk <wd@pollux.denx.de>
Tue, 30 May 2006 15:45:30 +0000 (17:45 +0200)
committerWolfgang Denk <wd@pollux.denx.de>
Tue, 30 May 2006 15:45:30 +0000 (17:45 +0200)
Patch by Stefan Roese, 29 May 2006

CHANGELOG
board/amcc/yellowstone/yellowstone.c
board/amcc/yosemite/yosemite.c

index 5bf606b..bcae503 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes since U-Boot 1.1.4:
 ======================================================================
 
+* Correct GPIO setup (UART1/IRQ's) on yosemite & yellowstone
+  Patch by Stefan Roese, 29 May 2006
+
 * Update Intel IXP4xx support
   - Add IXP4xx NPE ethernet MAC support
   - Add support for Intel IXDPG425 board
index 20965c8..86d0db7 100644 (file)
@@ -79,8 +79,8 @@ int board_early_init_f(void)
        out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x00010000);
 
        /* external interrupts IRQ0...3 */
-       out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x0f000000);
-       out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x00005500);
+       out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x00f00000);
+       out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x0000ff00);
        out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00005500);
 
 #if 0 /* test-only */
index 392d0dc..6742441 100644 (file)
@@ -79,8 +79,8 @@ int board_early_init_f(void)
        out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x00010000);
 
        /* external interrupts IRQ0...3 */
-       out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x0f000000);
-       out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x00005500);
+       out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x00f00000);
+       out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x0000ff00);
        out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00005500);
 
        /*setup USB 2.0 */