diff options
author | wdenk <wdenk> | 2005-01-09 22:28:56 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-09 22:28:56 +0000 |
commit | ff36fd8591776405eeb3a086ba1136bf1ece2ffb (patch) | |
tree | 699daa2141b56019375455c976c17cdf096f4431 /cpu/mips/au1x00_serial.c | |
parent | 6310eb9da74b1cf33194ae88275cc63b76e7a764 (diff) | |
download | u-boot-imx-ff36fd8591776405eeb3a086ba1136bf1ece2ffb.zip u-boot-imx-ff36fd8591776405eeb3a086ba1136bf1ece2ffb.tar.gz u-boot-imx-ff36fd8591776405eeb3a086ba1136bf1ece2ffb.tar.bz2 |
* Patch by Leif Lindholm, 23 Sep 2004:
add support for the AMD db1550 board
* Patch by Travis Sawyer, 15 Sep 2004:
Add CONFIG_SERIAL_MULTI support for ppc4xx,
update README.serial_multi
Diffstat (limited to 'cpu/mips/au1x00_serial.c')
-rw-r--r-- | cpu/mips/au1x00_serial.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mips/au1x00_serial.c b/cpu/mips/au1x00_serial.c index 99e2489..ac75da5 100644 --- a/cpu/mips/au1x00_serial.c +++ b/cpu/mips/au1x00_serial.c @@ -71,8 +71,8 @@ void serial_setbrg (void) volatile u32 *uart_clk = (volatile u32*)(UART0_ADDR+UART_CLK); volatile u32 *uart_lcr = (volatile u32*)(UART0_ADDR+UART_LCR); - /* Set baudrate to 115200 */ - *uart_clk = 0x36; + /* Set baudrate - FIXME for bus speeds != CPU/2 */ + *uart_clk = ((CFG_HZ/(CONFIG_BAUDRATE * 64))); /* Set parity, stop bits and word length to 8N1 */ *uart_lcr = UART_LCR_WLEN8; |