mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
sh: ap_sh4a_4a: Fix wrong register initialization value
The value of ET0_ERXD6 and GPSR1_INIT was wrong. This fixes them. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
436da3cd23
commit
97e305cfc1
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue