Remove unused CONFIG_MODEM_SUPPORT option and associated dead code.
[oweals/u-boot.git] / drivers / serial / serial_s3c24x0.c
1 /*
2  * (C) Copyright 2002
3  * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <linux/compiler.h>
10 #include <asm/arch/s3c24x0_cpu.h>
11
12 DECLARE_GLOBAL_DATA_PTR;
13
14 #ifdef CONFIG_SERIAL1
15 #define UART_NR S3C24X0_UART0
16
17 #elif defined(CONFIG_SERIAL2)
18 #define UART_NR S3C24X0_UART1
19
20 #elif defined(CONFIG_SERIAL3)
21 #define UART_NR S3C24X0_UART2
22
23 #else
24 #error "Bad: you didn't configure serial ..."
25 #endif
26
27 #include <asm/io.h>
28 #include <serial.h>
29
30 /* Multi serial device functions */
31 #define DECLARE_S3C_SERIAL_FUNCTIONS(port) \
32         int s3serial##port##_init(void) \
33         { \
34                 return serial_init_dev(port); \
35         } \
36         void s3serial##port##_setbrg(void) \
37         { \
38                 serial_setbrg_dev(port); \
39         } \
40         int s3serial##port##_getc(void) \
41         { \
42                 return serial_getc_dev(port); \
43         } \
44         int s3serial##port##_tstc(void) \
45         { \
46                 return serial_tstc_dev(port); \
47         } \
48         void s3serial##port##_putc(const char c) \
49         { \
50                 serial_putc_dev(port, c); \
51         } \
52         void s3serial##port##_puts(const char *s) \
53         { \
54                 serial_puts_dev(port, s); \
55         }
56
57 #define INIT_S3C_SERIAL_STRUCTURE(port, __name) {       \
58         .name   = __name,                               \
59         .start  = s3serial##port##_init,                \
60         .stop   = NULL,                                 \
61         .setbrg = s3serial##port##_setbrg,              \
62         .getc   = s3serial##port##_getc,                \
63         .tstc   = s3serial##port##_tstc,                \
64         .putc   = s3serial##port##_putc,                \
65         .puts   = s3serial##port##_puts,                \
66 }
67
68 #ifdef CONFIG_HWFLOW
69 static int hwflow;
70 #endif
71
72 static void _serial_setbrg(const int dev_index)
73 {
74         struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
75         unsigned int reg = 0;
76         int i;
77
78         /* value is calculated so : (int)(PCLK/16./baudrate) -1 */
79         reg = get_PCLK() / (16 * gd->baudrate) - 1;
80
81         writel(reg, &uart->ubrdiv);
82         for (i = 0; i < 100; i++)
83                 /* Delay */ ;
84 }
85
86 static inline void serial_setbrg_dev(unsigned int dev_index)
87 {
88         _serial_setbrg(dev_index);
89 }
90
91 /* Initialise the serial port. The settings are always 8 data bits, no parity,
92  * 1 stop bit, no start bits.
93  */
94 static int serial_init_dev(const int dev_index)
95 {
96         struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
97
98 #ifdef CONFIG_HWFLOW
99         hwflow = 0;     /* turned off by default */
100 #endif
101
102         /* FIFO enable, Tx/Rx FIFO clear */
103         writel(0x07, &uart->ufcon);
104         writel(0x0, &uart->umcon);
105
106         /* Normal,No parity,1 stop,8 bit */
107         writel(0x3, &uart->ulcon);
108         /*
109          * tx=level,rx=edge,disable timeout int.,enable rx error int.,
110          * normal,interrupt or polling
111          */
112         writel(0x245, &uart->ucon);
113
114 #ifdef CONFIG_HWFLOW
115         writel(0x1, &uart->umcon);      /* rts up */
116 #endif
117
118         /* FIXME: This is sooooooooooooooooooo ugly */
119 #if defined(CONFIG_ARCH_GTA02_v1) || defined(CONFIG_ARCH_GTA02_v2)
120         /* we need auto hw flow control on the gsm and gps port */
121         if (dev_index == 0 || dev_index == 1)
122                 writel(0x10, &uart->umcon);
123 #endif
124         _serial_setbrg(dev_index);
125
126         return (0);
127 }
128
129 /*
130  * Read a single byte from the serial port. Returns 1 on success, 0
131  * otherwise. When the function is succesfull, the character read is
132  * written into its argument c.
133  */
134 static int _serial_getc(const int dev_index)
135 {
136         struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
137
138         while (!(readl(&uart->utrstat) & 0x1))
139                 /* wait for character to arrive */ ;
140
141         return readb(&uart->urxh) & 0xff;
142 }
143
144 static inline int serial_getc_dev(unsigned int dev_index)
145 {
146         return _serial_getc(dev_index);
147 }
148
149 #ifdef CONFIG_HWFLOW
150 int hwflow_onoff(int on)
151 {
152         switch (on) {
153         case 0:
154         default:
155                 break;          /* return current */
156         case 1:
157                 hwflow = 1;     /* turn on */
158                 break;
159         case -1:
160                 hwflow = 0;     /* turn off */
161                 break;
162         }
163         return hwflow;
164 }
165 #endif
166
167 /*
168  * Output a single byte to the serial port.
169  */
170 static void _serial_putc(const char c, const int dev_index)
171 {
172         struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
173
174         while (!(readl(&uart->utrstat) & 0x2))
175                 /* wait for room in the tx FIFO */ ;
176
177 #ifdef CONFIG_HWFLOW
178         while (hwflow && !(readl(&uart->umstat) & 0x1))
179                 /* Wait for CTS up */ ;
180 #endif
181
182         writeb(c, &uart->utxh);
183
184         /* If \n, also do \r */
185         if (c == '\n')
186                 serial_putc('\r');
187 }
188
189 static inline void serial_putc_dev(unsigned int dev_index, const char c)
190 {
191         _serial_putc(c, dev_index);
192 }
193
194 /*
195  * Test whether a character is in the RX buffer
196  */
197 static int _serial_tstc(const int dev_index)
198 {
199         struct s3c24x0_uart *uart = s3c24x0_get_base_uart(dev_index);
200
201         return readl(&uart->utrstat) & 0x1;
202 }
203
204 static inline int serial_tstc_dev(unsigned int dev_index)
205 {
206         return _serial_tstc(dev_index);
207 }
208
209 static void _serial_puts(const char *s, const int dev_index)
210 {
211         while (*s) {
212                 _serial_putc(*s++, dev_index);
213         }
214 }
215
216 static inline void serial_puts_dev(int dev_index, const char *s)
217 {
218         _serial_puts(s, dev_index);
219 }
220
221 DECLARE_S3C_SERIAL_FUNCTIONS(0);
222 struct serial_device s3c24xx_serial0_device =
223 INIT_S3C_SERIAL_STRUCTURE(0, "s3ser0");
224 DECLARE_S3C_SERIAL_FUNCTIONS(1);
225 struct serial_device s3c24xx_serial1_device =
226 INIT_S3C_SERIAL_STRUCTURE(1, "s3ser1");
227 DECLARE_S3C_SERIAL_FUNCTIONS(2);
228 struct serial_device s3c24xx_serial2_device =
229 INIT_S3C_SERIAL_STRUCTURE(2, "s3ser2");
230
231 __weak struct serial_device *default_serial_console(void)
232 {
233 #if defined(CONFIG_SERIAL1)
234         return &s3c24xx_serial0_device;
235 #elif defined(CONFIG_SERIAL2)
236         return &s3c24xx_serial1_device;
237 #elif defined(CONFIG_SERIAL3)
238         return &s3c24xx_serial2_device;
239 #else
240 #error "CONFIG_SERIAL? missing."
241 #endif
242 }
243
244 void s3c24xx_serial_initialize(void)
245 {
246         serial_register(&s3c24xx_serial0_device);
247         serial_register(&s3c24xx_serial1_device);
248         serial_register(&s3c24xx_serial2_device);
249 }