]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
rockchip:usb: add a simple readme for rockusb
authorEddie Cai <eddie.cai.linux@gmail.com>
Fri, 15 Dec 2017 00:17:12 +0000 (08:17 +0800)
committerMarek Vasut <marex@denx.de>
Wed, 10 Jan 2018 10:11:06 +0000 (11:11 +0100)
add a simple readme to introduce rockusb and tell people how to use it

Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
MAINTAINERS
doc/README.rockusb [new file with mode: 0644]

index b2316103d5c42bae26714ae1b10ef91e7d7cf82c..9b4b63b063d0b653d8b4f6d856250f5e4f1fd0e4 100644 (file)
@@ -493,6 +493,7 @@ M:  Eddie Cai <eddie.cai.linux@gmail.com>
 S:     Maintained
 F:     drivers/usb/gadget/f_rockusb.c
 F:     cmd/rockusb.c
+F:     doc/README.rockusb
 
 VIDEO
 M:     Anatolij Gustschin <agust@denx.de>
diff --git a/doc/README.rockusb b/doc/README.rockusb
new file mode 100644 (file)
index 0000000..5405dc4
--- /dev/null
@@ -0,0 +1,51 @@
+Rockusb (Rockchip USB protocol)
+=====================================================
+
+Overview
+--------
+
+Rockusb protocol is widely used by Rockchip SoC based devices. It can
+read/write info, image to/from devices. This document briefly describes how to
+use Rockusb for upgrading firmware (e.g. kernel, u-boot, rootfs, etc.).
+
+Tools
+--------
+There are many tools can support Rockusb protocol. rkdeveloptool
+(https://github.com/rockchip-linux/rkdeveloptool) is open source,
+It is maintained by Rockchip. People don't want to build from source
+can download from here
+(https://github.com/rockchip-linux/rkbin/blob/master/tools/rkdeveloptool)
+
+Usage
+--------
+The Usage of Rockusb command is:
+
+rockusb <USB_controller> <devtype> <dev[:part]>
+
+e.g. rockusb 0 mmc 0
+
+On your U-Boot console, type this command to enter rockusb mode.
+On your host PC. use lsusb command. you should see a usb device
+using 0x2207 as its USB verdor id.
+
+for more detail about the rkdeveloptool. please read the usage.
+
+rkdeveloptool -h
+
+use rkdeveloptool wl command to write lba. BeginSec is the lba on device
+you want to write.
+
+sudo rkdeveloptool wl  <BeginSec> <File>
+
+to flash U-Boot image use below command. U-Boot binary is made by mkimage.
+see doc/README.rockchip for more detail about how to get U-Boot binary.
+
+sudo rkdeveloptool wl  64 <U-Boot binary>
+
+There are plenty of Rockusb command. but wl(write lba) and
+rd(reboot) command. These two command can let people flash
+image to device.
+
+To do
+-----
+* Fully support Rockusb protocol