diff options
author | Stefan Roese <sr@denx.de> | 2005-08-12 16:52:47 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2005-08-12 16:52:47 +0200 |
commit | 82f4c6ac84b3fe81359f863a476196def9fb35ab (patch) | |
tree | 76631044daf87dbee4156c3ac313546c6bb88930 /board/esd/du405/du405.c | |
parent | 9bcf2ab41ffdb7ab92f3eb24624853268c8dbadc (diff) |
esd WUH405 and DU405 board updated
Patch by Matthias Fuchs, 27 Jul 2005
Diffstat (limited to 'board/esd/du405/du405.c')
-rw-r--r-- | board/esd/du405/du405.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/esd/du405/du405.c b/board/esd/du405/du405.c index 2aa2b5777e0..7db2a609789 100644 --- a/board/esd/du405/du405.c +++ b/board/esd/du405/du405.c @@ -141,6 +141,20 @@ int board_early_init_f (void) } +int misc_init_r (void) +{ + unsigned long cntrl0Reg; + + /* + * Setup UART1 handshaking: use CTS instead of DSR + */ + cntrl0Reg = mfdcr(cntrl0); + mtdcr(cntrl0, cntrl0Reg | 0x00001000); + + return (0); +} + + /* * Check Board Identity: */ |