1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011 The Chromium OS Authors.
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
19 #include <linux/compiler.h>
20 #include <asm/state.h>
22 DECLARE_GLOBAL_DATA_PTR;
26 * serial_buf: A buffer that holds keyboard characters for the
30 * serial_buf_write == serial_buf_read -> empty buffer
31 * (serial_buf_write + 1) % 16 == serial_buf_read -> full buffer
33 static unsigned char serial_buf[16];
34 static unsigned int serial_buf_write;
35 static unsigned int serial_buf_read;
37 struct sandbox_serial_platdata {
38 int colour; /* Text colour to use for output, -1 for none */
41 struct sandbox_serial_priv {
46 * output_ansi_colour() - Output an ANSI colour code
48 * @colour: Colour to output (0-7)
50 static void output_ansi_colour(int colour)
52 char ansi_code[] = "\x1b[1;3Xm";
54 ansi_code[5] = '0' + colour;
55 os_write(1, ansi_code, sizeof(ansi_code) - 1);
58 static void output_ansi_reset(void)
60 os_write(1, "\x1b[0m", 4);
63 static int sandbox_serial_probe(struct udevice *dev)
65 struct sandbox_state *state = state_get_current();
66 struct sandbox_serial_priv *priv = dev_get_priv(dev);
68 if (state->term_raw != STATE_TERM_COOKED)
69 os_tty_raw(0, state->term_raw == STATE_TERM_RAW_WITH_SIGS);
70 priv->start_of_line = 0;
72 if (state->term_raw != STATE_TERM_RAW)
78 static int sandbox_serial_remove(struct udevice *dev)
80 struct sandbox_serial_platdata *plat = dev->platdata;
82 if (plat->colour != -1)
88 static int sandbox_serial_putc(struct udevice *dev, const char ch)
90 struct sandbox_serial_priv *priv = dev_get_priv(dev);
91 struct sandbox_serial_platdata *plat = dev->platdata;
93 /* With of-platdata we don't real the colour correctly, so disable it */
94 if (!CONFIG_IS_ENABLED(OF_PLATDATA) && priv->start_of_line &&
96 priv->start_of_line = false;
97 output_ansi_colour(plat->colour);
102 priv->start_of_line = true;
107 static unsigned int increment_buffer_index(unsigned int index)
109 return (index + 1) % ARRAY_SIZE(serial_buf);
112 static int sandbox_serial_pending(struct udevice *dev, bool input)
114 const unsigned int next_index =
115 increment_buffer_index(serial_buf_write);
122 if (!IS_ENABLED(CONFIG_SPL_BUILD))
124 if (next_index == serial_buf_read)
125 return 1; /* buffer full */
127 count = os_read(0, &serial_buf[serial_buf_write], 1);
129 serial_buf_write = next_index;
131 return serial_buf_write != serial_buf_read;
134 static int sandbox_serial_getc(struct udevice *dev)
138 if (!sandbox_serial_pending(dev, true))
139 return -EAGAIN; /* buffer empty */
141 result = serial_buf[serial_buf_read];
142 serial_buf_read = increment_buffer_index(serial_buf_read);
146 #ifdef CONFIG_DEBUG_UART_SANDBOX
148 #include <debug_uart.h>
150 static inline void _debug_uart_init(void)
154 static inline void _debug_uart_putc(int ch)
161 #endif /* CONFIG_DEBUG_UART_SANDBOX */
163 static int sandbox_serial_getconfig(struct udevice *dev, uint *serial_config)
165 uint config = SERIAL_DEFAULT_CONFIG;
170 *serial_config = config;
175 static int sandbox_serial_setconfig(struct udevice *dev, uint serial_config)
177 u8 parity = SERIAL_GET_PARITY(serial_config);
178 u8 bits = SERIAL_GET_BITS(serial_config);
179 u8 stop = SERIAL_GET_STOP(serial_config);
181 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP ||
182 parity != SERIAL_PAR_NONE)
183 return -ENOTSUPP; /* not supported in driver*/
188 static int sandbox_serial_getinfo(struct udevice *dev,
189 struct serial_device_info *serial_info)
191 struct serial_device_info info = {
192 .type = SERIAL_CHIP_UNKNOWN,
193 .addr_space = SERIAL_ADDRESS_SPACE_IO,
194 .addr = SERIAL_DEFAULT_ADDRESS,
198 .clock = SERIAL_DEFAULT_CLOCK,
209 static const char * const ansi_colour[] = {
210 "black", "red", "green", "yellow", "blue", "megenta", "cyan",
214 static int sandbox_serial_ofdata_to_platdata(struct udevice *dev)
216 struct sandbox_serial_platdata *plat = dev->platdata;
220 if (CONFIG_IS_ENABLED(OF_PLATDATA))
223 colour = dev_read_string(dev, "sandbox,text-colour");
225 for (i = 0; i < ARRAY_SIZE(ansi_colour); i++) {
226 if (!strcmp(colour, ansi_colour[i])) {
236 static const struct dm_serial_ops sandbox_serial_ops = {
237 .putc = sandbox_serial_putc,
238 .pending = sandbox_serial_pending,
239 .getc = sandbox_serial_getc,
240 .getconfig = sandbox_serial_getconfig,
241 .setconfig = sandbox_serial_setconfig,
242 .getinfo = sandbox_serial_getinfo,
245 static const struct udevice_id sandbox_serial_ids[] = {
246 { .compatible = "sandbox,serial" },
250 U_BOOT_DRIVER(sandbox_serial) = {
251 .name = "sandbox_serial",
253 .of_match = sandbox_serial_ids,
254 .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),
257 .probe = sandbox_serial_probe,
258 .remove = sandbox_serial_remove,
259 .ops = &sandbox_serial_ops,
260 .flags = DM_FLAG_PRE_RELOC,
263 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
264 static const struct sandbox_serial_platdata platdata_non_fdt = {
268 U_BOOT_DEVICE(serial_sandbox_non_fdt) = {
269 .name = "sandbox_serial",
270 .platdata = &platdata_non_fdt,