| commit | d972ab558efb5d23790c4638a3012de6c06a7fad | [log] [tgz] |
|---|---|---|
| author | Eddie James <eajames@linux.ibm.com> | Thu Feb 27 16:25:31 2025 -0600 |
| committer | Eddie James <eajames@linux.ibm.com> | Thu Sep 11 09:37:10 2025 -0500 |
| tree | 22024dd5b612f677c1d065884f0630796c807c3b | |
| parent | ef07b7752773ed4d115e7641b1ffacece39a407d [diff] |
console-server: Fix tty paths with Linux 6.8+ The sysfs files are found in a different path with newer Linux versions, so update the vuart config search code. The relevant linux change is [1]. [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=b286f4e87e325b76789f30337c98ba72e00532e2 Change-Id: Iab686d384b20d8e2495ebbc04a1632be85919cb9 Co-authored-by: Jeremy Kerr <jk@codeconstruct.com.au> Signed-off-by: Eddie James <eajames@linux.ibm.com>
To build this project, run the following shell commands:
meson setup build meson compile -C build
To test:
dbus-run-session 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.
In some hardware designs, multiple UARTS may be available behind a Mux. Please reference docs/mux-support.md in that case.
For developing obmc-console, we can use pseudo terminals (pty's) in Linux.
The socat command will output names of 2 pty's, one of which is the master and the other one is the slave. The master pty can be used to emulate a UART.
$ socat -d -d pty,raw,echo=0,link=pty1 pty,raw,echo=0,link=pty2 $ obmc-console-server --console-id dev $(realpath pty2) $ obmc-console-client -i dev # this message should appear for the client $ echo "hi" > pty1