Tool to control an USB-SD-Mux from the command line
Project description
Purpose
This software is used to control a special piece of hardware called the USB-SD-Mux. It can be used via the command line or as a Python library.
The USB-SD-Mux is built around a Microchip USB2642 card reader. Thus most of this software deals with interfacing this device using Linux ioctls().
This software is aimed to be used with Labgrid. But it can also be used stand-alone or in your own applications.
Quickstart
To get started with the usbsdmux tool you will first need to install the usbsdmux package. There are different methods to doing this:
- Installation from your Linux Distribution
The easiest way to install the usbsdmux tool and stay somewhat up to date without having to deal with Python virtual environments. May not be available for your distribution and may be lacking in features because distributions ship older software versions.
- Installation via pipx from PyPi
Another way to install the usbsdmux from a pre-packaged source. Always installs the latest usbsdmux release, but needs to be kept up to date manually. Also needs a re-install when your systems Python version is updated.
This installation method uses pipx to automate the Python virtual environment management.
- Installation in a venv from PyPi
This method is very similar to the pipx method, but manages the virtual environment manually instead of letting pipx manage it.
- Installation from Source
The way to go if you can not wait to test out new features.
Installation from Distribution Packages
This tool is packaged in Debian 12 (aka bookworm) and later. The package ships the usbsdmux tool and the corresponding udev -rules. So you can simply apt install usbsdmux and skip all installation steps below.
Packages also exist for some other distributions.
Installation via pipx from PyPi Packages
Install pipx via your Linux distributions package manager, e.g.:
$ sudo apt install pipx # For Debian based distributions
$ sudo pacman -S python-pipx # For Arch Linux based distributions
And follow the pipx manual on how to add pipx-installed software to your PATH, e.g. by using pipx ensurepath.
And finally install the usbsdmux package using pipx:
$ pipx install usbsdmux
Installation in a venv from PyPi Packages
Create and activate a Python virtual environment for the usbsdmux package:
$ python3 -m venv venv
$ source venv/bin/activate
Install the usbsdmux package into the virtual environment:
$ python3 -m pip install usbsdmux
Installation From Source
To get the latest and greatest you can also install the usbsdmux package right from the git repository:
$ git clone https://github.com/linux-automation/usbsdmux.git
$ cd usbsdmux
$ python3 -m venv venv
$ source venv/bin/activate
$ python3 -m pip install .
Usage
Once installed you can run usbsdmux command with the -h flag to get a list of possible command invocations:
$ usbsdmux -h
usage: usbsdmux [-h] [--config CONFIG] [--json]
SG {get,dut,client,host,off,gpio,info} ...
positional arguments:
SG /dev/sg* to use
{get,dut,client,host,off,gpio,info}
Supply one of the following commands to interact with the device
get Read the current state of the USB-SD-Mux
dut Switch to the DUT
client Switch to the DUT
host Switch to the host
off Disconnect from host and DUT
gpio Manipulate a GPIO (open drain output only)
info Show information about the SD card
options:
-h, --help show this help message and exit
--config CONFIG Set config file location
--json Format output as json. Useful for scripting.
Using as root
If you just want to try the USB-SD-Mux (or maybe if it is just ok for you) you can just use the usbsdmux command as root.
If you have installed this tool inside a virtual environment you can just call the shell-wrapper along with the appropriate /dev/sg* device path:
$ sudo /path/to/venv/bin/usbsdmux /dev/sg0 dut
$ sudo /path/to/venv/bin/usbsdmux /dev/sg0 host
If you encounter any issues using the USB-SD-Mux at this point consider consulting the Troubleshooting section later in this README.
Using as normal user / Reliable names
The example udev-rule in contrib/udev/99-usbsdmux.rules serves two purposes:
Allow users currently logged into the system and users in the plugdev group [1] to access connected USB-SD-Muxes.
Create a reliable path in the filesystem to access specific USB-SD-Muxes based on their pre-programmed unique serial number. This is useful when multiple USB-SD-Muxes are connect to a system, as the enumeration-order, and thus the /dev/sg* numbering, may differ between reboots. The serial number is printed on a label attached to the device.
Users of a Debian based distribution [1] can install the udev rule by cloning this repository and copying it to the appropriate location and reloading the active udev rules:
$ git clone "https://github.com/linux-automation/usbsdmux.git"
$ sudo cp usbsdmux/contrib/udev/99-usbsdmux.rules /etc/udev/rules.d/
$ sudo udevadm control --reload-rules
After reattaching the USB-SD-Mux you should get a list of connected USB-SD-Muxes, based on their unique serial numbers, by listing the contents of the /dev/usb-sd-mux/ directory:
$ ls -l /dev/usb-sd-mux/
total 0
lrwxrwxrwx 1 root plugdev 6 Mar 31 11:21 id-000000000042 -> ../sg3
lrwxrwxrwx 1 root plugdev 6 Mar 27 00:33 id-000000000078 -> ../sg2
lrwxrwxrwx 1 root plugdev 6 Mar 24 09:51 id-000000000378 -> ../sg1
How it works
High-Level Functions
The usbsdmux package provides the the following features:
Muxing the SD-Card to either the DUT, Host or disconnecting it altogether via the usbsdmux command.
Writing the Configuration-EEPROM of the USB2642 from the command line to customize the representation of the USB device via the usbsdmux-configure command.
Low-Level Functions
Under the hood this tool provides interfaces to access the following features of the Microchip USB2642:
Accessing the auxiliary I2C bus with write and write-read transactions with up to 512 bytes of payload using a simple Python interface.
Writing an I2C Configuration-EEPROM on the configuration I2C. This is done using an undocumented command that was reverse-engineered from Microchip’s freely available EOL-Tools.
MQTT Statistics
This tool can be configured to send certain statistics to a MQTT broker. To use this feature the usbsdmux util has to be installed with some additional dependencies:
$ python3 -m venv venv
$ source venv/bin/activate
$ python3 -m pip install "usbsdmux[mqtt]"
To enable this feature create a config file at /etc/usbsdmux.config or use --config to specify a file location.
See the example config file usbsdmux.config for available configuration options.
Troubleshooting
Some single board computers, especially Raspberry Pi model 4s, do not work with new/fast micro SD cards, due to drive strength issues at high frequencies. Use old and slow micro SD cards with these devices. Another workaround is the replacement of resistors R101 and R102 with 0Ω parts. This modifications does however void the EMC compliance statement provided by the Linux Automation GmbH.
Some usecases, like hard to reach connectors or full-size SD cards, necessitate the use of adapters or extension cables, leading to the same drive strength issues and require the same workarounds as documented above.
In order for the /dev/sg* device to appear the sg kernel module needs to be loaded into the kernel. This is usually done automatically by udev once the USB-SD-Mux is connected. To manually load the kernel module run sudo modprobe sg.
Contributing
Thank you for considering a contribution to this project! Changes should be submitted via a Github pull request.
This project uses the Developer’s Certificate of Origin 1.1 with the same process as used for the Linux kernel:
Developer’s Certificate of Origin 1.1
By making a contribution to this project, I certify that:
The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or
The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or
The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved.
Then you just add a line (using git commit -s) saying:
Signed-off-by: Random J Developer <random@developer.example.org>
using a known identity (sorry, no anonymous contributions).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file usbsdmux-24.11.1.tar.gz
.
File metadata
- Download URL: usbsdmux-24.11.1.tar.gz
- Upload date:
- Size: 46.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8a071ed331e47a3c99b341f965e5021d75672b241fe2f38ca1c225bbe680dd7 |
|
MD5 | 1bf420928f021b09093e854f114195ab |
|
BLAKE2b-256 | a0baa80ce5d178de50c6fc90d75883c72e4638c3c8652758123deea4e492354d |
File details
Details for the file usbsdmux-24.11.1-py3-none-any.whl
.
File metadata
- Download URL: usbsdmux-24.11.1-py3-none-any.whl
- Upload date:
- Size: 40.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48f50e9c2eb35c9713dd0448507f350d739fb2d6a05dc0409aaf0922d4819cbb |
|
MD5 | cd44c92322ce22a8d3279ab88a45fe7d |
|
BLAKE2b-256 | ef24037f58d853a6170fff71c831ff1797e3a0f21a2b0f9b6e3de267d571f7d0 |