| commit | 7dc08baac216253b289f60c3cb0b39179f7aaefc | [log] [tgz] |
|---|---|---|
| author | Zev Weiss <zev@bewilderbeest.net> | Tue Sep 12 20:49:14 2023 -0700 |
| committer | Zev Weiss <zev@bewilderbeest.net> | Wed Sep 13 13:04:10 2023 -0700 |
| tree | d91661942455fadf78bdd7b4036575fb09194b14 | |
| parent | acefe010e0b48193c2f3d44b71f83e917259f2f2 [diff] |
config: Add support for aspeed-uart-routing config directive It accepts one or more words of the form SINK:SOURCE, where SOURCE is written to the file SINK in the aspeed-uart-routing driver's sysfs directory (they are thus expected to be things like "uart1", "uart2", "io1", etc.). Signed-off-by: Zev Weiss <zev@bewilderbeest.net> Change-Id: Iacbc524340e4b73f3d122bc77670eedb3957a858
To build this project, run the following shell commands:
meson setup build meson compile -C build
To test:
meson test -C build
Running the server requires a serial port (e.g. /dev/ttyS0):
touch obmc-console.conf ./obmc-console-server --config obmc-console.conf ttyS0
To connect to the server, simply run the client:
./obmc-console-client
To disconnect the client, use the standard ~. combination.
This shows how the host UART connection is abstracted within the BMC as a Unix domain socket.
+---------------------------------------------------------------------------------------------+
| |
| obmc-console-client unix domain socket obmc-console-server |
| |
| +----------------------+ +------------------------+ |
| | client.2200.conf | +---------------------+ | server.ttyVUART0.conf | |
+---+--+ +----------------------+ | | +------------------------+ +--------+-------+
Network | 2200 +--> +->+ @obmc-console.host0 +<-+ <--+ /dev/ttyVUART0 | UARTs
+---+--+ | console-id = "host0" | | | | console-id = "host0" | +--------+-------+
| | | +---------------------+ | | |
| +----------------------+ +------------------------+ |
| |
| |
| |
+---------------------------------------------------------------------------------------------+
This supports multiple independent consoles. The console-id is a unique portion for the unix domain socket created by the obmc-console-server instance. The server needs to know this because it needs to know what to name the pipe; the client needs to know it as it needs to form the abstract socket name to which to connect.