blob: 6d69c43ed5e1cc229f5349e8f08c97a42c47165a [file] [log] [blame]
wdenk281e00a2004-08-01 22:48:16 +00001/*
2 * (C) Copyright 2002
Detlev Zundel792a09e2009-05-13 10:54:10 +02003 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
wdenk281e00a2004-08-01 22:48:16 +00004 *
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>
22#if defined(CONFIG_S3C2400) || defined(CONFIG_TRAB)
23#include <s3c2400.h>
24#elif defined(CONFIG_S3C2410)
25#include <s3c2410.h>
26#endif
27
Wolfgang Denkd87080b2006-03-31 18:32:53 +020028DECLARE_GLOBAL_DATA_PTR;
29
wdenk48b42612003-06-19 23:01:32 +000030#ifdef CONFIG_SERIAL1
31#define UART_NR S3C24X0_UART0
32
wdenk42dfe7a2004-03-14 22:25:36 +000033#elif defined(CONFIG_SERIAL2)
wdenk48b42612003-06-19 23:01:32 +000034# if defined(CONFIG_TRAB)
wdenkf54ebdf2003-09-17 15:10:32 +000035# error "TRAB supports only CONFIG_SERIAL1"
wdenk48b42612003-06-19 23:01:32 +000036# endif
37#define UART_NR S3C24X0_UART1
38
wdenk42dfe7a2004-03-14 22:25:36 +000039#elif defined(CONFIG_SERIAL3)
wdenk48b42612003-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
Harald Weltea7c185e2007-12-19 14:24:40 +010049#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)
wdenkc6097192002-11-03 00:24:07 +000080{
Harald Weltea7c185e2007-12-19 14:24:40 +010081 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
wdenkc6097192002-11-03 00:24:07 +000082 unsigned int reg = 0;
Harald Weltea7c185e2007-12-19 14:24:40 +010083 int i;
wdenkc6097192002-11-03 00:24:07 +000084
85 /* value is calculated so : (int)(PCLK/16./baudrate) -1 */
86 reg = get_PCLK() / (16 * gd->baudrate) - 1;
87
Harald Weltea7c185e2007-12-19 14:24:40 +010088 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);
Harald Weltea7c185e2007-12-19 14:24:40 +0100111
wdenkc6097192002-11-03 00:24:07 +0000112 /* FIFO enable, Tx/Rx FIFO clear */
wdenk48b42612003-06-19 23:01:32 +0000113 uart->UFCON = 0x07;
114 uart->UMCON = 0x0;
Harald Weltea7c185e2007-12-19 14:24:40 +0100115
wdenkc6097192002-11-03 00:24:07 +0000116 /* Normal,No parity,1 stop,8 bit */
wdenk48b42612003-06-19 23:01:32 +0000117 uart->ULCON = 0x3;
wdenkc6097192002-11-03 00:24:07 +0000118 /*
119 * tx=level,rx=edge,disable timeout int.,enable rx error int.,
120 * normal,interrupt or polling
121 */
wdenk48b42612003-06-19 23:01:32 +0000122 uart->UCON = 0x245;
wdenkc6097192002-11-03 00:24:07 +0000123
124#ifdef CONFIG_HWFLOW
wdenk48b42612003-06-19 23:01:32 +0000125 uart->UMCON = 0x1; /* RTS up */
wdenkc6097192002-11-03 00:24:07 +0000126#endif
wdenkc6097192002-11-03 00:24:07 +0000127
Harald Weltea7c185e2007-12-19 14:24:40 +0100128 /* 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);
wdenkc6097192002-11-03 00:24:07 +0000135
136 return (0);
137}
138
Harald Weltea7c185e2007-12-19 14:24:40 +0100139#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.
142 */
143int serial_init (void)
144{
145 return serial_init_dev(UART_NR);
146}
147#endif
148
wdenkc6097192002-11-03 00:24:07 +0000149/*
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 */
Harald Weltea7c185e2007-12-19 14:24:40 +0100154int _serial_getc (const int dev_index)
wdenkc6097192002-11-03 00:24:07 +0000155{
Harald Weltea7c185e2007-12-19 14:24:40 +0100156 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
wdenk8bde7f72003-06-27 21:31:46 +0000157
wdenk48b42612003-06-19 23:01:32 +0000158 /* wait for character to arrive */
159 while (!(uart->UTRSTAT & 0x1));
wdenkc6097192002-11-03 00:24:07 +0000160
wdenk48b42612003-06-19 23:01:32 +0000161 return uart->URXH & 0xff;
wdenkc6097192002-11-03 00:24:07 +0000162}
Harald Weltea7c185e2007-12-19 14:24:40 +0100163#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
wdenkc6097192002-11-03 00:24:07 +0000174
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 */
Harald Weltea7c185e2007-12-19 14:24:40 +0100211void _serial_putc (const char c, const int dev_index)
wdenkc6097192002-11-03 00:24:07 +0000212{
Harald Weltea7c185e2007-12-19 14:24:40 +0100213 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
wdenkc6097192002-11-03 00:24:07 +0000214#ifdef CONFIG_MODEM_SUPPORT
215 if (be_quiet)
216 return;
217#endif
218
wdenk48b42612003-06-19 23:01:32 +0000219 /* wait for room in the tx FIFO */
220 while (!(uart->UTRSTAT & 0x2));
wdenkc6097192002-11-03 00:24:07 +0000221
222#ifdef CONFIG_HWFLOW
223 /* Wait for CTS up */
wdenk48b42612003-06-19 23:01:32 +0000224 while(hwflow && !(uart->UMSTAT & 0x1))
wdenkc6097192002-11-03 00:24:07 +0000225 ;
226#endif
227
wdenk48b42612003-06-19 23:01:32 +0000228 uart->UTXH = c;
wdenkc6097192002-11-03 00:24:07 +0000229
230 /* If \n, also do \r */
231 if (c == '\n')
232 serial_putc ('\r');
233}
Harald Weltea7c185e2007-12-19 14:24:40 +0100234#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
wdenkc6097192002-11-03 00:24:07 +0000246
247/*
248 * Test whether a character is in the RX buffer
249 */
Harald Weltea7c185e2007-12-19 14:24:40 +0100250int _serial_tstc(const int dev_index)
wdenkc6097192002-11-03 00:24:07 +0000251{
Harald Weltea7c185e2007-12-19 14:24:40 +0100252 S3C24X0_UART * const uart = S3C24X0_GetBase_UART(dev_index);
wdenk48b42612003-06-19 23:01:32 +0000253
254 return uart->UTRSTAT & 0x1;
wdenkc6097192002-11-03 00:24:07 +0000255}
Harald Weltea7c185e2007-12-19 14:24:40 +0100256#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
wdenkc6097192002-11-03 00:24:07 +0000268
Harald Weltea7c185e2007-12-19 14:24:40 +0100269void _serial_puts(const char *s, const int dev_index)
270{
271 while (*s) {
272 _serial_putc (*s++, dev_index);
273 }
274}
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
wdenkc6097192002-11-03 00:24:07 +0000282void
283serial_puts (const char *s)
284{
Harald Weltea7c185e2007-12-19 14:24:40 +0100285 _serial_puts(s, UART_NR);
wdenkc6097192002-11-03 00:24:07 +0000286}
Harald Weltea7c185e2007-12-19 14:24:40 +0100287#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 */