2.6 system stuck with one line change in platform_init()
mike zheng
mail4mz at gmail.com
Sat Aug 11 12:01:50 EST 2007
Hi All,
In order to debug the 8548 CDS BSP of kernel 2.6, I want setup serial port
with UART on mpc85xx as early as possible. . I add the register access
code at the beginning of platform_init(). However the system just hanging
there with this line. If I comment out this
line"WRITE8_ADDR(M85xx_EIIADDR,0)", then linux kernel runs well.
Thanks in advance,
Mike Z
Here is the code of my mpc85xx_cds_common.c:
#define WRITE8_ADDR(address, value) \
((*((volatile u8 *)(address))) = (u8)(value))
#define M85xx_EII_ADDR 0xe0004500
void __init
platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
unsigned long r6, unsigned long r7)
{
/* parse_bootinfo must always be called first */
parse_bootinfo(find_bootinfo());
/* Now we try to access register of UART */
WRITE8_ADDR(M85xx_EII_ADDR, 0);
....
}
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://ozlabs.org/pipermail/linuxppc-embedded/attachments/20070810/07be2fe3/attachment.htm
More information about the Linuxppc-embedded
mailing list