blob: 4413e6911872b38c403baca8c8662205b2b9eef0 [file] [log] [blame]
wdenk78f66222002-08-27 10:27:51 +00001/*
2 * (C) Copyright 2000
3 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk78f66222002-08-27 10:27:51 +00006 */
7
8#include <common.h>
Mike Frysinger6c768ca2011-04-29 18:03:29 +00009#include <linux/compiler.h>
wdenk78f66222002-08-27 10:27:51 +000010
wdenk78f66222002-08-27 10:27:51 +000011#include <ns16550.h>
Jean-Christophe PLAGNIOL-VILLARD55d6d2d2008-08-13 01:40:40 +020012#ifdef CONFIG_NS87308
wdenk78f66222002-08-27 10:27:51 +000013#include <ns87308.h>
14#endif
15
Wolfgang Denk0fd30252006-08-30 23:02:10 +020016#include <serial.h>
Wolfgang Denk0fd30252006-08-30 23:02:10 +020017
Scott Wood48cbc3a2012-10-16 15:43:15 -050018#ifndef CONFIG_NS16550_MIN_FUNCTIONS
19
Wolfgang Denkd87080b2006-03-31 18:32:53 +020020DECLARE_GLOBAL_DATA_PTR;
21
wdenk756f5862005-04-03 15:51:42 +000022#if !defined(CONFIG_CONS_INDEX)
Andrew Bradford96708a02012-10-25 08:21:31 -040023#elif (CONFIG_CONS_INDEX < 1) || (CONFIG_CONS_INDEX > 6)
wdenk756f5862005-04-03 15:51:42 +000024#error "Invalid console index value."
wdenk78f66222002-08-27 10:27:51 +000025#endif
26
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020027#if CONFIG_CONS_INDEX == 1 && !defined(CONFIG_SYS_NS16550_COM1)
wdenk756f5862005-04-03 15:51:42 +000028#error "Console port 1 defined but not configured."
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029#elif CONFIG_CONS_INDEX == 2 && !defined(CONFIG_SYS_NS16550_COM2)
wdenk756f5862005-04-03 15:51:42 +000030#error "Console port 2 defined but not configured."
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020031#elif CONFIG_CONS_INDEX == 3 && !defined(CONFIG_SYS_NS16550_COM3)
wdenk756f5862005-04-03 15:51:42 +000032#error "Console port 3 defined but not configured."
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020033#elif CONFIG_CONS_INDEX == 4 && !defined(CONFIG_SYS_NS16550_COM4)
wdenk756f5862005-04-03 15:51:42 +000034#error "Console port 4 defined but not configured."
Andrew Bradford96708a02012-10-25 08:21:31 -040035#elif CONFIG_CONS_INDEX == 5 && !defined(CONFIG_SYS_NS16550_COM5)
36#error "Console port 5 defined but not configured."
37#elif CONFIG_CONS_INDEX == 6 && !defined(CONFIG_SYS_NS16550_COM6)
38#error "Console port 6 defined but not configured."
wdenk756f5862005-04-03 15:51:42 +000039#endif
40
41/* Note: The port number specified in the functions is 1 based.
42 * the array is 0 based.
43 */
Andrew Bradford96708a02012-10-25 08:21:31 -040044static NS16550_t serial_ports[6] = {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#ifdef CONFIG_SYS_NS16550_COM1
46 (NS16550_t)CONFIG_SYS_NS16550_COM1,
wdenk756f5862005-04-03 15:51:42 +000047#else
48 NULL,
49#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050#ifdef CONFIG_SYS_NS16550_COM2
51 (NS16550_t)CONFIG_SYS_NS16550_COM2,
wdenk756f5862005-04-03 15:51:42 +000052#else
53 NULL,
54#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055#ifdef CONFIG_SYS_NS16550_COM3
56 (NS16550_t)CONFIG_SYS_NS16550_COM3,
wdenk756f5862005-04-03 15:51:42 +000057#else
58 NULL,
59#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060#ifdef CONFIG_SYS_NS16550_COM4
Andrew Bradford96708a02012-10-25 08:21:31 -040061 (NS16550_t)CONFIG_SYS_NS16550_COM4,
62#else
63 NULL,
64#endif
65#ifdef CONFIG_SYS_NS16550_COM5
66 (NS16550_t)CONFIG_SYS_NS16550_COM5,
67#else
68 NULL,
69#endif
70#ifdef CONFIG_SYS_NS16550_COM6
71 (NS16550_t)CONFIG_SYS_NS16550_COM6
wdenk756f5862005-04-03 15:51:42 +000072#else
73 NULL
74#endif
75};
76
77#define PORT serial_ports[port-1]
Wolfgang Denk0fd30252006-08-30 23:02:10 +020078
Wolfgang Denk0fd30252006-08-30 23:02:10 +020079/* Multi serial device functions */
80#define DECLARE_ESERIAL_FUNCTIONS(port) \
Kim Phillipsac63f2a2012-10-29 13:34:47 +000081 static int eserial##port##_init(void) \
82 { \
83 int clock_divisor; \
84 clock_divisor = calc_divisor(serial_ports[port-1]); \
85 NS16550_init(serial_ports[port-1], clock_divisor); \
86 return 0 ; \
87 } \
88 static void eserial##port##_setbrg(void) \
89 { \
90 serial_setbrg_dev(port); \
91 } \
92 static int eserial##port##_getc(void) \
93 { \
94 return serial_getc_dev(port); \
95 } \
96 static int eserial##port##_tstc(void) \
97 { \
98 return serial_tstc_dev(port); \
99 } \
100 static void eserial##port##_putc(const char c) \
101 { \
102 serial_putc_dev(port, c); \
103 } \
104 static void eserial##port##_puts(const char *s) \
105 { \
106 serial_puts_dev(port, s); \
107 }
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200108
109/* Serial device descriptor */
Marek Vasut90bad892012-09-09 18:48:28 +0200110#define INIT_ESERIAL_STRUCTURE(port, __name) { \
111 .name = __name, \
112 .start = eserial##port##_init, \
113 .stop = NULL, \
114 .setbrg = eserial##port##_setbrg, \
115 .getc = eserial##port##_getc, \
116 .tstc = eserial##port##_tstc, \
117 .putc = eserial##port##_putc, \
118 .puts = eserial##port##_puts, \
119}
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200120
wdenk756f5862005-04-03 15:51:42 +0000121static int calc_divisor (NS16550_t port)
wdenk78f66222002-08-27 10:27:51 +0000122{
Masahiro Yamada5b9587a2014-07-11 20:29:04 +0900123 const unsigned int mode_x_div = 16;
124
wdenk2e5983d2003-07-15 20:04:06 +0000125#ifdef CONFIG_OMAP1510
126 /* If can't cleanly clock 115200 set div to 1 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127 if ((CONFIG_SYS_NS16550_CLK == 12000000) && (gd->baudrate == 115200)) {
wdenk756f5862005-04-03 15:51:42 +0000128 port->osc_12m_sel = OSC_12M_SEL; /* enable 6.5 * divisor */
wdenk2e5983d2003-07-15 20:04:06 +0000129 return (1); /* return 1 for base divisor */
130 }
wdenk756f5862005-04-03 15:51:42 +0000131 port->osc_12m_sel = 0; /* clear if previsouly set */
wdenk2e5983d2003-07-15 20:04:06 +0000132#endif
wdenk8ed96042005-01-09 23:16:25 +0000133
Masahiro Yamadaf8c7c202014-07-11 20:29:03 +0900134 return DIV_ROUND_CLOSEST(CONFIG_SYS_NS16550_CLK,
Masahiro Yamada5b9587a2014-07-11 20:29:04 +0900135 mode_x_div * gd->baudrate);
wdenk2e5983d2003-07-15 20:04:06 +0000136}
wdenk78f66222002-08-27 10:27:51 +0000137
wdenk78f66222002-08-27 10:27:51 +0000138void
wdenk756f5862005-04-03 15:51:42 +0000139_serial_putc(const char c,const int port)
wdenk78f66222002-08-27 10:27:51 +0000140{
141 if (c == '\n')
wdenk756f5862005-04-03 15:51:42 +0000142 NS16550_putc(PORT, '\r');
wdenk78f66222002-08-27 10:27:51 +0000143
wdenk756f5862005-04-03 15:51:42 +0000144 NS16550_putc(PORT, c);
wdenk78f66222002-08-27 10:27:51 +0000145}
146
147void
wdenk756f5862005-04-03 15:51:42 +0000148_serial_putc_raw(const char c,const int port)
149{
150 NS16550_putc(PORT, c);
151}
152
153void
154_serial_puts (const char *s,const int port)
wdenk78f66222002-08-27 10:27:51 +0000155{
156 while (*s) {
wdenk756f5862005-04-03 15:51:42 +0000157 _serial_putc (*s++,port);
wdenk78f66222002-08-27 10:27:51 +0000158 }
159}
160
161
162int
wdenk756f5862005-04-03 15:51:42 +0000163_serial_getc(const int port)
164{
165 return NS16550_getc(PORT);
166}
167
168int
169_serial_tstc(const int port)
170{
171 return NS16550_tstc(PORT);
172}
173
174void
175_serial_setbrg (const int port)
176{
177 int clock_divisor;
178
179 clock_divisor = calc_divisor(PORT);
180 NS16550_reinit(PORT, clock_divisor);
181}
182
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200183static inline void
184serial_putc_dev(unsigned int dev_index,const char c)
185{
186 _serial_putc(c,dev_index);
187}
wdenk756f5862005-04-03 15:51:42 +0000188
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200189static inline void
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200190serial_putc_raw_dev(unsigned int dev_index,const char c)
191{
192 _serial_putc_raw(c,dev_index);
193}
wdenk756f5862005-04-03 15:51:42 +0000194
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200195static inline void
196serial_puts_dev(unsigned int dev_index,const char *s)
197{
198 _serial_puts(s,dev_index);
199}
wdenk756f5862005-04-03 15:51:42 +0000200
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200201static inline int
202serial_getc_dev(unsigned int dev_index)
203{
204 return _serial_getc(dev_index);
205}
wdenk78f66222002-08-27 10:27:51 +0000206
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200207static inline int
208serial_tstc_dev(unsigned int dev_index)
209{
210 return _serial_tstc(dev_index);
211}
wdenk78f66222002-08-27 10:27:51 +0000212
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200213static inline void
214serial_setbrg_dev(unsigned int dev_index)
215{
216 _serial_setbrg(dev_index);
217}
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200218
Scott Wood55db9cc2013-01-18 15:42:16 +0000219#if defined(CONFIG_SYS_NS16550_COM1)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200220DECLARE_ESERIAL_FUNCTIONS(1);
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200221struct serial_device eserial1_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000222 INIT_ESERIAL_STRUCTURE(1, "eserial0");
Scott Wood55db9cc2013-01-18 15:42:16 +0000223#endif
224#if defined(CONFIG_SYS_NS16550_COM2)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200225DECLARE_ESERIAL_FUNCTIONS(2);
226struct serial_device eserial2_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000227 INIT_ESERIAL_STRUCTURE(2, "eserial1");
Scott Wood55db9cc2013-01-18 15:42:16 +0000228#endif
229#if defined(CONFIG_SYS_NS16550_COM3)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200230DECLARE_ESERIAL_FUNCTIONS(3);
231struct serial_device eserial3_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000232 INIT_ESERIAL_STRUCTURE(3, "eserial2");
Scott Wood55db9cc2013-01-18 15:42:16 +0000233#endif
234#if defined(CONFIG_SYS_NS16550_COM4)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200235DECLARE_ESERIAL_FUNCTIONS(4);
236struct serial_device eserial4_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000237 INIT_ESERIAL_STRUCTURE(4, "eserial3");
Scott Wood55db9cc2013-01-18 15:42:16 +0000238#endif
239#if defined(CONFIG_SYS_NS16550_COM5)
Andrew Bradford96708a02012-10-25 08:21:31 -0400240DECLARE_ESERIAL_FUNCTIONS(5);
241struct serial_device eserial5_device =
242 INIT_ESERIAL_STRUCTURE(5, "eserial4");
Scott Wood55db9cc2013-01-18 15:42:16 +0000243#endif
244#if defined(CONFIG_SYS_NS16550_COM6)
Andrew Bradford96708a02012-10-25 08:21:31 -0400245DECLARE_ESERIAL_FUNCTIONS(6);
246struct serial_device eserial6_device =
247 INIT_ESERIAL_STRUCTURE(6, "eserial5");
Scott Wood55db9cc2013-01-18 15:42:16 +0000248#endif
Mike Frysinger6c768ca2011-04-29 18:03:29 +0000249
250__weak struct serial_device *default_serial_console(void)
251{
252#if CONFIG_CONS_INDEX == 1
253 return &eserial1_device;
254#elif CONFIG_CONS_INDEX == 2
255 return &eserial2_device;
256#elif CONFIG_CONS_INDEX == 3
257 return &eserial3_device;
258#elif CONFIG_CONS_INDEX == 4
259 return &eserial4_device;
Andrew Bradford96708a02012-10-25 08:21:31 -0400260#elif CONFIG_CONS_INDEX == 5
261 return &eserial5_device;
262#elif CONFIG_CONS_INDEX == 6
263 return &eserial6_device;
Mike Frysinger6c768ca2011-04-29 18:03:29 +0000264#else
265#error "Bad CONFIG_CONS_INDEX."
266#endif
267}
268
Marek Vasutabc0ed82012-09-12 20:02:05 +0200269void ns16550_serial_initialize(void)
270{
271#if defined(CONFIG_SYS_NS16550_COM1)
272 serial_register(&eserial1_device);
273#endif
274#if defined(CONFIG_SYS_NS16550_COM2)
275 serial_register(&eserial2_device);
276#endif
277#if defined(CONFIG_SYS_NS16550_COM3)
278 serial_register(&eserial3_device);
279#endif
280#if defined(CONFIG_SYS_NS16550_COM4)
281 serial_register(&eserial4_device);
282#endif
Andrew Bradford96708a02012-10-25 08:21:31 -0400283#if defined(CONFIG_SYS_NS16550_COM5)
284 serial_register(&eserial5_device);
285#endif
286#if defined(CONFIG_SYS_NS16550_COM6)
287 serial_register(&eserial6_device);
288#endif
Marek Vasutabc0ed82012-09-12 20:02:05 +0200289}
Scott Wood48cbc3a2012-10-16 15:43:15 -0500290
291#endif /* !CONFIG_NS16550_MIN_FUNCTIONS */