* Early UART configuration for 85xx on 2.6 Kernel
@ 2007-08-11 1:56 mike zheng
0 siblings, 0 replies; only message in thread
From: mike zheng @ 2007-08-11 1:56 UTC (permalink / raw)
To: linuxppc-dev
[-- Attachment #1: Type: text/plain, Size: 867 bytes --]
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);
....
}
[-- Attachment #2: Type: text/html, Size: 1487 bytes --]
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-08-11 1:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-11 1:56 Early UART configuration for 85xx on 2.6 Kernel mike zheng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).