]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/serial/serial_s3c24x0.c
Fix e-mail address of Gary Jennejohn.
[people/ms/u-boot.git] / drivers / serial / serial_s3c24x0.c
CommitLineData
281e00a3
WD
1/*
2 * (C) Copyright 2002
792a09eb 3 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
281e00a3
WD
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
c609719b
WD
16 * 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>
22#if defined(CONFIG_S3C2400) || defined(CONFIG_TRAB)
23#include <s3c2400.h>
24#elif defined(CONFIG_S3C2410)
25#include <s3c2410.h>
26#endif
27
d87080b7
WD
28DECLARE_GLOBAL_DATA_PTR;
29
48b42616
WD
30#ifdef CONFIG_SERIAL1
31#define UART_NR S3C24X0_UART0
32
42dfe7a1 33#elif defined(CONFIG_SERIAL2)
48b42616 34# if defined(CONFIG_TRAB)
f54ebdfa 35# error "TRAB supports only CONFIG_SERIAL1"
48b42616
WD
36# endif
37#define UART_NR S3C24X0_UART1
38
42dfe7a1 39#elif defined(CONFIG_SERIAL3)
48b42616
WD
40# 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
c609719b 48
a7c185ed
HW
49#if defined(CONFIG_SERIAL_MULTI)
50#include <serial.h>
51
52/* Multi serial device functions */
53#define DECLARE_S3C_SERIAL_FUNCTIONS(port) \
54 int s3serial##port##_init (void) {\
55 return serial_init_dev(port);}\
56 void s3serial##port##_setbrg (void) {\
57 serial_setbrg_dev(port);}\
58 int s3serial##port##_getc (void) {\
59 return serial_getc_dev(port);}\
60 int s3serial##port##_tstc (void) {\
61 return serial_tstc_dev(port);}\
62 void s3serial##port##_putc (const char c) {\
63 serial_putc_dev(port, c);}\
64 void s3serial##port##_puts (const char *s) {\
65 serial_puts_dev(port, s);}
66
67#define INIT_S3C_SERIAL_STRUCTURE(port,name,bus) {\
68 name,\
69 bus,\
70 s3serial##port##_init,\
71 s3serial##port##_setbrg,\
72 s3serial##port##_getc,\
73 s3serial##port##_tstc,\
74 s3serial##port##_putc,\
75 s3serial##port##_puts, }
76
77#endif /* CONFIG_SERIAL_MULTI */
78
79void _serial_setbrg(const int dev_index)
c609719b 80{
a7c185ed 81 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
c609719b 82 unsigned int reg = 0;
a7c185ed 83 int i;
c609719b
WD
84
85 /* value is calculated so : (int)(PCLK/16./baudrate) -1 */
86 reg = get_PCLK() / (16 * gd->baudrate) - 1;
87
a7c185ed
HW
88 uart->UBRDIV = reg;
89 for (i = 0; i < 100; i++);
90}
91#if defined(CONFIG_SERIAL_MULTI)
92static inline void
93serial_setbrg_dev(unsigned int dev_index)
94{
95 _serial_setbrg(dev_index);
96}
97#else
98void serial_setbrg(void)
99{
100 _serial_setbrg(UART_NR);
101}
102#endif
103
104
105/* Initialise the serial port. The settings are always 8 data bits, no parity,
106 * 1 stop bit, no start bits.
107 */
108static int serial_init_dev(const int dev_index)
109{
110 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
a7c185ed 111
c609719b 112 /* FIFO enable, Tx/Rx FIFO clear */
48b42616
WD
113 uart->UFCON = 0x07;
114 uart->UMCON = 0x0;
a7c185ed 115
c609719b 116 /* Normal,No parity,1 stop,8 bit */
48b42616 117 uart->ULCON = 0x3;
c609719b
WD
118 /*
119 * tx=level,rx=edge,disable timeout int.,enable rx error int.,
120 * normal,interrupt or polling
121 */
48b42616 122 uart->UCON = 0x245;
c609719b
WD
123
124#ifdef CONFIG_HWFLOW
48b42616 125 uart->UMCON = 0x1; /* RTS up */
c609719b 126#endif
a7c185ed
HW
127
128 /* FIXME: This is sooooooooooooooooooo ugly */
129#if defined(CONFIG_ARCH_GTA02_v1) || defined(CONFIG_ARCH_GTA02_v2)
130 /* we need auto hw flow control on the gsm and gps port */
131 if (dev_index == 0 || dev_index == 1)
132 uart->UMCON = 0x10;
133#endif
134 _serial_setbrg(dev_index);
135
136 return (0);
c609719b
WD
137}
138
a7c185ed
HW
139#if !defined(CONFIG_SERIAL_MULTI)
140/* Initialise the serial port. The settings are always 8 data bits, no parity,
141 * 1 stop bit, no start bits.
c609719b
WD
142 */
143int serial_init (void)
144{
a7c185ed 145 return serial_init_dev(UART_NR);
c609719b 146}
a7c185ed 147#endif
c609719b
WD
148
149/*
150 * Read a single byte from the serial port. Returns 1 on success, 0
151 * otherwise. When the function is succesfull, the character read is
152 * written into its argument c.
153 */
a7c185ed 154int _serial_getc (const int dev_index)
c609719b 155{
a7c185ed 156 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
8bde7f77 157
48b42616
WD
158 /* wait for character to arrive */
159 while (!(uart->UTRSTAT & 0x1));
c609719b 160
48b42616 161 return uart->URXH & 0xff;
c609719b 162}
a7c185ed
HW
163#if defined(CONFIG_SERIAL_MULTI)
164static inline int serial_getc_dev(unsigned int dev_index)
165{
166 return _serial_getc(dev_index);
167}
168#else
169int serial_getc (void)
170{
171 return _serial_getc(UART_NR);
172}
173#endif
c609719b
WD
174
175#ifdef CONFIG_HWFLOW
176static int hwflow = 0; /* turned off by default */
177int hwflow_onoff(int on)
178{
179 switch(on) {
180 case 0:
181 default:
182 break; /* return current */
183 case 1:
184 hwflow = 1; /* turn on */
185 break;
186 case -1:
187 hwflow = 0; /* turn off */
188 break;
189 }
190 return hwflow;
191}
192#endif
193
194#ifdef CONFIG_MODEM_SUPPORT
195static int be_quiet = 0;
196void disable_putc(void)
197{
198 be_quiet = 1;
199}
200
201void enable_putc(void)
202{
203 be_quiet = 0;
204}
205#endif
206
207
208/*
209 * Output a single byte to the serial port.
210 */
a7c185ed 211void _serial_putc (const char c, const int dev_index)
c609719b 212{
a7c185ed 213 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
c609719b
WD
214#ifdef CONFIG_MODEM_SUPPORT
215 if (be_quiet)
216 return;
217#endif
218
48b42616
WD
219 /* wait for room in the tx FIFO */
220 while (!(uart->UTRSTAT & 0x2));
c609719b
WD
221
222#ifdef CONFIG_HWFLOW
223 /* Wait for CTS up */
48b42616 224 while(hwflow && !(uart->UMSTAT & 0x1))
c609719b
WD
225 ;
226#endif
227
48b42616 228 uart->UTXH = c;
c609719b
WD
229
230 /* If \n, also do \r */
231 if (c == '\n')
232 serial_putc ('\r');
233}
a7c185ed
HW
234#if defined(CONFIG_SERIAL_MULTI)
235static inline void serial_putc_dev(unsigned int dev_index, const char c)
236{
237 _serial_putc(c, dev_index);
238}
239#else
240void serial_putc(const char c)
241{
242 _serial_putc(c, UART_NR);
243}
244#endif
245
c609719b
WD
246
247/*
248 * Test whether a character is in the RX buffer
249 */
a7c185ed 250int _serial_tstc(const int dev_index)
c609719b 251{
a7c185ed 252 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
48b42616
WD
253
254 return uart->UTRSTAT & 0x1;
c609719b 255}
a7c185ed
HW
256#if defined(CONFIG_SERIAL_MULTI)
257static inline int
258serial_tstc_dev(unsigned int dev_index)
259{
260 return _serial_tstc(dev_index);
261}
262#else
263int serial_tstc(void)
264{
265 return _serial_tstc(UART_NR);
266}
267#endif
c609719b 268
a7c185ed 269void _serial_puts(const char *s, const int dev_index)
c609719b
WD
270{
271 while (*s) {
a7c185ed 272 _serial_putc (*s++, dev_index);
c609719b
WD
273 }
274}
a7c185ed
HW
275#if defined(CONFIG_SERIAL_MULTI)
276static inline void
277serial_puts_dev(int dev_index, const char *s)
278{
279 _serial_puts(s, dev_index);
280}
281#else
282void
283serial_puts (const char *s)
284{
285 _serial_puts(s, UART_NR);
286}
287#endif
288
289#if defined(CONFIG_SERIAL_MULTI)
290DECLARE_S3C_SERIAL_FUNCTIONS(0);
291struct serial_device s3c24xx_serial0_device =
292 INIT_S3C_SERIAL_STRUCTURE(0, "s3ser0", "S3UART1");
293DECLARE_S3C_SERIAL_FUNCTIONS(1);
294struct serial_device s3c24xx_serial1_device =
295 INIT_S3C_SERIAL_STRUCTURE(1, "s3ser1", "S3UART2");
296DECLARE_S3C_SERIAL_FUNCTIONS(2);
297struct serial_device s3c24xx_serial2_device =
298 INIT_S3C_SERIAL_STRUCTURE(2, "s3ser2", "S3UART3");
299
300#endif /* CONFIG_SERIAL_MULTI */