blob: 58f882b22a607b4b698e8c0d5e89642e56b208f5 [file] [log] [blame]
Simon Glass7accb6e2011-10-03 19:26:46 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass7accb6e2011-10-03 19:26:46 +00003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Simon Glass7accb6e2011-10-03 19:26:46 +00005 */
6
7/*
8 * This provide a test serial port. It provides an emulated serial port where
9 * a test program and read out the serial output and inject serial input for
10 * U-Boot.
11 */
12
13#include <common.h>
Simon Glass890fcef2014-09-04 16:27:27 -060014#include <dm.h>
15#include <fdtdec.h>
Simon Glass7d95f2a2014-02-27 13:26:19 -070016#include <lcd.h>
Simon Glass7accb6e2011-10-03 19:26:46 +000017#include <os.h>
Marek Vasutcef46b72012-09-14 22:33:21 +020018#include <serial.h>
Simon Glass3ade5bc2016-01-18 19:52:25 -070019#include <video.h>
Marek Vasutcef46b72012-09-14 22:33:21 +020020#include <linux/compiler.h>
Simon Glassffb87902014-02-27 13:26:22 -070021#include <asm/state.h>
Simon Glass7accb6e2011-10-03 19:26:46 +000022
Simon Glass890fcef2014-09-04 16:27:27 -060023DECLARE_GLOBAL_DATA_PTR;
24
Taylor Hutte1015502013-02-24 17:33:13 +000025/*
26 *
27 * serial_buf: A buffer that holds keyboard characters for the
Bin Menga1875592016-02-05 19:30:11 -080028 * Sandbox U-Boot.
Taylor Hutte1015502013-02-24 17:33:13 +000029 *
30 * invariants:
31 * serial_buf_write == serial_buf_read -> empty buffer
32 * (serial_buf_write + 1) % 16 == serial_buf_read -> full buffer
33 */
34static char serial_buf[16];
35static unsigned int serial_buf_write;
36static unsigned int serial_buf_read;
37
Simon Glass72e98222014-09-04 16:27:28 -060038struct sandbox_serial_platdata {
39 int colour; /* Text colour to use for output, -1 for none */
40};
41
42struct sandbox_serial_priv {
43 bool start_of_line;
44};
45
46/**
47 * output_ansi_colour() - Output an ANSI colour code
48 *
49 * @colour: Colour to output (0-7)
50 */
51static void output_ansi_colour(int colour)
52{
53 char ansi_code[] = "\x1b[1;3Xm";
54
55 ansi_code[5] = '0' + colour;
56 os_write(1, ansi_code, sizeof(ansi_code) - 1);
57}
58
59static void output_ansi_reset(void)
60{
61 os_write(1, "\x1b[0m", 4);
62}
63
Simon Glass890fcef2014-09-04 16:27:27 -060064static int sandbox_serial_probe(struct udevice *dev)
Simon Glass7accb6e2011-10-03 19:26:46 +000065{
Simon Glassffb87902014-02-27 13:26:22 -070066 struct sandbox_state *state = state_get_current();
Simon Glass72e98222014-09-04 16:27:28 -060067 struct sandbox_serial_priv *priv = dev_get_priv(dev);
Simon Glassffb87902014-02-27 13:26:22 -070068
69 if (state->term_raw != STATE_TERM_COOKED)
70 os_tty_raw(0, state->term_raw == STATE_TERM_RAW_WITH_SIGS);
Simon Glass72e98222014-09-04 16:27:28 -060071 priv->start_of_line = 0;
72
73 return 0;
74}
75
76static int sandbox_serial_remove(struct udevice *dev)
77{
78 struct sandbox_serial_platdata *plat = dev->platdata;
79
80 if (plat->colour != -1)
81 output_ansi_reset();
Simon Glass890fcef2014-09-04 16:27:27 -060082
Simon Glass7accb6e2011-10-03 19:26:46 +000083 return 0;
84}
85
Simon Glass890fcef2014-09-04 16:27:27 -060086static int sandbox_serial_putc(struct udevice *dev, const char ch)
Simon Glass7accb6e2011-10-03 19:26:46 +000087{
Simon Glass72e98222014-09-04 16:27:28 -060088 struct sandbox_serial_priv *priv = dev_get_priv(dev);
89 struct sandbox_serial_platdata *plat = dev->platdata;
90
91 if (priv->start_of_line && plat->colour != -1) {
92 priv->start_of_line = false;
93 output_ansi_colour(plat->colour);
94 }
95
Simon Glass7accb6e2011-10-03 19:26:46 +000096 os_write(1, &ch, 1);
Simon Glass72e98222014-09-04 16:27:28 -060097 if (ch == '\n')
98 priv->start_of_line = true;
Simon Glass7accb6e2011-10-03 19:26:46 +000099
Simon Glass890fcef2014-09-04 16:27:27 -0600100 return 0;
Simon Glass7accb6e2011-10-03 19:26:46 +0000101}
102
Taylor Hutte1015502013-02-24 17:33:13 +0000103static unsigned int increment_buffer_index(unsigned int index)
Simon Glass7accb6e2011-10-03 19:26:46 +0000104{
Taylor Hutte1015502013-02-24 17:33:13 +0000105 return (index + 1) % ARRAY_SIZE(serial_buf);
Simon Glass7accb6e2011-10-03 19:26:46 +0000106}
107
Simon Glass890fcef2014-09-04 16:27:27 -0600108static int sandbox_serial_pending(struct udevice *dev, bool input)
Simon Glass7accb6e2011-10-03 19:26:46 +0000109{
Taylor Hutte1015502013-02-24 17:33:13 +0000110 const unsigned int next_index =
111 increment_buffer_index(serial_buf_write);
112 ssize_t count;
113
Simon Glass890fcef2014-09-04 16:27:27 -0600114 if (!input)
115 return 0;
116
Taylor Hutte1015502013-02-24 17:33:13 +0000117 os_usleep(100);
Simon Glass3ade5bc2016-01-18 19:52:25 -0700118 video_sync_all();
Taylor Hutte1015502013-02-24 17:33:13 +0000119 if (next_index == serial_buf_read)
120 return 1; /* buffer full */
121
122 count = os_read_no_block(0, &serial_buf[serial_buf_write], 1);
123 if (count == 1)
124 serial_buf_write = next_index;
Simon Glass890fcef2014-09-04 16:27:27 -0600125
Taylor Hutte1015502013-02-24 17:33:13 +0000126 return serial_buf_write != serial_buf_read;
127}
128
Simon Glass890fcef2014-09-04 16:27:27 -0600129static int sandbox_serial_getc(struct udevice *dev)
Taylor Hutte1015502013-02-24 17:33:13 +0000130{
131 int result;
132
Simon Glass890fcef2014-09-04 16:27:27 -0600133 if (!sandbox_serial_pending(dev, true))
134 return -EAGAIN; /* buffer empty */
Taylor Hutte1015502013-02-24 17:33:13 +0000135
136 result = serial_buf[serial_buf_read];
137 serial_buf_read = increment_buffer_index(serial_buf_read);
138 return result;
Simon Glass7accb6e2011-10-03 19:26:46 +0000139}
Marek Vasutcef46b72012-09-14 22:33:21 +0200140
Simon Glass72e98222014-09-04 16:27:28 -0600141static const char * const ansi_colour[] = {
142 "black", "red", "green", "yellow", "blue", "megenta", "cyan",
143 "white",
144};
145
146static int sandbox_serial_ofdata_to_platdata(struct udevice *dev)
147{
148 struct sandbox_serial_platdata *plat = dev->platdata;
149 const char *colour;
150 int i;
151
152 plat->colour = -1;
153 colour = fdt_getprop(gd->fdt_blob, dev->of_offset,
154 "sandbox,text-colour", NULL);
155 if (colour) {
156 for (i = 0; i < ARRAY_SIZE(ansi_colour); i++) {
157 if (!strcmp(colour, ansi_colour[i])) {
158 plat->colour = i;
159 break;
160 }
161 }
162 }
163
164 return 0;
165}
166
Simon Glass890fcef2014-09-04 16:27:27 -0600167static const struct dm_serial_ops sandbox_serial_ops = {
168 .putc = sandbox_serial_putc,
169 .pending = sandbox_serial_pending,
170 .getc = sandbox_serial_getc,
Marek Vasutcef46b72012-09-14 22:33:21 +0200171};
172
Simon Glass890fcef2014-09-04 16:27:27 -0600173static const struct udevice_id sandbox_serial_ids[] = {
174 { .compatible = "sandbox,serial" },
175 { }
176};
Marek Vasutcef46b72012-09-14 22:33:21 +0200177
Simon Glass890fcef2014-09-04 16:27:27 -0600178U_BOOT_DRIVER(serial_sandbox) = {
179 .name = "serial_sandbox",
180 .id = UCLASS_SERIAL,
181 .of_match = sandbox_serial_ids,
Simon Glass72e98222014-09-04 16:27:28 -0600182 .ofdata_to_platdata = sandbox_serial_ofdata_to_platdata,
183 .platdata_auto_alloc_size = sizeof(struct sandbox_serial_platdata),
184 .priv_auto_alloc_size = sizeof(struct sandbox_serial_priv),
Simon Glass890fcef2014-09-04 16:27:27 -0600185 .probe = sandbox_serial_probe,
Simon Glass72e98222014-09-04 16:27:28 -0600186 .remove = sandbox_serial_remove,
Simon Glass890fcef2014-09-04 16:27:27 -0600187 .ops = &sandbox_serial_ops,
188 .flags = DM_FLAG_PRE_RELOC,
189};
190
Simon Glass72e98222014-09-04 16:27:28 -0600191static const struct sandbox_serial_platdata platdata_non_fdt = {
192 .colour = -1,
193};
194
Simon Glass890fcef2014-09-04 16:27:27 -0600195U_BOOT_DEVICE(serial_sandbox_non_fdt) = {
196 .name = "serial_sandbox",
Simon Glass72e98222014-09-04 16:27:28 -0600197 .platdata = &platdata_non_fdt,
Simon Glass890fcef2014-09-04 16:27:27 -0600198};