Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 4 | */ |
| 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 Hershberger | 82a115f | 2018-07-02 20:06:49 -0500 | [diff] [blame] | 13 | #include <console.h> |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 14 | #include <dm.h> |
| 15 | #include <fdtdec.h> |
Simon Glass | 7d95f2a | 2014-02-27 13:26:19 -0700 | [diff] [blame] | 16 | #include <lcd.h> |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 17 | #include <os.h> |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 18 | #include <serial.h> |
Simon Glass | 3ade5bc | 2016-01-18 19:52:25 -0700 | [diff] [blame] | 19 | #include <video.h> |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 20 | #include <linux/compiler.h> |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame] | 21 | #include <asm/state.h> |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 22 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Simon Glass | 114b60a | 2018-10-01 11:55:16 -0600 | [diff] [blame] | 25 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
| 26 | |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 27 | /* |
| 28 | * |
| 29 | * serial_buf: A buffer that holds keyboard characters for the |
Bin Meng | a187559 | 2016-02-05 19:30:11 -0800 | [diff] [blame] | 30 | * Sandbox U-Boot. |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 31 | * |
| 32 | * invariants: |
| 33 | * serial_buf_write == serial_buf_read -> empty buffer |
| 34 | * (serial_buf_write + 1) % 16 == serial_buf_read -> full buffer |
| 35 | */ |
Heinrich Schuchardt | 5e5c785 | 2019-11-09 10:59:02 +0100 | [diff] [blame] | 36 | static unsigned char serial_buf[16]; |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 37 | static unsigned int serial_buf_write; |
| 38 | static unsigned int serial_buf_read; |
| 39 | |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 40 | struct sandbox_serial_platdata { |
| 41 | int colour; /* Text colour to use for output, -1 for none */ |
| 42 | }; |
| 43 | |
| 44 | struct sandbox_serial_priv { |
| 45 | bool start_of_line; |
| 46 | }; |
| 47 | |
| 48 | /** |
| 49 | * output_ansi_colour() - Output an ANSI colour code |
| 50 | * |
| 51 | * @colour: Colour to output (0-7) |
| 52 | */ |
| 53 | static void output_ansi_colour(int colour) |
| 54 | { |
| 55 | char ansi_code[] = "\x1b[1;3Xm"; |
| 56 | |
| 57 | ansi_code[5] = '0' + colour; |
| 58 | os_write(1, ansi_code, sizeof(ansi_code) - 1); |
| 59 | } |
| 60 | |
| 61 | static void output_ansi_reset(void) |
| 62 | { |
| 63 | os_write(1, "\x1b[0m", 4); |
| 64 | } |
| 65 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 66 | static int sandbox_serial_probe(struct udevice *dev) |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 67 | { |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame] | 68 | struct sandbox_state *state = state_get_current(); |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 69 | struct sandbox_serial_priv *priv = dev_get_priv(dev); |
Simon Glass | ffb8790 | 2014-02-27 13:26:22 -0700 | [diff] [blame] | 70 | |
| 71 | if (state->term_raw != STATE_TERM_COOKED) |
| 72 | os_tty_raw(0, state->term_raw == STATE_TERM_RAW_WITH_SIGS); |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 73 | priv->start_of_line = 0; |
| 74 | |
Joe Hershberger | 82a115f | 2018-07-02 20:06:49 -0500 | [diff] [blame] | 75 | if (state->term_raw != STATE_TERM_RAW) |
| 76 | disable_ctrlc(1); |
| 77 | |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static int sandbox_serial_remove(struct udevice *dev) |
| 82 | { |
| 83 | struct sandbox_serial_platdata *plat = dev->platdata; |
| 84 | |
| 85 | if (plat->colour != -1) |
| 86 | output_ansi_reset(); |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 87 | |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 88 | return 0; |
| 89 | } |
| 90 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 91 | static int sandbox_serial_putc(struct udevice *dev, const char ch) |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 92 | { |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 93 | struct sandbox_serial_priv *priv = dev_get_priv(dev); |
| 94 | struct sandbox_serial_platdata *plat = dev->platdata; |
| 95 | |
| 96 | if (priv->start_of_line && plat->colour != -1) { |
| 97 | priv->start_of_line = false; |
| 98 | output_ansi_colour(plat->colour); |
| 99 | } |
| 100 | |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 101 | os_write(1, &ch, 1); |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 102 | if (ch == '\n') |
| 103 | priv->start_of_line = true; |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 104 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 105 | return 0; |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 106 | } |
| 107 | |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 108 | static unsigned int increment_buffer_index(unsigned int index) |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 109 | { |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 110 | return (index + 1) % ARRAY_SIZE(serial_buf); |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 113 | static int sandbox_serial_pending(struct udevice *dev, bool input) |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 114 | { |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 115 | const unsigned int next_index = |
| 116 | increment_buffer_index(serial_buf_write); |
| 117 | ssize_t count; |
| 118 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 119 | if (!input) |
| 120 | return 0; |
| 121 | |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 122 | os_usleep(100); |
Simon Glass | 0110f50 | 2016-07-04 11:57:53 -0600 | [diff] [blame] | 123 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 3ade5bc | 2016-01-18 19:52:25 -0700 | [diff] [blame] | 124 | video_sync_all(); |
Simon Glass | 0110f50 | 2016-07-04 11:57:53 -0600 | [diff] [blame] | 125 | #endif |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 126 | if (next_index == serial_buf_read) |
| 127 | return 1; /* buffer full */ |
| 128 | |
Simon Glass | 4af3e9a | 2018-10-01 11:55:20 -0600 | [diff] [blame] | 129 | count = os_read(0, &serial_buf[serial_buf_write], 1); |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 130 | if (count == 1) |
| 131 | serial_buf_write = next_index; |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 132 | |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 133 | return serial_buf_write != serial_buf_read; |
| 134 | } |
| 135 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 136 | static int sandbox_serial_getc(struct udevice *dev) |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 137 | { |
| 138 | int result; |
| 139 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 140 | if (!sandbox_serial_pending(dev, true)) |
| 141 | return -EAGAIN; /* buffer empty */ |
Taylor Hutt | e101550 | 2013-02-24 17:33:13 +0000 | [diff] [blame] | 142 | |
| 143 | result = serial_buf[serial_buf_read]; |
| 144 | serial_buf_read = increment_buffer_index(serial_buf_read); |
| 145 | return result; |
Simon Glass | 7accb6e | 2011-10-03 19:26:46 +0000 | [diff] [blame] | 146 | } |
Simon Glass | 114b60a | 2018-10-01 11:55:16 -0600 | [diff] [blame] | 147 | #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */ |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 148 | |
Simon Glass | ee44176 | 2018-10-01 11:55:15 -0600 | [diff] [blame] | 149 | #ifdef CONFIG_DEBUG_UART_SANDBOX |
| 150 | |
| 151 | #include <debug_uart.h> |
| 152 | |
| 153 | static inline void _debug_uart_init(void) |
| 154 | { |
| 155 | } |
| 156 | |
| 157 | static inline void _debug_uart_putc(int ch) |
| 158 | { |
| 159 | os_putc(ch); |
| 160 | } |
| 161 | |
| 162 | DEBUG_UART_FUNCS |
| 163 | |
| 164 | #endif /* CONFIG_DEBUG_UART_SANDBOX */ |
| 165 | |
Andy Shevchenko | ac7f5db | 2018-11-20 23:52:32 +0200 | [diff] [blame] | 166 | static int sandbox_serial_getconfig(struct udevice *dev, uint *serial_config) |
| 167 | { |
| 168 | uint config = SERIAL_DEFAULT_CONFIG; |
| 169 | |
| 170 | if (!serial_config) |
| 171 | return -EINVAL; |
| 172 | |
| 173 | *serial_config = config; |
| 174 | |
| 175 | return 0; |
| 176 | } |
| 177 | |
Patrice Chotard | d7c0968 | 2018-08-03 15:07:41 +0200 | [diff] [blame] | 178 | static int sandbox_serial_setconfig(struct udevice *dev, uint serial_config) |
| 179 | { |
| 180 | u8 parity = SERIAL_GET_PARITY(serial_config); |
| 181 | u8 bits = SERIAL_GET_BITS(serial_config); |
| 182 | u8 stop = SERIAL_GET_STOP(serial_config); |
| 183 | |
| 184 | if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP || |
| 185 | parity != SERIAL_PAR_NONE) |
| 186 | return -ENOTSUPP; /* not supported in driver*/ |
| 187 | |
| 188 | return 0; |
| 189 | } |
| 190 | |
Andy Shevchenko | d5bb4f8 | 2018-11-20 23:52:33 +0200 | [diff] [blame] | 191 | static int sandbox_serial_getinfo(struct udevice *dev, |
| 192 | struct serial_device_info *serial_info) |
| 193 | { |
| 194 | struct serial_device_info info = { |
| 195 | .type = SERIAL_CHIP_UNKNOWN, |
| 196 | .addr_space = SERIAL_ADDRESS_SPACE_IO, |
| 197 | .addr = SERIAL_DEFAULT_ADDRESS, |
| 198 | .reg_width = 1, |
| 199 | .reg_offset = 0, |
| 200 | .reg_shift = 0, |
| 201 | }; |
| 202 | |
| 203 | if (!serial_info) |
| 204 | return -EINVAL; |
| 205 | |
| 206 | *serial_info = info; |
| 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
Simon Glass | 114b60a | 2018-10-01 11:55:16 -0600 | [diff] [blame] | 211 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 212 | static const char * const ansi_colour[] = { |
| 213 | "black", "red", "green", "yellow", "blue", "megenta", "cyan", |
| 214 | "white", |
| 215 | }; |
| 216 | |
| 217 | static int sandbox_serial_ofdata_to_platdata(struct udevice *dev) |
| 218 | { |
| 219 | struct sandbox_serial_platdata *plat = dev->platdata; |
| 220 | const char *colour; |
| 221 | int i; |
| 222 | |
Simon Glass | ea14778 | 2019-09-25 08:55:53 -0600 | [diff] [blame] | 223 | if (CONFIG_IS_ENABLED(OF_PLATDATA)) |
| 224 | return 0; |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 225 | plat->colour = -1; |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 226 | colour = fdt_getprop(gd->fdt_blob, dev_of_offset(dev), |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 227 | "sandbox,text-colour", NULL); |
| 228 | if (colour) { |
| 229 | for (i = 0; i < ARRAY_SIZE(ansi_colour); i++) { |
| 230 | if (!strcmp(colour, ansi_colour[i])) { |
| 231 | plat->colour = i; |
| 232 | break; |
| 233 | } |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 240 | static const struct dm_serial_ops sandbox_serial_ops = { |
| 241 | .putc = sandbox_serial_putc, |
| 242 | .pending = sandbox_serial_pending, |
| 243 | .getc = sandbox_serial_getc, |
Andy Shevchenko | ac7f5db | 2018-11-20 23:52:32 +0200 | [diff] [blame] | 244 | .getconfig = sandbox_serial_getconfig, |
Patrice Chotard | d7c0968 | 2018-08-03 15:07:41 +0200 | [diff] [blame] | 245 | .setconfig = sandbox_serial_setconfig, |
Andy Shevchenko | d5bb4f8 | 2018-11-20 23:52:33 +0200 | [diff] [blame] | 246 | .getinfo = sandbox_serial_getinfo, |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 247 | }; |
| 248 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 249 | static const struct udevice_id sandbox_serial_ids[] = { |
| 250 | { .compatible = "sandbox,serial" }, |
| 251 | { } |
| 252 | }; |
Marek Vasut | cef46b7 | 2012-09-14 22:33:21 +0200 | [diff] [blame] | 253 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 254 | U_BOOT_DRIVER(serial_sandbox) = { |
| 255 | .name = "serial_sandbox", |
| 256 | .id = UCLASS_SERIAL, |
| 257 | .of_match = sandbox_serial_ids, |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 258 | .ofdata_to_platdata = sandbox_serial_ofdata_to_platdata, |
| 259 | .platdata_auto_alloc_size = sizeof(struct sandbox_serial_platdata), |
| 260 | .priv_auto_alloc_size = sizeof(struct sandbox_serial_priv), |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 261 | .probe = sandbox_serial_probe, |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 262 | .remove = sandbox_serial_remove, |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 263 | .ops = &sandbox_serial_ops, |
| 264 | .flags = DM_FLAG_PRE_RELOC, |
| 265 | }; |
| 266 | |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 267 | static const struct sandbox_serial_platdata platdata_non_fdt = { |
| 268 | .colour = -1, |
| 269 | }; |
| 270 | |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 271 | U_BOOT_DEVICE(serial_sandbox_non_fdt) = { |
| 272 | .name = "serial_sandbox", |
Simon Glass | 72e9822 | 2014-09-04 16:27:28 -0600 | [diff] [blame] | 273 | .platdata = &platdata_non_fdt, |
Simon Glass | 890fcef | 2014-09-04 16:27:27 -0600 | [diff] [blame] | 274 | }; |
Simon Glass | 114b60a | 2018-10-01 11:55:16 -0600 | [diff] [blame] | 275 | #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */ |