# XH-HK4401 4-port HDMI USB KVM Switch !!! warning "This document was supplied by a community member, thus it is not officially endorsed or supported." {!_multiport_usb.md!} drawing This KVM is [sold](https://www.aliexpress.com/item/4000849336545.html) under many names, and comes in two versions. The only way these two versions differ is that one has one of its USB ports replaced with a PS/2 port. The identifying feature is that they come with a small external control unit with 4 buttons. This controller is connected to the main KVM via a micro USB cable, however this is **NOT** as USB connection. !!! warning Audio was not tested, it is assumed to be non-functional ## Connections 1. Connect the USB-A cable from the Raspberry Pi OTG port to to any of the USB ports on the XH-HK4401 switch. All 3/4 USB ports work exactly the same, internally they are just connected to a USB HUB. 2. Connect the HDMI out from the XH-HK4401 switch to the Raspberry Pi CSI-2 to HDMI input. 3. Connect host USB and HDMI cables from the XH-HK4401 switch to the machines to be managed per the switch instructions. 4. Finally see below for details about connecting to the control micro USB port. **This it not a normal USB micro port.** !!! warning There is a limitation in the underlying PiKVM software related to plugging video cables from a host which is already powered and connected to a monitor to a Raspberry Pi HDMI-CSI bridge. These limitations apply equally when using the XH-HK4401 KVM switch. If video is not present in PiKVM, try keeping all host machines off and connecting them directly to the XH-HK4401 switch before powering the hosts on. ## RS-232 control cable The control unit communicates to the KVM using the RS-232 protocol (at 5v) not USB, and one of the following solutions must be used. ### Inverting USB UART adapter (FT-232) - The easy way Some USB UART adapters have the rare feature to invert the logic level of the RX/TX signals. For example the FTDI FT232 can be configured via the FTDI configuration GUI to do this. With such an adapter, the circuit above is not required. All you need is to connect it to a micro-USB connector. !!! warning These options will only work on UART adapters with **genuine** FTDI chips. There are a lot of cheap fakes on the market that either lack this option, or will prevent you from changing the settings. To avoid getting a fake ensure you always purchase from a reputable store and brand (Adafruit, Sparkfun, etc.), Amazon **is not** a reputable store. ### Linux Instructions ??? note "References I used to get my FTDIs working:" * https://waterpigs.co.uk/articles/ftdi-configure-mac-linux/ * https://manpages.debian.org/testing/ftdi-eeprom/ftdi_eeprom.1.en.html * https://manpages.ubuntu.com/manpages/bionic/man1/ftdi_eeprom.1.html * http://developer.intra2net.com/git/?p=libftdi;a=blob;f=src/ftdi.h * http://developer.intra2net.com/git/?p=libftdi;a=blob;f=src/ftdi.c * http://developer.intra2net.com/git/?p=libftdi;a=tree;f=ftdi_eeprom * http://developer.intra2net.com/git/?p=libftdi;a=blob;f=ftdi_eeprom/example.conf * http://developer.intra2net.com/git/?p=libftdi;a=blob;f=ftdi_eeprom/main.c !!! warning Steps were performed on Debian-like installation (Pop!_OS 21.10) This workflow has worked for a self-described NON-genuine FTDI FT232RL chip. The other MAY be genuine, but it is also working. Neither of the following FTDI UART adapters are recommended. Purchasing both chips was an error (only 1 intended). However, having two (potentially non-genuine) FTDI UART adapters helped to create these instructions. - [Possibly genuine, but working regardless, (DSD TECH) FTDI](https://amazon.com/dp/B07BBPX8B8) - [Not genuine (HiLetGo) FTDI](https://amazon.com/dp/B00IJXZQ7C) !!! warning The HiLetGo UART adapter comes with a USB MINI female connector and necessitates another adapter/cable for interfacing with the Pi. 1. ??? note "Get info from FTDI" * Plug the FTDI into a USB port on your Linux device and run `lsusb` to verify that the device is found ``` lsusb ``` * Ensure the device is recognized as FTDI ``` sudo lshw | grep -B 10 ftdi ``` * Record hardware information (not sure if needed, but was saved to prevent overwriting critical data in the EEPROM) 2. ??? note "Blacklist ftdi_sio kernel module" * The kernel module ==ftdi_sio== is currently enabled (and how you saw the device in the previous step). We need to disable this module to read/write to the EEPROM. * The following command creates a file to blacklist the ==ftdi_sio== module. ``` echo "blacklist ftdi_sio" | sudo tee /etc/modprobe.d/bl-ftdi.conf > /dev/null ``` 3. ??? note "Reboot machine" * We need to reboot into an environment without ftdi_sio active. ``` shutdown -r 0 ``` 4. ??? note "Install ftdi_eeprom if not already installed" * Install ==ftdi_eeprom== with the following command. ``` sudo apt install ftdi_eeprom ``` 5. ??? note "Make a folder to work from and change it to our working directory" ``` mkdir ./ftdi_config cd ./ftdi_config ``` 6. ??? note "Create a valid FTDI configuration file for ftdi_eeprom consumption" * The below command (copy/paste all lines) will create a valid configuration file. Change parameters as required. ``` tee ./ftdi.conf > /dev/null < Once the UART is configured, please fully disconnect it and connect it back to the computer. Relaunch `ft_prog` and ensure the settings are still set. If they are not, you have a *fake* FTDI chip. ### FTDI Terminal Configuration Finally, you will need to connect it to the micro USB port (**This it not a normal USB micro port.**) like so: | Signal | Colour | FT232 Pin | | ------ | ------ | --------------------------------------------------- | | Vbus | Red | 5v (if you want to power the KVM from the Pi's USB) | | D- | White | RX | | D+ | Green | TX | | Gnd | Black | GND | ### An inverter circuit - The cheap way For this you will need: * 1x 74HC14 * 1x USB A socket, or sacrificial micro USB cable * Optional 1x Diode - If you want to power the KVM from the Raspberry Pi * 1x 5-pin header * 5x Female - Female jumper cables !!! note Please search online for USB pinouts to ensure you connect it properly. ## Adding UI elements to control the KVM switch The UI can be updated to add buttons to switch between KVM inputs and indicators for which input is currently selected. The instructions below will make these available in the PiKVM UI after clicking the "GPIO" menu button in the KVM view. 1. SSH into PiKVM 2. Enable read-write mode on the sd card via `rw` 3. Edit the `/etc/kvmd/override.yaml` file and include the following. | Method | Device | |----------|----------------| | FT-232 | `/dev/ttyUSB0` | | Inverter | `/dev/ttyAMA0` | ```yaml kvmd: gpio: drivers: hk: type: xh_hk4401 device: /dev/ttyUSB0 scheme: ch0_led: driver: hk pin: 0 mode: input ch1_led: driver: hk pin: 1 mode: input ch2_led: driver: hk pin: 2 mode: input ch3_led: driver: hk pin: 3 mode: input ch0_button: driver: hk pin: 0 mode: output switch: false ch1_button: driver: hk pin: 1 mode: output switch: false ch2_button: driver: hk pin: 2 mode: output switch: false ch3_button: driver: hk pin: 3 mode: output switch: false view: table: - ["#Input 1", ch0_led, ch0_button] - ["#Input 2", ch1_led, ch1_button] - ["#Input 3", ch2_led, ch2_button] - ["#Input 4", ch3_led, ch3_button] ``` 4. Return to read-only mode for the sd card via `ro` 5. Restart the kvmd service: `systemctl restart kvmd` ## Switching between hosts in the UI To switch between hosts, enter the KVM UI and click the "GPIO" menu. You should see 4 inputs, one of which will have a green circle indicating it is currently selected. Click the other inputs to change the selected host. Please review this latest [issue](https://github.com/pikvm/pikvm/issues/1306) for an update to the existing instructions