2 * (C) Copyright 2000-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #include <asm/mcfuart.h>
31 #include <asm/m5271.h>
35 #include <asm/m5272.h>
39 #include <asm/m5282.h>
43 #include <asm/m5249.h>
46 DECLARE_GLOBAL_DATA_PTR;
48 #if defined(CONFIG_M5249) || defined(CONFIG_M5271)
49 #define DoubleClock(a) ((double)(CFG_CLK/2) / 32.0 / (double)(a))
51 #define DoubleClock(a) ((double)(CFG_CLK) / 32.0 / (double)(a))
54 void rs_serial_setbaudrate(int port,int baudrate)
56 #if defined(CONFIG_M5272) || defined(CONFIG_M5249) || defined(CONFIG_M5271)
57 volatile unsigned char *uartp;
64 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
66 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE2);
68 clock = DoubleClock(baudrate); /* Set baud above */
70 uartp[MCFUART_UBG1] = (((int)clock >> 8) & 0xff); /* set msb baud */
71 uartp[MCFUART_UBG2] = ((int)clock & 0xff); /* set lsb baud */
74 fraction = ((clock - (int)clock) * 16.0) + 0.5;
75 uartp[MCFUART_UFPD] = ((int)fraction & 0xf); /* set baud fraction adjust */
80 void rs_serial_init(int port,int baudrate)
82 volatile unsigned char *uartp;
85 * Reset UART, get it into known state...
88 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
90 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE2);
92 uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETTX; /* reset TX */
93 uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETRX; /* reset RX */
95 uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETMRPTR; /* reset MR pointer */
96 uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETERR; /* reset Error pointer */
99 * Set port for CONSOLE_BAUD_RATE, 8 data bits, 1 stop bit, no parity.
101 uartp[MCFUART_UMR] = MCFUART_MR1_PARITYNONE | MCFUART_MR1_CS8;
102 uartp[MCFUART_UMR] = MCFUART_MR2_STOP1;
104 /* Mask UART interrupts */
105 uartp[MCFUART_UIMR] = 0;
107 /* Set clock Select Register: Tx/Rx clock is timer */
108 uartp[MCFUART_UCSR] = MCFUART_UCSR_RXCLKTIMER | MCFUART_UCSR_TXCLKTIMER;
110 rs_serial_setbaudrate(port,baudrate);
113 uartp[MCFUART_UCR] = MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE;
118 /****************************************************************************/
120 * Output a single character, using UART polled mode.
121 * This is used for console output.
124 void rs_put_char(char ch)
126 volatile unsigned char *uartp;
129 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
131 for (i = 0; (i < 0x10000); i++) {
132 if (uartp[MCFUART_USR] & MCFUART_USR_TXREADY)
135 uartp[MCFUART_UTB] = ch;
141 volatile unsigned char *uartp;
143 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
144 return((uartp[MCFUART_USR] & MCFUART_USR_RXREADY) ? 1 : 0);
147 int rs_get_char(void)
149 volatile unsigned char *uartp;
151 uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
152 return(uartp[MCFUART_URB]);
155 void serial_setbrg(void) {
156 rs_serial_setbaudrate(0,gd->bd->bi_baudrate);
159 int serial_init(void) {
160 rs_serial_init(0,gd->baudrate);
165 void serial_putc(const char c) {
171 void serial_puts (const char *s) {
177 int serial_getc(void) {
181 return rs_get_char();