[U-Boot] [PATCH] sh: ap_sh4a_4a: Fix wrong register initialization value

Nobuhiro Iwamatsu nobuhiro.iwamatsu.yj at renesas.com
Thu Jun 28 09:05:35 CEST 2012


The value of ET0_ERXD6 and GPSR1_INIT was wrong.
This fixes them.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj at renesas.com>
---
 board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c b/board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c
index 77cadea..ff37df1 100644
--- a/board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c
+++ b/board/alphaproject/ap_sh4a_4a/ap_sh4a_4a.c
@@ -90,7 +90,7 @@ int checkboard(void)
 /* IPSR11 */
 #define ET0_ERXD4	(0x4 <<  4)
 #define ET0_ERXD5	(0x4 <<  7)
-#define ET0_ERXD6	(0x4 <<  4)
+#define ET0_ERXD6	(0x3 << 10)
 #define ET0_TX_EN	(0x2 << 19)
 #define ET0_TX_ER	(0x2 << 21)
 #define ET0_TX_CLK_A (0x4 << 23)
@@ -99,7 +99,7 @@ int checkboard(void)
 	(ET0_ERXD4 | ET0_ERXD5 | ET0_ERXD6 | ET0_TX_EN | ET0_TX_ER | \
 	ET0_TX_CLK_A | ET0_RX_CLK_A)
 
-#define GPSR1_INIT (0xFFBF7FFF)
+#define GPSR1_INIT (0xFFFF7FFF)
 #define GPSR2_INIT (0x4005FEFF)
 #define GPSR3_INIT (0x2EFFFFFF)
 #define GPSR4_INIT (0xC7000000)
-- 
1.7.10



More information about the U-Boot mailing list