Re: [U-Boot] [PATCH 09/10] 85xx: Add eSDHC support for 8536 DS

2008-10-31 Thread Liu Dave-R63238
> +int board_early_init_f (void) > +{ > + volatile u32 *pmuxcr = (u32 *)(CONFIG_SYS_IMMR + 0xe0060); > + u32 val; > + > + val = *pmuxcr; > + val |= 0x6000; > + *pmuxcr = val; > + > + return 0; > +} > + Andy, How about using the in/out_be32 for this? Thanks, Dave __

[U-Boot] [PATCH 09/10] 85xx: Add eSDHC support for 8536 DS

2008-10-30 Thread Andy Fleming
Signed-off-by: Andy Fleming <[EMAIL PROTECTED]> --- board/freescale/mpc8536ds/mpc8536ds.c | 12 cpu/mpc85xx/cpu.c | 16 +++- include/configs/MPC8536DS.h | 14 ++ 3 files changed, 41 insertions(+), 1 deletions(-) diff --git a