Skip to content

Mr-Bossman/SD_Swap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

55 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SD_Swap

A development tool which swaps an SD card between a USB3 card reader and a SBC.

About

SD_Swap allows reflashing of an SD card connected to the DUT (Device Under Test), without physical contact with the device. The board is designed in such way that it fits into micro SD card slots. Thanks to this, there is no need for special cables with a micro SD adapter, though it may be beneficial to add an extention to avoid accidentally breaking your boards SD connector if someone yanks the cable.

This project was inspired by the SDWire project. The major improvements are:

  • USB-C
  • USB3.0 read/write speeds
  • Simplified design/control
  • Solder jumpers to disconnect LEDs
  • Dim LEDs so you wont get blinded

I have got SD write speeds up to 65MiB/s so 520Mbit/s

IMPORTANT

Faster SD cards may not work on some single board computers as the timing and capacitance on the SBC side is not right.

Rational

After seeing the SDWire project I was disappointed by the complexity as well as the lack of USB3. So this project is uses the REALTEK RTS5306E controller which many USB3 to SD adapters use. The chip has power suspend functionality which we can use as a GPIO for switching hosts. The suspend option will shut off the SD cards power but not the controllers; it also has build-in RW protection as to finish writes before switching to the SBC

The SDWire project uses a USB to GPIO chip for this, but they have two power controlled USB ports on the board as well as the above mentioned method.

Software

To swap the SD card between the host PC and the SBC you run sdswap -t or sdswap -c.

-c is the host PC while -t is the SBC. You can also chose which device to use if you have multiple attached. To do this run lsusb to show available the devices and type sdswap -a 1-4 -c in the format of busNumber-deviceNumber. I have future plans to write this script for Windows.

$ sdswap -h
Usage: sdswap [-h] [-p] [-c | -t] [-l location] [-a address] [-s serial] [-i VID:PID]
  -h, --help          Show this help message.
  -p, --print         Prints the block device
  -c, --controller    Switches to PC.
  -t, --target        Switchest to target.
  -l, --location      Set location.
  -a, --address       Set address.
  -s, --serial        Serial number.
  -i, --id            Set the PID and VID.
  -e, --exact         Use exact location.
If no options are given, the script will print the current status of the SDswap device.
If --print and --controller are given at the same time, the script will wait for the
SDswap device to be attached to the PC and then print the block device path.

Examples:
# sdswap
SDswap is attached to PC.

# sdswap -p
/dev/sda

# sdswap 0
Multiple devices found.

# sdswap -l 3-1.1 -t

# sdswap -a 3-19 -pc
/dev/sda

To manually controll the port use:

export YOUR_USB_NUM="1-4" #hub1 port4
echo 0 | sudo tee /sys/bus/usb/devices/${YOUR_USB_NUM}/power/autosuspend_delay_ms
echo auto | sudo tee /sys/bus/usb/devices/${YOUR_USB_NUM}/power/control

echo SBC
echo ${YOUR_USB_NUM} | sudo tee /sys/bus/usb/drivers/usb/unbind

echo PC
echo ${YOUR_USB_NUM} | sudo tee /sys/bus/usb/drivers/usb/bind

Hardware

LEDs

  • D2 is the red/blue status LED it will be blue when the in passthrough mode, and red when the USB3 controller is reading/writing to it.
  • D1 is the yellow activity LED and blinks when the USB3 controller is reading/writing.
  • D3 is the red power LED and is active when the USB3 controller has power.

NOTE: The red power LED will not be on if the USB cable isn't 5V providing power.

Front image of PCB Back image of PCB

TODO

  • Fix SBC side timeing
  • Write program for Windows.
  • Fix serial number not working
  • Edit pick n' place csv
  • Label stat leds
  • Add use switching regulator
  • Add E-Fuse
  • Update readme

About

A development tool which swaps an sdcard between a usb3 card reader or a SBC.

Resources

License

Stars

Watchers

Forks

Packages

No packages published