RZ-Five/RZ-Five-BSP Porting: Difference between revisions

From Renesas.info
(RZ/Five BSP porting guide initial (copy RZ/G2))
 
(Introductory text updated)
Line 1: Line 1:
'''RZ/Five BSP Porting'''
'''RZ/Five BSP Porting'''
This page is to highlight important things to consider when porting the Renesas BSP to your own custom board.
This page is to highlight important things to consider when porting the Renesas BSP to your own custom board.
The steps explained in this page are similar to what described for the Arm based devices (RZ/G2).
The steps explained in this page are similar to what described for the Arm based devices (RZ/G2).
To avoid duplications, the focus is on the differences, then you can refer to the RZ/G2 pages for anything common.
To avoid duplications, the focus is on the differences, then you can refer to the RZ/G2 pages for anything common.


== Overview ==
== Overview ==
One preliminary point to underline is that you may NOT want to use Yocto at the beginning, rather clone the repositories, modify the code and build it using a cross toolchain.
One preliminary point to underline, true also for Arm based devices, is that you may NOT want to use Yocto at the beginning, rather clone the repositories, modify the code and build it using a cross toolchain.
 
The toolchain itself is a point to discuss a bit more in depth, since RISC-V ecosystem is still not as mature as Arm's.
 
The paragraph order in this page is intentional. Similarly to what explained for Arm based device, they represent the steps you normally do when you want to port the Renesas BSP, i.e. you absolutely want to start from [https://github.com/renesas-rz/rzg2_flash_writer Flash Writer]. When you get your first custom board samples the non-volatile memories are virgin and the first goals is to program them with bootloaders. One of the first thing you need to do is to adjust the DDR configuration to your own. Debugging DDR may be tricky but have it working is a major step toward success. You can test the DDR using some hidden [[RZ-G/RZG hardware#DDR test routines|Flash Writer commands]]. After that you may need to change the SPI configuration.
 
Then you can use Flash Writer to program the bootloaders: [https://github.com/renesas-rz/renesas-u-boot-cip/tree/v2021.12/rzf-smarc u-boot SPL] (Secondary Program Loader), [https://github.com/renesas-rz/rz_opensbi Open SBI] (Supervisor Binary Interface and [https://github.com/renesas-rz/renesas-u-boot-cip/tree/v2021.12/rzf-smarc u-boot]. Bootloaders can be programmed into QSPI FLASH or eMMC, then of course the boot mode of the SoC shall be adjusted accordingly. u-boot-spl may also need to be configured depending on the non-volatile memory type. Normally you do not need to program separately (e.g. different files for each boot loader), only two files u-boot-spl and u-boot.itb are needed but the Open SBI binary has to be included before building u-boot.  


The paragraph order in this page is intentional. They represent the steps you normally do when you want to port the Renesas BSP, i.e. you absolutely want to start from [https://github.com/renesas-rz/rzg2_flash_writer Flash Writer]. When you get your first custom board samples the non-volatile memories are virgin and the first goals is to program them with bootloaders. One of the first thing you need to do is to adjust the DDR configuration to your own. Debugging DDR may be tricky but have it working is a major step toward success. You can test the DDR using some hidden [[RZ-G/RZG hardware#DDR test routines|Flash Writer commands]]. After that you may need to change the SPI configuration.  
Some modifications may be needed in u-boot-spl. One of the first things spl does is to configure the DDR. You would need to use the same (working) configuration used with Flash Writer, so there should be no surprise here, if the DDR works with Flash Writer then it will work with ATF as well.


Finally you can use Flash Writer to program the bootloaders: [https://github.com/renesas-rz/rzg_trusted-firmware-a Arm Trusted Firmware] (ATF) BL2 (aka IPL, Initial Program Loader), BL31 (Secure Monitor) and [https://github.com/renesas-rz/renesas-u-boot-cip u-boot] (BL33). BL32 is not strictly needed at the beginning, since it is the Trusted OS (optional). Bootloaders can be programmed into QSPI FLASH or eMMC, then of course the boot mode of the SoC shall be adjusted accordingly. ATF may also need to be configured depending on the non-volatile memory type. You may need to program separately (e.g. different files for each BL) or you can have a BL2 file and a FIP (Firmware Image Package) that includes all BL3x.


You do not normally need to modify many things in ATF and in any case only what is in the "plat/renesas/rz" folder. One of the first things ATF BL2 does is to configure the DDR. You would need to use the same (working) configuration used with Flash Writer, so there should be no surprise here, if the DDR works with Flash Writer then it will work with ATF as well.




[[File:sci-usb boot.png|frameless]]-------------------------------        [[File:RISC-V boot flow.png|alt=|600x600px]]


[[File:sci-usb boot.png|frameless]]-------------------------------[[File:boot2.png|alt=|682x682px]]






Then ATF loads BL31(image id=3), BL32 (again optionally, image id=4) and BL33 (u-boot, image id=5) from either QSPI or eMMC. Assuming everything goes fine u-boot prompt is finally reachable.
Then u-boot-spl loads Open SBI and u-boot, from either QSPI or eMMC. Assuming everything goes fine u-boot prompt is finally reachable.


The next step is to port the [https://github.com/renesas-rz/rz_linux-cip Linux CIP Kernel], by "porting" we mainly mean that the reference board device tree gets modified to reflect the HW available on the custom board.
The next step is to port the [https://github.com/renesas-rz/rz_linux-cip Linux CIP Kernel], by "porting" we mainly mean that the reference board device tree gets modified to reflect the HW available on the custom board.

Revision as of 09:10, 13 May 2022

RZ/Five BSP Porting This page is to highlight important things to consider when porting the Renesas BSP to your own custom board.

The steps explained in this page are similar to what described for the Arm based devices (RZ/G2). To avoid duplications, the focus is on the differences, then you can refer to the RZ/G2 pages for anything common.

Overview

One preliminary point to underline, true also for Arm based devices, is that you may NOT want to use Yocto at the beginning, rather clone the repositories, modify the code and build it using a cross toolchain.

The toolchain itself is a point to discuss a bit more in depth, since RISC-V ecosystem is still not as mature as Arm's.

The paragraph order in this page is intentional. Similarly to what explained for Arm based device, they represent the steps you normally do when you want to port the Renesas BSP, i.e. you absolutely want to start from Flash Writer. When you get your first custom board samples the non-volatile memories are virgin and the first goals is to program them with bootloaders. One of the first thing you need to do is to adjust the DDR configuration to your own. Debugging DDR may be tricky but have it working is a major step toward success. You can test the DDR using some hidden Flash Writer commands. After that you may need to change the SPI configuration.

Then you can use Flash Writer to program the bootloaders: u-boot SPL (Secondary Program Loader), Open SBI (Supervisor Binary Interface and u-boot. Bootloaders can be programmed into QSPI FLASH or eMMC, then of course the boot mode of the SoC shall be adjusted accordingly. u-boot-spl may also need to be configured depending on the non-volatile memory type. Normally you do not need to program separately (e.g. different files for each boot loader), only two files u-boot-spl and u-boot.itb are needed but the Open SBI binary has to be included before building u-boot.

Some modifications may be needed in u-boot-spl. One of the first things spl does is to configure the DDR. You would need to use the same (working) configuration used with Flash Writer, so there should be no surprise here, if the DDR works with Flash Writer then it will work with ATF as well.



sci-usb boot.png-------------------------------



Then u-boot-spl loads Open SBI and u-boot, from either QSPI or eMMC. Assuming everything goes fine u-boot prompt is finally reachable.

The next step is to port the Linux CIP Kernel, by "porting" we mainly mean that the reference board device tree gets modified to reflect the HW available on the custom board.

Finally you can use Yocto to generate the root file system including all the bits and bobs you need to run your custom application.

Flash Writer

Arm Trusted Firmware

u-boot

Linux Kernel

Yocto

Memory Map

Github Repositories