blob: 83274432e4b1c72e4e553786be2328b098e94d9f [file] [log] [blame]
wdenk7ac16102004-08-01 22:48:16 +00001/*
2 * (C) Copyright 2002
3 * Gary Jennejohn, DENX Software Engineering, <gj@denx.de>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
wdenkc6097192002-11-03 00:24:07 +000016 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 */
20
21#include <common.h>
wdenk7ac16102004-08-01 22:48:16 +000022#if defined(CONFIG_S3C2400) || defined (CONFIG_S3C2410) || defined (CONFIG_TRAB)
23
wdenkc6097192002-11-03 00:24:07 +000024#if defined(CONFIG_S3C2400) || defined(CONFIG_TRAB)
25#include <s3c2400.h>
26#elif defined(CONFIG_S3C2410)
27#include <s3c2410.h>
28#endif
29
wdenk7539dea2003-06-19 23:01:32 +000030#ifdef CONFIG_SERIAL1
31#define UART_NR S3C24X0_UART0
32
wdenkc35ba4e2004-03-14 22:25:36 +000033#elif defined(CONFIG_SERIAL2)
wdenk7539dea2003-06-19 23:01:32 +000034# if defined(CONFIG_TRAB)
wdenkf6a6ac12003-09-17 15:10:32 +000035# error "TRAB supports only CONFIG_SERIAL1"
wdenk7539dea2003-06-19 23:01:32 +000036# endif
37#define UART_NR S3C24X0_UART1
38
wdenkc35ba4e2004-03-14 22:25:36 +000039#elif defined(CONFIG_SERIAL3)
wdenk7539dea2003-06-19 23:01:32 +000040# if defined(CONFIG_TRAB)
41# #error "TRAB supports only CONFIG_SERIAL1"
42# endif
43#define UART_NR S3C24X0_UART2
44
45#else
46#error "Bad: you didn't configure serial ..."
47#endif
wdenkc6097192002-11-03 00:24:07 +000048
49void serial_setbrg (void)
50{
51 DECLARE_GLOBAL_DATA_PTR;
wdenk7539dea2003-06-19 23:01:32 +000052 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(UART_NR);
wdenkc6097192002-11-03 00:24:07 +000053 int i;
54 unsigned int reg = 0;
55
56 /* value is calculated so : (int)(PCLK/16./baudrate) -1 */
57 reg = get_PCLK() / (16 * gd->baudrate) - 1;
58
wdenkc6097192002-11-03 00:24:07 +000059 /* FIFO enable, Tx/Rx FIFO clear */
wdenk7539dea2003-06-19 23:01:32 +000060 uart->UFCON = 0x07;
61 uart->UMCON = 0x0;
wdenkc6097192002-11-03 00:24:07 +000062 /* Normal,No parity,1 stop,8 bit */
wdenk7539dea2003-06-19 23:01:32 +000063 uart->ULCON = 0x3;
wdenkc6097192002-11-03 00:24:07 +000064 /*
65 * tx=level,rx=edge,disable timeout int.,enable rx error int.,
66 * normal,interrupt or polling
67 */
wdenk7539dea2003-06-19 23:01:32 +000068 uart->UCON = 0x245;
69 uart->UBRDIV = reg;
wdenkc6097192002-11-03 00:24:07 +000070
71#ifdef CONFIG_HWFLOW
wdenk7539dea2003-06-19 23:01:32 +000072 uart->UMCON = 0x1; /* RTS up */
wdenkc6097192002-11-03 00:24:07 +000073#endif
74 for (i = 0; i < 100; i++);
wdenkc6097192002-11-03 00:24:07 +000075}
76
77/*
78 * Initialise the serial port with the given baudrate. The settings
79 * are always 8 data bits, no parity, 1 stop bit, no start bits.
80 *
81 */
82int serial_init (void)
83{
84 serial_setbrg ();
85
86 return (0);
87}
88
89/*
90 * Read a single byte from the serial port. Returns 1 on success, 0
91 * otherwise. When the function is succesfull, the character read is
92 * written into its argument c.
93 */
94int serial_getc (void)
95{
wdenk7539dea2003-06-19 23:01:32 +000096 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(UART_NR);
wdenk57b2d802003-06-27 21:31:46 +000097
wdenk7539dea2003-06-19 23:01:32 +000098 /* wait for character to arrive */
99 while (!(uart->UTRSTAT & 0x1));
wdenkc6097192002-11-03 00:24:07 +0000100
wdenk7539dea2003-06-19 23:01:32 +0000101 return uart->URXH & 0xff;
wdenkc6097192002-11-03 00:24:07 +0000102}
103
104#ifdef CONFIG_HWFLOW
105static int hwflow = 0; /* turned off by default */
106int hwflow_onoff(int on)
107{
108 switch(on) {
109 case 0:
110 default:
111 break; /* return current */
112 case 1:
113 hwflow = 1; /* turn on */
114 break;
115 case -1:
116 hwflow = 0; /* turn off */
117 break;
118 }
119 return hwflow;
120}
121#endif
122
123#ifdef CONFIG_MODEM_SUPPORT
124static int be_quiet = 0;
125void disable_putc(void)
126{
127 be_quiet = 1;
128}
129
130void enable_putc(void)
131{
132 be_quiet = 0;
133}
134#endif
135
136
137/*
138 * Output a single byte to the serial port.
139 */
140void serial_putc (const char c)
141{
wdenk7539dea2003-06-19 23:01:32 +0000142 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(UART_NR);
wdenkc6097192002-11-03 00:24:07 +0000143#ifdef CONFIG_MODEM_SUPPORT
144 if (be_quiet)
145 return;
146#endif
147
wdenk7539dea2003-06-19 23:01:32 +0000148 /* wait for room in the tx FIFO */
149 while (!(uart->UTRSTAT & 0x2));
wdenkc6097192002-11-03 00:24:07 +0000150
151#ifdef CONFIG_HWFLOW
152 /* Wait for CTS up */
wdenk7539dea2003-06-19 23:01:32 +0000153 while(hwflow && !(uart->UMSTAT & 0x1))
wdenkc6097192002-11-03 00:24:07 +0000154 ;
155#endif
156
wdenk7539dea2003-06-19 23:01:32 +0000157 uart->UTXH = c;
wdenkc6097192002-11-03 00:24:07 +0000158
159 /* If \n, also do \r */
160 if (c == '\n')
161 serial_putc ('\r');
162}
163
164/*
165 * Test whether a character is in the RX buffer
166 */
167int serial_tstc (void)
168{
wdenk7539dea2003-06-19 23:01:32 +0000169 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(UART_NR);
170
171 return uart->UTRSTAT & 0x1;
wdenkc6097192002-11-03 00:24:07 +0000172}
173
174void
175serial_puts (const char *s)
176{
177 while (*s) {
178 serial_putc (*s++);
179 }
180}
wdenk7ac16102004-08-01 22:48:16 +0000181
182#endif /* defined(CONFIG_S3C2400) || defined (CONFIG_S3C2410) || defined (CONFIG_TRAB) */