blob: 5243c955fbf41c273905e4368aeecb8a6268e169 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass7accb6e2011-10-03 19:26:46 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass7accb6e2011-10-03 19:26:46 +00004 */
5
6/*
7 * This provide a test serial port. It provides an emulated serial port where
8 * a test program and read out the serial output and inject serial input for
9 * U-Boot.
10 */
11
12#include <common.h>
Joe Hershberger82a115f2018-07-02 20:06:49 -050013#include <console.h>
Simon Glass890fcef2014-09-04 16:27:27 -060014#include <dm.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070015#include <lcd.h>
Simon Glass7accb6e2011-10-03 19:26:46 +000016#include <os.h>
Marek Vasutcef46b72012-09-14 22:33:21 +020017#include <serial.h>
Simon Glass3ade5bc2016-01-18 19:52:25 -070018#include <video.h>
Simon Glass401d1c42020-10-30 21:38:53 -060019#include <asm/global_data.h>
Marek Vasutcef46b72012-09-14 22:33:21 +020020#include <linux/compiler.h>
Simon Glassbfae6cc2020-12-19 10:39:53 -070021#include <asm/serial.h>
Simon Glassffb87902014-02-27 13:26:22 -070022#include <asm/state.h>
Simon Glass7accb6e2011-10-03 19:26:46 +000023
Simon Glass890fcef2014-09-04 16:27:27 -060024DECLARE_GLOBAL_DATA_PTR;
25
Simon Glass72e98222014-09-04 16:27:28 -060026/**
27 * output_ansi_colour() - Output an ANSI colour code
28 *
29 * @colour: Colour to output (0-7)
30 */
31static void output_ansi_colour(int colour)
32{
33 char ansi_code[] = "\x1b[1;3Xm";
34
35 ansi_code[5] = '0' + colour;
36 os_write(1, ansi_code, sizeof(ansi_code) - 1);
37}
38
39static void output_ansi_reset(void)
40{
41 os_write(1, "\x1b[0m", 4);
42}
43
Simon Glass890fcef2014-09-04 16:27:27 -060044static int sandbox_serial_probe(struct udevice *dev)
Simon Glass7accb6e2011-10-03 19:26:46 +000045{
Simon Glassffb87902014-02-27 13:26:22 -070046 struct sandbox_state *state = state_get_current();
Simon Glass72e98222014-09-04 16:27:28 -060047 struct sandbox_serial_priv *priv = dev_get_priv(dev);
Simon Glassffb87902014-02-27 13:26:22 -070048
49 if (state->term_raw != STATE_TERM_COOKED)
50 os_tty_raw(0, state->term_raw == STATE_TERM_RAW_WITH_SIGS);
Simon Glass72e98222014-09-04 16:27:28 -060051 priv->start_of_line = 0;
52
Joe Hershberger82a115f2018-07-02 20:06:49 -050053 if (state->term_raw != STATE_TERM_RAW)
54 disable_ctrlc(1);
Simon Glass21f90752020-11-08 20:36:50 -070055 membuff_init(&priv->buf, priv->serial_buf, sizeof(priv->serial_buf));
Joe Hershberger82a115f2018-07-02 20:06:49 -050056
Simon Glass72e98222014-09-04 16:27:28 -060057 return 0;
58}
59
60static int sandbox_serial_remove(struct udevice *dev)
61{
Simon Glass0fd3d912020-12-22 19:30:28 -070062 struct sandbox_serial_plat *plat = dev_get_plat(dev);
Simon Glass72e98222014-09-04 16:27:28 -060063
64 if (plat->colour != -1)
65 output_ansi_reset();
Simon Glass890fcef2014-09-04 16:27:27 -060066
Simon Glass7accb6e2011-10-03 19:26:46 +000067 return 0;
68}
69
Simon Glass890fcef2014-09-04 16:27:27 -060070static int sandbox_serial_putc(struct udevice *dev, const char ch)
Simon Glass7accb6e2011-10-03 19:26:46 +000071{
Simon Glass72e98222014-09-04 16:27:28 -060072 struct sandbox_serial_priv *priv = dev_get_priv(dev);
Simon Glass0fd3d912020-12-22 19:30:28 -070073 struct sandbox_serial_plat *plat = dev_get_plat(dev);
Simon Glass72e98222014-09-04 16:27:28 -060074
Walter Lozanoe3e24702020-06-25 01:10:04 -030075 /* With of-platdata we don't real the colour correctly, so disable it */
76 if (!CONFIG_IS_ENABLED(OF_PLATDATA) && priv->start_of_line &&
77 plat->colour != -1) {
Simon Glass72e98222014-09-04 16:27:28 -060078 priv->start_of_line = false;
79 output_ansi_colour(plat->colour);
80 }
81
Simon Glass7accb6e2011-10-03 19:26:46 +000082 os_write(1, &ch, 1);
Simon Glass72e98222014-09-04 16:27:28 -060083 if (ch == '\n')
84 priv->start_of_line = true;
Simon Glass7accb6e2011-10-03 19:26:46 +000085
Simon Glass890fcef2014-09-04 16:27:27 -060086 return 0;
Simon Glass7accb6e2011-10-03 19:26:46 +000087}
88
Simon Glass890fcef2014-09-04 16:27:27 -060089static int sandbox_serial_pending(struct udevice *dev, bool input)
Simon Glass7accb6e2011-10-03 19:26:46 +000090{
Simon Glass21f90752020-11-08 20:36:50 -070091 struct sandbox_serial_priv *priv = dev_get_priv(dev);
Taylor Hutte1015502013-02-24 17:33:13 +000092 ssize_t count;
Simon Glass21f90752020-11-08 20:36:50 -070093 char *data;
94 int avail;
Taylor Hutte1015502013-02-24 17:33:13 +000095
Simon Glass890fcef2014-09-04 16:27:27 -060096 if (!input)
97 return 0;
98
Taylor Hutte1015502013-02-24 17:33:13 +000099 os_usleep(100);
Simon Glassc5ea0162020-11-08 20:36:48 -0700100 if (!IS_ENABLED(CONFIG_SPL_BUILD))
101 video_sync_all();
Simon Glass21f90752020-11-08 20:36:50 -0700102 avail = membuff_putraw(&priv->buf, 100, false, &data);
103 if (!avail)
Taylor Hutte1015502013-02-24 17:33:13 +0000104 return 1; /* buffer full */
105
Simon Glass21f90752020-11-08 20:36:50 -0700106 count = os_read(0, data, avail);
107 if (count > 0)
108 membuff_putraw(&priv->buf, count, true, &data);
Simon Glass890fcef2014-09-04 16:27:27 -0600109
Simon Glass21f90752020-11-08 20:36:50 -0700110 return membuff_avail(&priv->buf);
Taylor Hutte1015502013-02-24 17:33:13 +0000111}
112
Simon Glass890fcef2014-09-04 16:27:27 -0600113static int sandbox_serial_getc(struct udevice *dev)
Taylor Hutte1015502013-02-24 17:33:13 +0000114{
Simon Glass21f90752020-11-08 20:36:50 -0700115 struct sandbox_serial_priv *priv = dev_get_priv(dev);
Taylor Hutte1015502013-02-24 17:33:13 +0000116
Simon Glass890fcef2014-09-04 16:27:27 -0600117 if (!sandbox_serial_pending(dev, true))
118 return -EAGAIN; /* buffer empty */
Taylor Hutte1015502013-02-24 17:33:13 +0000119
Simon Glass21f90752020-11-08 20:36:50 -0700120 return membuff_getbyte(&priv->buf);
Simon Glass7accb6e2011-10-03 19:26:46 +0000121}
Marek Vasutcef46b72012-09-14 22:33:21 +0200122
Simon Glassee441762018-10-01 11:55:15 -0600123#ifdef CONFIG_DEBUG_UART_SANDBOX
124
125#include <debug_uart.h>
126
127static inline void _debug_uart_init(void)
128{
129}
130
131static inline void _debug_uart_putc(int ch)
132{
133 os_putc(ch);
134}
135
136DEBUG_UART_FUNCS
137
138#endif /* CONFIG_DEBUG_UART_SANDBOX */
139
Andy Shevchenkoac7f5db2018-11-20 23:52:32 +0200140static int sandbox_serial_getconfig(struct udevice *dev, uint *serial_config)
141{
142 uint config = SERIAL_DEFAULT_CONFIG;
143
144 if (!serial_config)
145 return -EINVAL;
146
147 *serial_config = config;
148
149 return 0;
150}
151
Patrice Chotardd7c09682018-08-03 15:07:41 +0200152static int sandbox_serial_setconfig(struct udevice *dev, uint serial_config)
153{
154 u8 parity = SERIAL_GET_PARITY(serial_config);
155 u8 bits = SERIAL_GET_BITS(serial_config);
156 u8 stop = SERIAL_GET_STOP(serial_config);
157
158 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP ||
159 parity != SERIAL_PAR_NONE)
160 return -ENOTSUPP; /* not supported in driver*/
161
162 return 0;
163}
164
Andy Shevchenkod5bb4f82018-11-20 23:52:33 +0200165static int sandbox_serial_getinfo(struct udevice *dev,
166 struct serial_device_info *serial_info)
167{
168 struct serial_device_info info = {
169 .type = SERIAL_CHIP_UNKNOWN,
170 .addr_space = SERIAL_ADDRESS_SPACE_IO,
171 .addr = SERIAL_DEFAULT_ADDRESS,
172 .reg_width = 1,
173 .reg_offset = 0,
174 .reg_shift = 0,
Andy Shevchenkobf4661bc2020-02-27 17:21:54 +0200175 .clock = SERIAL_DEFAULT_CLOCK,
Andy Shevchenkod5bb4f82018-11-20 23:52:33 +0200176 };
177
178 if (!serial_info)
179 return -EINVAL;
180
181 *serial_info = info;
182
183 return 0;
184}
185
Simon Glass72e98222014-09-04 16:27:28 -0600186static const char * const ansi_colour[] = {
187 "black", "red", "green", "yellow", "blue", "megenta", "cyan",
188 "white",
189};
190
Simon Glassd1998a92020-12-03 16:55:21 -0700191static int sandbox_serial_of_to_plat(struct udevice *dev)
Simon Glass72e98222014-09-04 16:27:28 -0600192{
Simon Glass0fd3d912020-12-22 19:30:28 -0700193 struct sandbox_serial_plat *plat = dev_get_plat(dev);
Simon Glass72e98222014-09-04 16:27:28 -0600194 const char *colour;
195 int i;
196
Simon Glassea147782019-09-25 08:55:53 -0600197 if (CONFIG_IS_ENABLED(OF_PLATDATA))
198 return 0;
Simon Glass72e98222014-09-04 16:27:28 -0600199 plat->colour = -1;
Simon Glass1bf0a402020-11-08 20:36:49 -0700200 colour = dev_read_string(dev, "sandbox,text-colour");
Simon Glass72e98222014-09-04 16:27:28 -0600201 if (colour) {
202 for (i = 0; i < ARRAY_SIZE(ansi_colour); i++) {
203 if (!strcmp(colour, ansi_colour[i])) {
204 plat->colour = i;
205 break;
206 }
207 }
208 }
209
210 return 0;
211}
212
Simon Glass890fcef2014-09-04 16:27:27 -0600213static const struct dm_serial_ops sandbox_serial_ops = {
214 .putc = sandbox_serial_putc,
215 .pending = sandbox_serial_pending,
216 .getc = sandbox_serial_getc,
Andy Shevchenkoac7f5db2018-11-20 23:52:32 +0200217 .getconfig = sandbox_serial_getconfig,
Patrice Chotardd7c09682018-08-03 15:07:41 +0200218 .setconfig = sandbox_serial_setconfig,
Andy Shevchenkod5bb4f82018-11-20 23:52:33 +0200219 .getinfo = sandbox_serial_getinfo,
Marek Vasutcef46b72012-09-14 22:33:21 +0200220};
221
Simon Glass890fcef2014-09-04 16:27:27 -0600222static const struct udevice_id sandbox_serial_ids[] = {
223 { .compatible = "sandbox,serial" },
224 { }
225};
Marek Vasutcef46b72012-09-14 22:33:21 +0200226
Walter Lozanoe3e24702020-06-25 01:10:04 -0300227U_BOOT_DRIVER(sandbox_serial) = {
228 .name = "sandbox_serial",
Simon Glass890fcef2014-09-04 16:27:27 -0600229 .id = UCLASS_SERIAL,
230 .of_match = sandbox_serial_ids,
Simon Glassd1998a92020-12-03 16:55:21 -0700231 .of_to_plat = sandbox_serial_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700232 .plat_auto = sizeof(struct sandbox_serial_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700233 .priv_auto = sizeof(struct sandbox_serial_priv),
Simon Glass890fcef2014-09-04 16:27:27 -0600234 .probe = sandbox_serial_probe,
Simon Glass72e98222014-09-04 16:27:28 -0600235 .remove = sandbox_serial_remove,
Simon Glass890fcef2014-09-04 16:27:27 -0600236 .ops = &sandbox_serial_ops,
237 .flags = DM_FLAG_PRE_RELOC,
238};
239
Simon Glassc1473292020-10-03 11:31:23 -0600240#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass8a8d24b2020-12-03 16:55:23 -0700241static const struct sandbox_serial_plat platdata_non_fdt = {
Simon Glass72e98222014-09-04 16:27:28 -0600242 .colour = -1,
243};
244
Simon Glass20e442a2020-12-28 20:34:54 -0700245U_BOOT_DRVINFO(serial_sandbox_non_fdt) = {
Walter Lozanoe3e24702020-06-25 01:10:04 -0300246 .name = "sandbox_serial",
Simon Glasscaa4daa2020-12-03 16:55:18 -0700247 .plat = &platdata_non_fdt,
Simon Glass890fcef2014-09-04 16:27:27 -0600248};
Simon Glassc1473292020-10-03 11:31:23 -0600249#endif