blob: fcb1e95e81002ab49244d4bf5f3482afe407cd81 [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; \
Simon Glassfa54eb12014-09-04 16:27:32 -060084 clock_divisor = ns16550_calc_divisor(serial_ports[port-1], \
85 CONFIG_SYS_NS16550_CLK, gd->baudrate); \
Kim Phillipsac63f2a2012-10-29 13:34:47 +000086 NS16550_init(serial_ports[port-1], clock_divisor); \
87 return 0 ; \
88 } \
89 static void eserial##port##_setbrg(void) \
90 { \
91 serial_setbrg_dev(port); \
92 } \
93 static int eserial##port##_getc(void) \
94 { \
95 return serial_getc_dev(port); \
96 } \
97 static int eserial##port##_tstc(void) \
98 { \
99 return serial_tstc_dev(port); \
100 } \
101 static void eserial##port##_putc(const char c) \
102 { \
103 serial_putc_dev(port, c); \
104 } \
105 static void eserial##port##_puts(const char *s) \
106 { \
107 serial_puts_dev(port, s); \
108 }
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200109
110/* Serial device descriptor */
Marek Vasut90bad892012-09-09 18:48:28 +0200111#define INIT_ESERIAL_STRUCTURE(port, __name) { \
112 .name = __name, \
113 .start = eserial##port##_init, \
114 .stop = NULL, \
115 .setbrg = eserial##port##_setbrg, \
116 .getc = eserial##port##_getc, \
117 .tstc = eserial##port##_tstc, \
118 .putc = eserial##port##_putc, \
119 .puts = eserial##port##_puts, \
120}
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200121
Masahiro Yamada3fdd0bb2014-10-23 22:26:05 +0900122static void _serial_putc(const char c, const int port)
wdenk78f66222002-08-27 10:27:51 +0000123{
124 if (c == '\n')
wdenk756f5862005-04-03 15:51:42 +0000125 NS16550_putc(PORT, '\r');
wdenk78f66222002-08-27 10:27:51 +0000126
wdenk756f5862005-04-03 15:51:42 +0000127 NS16550_putc(PORT, c);
wdenk78f66222002-08-27 10:27:51 +0000128}
129
Masahiro Yamada3fdd0bb2014-10-23 22:26:05 +0900130static void _serial_puts(const char *s, const int port)
wdenk78f66222002-08-27 10:27:51 +0000131{
132 while (*s) {
Masahiro Yamada3fdd0bb2014-10-23 22:26:05 +0900133 _serial_putc(*s++, port);
wdenk78f66222002-08-27 10:27:51 +0000134 }
135}
136
Masahiro Yamada3fdd0bb2014-10-23 22:26:05 +0900137static int _serial_getc(const int port)
wdenk756f5862005-04-03 15:51:42 +0000138{
139 return NS16550_getc(PORT);
140}
141
Masahiro Yamada3fdd0bb2014-10-23 22:26:05 +0900142static int _serial_tstc(const int port)
wdenk756f5862005-04-03 15:51:42 +0000143{
144 return NS16550_tstc(PORT);
145}
146
Masahiro Yamada3fdd0bb2014-10-23 22:26:05 +0900147static void _serial_setbrg(const int port)
wdenk756f5862005-04-03 15:51:42 +0000148{
149 int clock_divisor;
150
Simon Glassfa54eb12014-09-04 16:27:32 -0600151 clock_divisor = ns16550_calc_divisor(PORT, CONFIG_SYS_NS16550_CLK,
152 gd->baudrate);
wdenk756f5862005-04-03 15:51:42 +0000153 NS16550_reinit(PORT, clock_divisor);
154}
155
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200156static inline void
157serial_putc_dev(unsigned int dev_index,const char c)
158{
159 _serial_putc(c,dev_index);
160}
wdenk756f5862005-04-03 15:51:42 +0000161
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200162static inline void
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200163serial_puts_dev(unsigned int dev_index,const char *s)
164{
165 _serial_puts(s,dev_index);
166}
wdenk756f5862005-04-03 15:51:42 +0000167
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200168static inline int
169serial_getc_dev(unsigned int dev_index)
170{
171 return _serial_getc(dev_index);
172}
wdenk78f66222002-08-27 10:27:51 +0000173
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200174static inline int
175serial_tstc_dev(unsigned int dev_index)
176{
177 return _serial_tstc(dev_index);
178}
wdenk78f66222002-08-27 10:27:51 +0000179
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200180static inline void
181serial_setbrg_dev(unsigned int dev_index)
182{
183 _serial_setbrg(dev_index);
184}
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200185
Scott Wood55db9cc2013-01-18 15:42:16 +0000186#if defined(CONFIG_SYS_NS16550_COM1)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200187DECLARE_ESERIAL_FUNCTIONS(1);
Wolfgang Denk511d0c72006-10-09 00:42:01 +0200188struct serial_device eserial1_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000189 INIT_ESERIAL_STRUCTURE(1, "eserial0");
Scott Wood55db9cc2013-01-18 15:42:16 +0000190#endif
191#if defined(CONFIG_SYS_NS16550_COM2)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200192DECLARE_ESERIAL_FUNCTIONS(2);
193struct serial_device eserial2_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000194 INIT_ESERIAL_STRUCTURE(2, "eserial1");
Scott Wood55db9cc2013-01-18 15:42:16 +0000195#endif
196#if defined(CONFIG_SYS_NS16550_COM3)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200197DECLARE_ESERIAL_FUNCTIONS(3);
198struct serial_device eserial3_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000199 INIT_ESERIAL_STRUCTURE(3, "eserial2");
Scott Wood55db9cc2013-01-18 15:42:16 +0000200#endif
201#if defined(CONFIG_SYS_NS16550_COM4)
Wolfgang Denk0fd30252006-08-30 23:02:10 +0200202DECLARE_ESERIAL_FUNCTIONS(4);
203struct serial_device eserial4_device =
Mike Frysinger1c9a5602011-04-29 18:03:31 +0000204 INIT_ESERIAL_STRUCTURE(4, "eserial3");
Scott Wood55db9cc2013-01-18 15:42:16 +0000205#endif
206#if defined(CONFIG_SYS_NS16550_COM5)
Andrew Bradford96708a02012-10-25 08:21:31 -0400207DECLARE_ESERIAL_FUNCTIONS(5);
208struct serial_device eserial5_device =
209 INIT_ESERIAL_STRUCTURE(5, "eserial4");
Scott Wood55db9cc2013-01-18 15:42:16 +0000210#endif
211#if defined(CONFIG_SYS_NS16550_COM6)
Andrew Bradford96708a02012-10-25 08:21:31 -0400212DECLARE_ESERIAL_FUNCTIONS(6);
213struct serial_device eserial6_device =
214 INIT_ESERIAL_STRUCTURE(6, "eserial5");
Scott Wood55db9cc2013-01-18 15:42:16 +0000215#endif
Mike Frysinger6c768ca2011-04-29 18:03:29 +0000216
217__weak struct serial_device *default_serial_console(void)
218{
219#if CONFIG_CONS_INDEX == 1
220 return &eserial1_device;
221#elif CONFIG_CONS_INDEX == 2
222 return &eserial2_device;
223#elif CONFIG_CONS_INDEX == 3
224 return &eserial3_device;
225#elif CONFIG_CONS_INDEX == 4
226 return &eserial4_device;
Andrew Bradford96708a02012-10-25 08:21:31 -0400227#elif CONFIG_CONS_INDEX == 5
228 return &eserial5_device;
229#elif CONFIG_CONS_INDEX == 6
230 return &eserial6_device;
Mike Frysinger6c768ca2011-04-29 18:03:29 +0000231#else
232#error "Bad CONFIG_CONS_INDEX."
233#endif
234}
235
Marek Vasutabc0ed82012-09-12 20:02:05 +0200236void ns16550_serial_initialize(void)
237{
238#if defined(CONFIG_SYS_NS16550_COM1)
239 serial_register(&eserial1_device);
240#endif
241#if defined(CONFIG_SYS_NS16550_COM2)
242 serial_register(&eserial2_device);
243#endif
244#if defined(CONFIG_SYS_NS16550_COM3)
245 serial_register(&eserial3_device);
246#endif
247#if defined(CONFIG_SYS_NS16550_COM4)
248 serial_register(&eserial4_device);
249#endif
Andrew Bradford96708a02012-10-25 08:21:31 -0400250#if defined(CONFIG_SYS_NS16550_COM5)
251 serial_register(&eserial5_device);
252#endif
253#if defined(CONFIG_SYS_NS16550_COM6)
254 serial_register(&eserial6_device);
255#endif
Marek Vasutabc0ed82012-09-12 20:02:05 +0200256}
Scott Wood48cbc3a2012-10-16 15:43:15 -0500257
258#endif /* !CONFIG_NS16550_MIN_FUNCTIONS */