3 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
13 * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include <asm/arch/ixp425.h>
37 * Baud Rate = --------------
40 #define SERIAL_CLOCK 921600
42 DECLARE_GLOBAL_DATA_PTR;
44 void serial_setbrg (void)
46 unsigned int quot = 0;
47 int uart = CONFIG_SYS_IXP425_CONSOLE;
49 if ((gd->baudrate <= SERIAL_CLOCK) && (SERIAL_CLOCK % gd->baudrate == 0))
50 quot = SERIAL_CLOCK / gd->baudrate;
54 IER(uart) = 0; /* Disable for now */
55 FCR(uart) = 0; /* No fifos enabled */
58 LCR(uart) = LCR_WLS0 | LCR_WLS1 | LCR_DLAB;
59 DLL(uart) = quot & 0xff;
60 DLH(uart) = quot >> 8;
61 LCR(uart) = LCR_WLS0 | LCR_WLS1;
62 #ifdef CONFIG_SERIAL_RTS_ACTIVE
63 MCR(uart) = MCR_RTS; /* set RTS active */
65 MCR(uart) = 0; /* set RTS inactive */
71 * Initialise the serial port with the given baudrate. The settings
72 * are always 8 data bits, no parity, 1 stop bit, no start bits.
75 int serial_init (void)
84 * Output a single byte to the serial port.
86 void serial_putc (const char c)
88 /* wait for room in the tx FIFO on UART */
89 while ((LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_TEMT) == 0)
90 WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
92 THR(CONFIG_SYS_IXP425_CONSOLE) = c;
94 /* If \n, also do \r */
100 * Read a single byte from the serial port. Returns 1 on success, 0
101 * otherwise. When the function is succesfull, the character read is
102 * written into its argument c.
104 int serial_tstc (void)
106 return LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR;
110 * Read a single byte from the serial port. Returns 1 on success, 0
111 * otherwise. When the function is succesfull, the character read is
112 * written into its argument c.
114 int serial_getc (void)
116 while (!(LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR))
117 WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
119 return (char) RBR(CONFIG_SYS_IXP425_CONSOLE) & 0xff;
123 serial_puts (const char *s)