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
20 #include <linux/compiler.h>
21 #include <asm/state.h>
23 DECLARE_GLOBAL_DATA_PTR;
25 #if CONFIG_IS_ENABLED(OF_CONTROL)
29 * serial_buf: A buffer that holds keyboard characters for the
33 * serial_buf_write == serial_buf_read -> empty buffer
34 * (serial_buf_write + 1) % 16 == serial_buf_read -> full buffer
36 static unsigned char serial_buf[16];
37 static unsigned int serial_buf_write;
38 static unsigned int serial_buf_read;
40 struct sandbox_serial_platdata {
41 int colour; /* Text colour to use for output, -1 for none */
44 struct sandbox_serial_priv {
49 * output_ansi_colour() - Output an ANSI colour code
51 * @colour: Colour to output (0-7)
53 static void output_ansi_colour(int colour)
55 char ansi_code[] = "\x1b[1;3Xm";
57 ansi_code[5] = '0' + colour;
58 os_write(1, ansi_code, sizeof(ansi_code) - 1);
61 static void output_ansi_reset(void)
63 os_write(1, "\x1b[0m", 4);
66 static int sandbox_serial_probe(struct udevice *dev)
68 struct sandbox_state *state = state_get_current();
69 struct sandbox_serial_priv *priv = dev_get_priv(dev);
71 if (state->term_raw != STATE_TERM_COOKED)
72 os_tty_raw(0, state->term_raw == STATE_TERM_RAW_WITH_SIGS);
73 priv->start_of_line = 0;
75 if (state->term_raw != STATE_TERM_RAW)
81 static int sandbox_serial_remove(struct udevice *dev)
83 struct sandbox_serial_platdata *plat = dev->platdata;
85 if (plat->colour != -1)
91 static int sandbox_serial_putc(struct udevice *dev, const char ch)
93 struct sandbox_serial_priv *priv = dev_get_priv(dev);
94 struct sandbox_serial_platdata *plat = dev->platdata;
96 /* With of-platdata we don't real the colour correctly, so disable it */
97 if (!CONFIG_IS_ENABLED(OF_PLATDATA) && priv->start_of_line &&
99 priv->start_of_line = false;
100 output_ansi_colour(plat->colour);
105 priv->start_of_line = true;
110 static unsigned int increment_buffer_index(unsigned int index)
112 return (index + 1) % ARRAY_SIZE(serial_buf);
115 static int sandbox_serial_pending(struct udevice *dev, bool input)
117 const unsigned int next_index =
118 increment_buffer_index(serial_buf_write);
125 #ifndef CONFIG_SPL_BUILD
128 if (next_index == serial_buf_read)
129 return 1; /* buffer full */
131 count = os_read(0, &serial_buf[serial_buf_write], 1);
133 serial_buf_write = next_index;
135 return serial_buf_write != serial_buf_read;
138 static int sandbox_serial_getc(struct udevice *dev)
142 if (!sandbox_serial_pending(dev, true))
143 return -EAGAIN; /* buffer empty */
145 result = serial_buf[serial_buf_read];
146 serial_buf_read = increment_buffer_index(serial_buf_read);
149 #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
151 #ifdef CONFIG_DEBUG_UART_SANDBOX
153 #include <debug_uart.h>
155 static inline void _debug_uart_init(void)
159 static inline void _debug_uart_putc(int ch)
166 #endif /* CONFIG_DEBUG_UART_SANDBOX */
168 static int sandbox_serial_getconfig(struct udevice *dev, uint *serial_config)
170 uint config = SERIAL_DEFAULT_CONFIG;
175 *serial_config = config;
180 static int sandbox_serial_setconfig(struct udevice *dev, uint serial_config)
182 u8 parity = SERIAL_GET_PARITY(serial_config);
183 u8 bits = SERIAL_GET_BITS(serial_config);
184 u8 stop = SERIAL_GET_STOP(serial_config);
186 if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP ||
187 parity != SERIAL_PAR_NONE)
188 return -ENOTSUPP; /* not supported in driver*/
193 static int sandbox_serial_getinfo(struct udevice *dev,
194 struct serial_device_info *serial_info)
196 struct serial_device_info info = {
197 .type = SERIAL_CHIP_UNKNOWN,
198 .addr_space = SERIAL_ADDRESS_SPACE_IO,
199 .addr = SERIAL_DEFAULT_ADDRESS,
203 .clock = SERIAL_DEFAULT_CLOCK,
214 #if CONFIG_IS_ENABLED(OF_CONTROL)
215 static const char * const ansi_colour[] = {
216 "black", "red", "green", "yellow", "blue", "megenta", "cyan",
220 static int sandbox_serial_ofdata_to_platdata(struct udevice *dev)
222 struct sandbox_serial_platdata *plat = dev->platdata;
226 if (CONFIG_IS_ENABLED(OF_PLATDATA))
229 colour = fdt_getprop(gd->fdt_blob, dev_of_offset(dev),
230 "sandbox,text-colour", NULL);
232 for (i = 0; i < ARRAY_SIZE(ansi_colour); i++) {
233 if (!strcmp(colour, ansi_colour[i])) {
243 static const struct dm_serial_ops sandbox_serial_ops = {
244 .putc = sandbox_serial_putc,
245 .pending = sandbox_serial_pending,
246 .getc = sandbox_serial_getc,
247 .getconfig = sandbox_serial_getconfig,
248 .setconfig = sandbox_serial_setconfig,
249 .getinfo = sandbox_serial_getinfo,
252 static const struct udevice_id sandbox_serial_ids[] = {
253 { .compatible = "sandbox,serial" },
257 U_BOOT_DRIVER(sandbox_serial) = {
258 .name = "sandbox_serial",
260 .of_match = sandbox_serial_ids,
261 .ofdata_to_platdata = sandbox_serial_ofdata_to_platdata,
262 .platdata_auto_alloc_size = sizeof(struct sandbox_serial_platdata),
263 .priv_auto_alloc_size = sizeof(struct sandbox_serial_priv),
264 .probe = sandbox_serial_probe,
265 .remove = sandbox_serial_remove,
266 .ops = &sandbox_serial_ops,
267 .flags = DM_FLAG_PRE_RELOC,
270 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
271 static const struct sandbox_serial_platdata platdata_non_fdt = {
275 U_BOOT_DEVICE(serial_sandbox_non_fdt) = {
276 .name = "sandbox_serial",
277 .platdata = &platdata_non_fdt,
281 #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */