Please enable javascript, or click here to visit my ecommerce web site powered by Shopify.
Jump to: navigation, search

Difference between revisions of "Rock5/install/spi"

< Rock5‎ | install
m
m (Language Header correction)
 
(42 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
{{rock5_header}}
 
{{rock5_header}}
{{Languages|rock5/dev/spi}}
+
{{Languages|rock5/install/spi}}
  
     [[rock5 | ROCK 5]] > [[rock5/install | Installation]] > [[rock5/install/spi | Install the Image to SPI Nor Flash]]
+
     [[rock5 | ROCK 5]] > [[rock5/install | Installation]] > [[rock5/install/spi | Install the bootloader to the SPI NOR flash]]
  
== Install the image to SPI Nor Flash ==
 
  
ROCK 5 has one SPI Flash on the board, it's useful to install the bootloader to the SPI flash for a back up booting and support other booting media that the SoC maskrom mode doesn't direct support, such as SATA, USB 3 or NVMe. This page describe how to write/install the image to the SPI flash with the tool from another PC or on the ROCK 5B board itself.
 
  
===  Requirement ===
+
ROCK 5 has a SPI flash on the board, it contains the bootloader for backup booting and supports booting other media that the SoC maskrom mode itself does not direct support (such as NVMe, SATA or USB 3).
 +
 
 +
This page describe how to write/install the bootloader to the SPI flash on the ROCK 5B.
 +
 
 +
There are two methods available to flash the SPI:
 +
*[[#Simple_method | simple method]] - flash the SPI from the ROCK 5 itself
 +
*[[#Advanced_(external)_method | advanced method]] - flash the SPI with maskrom mode and an external computer
 +
 
 +
<br>
 +
 
 +
For advanced users:
 +
[[#Additional:_erase_the_SPI_NOR_flash | How to erase the SPI]]
 +
 
 +
<br>
 +
 
 +
----
 +
 
 +
<br>
 +
 
 +
= Simple method =
 +
 
 +
<br>
 +
 
 +
==  Requirements ==
 +
 
 +
* ROCK 5B with proper power
 +
* SD card or eMMC module
 +
* Linux image for ROCK 5B - <i>(Android images are not supported yet)</i>
 +
 
 +
<br>
 +
 
 +
== Procedure ==
 +
 
 +
<br>
 +
 
 +
=== 1) Boot linux from µSD card/eMMC ===
 +
 
 +
The first step is to boot the ROCK 5 with linux from an µSD card or an eMMC module.
 +
 
 +
<i>(check [[rock5/install/microSD | this guide]] to flash a new image to an µSD card</i>
 +
<i>or check [[rock5/install/eMMC | this guide]] to flash a new image to an eMMC module)</i>
 +
 
 +
=== 2) Download required files on the ROCK 5 ===
 +
 
 +
You can download files by using <code>wget DOWNLOADLINK</code>
 +
 
 +
<i>for example to download the file to clear the spi: <code>wget https://dl.radxa.com/rock5/sw/images/others/zero.img.gz</code></i>
 +
 
 +
<u>Download the required files</u>
 +
 
 +
* [https://dl.radxa.com/rock5/sw/images/others/zero.img.gz spi clearing file]
 +
 
 +
<br>
 +
 
 +
and the latest spi bootloader:
 +
* [https://dl.radxa.com/rock5/sw/images/loader/rock-5b/release/rock-5b-spi-image-gbf47e81-20230607.img normal bootloader], recommend for everything except armbian - <i>(for advanced users: this has the u-boot serial console disabled)</i>
 +
* [https://github.com/huazi-yg/rock5b/releases/download/rock5b/rkspi_loader.img bootloader for armbian] (Use this if you like to boot armbian from the M.2 NVME SSD)
 +
 
 +
''A better approach for armbian is to flash the spi with help of the armbian-install command like discribed here: https://fieldday.io/armbian-rock5b/''
 +
 
 +
or for advanced users the
 +
* [https://dl.radxa.com/rock5/sw/images/loader/rock-5b/debug/rock-5b-spi-image-gbf47e81-20230607-debug.img debuging bootloader] with u-boot serial console enabled <i>(This is an debug bootloader if you need to troubleshoot booting issue with serial)</i>
 +
* [https://github.com/edk2-porting/edk2-rk3588/releases EDK2 bootloader] for booting UEFI-compatible operating system images (currently experimental)
 +
 
 +
<br>
 +
 
 +
<u>Check the integrity of the downloaded files:</u>
 +
 
 +
md5sum zero.img.gz
 +
it should report back:
 +
ac581b250fda7a10d07ad11884a16834  zero.img.gz
 +
 
 +
<br>
 +
 
 +
extract/uncompress the previous downloaded spi clearing file <i>(gzip should already be installed otherwise install it):</i>
 +
gzip -d zero.img.gz
 +
 
 +
md5sum zero.img
 +
it should report back:
 +
2c7ab85a893283e98c931e9511add182  zero.img
 +
 
 +
<br>
 +
 
 +
and finally check your desired bootloader image: <i>(replace <code>spi-image.img</code> with the name of your downloaded image - eg: <code>rock-5b-spi-image-gbf47e81-20230607.img</code> for the normal bootloader):</i>
 +
md5sum spi-image.img
 +
 
 +
it should report back one of the following lines:
 +
 
 +
f91ee74f4e429067a0281c9399537f8d  rock-5b-spi-image-gbf47e81-20230607-debug.img
 +
bd21a6459ad33b8189782e4c904d99b3  rock-5b-spi-image-gbf47e81-20230607.img
 +
1b83982a5979008b4407552152732156  rkspi_loader.img
 +
 
 +
=== 3) Flash the SPI flash ===
 +
 
 +
Make sure the spi flash is available:
 +
ls /dev/mtdblock*
 +
 
 +
it should report back:
 +
/dev/mtdblock0
 +
 
 +
completely clear the spi flash: <i>(be patient the flash can take 5mins)</i>
 +
sudo dd if=zero.img of=/dev/mtdblock0
 +
 
 +
check if the flash was successfully cleared
 +
sudo md5sum /dev/mtdblock0 zero.img
 +
 
 +
the result should look exactly like this:
 +
2c7ab85a893283e98c931e9511add182  /dev/mtdblock0
 +
2c7ab85a893283e98c931e9511add182  zero.img
 +
 
 +
 
 +
now write you desired bootloader to the spi flash <i>(replace <code>spi-image.img</code> with the name of your downloaded image again):</i>
 +
 
 +
sudo dd if=spi-image.img of=/dev/mtdblock0
 +
sync
 +
 
 +
check if the flash was successfully <i>(replace <code>spi-image.img</code> with the name of your downloaded image again):</i>
 +
sudo md5sum /dev/mtdblock0 spi-image.img
 +
the checksums should be the same again - if not <b>flash the bootloader again</b>.
 +
 
 +
<br>
 +
 
 +
=== 4) Reboot ===
 +
 
 +
Now you are done flashing a bootloader supporting NVMe booting.
 +
 
 +
<i>If you do not flashed the NVMe already check [[Rock5/install/nvme | this guide]] to flash it. (again there are two options available)</i>
 +
 
 +
Otherwise power off the ROCK 5, remove the µSD card or eMMC module and power it back up.
 +
 
 +
It should boot now from your NVMe. 😉
 +
 
 +
 
 +
 
 +
----
 +
 
 +
= Advanced (external) method =
 +
 
 +
==  Requirements ==
  
 
* ROCK 5B with proper power  
 
* ROCK 5B with proper power  
Line 16: Line 152:
 
* Windows/linux/macOS  PC
 
* Windows/linux/macOS  PC
  
=== Step1: Install Tools&Drivers ===
 
  
Please check this guide, [[rock5/install/rockchip-flash-tools | Install rockchip flash tools under Windows/Linux/MacOS PC]]. The PC tools we use to communicate with ROCK 5 in Maskrom mode are the '''rkdeveloptool''' on Linux/macOS and '''RkDevtool''' on Windows PC.
 
  
=== Step2: Get RK3588 loader and U-Boot images ===
+
== Procedure ==
 +
 
 +
 
 +
 
 +
=== 1) Install Tools & Drivers ===
 +
 
 +
Please check this guide, [[rock5/install/rockchip-flash-tools | Install rockchip flash tools under Windows/Linux/MacOS PC.]]
 +
 
 +
The PC tools we use to communicate with ROCK 5 in maskrom mode are the '''rkdeveloptool''' on Linux/macOS and '''RkDevtool''' on Windows PC.
  
==== For ROCK 5B ====
+
=== 2) Get RK3588 loader and U-Boot images ===
  
 
* Download the loader image from:  
 
* Download the loader image from:  
Line 28: Line 170:
  
 
* Download the latest SPI image from:
 
* Download the latest SPI image from:
** [https://dl.radxa.com/rock5/sw/images/loader/rock-5b/release/rock-5b-spi-image-g49da44e116d.img release version] with u-boot serial console disabled(Recommend)
+
** [https://dl.radxa.com/rock5/sw/images/loader/rock-5b/release/rock-5b-spi-image-gbf47e81-20230607.img release version] with u-boot serial console disabled(Recommend)
** [https://dl.radxa.com/rock5/sw/images/loader/rock-5b/debug/rock-5b-spi-image-g3caf61a44c2-debug.img debug version] with u-boot serial console enabled(Use it when you need to troubleshoot booting issue)
+
** [https://dl.radxa.com/rock5/sw/images/loader/rock-5b/debug/rock-5b-spi-image-gbf47e81-20230607-debug.img debug version] with u-boot serial console enabled(Use it when you need to troubleshoot booting issue)
** [https://github.com/huazi-yg/rock5b/releases/download/rock5b/rkspi_loader.img armbian version] (Use it when you install the armbian Image)
+
** [https://github.com/edk2-porting/edk2-rk3588/releases alternative bootloader based on EDK2] for booting UEFI-compatible operating system images (currently experimental)
 +
** [https://github.com/huazi-yg/rock5b/releases/download/rock5b/rkspi_loader.img armbian version] (Use it when you need to install the armbian Image to M.2 NVME SSD)
  
 +
''A better approach for armbian is to flash the spi with help of the armbian-install command like discribed here: https://fieldday.io/armbian-rock5b/''
  
=== Step3: Boot the board to Maskrom mode ===
+
 
 +
=== 3) Boot the board to Maskrom mode ===
  
 
[[File:Rock-5b-typec-maskrom.jpeg|400px]]
 
[[File:Rock-5b-typec-maskrom.jpeg|400px]]
  
To boot ROCK 5B to Maskrom mode is simple:
+
To boot ROCK 5B to maskrom mode is simple:
  
 
* Power off the board.
 
* Power off the board.
Line 45: Line 190:
 
* Release the golded button.
 
* Release the golded button.
 
* Check usb device
 
* Check usb device
** For macOS host: lsusb result: '''Bus 002 Device 032: ID 2207:350b Fuzhou Rockchip Electronics Co., Ltd. Composite Device'''
+
** For macOS host: <code>lsusb</code> a result should be: <code>... ID 2207:350b Fuzhou Rockchip Electronics Co., Ltd. Composite Device</code>
** For Linux host: lsusb result: '''Bus 001 Device 112: ID 2207:350b Fuzhou Rockchip Electronics Company'''
+
** For Linux host: <code>lsusb</code> a result should be: <code>... ID 2207:350b Fuzhou Rockchip Electronics Company</code>
 
** For Windows host: Open RKDevTool and you would see the device is in '''Found One MASKROM Device'''
 
** For Windows host: Open RKDevTool and you would see the device is in '''Found One MASKROM Device'''
  
=== Step4: Write U-Boot images to SPI Nor Flash or erase SPI Nor Flash ===
+
=== 4) Write u-boot images to SPI NOR flash or erase SPI NOR flash ===
  
==== Option 1: Operate on ROCK 5B ====
+
==== Option 1: Flash with Linux PC/Mac ====
  
Boot your ROCK 5B with Linux running on SD card or eMMC module:
+
On linux or Mac, run the rkdeveloptool  
 
+
Make sure the SPI flash is available:
+
ls /dev/mtdblk*
+
 
+
sudo dd if=zero.img of=/dev/mtdblock0
+
sudo dd if=rock-5b-spi-image-g49da44e116d.img of=/dev/mtdblock0
+
sync
+
 
+
Get zero.img from [https://dl.radxa.com/rock5/sw/images/others/zero.img.gz here].
+
 
+
==== Option 2: Flash with Linux PC/Mac ====
+
 
+
On your PC or Mac, run the rkdeveloptool  
+
  
 
  sudo rkdeveloptool ld
 
  sudo rkdeveloptool ld
 
  DevNo=1 Vid=0x2207,Pid=0x350b,LocationID=106 Maskrom
 
  DevNo=1 Vid=0x2207,Pid=0x350b,LocationID=106 Maskrom
  
This will load the loader (flash helper, downloaded from Step2) to run on ROCK 5B and init the ram and prepare the flashing environment etc.   
+
This will load the loader (flash helper, downloaded from 2) to run on ROCK 5B and init the ram and prepare the flashing environment etc.   
  
 
  sudo rkdeveloptool db /path/to/rk3588_spl_loader_v1.08.111.bin # will output:
 
  sudo rkdeveloptool db /path/to/rk3588_spl_loader_v1.08.111.bin # will output:
Line 88: Line 220:
 
now, the device should boot on SPI Nor Flash. And '''the blue led is on'''.
 
now, the device should boot on SPI Nor Flash. And '''the blue led is on'''.
  
==== Option 3: Flash with Windows PC ====
+
==== Option 2: Flash with Windows PC ====
  
 
Double click the RKDevTool.exe and you will see the following interface:
 
Double click the RKDevTool.exe and you will see the following interface:
 
Double click the '''RKDevTool.exe''' and you will see the following interface:
 
Double click the '''RKDevTool.exe''' and you will see the following interface:
  
===== Step 1: comfirm that ROCK 5B is in Maskrom mode =====
+
==== Step 1: confirm that ROCK 5B is in maskrom mode ====
  
 
If your ROCK 5B is in maskrom mode and connects to PC, you can see that the program detects it, as the red arrow below
 
If your ROCK 5B is in maskrom mode and connects to PC, you can see that the program detects it, as the red arrow below
  
===== Step 2: Load Configuration File =====
+
==== Step 2: Load Configuration File ====
  
 
Right-click in the list box and select Load Config,Then select the configuration file in the resource management folder(The configuration file and RKDevTool are in the same directory)
 
Right-click in the list box and select Load Config,Then select the configuration file in the resource management folder(The configuration file and RKDevTool are in the same directory)
  
===== Step 3: Select Loader =====
+
==== Step 3: Select Loader ====
  
 
Next, click  the right last columns in the "Loader" row to select rk3588_spl_loader_v1.08.111.bin
 
Next, click  the right last columns in the "Loader" row to select rk3588_spl_loader_v1.08.111.bin
  
===== Step 4: Select SPI image =====
+
==== Step 4: Select SPI image ====
  
 
Next, click  the right last columns in the "spi" row to select spi-image.
 
Next, click  the right last columns in the "spi" row to select spi-image.
  
===== Step 5: Excute =====
+
==== Step 5: Excute ====
  
 
Finally, click the "Excute" button, and you will see the content in the red box on the right. When the progress reaches 100%, the download is completed.
 
Finally, click the "Excute" button, and you will see the content in the red box on the right. When the progress reaches 100%, the download is completed.
Line 118: Line 250:
 
[[File: rock-5b-spi-flash-02.png |1000px]]
 
[[File: rock-5b-spi-flash-02.png |1000px]]
  
== Addition: Erase the SPI Nor Flash ==
 
  
==== Option 1: Operate on ROCK 5B ====
 
  
Boot your ROCK 5B with Linux running on SD card or eMMC module:
+
= Additional: erase the SPI NOR flash =
 +
 
 +
=== Option 1: Operate on ROCK 5B ===
 +
 
 +
Boot your ROCK 5B with linux running on µSD card or eMMC module:
  
 
Make sure the SPI flash is available:
 
Make sure the SPI flash is available:
  ls /dev/mtdblk*
+
  ls /dev/mtdblock*
 +
 
 +
It should give <code>/dev/mtdblock0</code> back
  
 
  sudo dd if=/dev/zero of=/dev/mtdblock0
 
  sudo dd if=/dev/zero of=/dev/mtdblock0
 
  sync
 
  sync
  
==== Option 2: Erase with Linux PC/Mac ====
+
=== Option 2: Erase with Linux PC/Mac ===
  
Please notice that when you want to erase SPI Nor Flash, fire these commands. If you don't have zero.img, download this one please. [https://dl.radxa.com/rock5/sw/images/others/zero.img.gz zero.img]
+
Please notice that when you want to erase SPI NOR flash, fire these commands. If you don't have zero.img, download this one please. [https://dl.radxa.com/rock5/sw/images/others/zero.img.gz zero.img]
 
And extract it.
 
And extract it.
  
Line 139: Line 275:
 
  rkdeveloptool rd
 
  rkdeveloptool rd
  
==== Option3: Erase with Windows PC====
+
=== Option 3: Erase with Windows PC ===
  
Before Erasing, please confirm that ROCK 5B is in Maskrom mode
+
Before Erasing, please confirm that ROCK 5B is in maskrom mode
  
===== Step 1: Download =====
+
==== Step 1: Download ====
Choose the "Advanced features" button, then select rk3588_spl_loader_v1.08.111.bin, next click the "Download" button
+
Choose the "Advanced features" button, then select <code>rk3588_spl_loader_v1.08.111.bin</code>, next click the "Download" button
  
===== Step 2: Erase all  =====
+
==== Step 2: Erase all  ====
 
Click the "erase all" button
 
Click the "erase all" button
  
===== Step 3: Reboot device =====
+
==== Step 3: Reboot device ====
  
 
[[File: eraseall_new.png |700px]]
 
[[File: eraseall_new.png |700px]]
  
== Troubleshooting ==
+
= Troubleshooting =
  
 
* If you have issue with flashing via USB OTG, start a new post on the forum, https://forum.radxa.com/c/rock5.
 
* If you have issue with flashing via USB OTG, start a new post on the forum, https://forum.radxa.com/c/rock5.
 +
 +
<br>

Latest revision as of 19:44, 9 September 2023

    ROCK 5 >  Installation >  Install the bootloader to the SPI NOR flash


ROCK 5 has a SPI flash on the board, it contains the bootloader for backup booting and supports booting other media that the SoC maskrom mode itself does not direct support (such as NVMe, SATA or USB 3).

This page describe how to write/install the bootloader to the SPI flash on the ROCK 5B.

There are two methods available to flash the SPI:


For advanced users: How to erase the SPI




Simple method


Requirements

  • ROCK 5B with proper power
  • SD card or eMMC module
  • Linux image for ROCK 5B - (Android images are not supported yet)


Procedure


1) Boot linux from µSD card/eMMC

The first step is to boot the ROCK 5 with linux from an µSD card or an eMMC module.

(check this guide to flash a new image to an µSD card or check this guide to flash a new image to an eMMC module)

2) Download required files on the ROCK 5

You can download files by using wget DOWNLOADLINK

for example to download the file to clear the spi: wget https://dl.radxa.com/rock5/sw/images/others/zero.img.gz

Download the required files


and the latest spi bootloader:

  • normal bootloader, recommend for everything except armbian - (for advanced users: this has the u-boot serial console disabled)
  • bootloader for armbian (Use this if you like to boot armbian from the M.2 NVME SSD)

A better approach for armbian is to flash the spi with help of the armbian-install command like discribed here: https://fieldday.io/armbian-rock5b/

or for advanced users the

  • debuging bootloader with u-boot serial console enabled (This is an debug bootloader if you need to troubleshoot booting issue with serial)
  • EDK2 bootloader for booting UEFI-compatible operating system images (currently experimental)


Check the integrity of the downloaded files:

md5sum zero.img.gz 

it should report back:

ac581b250fda7a10d07ad11884a16834  zero.img.gz


extract/uncompress the previous downloaded spi clearing file (gzip should already be installed otherwise install it):

gzip -d zero.img.gz
md5sum zero.img

it should report back:

2c7ab85a893283e98c931e9511add182  zero.img


and finally check your desired bootloader image: (replace spi-image.img with the name of your downloaded image - eg: rock-5b-spi-image-gbf47e81-20230607.img for the normal bootloader):

md5sum spi-image.img

it should report back one of the following lines:

f91ee74f4e429067a0281c9399537f8d  rock-5b-spi-image-gbf47e81-20230607-debug.img
bd21a6459ad33b8189782e4c904d99b3  rock-5b-spi-image-gbf47e81-20230607.img
1b83982a5979008b4407552152732156  rkspi_loader.img

3) Flash the SPI flash

Make sure the spi flash is available:

ls /dev/mtdblock*

it should report back:

/dev/mtdblock0

completely clear the spi flash: (be patient the flash can take 5mins)

sudo dd if=zero.img of=/dev/mtdblock0

check if the flash was successfully cleared

sudo md5sum /dev/mtdblock0 zero.img

the result should look exactly like this:

2c7ab85a893283e98c931e9511add182  /dev/mtdblock0
2c7ab85a893283e98c931e9511add182  zero.img


now write you desired bootloader to the spi flash (replace spi-image.img with the name of your downloaded image again):

sudo dd if=spi-image.img of=/dev/mtdblock0
sync

check if the flash was successfully (replace spi-image.img with the name of your downloaded image again):

sudo md5sum /dev/mtdblock0 spi-image.img

the checksums should be the same again - if not flash the bootloader again.


4) Reboot

Now you are done flashing a bootloader supporting NVMe booting.

If you do not flashed the NVMe already check this guide to flash it. (again there are two options available)

Otherwise power off the ROCK 5, remove the µSD card or eMMC module and power it back up.

It should boot now from your NVMe. 😉



Advanced (external) method

Requirements

  • ROCK 5B with proper power
  • Linux image for ROCK 5B, Android image is not supported yet
  • SD card or eMMC module
  • USB Type C cable
  • Windows/linux/macOS PC


Procedure

1) Install Tools & Drivers

Please check this guide, Install rockchip flash tools under Windows/Linux/MacOS PC.

The PC tools we use to communicate with ROCK 5 in maskrom mode are the rkdeveloptool on Linux/macOS and RkDevtool on Windows PC.

2) Get RK3588 loader and U-Boot images

  • Download the loader image from:
  • Download the latest SPI image from:

A better approach for armbian is to flash the spi with help of the armbian-install command like discribed here: https://fieldday.io/armbian-rock5b/


3) Boot the board to Maskrom mode

Rock-5b-typec-maskrom.jpeg

To boot ROCK 5B to maskrom mode is simple:

  • Power off the board.
  • Remove bootable device like MicroSD card, eMMC module, etc.
  • Press the golden (or silver on some board revisions) button and hold it.
  • Plug the USB-A to Type-C cable to ROCK 5B Type-C port, the other side to PC.
  • Release the golded button.
  • Check usb device
    • For macOS host: lsusb a result should be: ... ID 2207:350b Fuzhou Rockchip Electronics Co., Ltd. Composite Device
    • For Linux host: lsusb a result should be: ... ID 2207:350b Fuzhou Rockchip Electronics Company
    • For Windows host: Open RKDevTool and you would see the device is in Found One MASKROM Device

4) Write u-boot images to SPI NOR flash or erase SPI NOR flash

Option 1: Flash with Linux PC/Mac

On linux or Mac, run the rkdeveloptool

sudo rkdeveloptool ld
DevNo=1	Vid=0x2207,Pid=0x350b,LocationID=106	Maskrom

This will load the loader (flash helper, downloaded from 2) to run on ROCK 5B and init the ram and prepare the flashing environment etc.

sudo rkdeveloptool db /path/to/rk3588_spl_loader_v1.08.111.bin		 # will output:
Downloading bootloader succeeded.

Next, write SPI image from PC/Mac to ROCK 5B SPI flash

You can use the image download from Step 2.

sudo rkdeveloptool wl 0 rock-5b-spi-image-g49da44e116d.img					
Write LBA from file (100%)

Reboot the device

rkdeveloptool rd

now, the device should boot on SPI Nor Flash. And the blue led is on.

Option 2: Flash with Windows PC

Double click the RKDevTool.exe and you will see the following interface: Double click the RKDevTool.exe and you will see the following interface:

Step 1: confirm that ROCK 5B is in maskrom mode

If your ROCK 5B is in maskrom mode and connects to PC, you can see that the program detects it, as the red arrow below

Step 2: Load Configuration File

Right-click in the list box and select Load Config,Then select the configuration file in the resource management folder(The configuration file and RKDevTool are in the same directory)

Step 3: Select Loader

Next, click the right last columns in the "Loader" row to select rk3588_spl_loader_v1.08.111.bin

Step 4: Select SPI image

Next, click the right last columns in the "spi" row to select spi-image.

Step 5: Excute

Finally, click the "Excute" button, and you will see the content in the red box on the right. When the progress reaches 100%, the download is completed.

Rock-5b-spi-flash-1.png Configuration.png

Rock-5b-spi-flash-02.png


Additional: erase the SPI NOR flash

Option 1: Operate on ROCK 5B

Boot your ROCK 5B with linux running on µSD card or eMMC module:

Make sure the SPI flash is available:

ls /dev/mtdblock*

It should give /dev/mtdblock0 back

sudo dd if=/dev/zero of=/dev/mtdblock0
sync

Option 2: Erase with Linux PC/Mac

Please notice that when you want to erase SPI NOR flash, fire these commands. If you don't have zero.img, download this one please. zero.img And extract it.

rkdeveloptool db rk3588_spl_loader_v1.08.111.bin
rkdeveloptool wl 0 zero.img
rkdeveloptool rd

Option 3: Erase with Windows PC

Before Erasing, please confirm that ROCK 5B is in maskrom mode

Step 1: Download

Choose the "Advanced features" button, then select rk3588_spl_loader_v1.08.111.bin, next click the "Download" button

Step 2: Erase all

Click the "erase all" button

Step 3: Reboot device

Eraseall new.png

Troubleshooting