blob: 8c74c3a1b8c203067c988141ecf04d0897e56f91 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass479349a2011-10-03 19:26:46 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass479349a2011-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 Hershbergerb3eff9b2018-07-02 20:06:49 -050013#include <console.h>
Simon Glasse5870692014-09-04 16:27:27 -060014#include <dm.h>
Simon Glassb9ddbf42014-02-27 13:26:19 -070015#include <lcd.h>
Simon Glass479349a2011-10-03 19:26:46 +000016#include <os.h>
Marek Vasut289c3002012-09-14 22:33:21 +020017#include <serial.h>
Simon Glass38a2ae22016-01-18 19:52:25 -070018#include <video.h>
Marek Vasut289c3002012-09-14 22:33:21 +020019#include <linux/compiler.h>
Simon Glass678ef472014-02-27 13:26:22 -070020#include <asm/state.h>
Simon Glass479349a2011-10-03 19:26:46 +000021
Simon Glasse5870692014-09-04 16:27:27 -060022DECLARE_GLOBAL_DATA_PTR;
23
Taylor Hutt868aa3a2013-02-24 17:33:13 +000024/*
25 *
26 * serial_buf: A buffer that holds keyboard characters for the
Bin Meng75574052016-02-05 19:30:11 -080027 * Sandbox U-Boot.
Taylor Hutt868aa3a2013-02-24 17:33:13 +000028 *
29 * invariants:
30 * serial_buf_write == serial_buf_read -> empty buffer
31 * (serial_buf_write + 1) % 16 == serial_buf_read -> full buffer
32 */
Heinrich Schuchardt81620a52019-11-09 10:59:02 +010033static unsigned char serial_buf[16];
Taylor Hutt868aa3a2013-02-24 17:33:13 +000034static unsigned int serial_buf_write;
35static unsigned int serial_buf_read;
36
Simon Glass1a823a92014-09-04 16:27:28 -060037struct sandbox_serial_platdata {
38 int colour; /* Text colour to use for output, -1 for none */
39};
40
41struct sandbox_serial_priv {
42 bool start_of_line;
43};
44
45/**
46 * output_ansi_colour() - Output an ANSI colour code
47 *
48 * @colour: Colour to output (0-7)
49 */
50static void output_ansi_colour(int colour)
51{
52 char ansi_code[] = "\x1b[1;3Xm";
53
54 ansi_code[5] = '0' + colour;
55 os_write(1, ansi_code, sizeof(ansi_code) - 1);
56}
57
58static void output_ansi_reset(void)
59{
60 os_write(1, "\x1b[0m", 4);
61}
62
Simon Glasse5870692014-09-04 16:27:27 -060063static int sandbox_serial_probe(struct udevice *dev)
Simon Glass479349a2011-10-03 19:26:46 +000064{
Simon Glass678ef472014-02-27 13:26:22 -070065 struct sandbox_state *state = state_get_current();
Simon Glass1a823a92014-09-04 16:27:28 -060066 struct sandbox_serial_priv *priv = dev_get_priv(dev);
Simon Glass678ef472014-02-27 13:26:22 -070067
68 if (state->term_raw != STATE_TERM_COOKED)
69 os_tty_raw(0, state->term_raw == STATE_TERM_RAW_WITH_SIGS);
Simon Glass1a823a92014-09-04 16:27:28 -060070 priv->start_of_line = 0;
Simon Glass479349a2011-10-03 19:26:46 +000071
Joe Hershbergerb3eff9b2018-07-02 20:06:49 -050072 if (state->term_raw != STATE_TERM_RAW)
73 disable_ctrlc(1);
74
Simon Glasse5870692014-09-04 16:27:27 -060075 return 0;
Simon Glass479349a2011-10-03 19:26:46 +000076}
77
Simon Glass1a823a92014-09-04 16:27:28 -060078static int sandbox_serial_remove(struct udevice *dev)
79{
80 struct sandbox_serial_platdata *plat = dev->platdata;
81
82 if (plat->colour != -1)
83 output_ansi_reset();
84
85 return 0;
86}
87
Simon Glasse5870692014-09-04 16:27:27 -060088static int sandbox_serial_putc(struct udevice *dev, const char ch)
Simon Glass479349a2011-10-03 19:26:46 +000089{
Simon Glass1a823a92014-09-04 16:27:28 -060090 struct sandbox_serial_priv *priv = dev_get_priv(dev);
91 struct sandbox_serial_platdata *plat = dev->platdata;
92
Walter Lozano2901ac62020-06-25 01:10:04 -030093 /* With of-platdata we don't real the colour correctly, so disable it */
94 if (!CONFIG_IS_ENABLED(OF_PLATDATA) && priv->start_of_line &&
95 plat->colour != -1) {
Simon Glass1a823a92014-09-04 16:27:28 -060096 priv->start_of_line = false;
97 output_ansi_colour(plat->colour);
98 }
99
Simon Glass479349a2011-10-03 19:26:46 +0000100 os_write(1, &ch, 1);
Simon Glass1a823a92014-09-04 16:27:28 -0600101 if (ch == '\n')
102 priv->start_of_line = true;
Simon Glass479349a2011-10-03 19:26:46 +0000103
Simon Glasse5870692014-09-04 16:27:27 -0600104 return 0;
Simon Glass479349a2011-10-03 19:26:46 +0000105}
106
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000107static unsigned int increment_buffer_index(unsigned int index)
108{
109 return (index + 1) % ARRAY_SIZE(serial_buf);
110}
111
Simon Glasse5870692014-09-04 16:27:27 -0600112static int sandbox_serial_pending(struct udevice *dev, bool input)
Simon Glass479349a2011-10-03 19:26:46 +0000113{
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000114 const unsigned int next_index =
115 increment_buffer_index(serial_buf_write);
Mike Frysingerd174fd92011-10-26 00:21:01 +0000116 ssize_t count;
Simon Glass479349a2011-10-03 19:26:46 +0000117
Simon Glasse5870692014-09-04 16:27:27 -0600118 if (!input)
119 return 0;
120
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000121 os_usleep(100);
Simon Glass0b8ffa72020-11-08 20:36:48 -0700122 if (!IS_ENABLED(CONFIG_SPL_BUILD))
123 video_sync_all();
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000124 if (next_index == serial_buf_read)
125 return 1; /* buffer full */
126
Simon Glassae50ec72018-10-01 11:55:20 -0600127 count = os_read(0, &serial_buf[serial_buf_write], 1);
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000128 if (count == 1)
129 serial_buf_write = next_index;
Simon Glasse5870692014-09-04 16:27:27 -0600130
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000131 return serial_buf_write != serial_buf_read;
Simon Glass479349a2011-10-03 19:26:46 +0000132}
133
Simon Glasse5870692014-09-04 16:27:27 -0600134static int sandbox_serial_getc(struct udevice *dev)
Simon Glass479349a2011-10-03 19:26:46 +0000135{
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000136 int result;
137
Simon Glasse5870692014-09-04 16:27:27 -0600138 if (!sandbox_serial_pending(dev, true))
139 return -EAGAIN; /* buffer empty */
Taylor Hutt868aa3a2013-02-24 17:33:13 +0000140
141 result = serial_buf[serial_buf_read];
142 serial_buf_read = increment_buffer_index(serial_buf_read);
143 return result;
Simon Glass479349a2011-10-03 19:26:46 +0000144}
Marek Vasut289c3002012-09-14 22:33:21 +0200145
Simon Glasse3057f32018-10-01 11:55:15 -0600146#ifdef CONFIG_DEBUG_UART_SANDBOX
147
148#include <debug_uart.h>
149
150static inline void _debug_uart_init(void)
151{
152}
153
154static inline void _debug_uart_putc(int ch)
155{
156 os_putc(ch);
157}
158
159DEBUG_UART_FUNCS
160
161#endif /* CONFIG_DEBUG_UART_SANDBOX */
162
Andy Shevchenko08e98792018-11-20 23:52:32 +0200163static int sandbox_serial_getconfig(struct udevice *dev, uint *serial_config)
164{
165 uint config = SERIAL_DEFAULT_CONFIG;
166
167 if (!serial_config)
168 return -EINVAL;
169
170 *serial_config = config;
171
172 return 0;
173}
174
Patrice Chotard70ed0ea2018-08-03 15:07:41 +0200175static int sandbox_serial_setconfig(struct udevice *dev, uint serial_config)
176{
177 u8 parity = SERIAL_GET_PARITY(serial_config);
178 u8 bits = SERIAL_GET_BITS(serial_config);
179 u8 stop = SERIAL_GET_STOP(serial_config);
180
181 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP ||
182 parity != SERIAL_PAR_NONE)
183 return -ENOTSUPP; /* not supported in driver*/
184
185 return 0;
186}
187
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200188static int sandbox_serial_getinfo(struct udevice *dev,
189 struct serial_device_info *serial_info)
190{
191 struct serial_device_info info = {
192 .type = SERIAL_CHIP_UNKNOWN,
193 .addr_space = SERIAL_ADDRESS_SPACE_IO,
194 .addr = SERIAL_DEFAULT_ADDRESS,
195 .reg_width = 1,
196 .reg_offset = 0,
197 .reg_shift = 0,
Andy Shevchenko106930e2020-02-27 17:21:54 +0200198 .clock = SERIAL_DEFAULT_CLOCK,
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200199 };
200
201 if (!serial_info)
202 return -EINVAL;
203
204 *serial_info = info;
205
206 return 0;
207}
208
Simon Glass1a823a92014-09-04 16:27:28 -0600209static const char * const ansi_colour[] = {
210 "black", "red", "green", "yellow", "blue", "megenta", "cyan",
211 "white",
212};
213
214static int sandbox_serial_ofdata_to_platdata(struct udevice *dev)
215{
216 struct sandbox_serial_platdata *plat = dev->platdata;
217 const char *colour;
218 int i;
219
Simon Glassa91e48b2019-09-25 08:55:53 -0600220 if (CONFIG_IS_ENABLED(OF_PLATDATA))
221 return 0;
Simon Glass1a823a92014-09-04 16:27:28 -0600222 plat->colour = -1;
Simon Glassfb6268d2020-11-08 20:36:49 -0700223 colour = dev_read_string(dev, "sandbox,text-colour");
Simon Glass1a823a92014-09-04 16:27:28 -0600224 if (colour) {
225 for (i = 0; i < ARRAY_SIZE(ansi_colour); i++) {
226 if (!strcmp(colour, ansi_colour[i])) {
227 plat->colour = i;
228 break;
229 }
230 }
231 }
232
233 return 0;
234}
235
Simon Glasse5870692014-09-04 16:27:27 -0600236static const struct dm_serial_ops sandbox_serial_ops = {
237 .putc = sandbox_serial_putc,
238 .pending = sandbox_serial_pending,
239 .getc = sandbox_serial_getc,
Andy Shevchenko08e98792018-11-20 23:52:32 +0200240 .getconfig = sandbox_serial_getconfig,
Patrice Chotard70ed0ea2018-08-03 15:07:41 +0200241 .setconfig = sandbox_serial_setconfig,
Andy Shevchenko44f21da2018-11-20 23:52:33 +0200242 .getinfo = sandbox_serial_getinfo,
Marek Vasut289c3002012-09-14 22:33:21 +0200243};
244
Simon Glasse5870692014-09-04 16:27:27 -0600245static const struct udevice_id sandbox_serial_ids[] = {
246 { .compatible = "sandbox,serial" },
247 { }
248};
Marek Vasut289c3002012-09-14 22:33:21 +0200249
Walter Lozano2901ac62020-06-25 01:10:04 -0300250U_BOOT_DRIVER(sandbox_serial) = {
251 .name = "sandbox_serial",
Simon Glasse5870692014-09-04 16:27:27 -0600252 .id = UCLASS_SERIAL,
253 .of_match = sandbox_serial_ids,
Simon Glass1a823a92014-09-04 16:27:28 -0600254 .ofdata_to_platdata = sandbox_serial_ofdata_to_platdata,
255 .platdata_auto_alloc_size = sizeof(struct sandbox_serial_platdata),
256 .priv_auto_alloc_size = sizeof(struct sandbox_serial_priv),
Simon Glasse5870692014-09-04 16:27:27 -0600257 .probe = sandbox_serial_probe,
Simon Glass1a823a92014-09-04 16:27:28 -0600258 .remove = sandbox_serial_remove,
Simon Glasse5870692014-09-04 16:27:27 -0600259 .ops = &sandbox_serial_ops,
260 .flags = DM_FLAG_PRE_RELOC,
261};
262
Simon Glasscb90bd32020-10-03 11:31:23 -0600263#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass1a823a92014-09-04 16:27:28 -0600264static const struct sandbox_serial_platdata platdata_non_fdt = {
265 .colour = -1,
266};
267
Simon Glasse5870692014-09-04 16:27:27 -0600268U_BOOT_DEVICE(serial_sandbox_non_fdt) = {
Walter Lozano2901ac62020-06-25 01:10:04 -0300269 .name = "sandbox_serial",
Simon Glass1a823a92014-09-04 16:27:28 -0600270 .platdata = &platdata_non_fdt,
Simon Glasse5870692014-09-04 16:27:27 -0600271};
Simon Glasscb90bd32020-10-03 11:31:23 -0600272#endif