Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

Flashing Firmware to Rockchip Devices in Linux with rkdeveloptool Open Source Utility

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Flashing Firmware to Rockchip Devices in Linux with rkdeveloptool Open Source Utility

    CNX writes

    It’s been possible to flash firmware to Rockchip devices in Linux with upgrade_tool command line tool for many years, but the utility is closed-source and only supports “RK Firmware” files that are also used for OTA firmware updates, but not “raw firmware” that you’d flash directly to micro SD cards for example.

    This week-end as I played with ROC-RK3328-CC board, I encountered some instability issues with micro SD cards, so I instead relied on an eMMC flash module. The only problem was that Firefly Team only releases “raw firmware” files, so I was unable to use upgrade_tool, and instead found out rkdeveloptool open source utility was used to flash raw firmware images in Firefly’s Wiki.

    Rockchip maskrom mode for rkdeveloptool



    The first step is to connect a male to male USB Type A cable (like that one on ****) between the board and the host computer, and connect a USB power adapter to the board. At least that’s what I had to do here, because it may be a little mode complicated in some cases. The important part is that the board must in the “maskrom mode”, and it happens automatically if:
    1. The eMMC is empty.
    2. The bootloader on eMMC is damaged.

    In my case, the eMMC flash module contained Amlogic firmware, which obviously is not recognized by the Rockchip processor, so it went to maskrom mode automatically, but if your board/device can still partially boot then you need to enter masrom mode manually by making sure eMMC read data fails by shorting eMMC data/clock pin to the ground. The exact location of those pins will depend on the hardware design, and you may have to read the hardware’s schematics to find out.
    ROC-RK3328-CC Short eMMC clock



    They’ve made it easy on ROC-RK3328-CC board with CLK and GND test points as shown above, but again I did not have to do this since the board was already in maskrom mode.

    Now we need to get rkdeveloptool source code to build and install it in our computer. Those are the instructions in Ubuntu/Debian operating systems:

    1
    2
    3
    4
    5
    6
    7
    sudo apt-get install pkg-config libusb-1.0 libudev-dev libusb-1.0-0-dev dh-autoreconf
    git clone https://github.com/rockchip-linux/rkdeveloptool
    cd rkdeveloptool
    autoreconf -i
    ./configure
    make
    sudo make install

    You should now see the option when typing the command in a terminal:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    rkdeveloptool

    ---------------------Tool Usage ---------------------
    Help: -h or --version
    Version: -v or --version
    DownloadBoot: db <Loader>
    UpgradeLoader: ul <Loader>
    ReadLBA: rl <BeginSec> <SectorLen> <File>
    WriteLBA: wl <BeginSec> <File>
    WriteGPT: gpt <gpt partition table>
    EraseFlash: ef
    TestDevice: td
    ResetDevice: rd [subcode]
    ReadFlashID: rid
    ReadFlashInfo: rfi
    ReadChipInfo: rci
    PackBootLoader: pack
    UnpackBootLoader: unpack <boot loader>
    TagSPL: tagspl <tag> <U-Boot SPL>
    -------------------------------------------------------

    After downloading a raw firmware image, let’s call it raw-firmware.img, we can start flashing it to the board / device. Rockchip open source website has a slightly different set of commands since they flash each partition (bootloader/u-boot/kernel/rootfs) individually, but here’s what I had to do with ROC-RK3328-CC board to flash the firmware to the eMMC flash module.
    1. Download the bootloader binary @ https://github.com/rockchip-linux/rk...ee/master/rk33 which will depend on your board. In my case:
    2. Flash the bootloader and raw firmware image
      1
      2
      rkdeveloptool db rk3328_loader_ddr786_v1.06.243.bin
      rkdeveloptool wl 0x0 raw-firmware.img
    3. Reboot the board
      1 rkdeveloptool rd
    4. Have fun with your new firmware!
    Source CNXSoft
    It's been possible to flash firmware to Rockchip devices in Linux with upgrade_tool command line tool for many years, but the utility is closed-source and
    treboR
    Please consider
    Donating to Freaktab

    #2
    Can it be done in windows? im having trouble getting the eMMc module to flash, the SD card went pretty easy but just ebout every tool i try is having problems with the firmware files.

    The other libre board with the amlogic chip was pretty easy this one has been a pain.

    Comment

    Working...
    X