RZ/G2L微處理器配備Cortex-A55(1.2GHz)CPU、16位DDR3L/DDR4接口、帶Arm Mali-G31的3D圖形加速引擎以及視頻編解碼器(H.264)。此外,這款微處理器還配備有大量接口,如攝像頭輸入、顯示輸出、USB 2.0和千兆以太網,因此特別適用于入門級工業人機界面(HMI)和具有視頻功能的嵌入式設備等應用。

在基于瑞薩RZ/G2L MPU的嵌入式開發過程中,傳統eMMC燒錄流程效率成為生產瓶頸——單板燒錄耗時約5分30秒,嚴重制約批量生產效率。針對這一痛點,我們創新性地推出了雙階段混合燒錄方案,巧妙結合SCIF與Fastboot技術優勢,實現了多設備并行燒錄,大幅縮短了整體耗時。
雙階段技術架構
01
Bootloader燒錄階段
通過SCIF接口批量寫入U-Boot至多塊主板eMMC
支持并行操作,避免單板串行等待
02
系統鏡像燒錄階段
配置U-Boot啟用Fastboot over USB功能
PC端Fastboot工具同時操控多塊主板,實現分區創建、內核及文件系統并行寫入
效率對比:提升顯著

詳細實施方案
一
U-Boot配置
在源碼中啟用Fastboot和USB功能支持,并配置相關功能。
配置文件路徑為:u-boot/git/configs/smarc-rzg2l_defconfig
關鍵配置示例
左右滑動查看完整內容
# Fastboot功能配置CONFIG_USB_FUNCTION_FASTBOOT=yCONFIG_FASTBOOT_BUF_ADDR=0x4D000000CONFIG_FASTBOOT_BUF_SIZE=0x8000000CONFIG_FASTBOOT_USB_DEV=28CONFIG_FASTBOOT_FLASH=yCONFIG_FASTBOOT_FLASH_MMC_DEV=0CONFIG_CMD_FASTBOOT=y
# USB功能配置CONFIG_USB=yCONFIG_USB_XHCI_HCD=yCONFIG_USB_EHCI_HCD=yCONFIG_USB_GADGET=yCONFIG_USB_GADGET_MANUFACTURER="Renesas"CONFIG_USB_GADGET_VENDOR_NUM=0x18D1CONFIG_USB_GADGET_PRODUCT_NUM=0x4E23
完成配置和源碼修改后編譯,得到fip_pmic.srec、bl2_bp_pmic.srec,再通過SCIF下載模式使用Flash Writer工具燒錄BL2與FIP至eMMC。
二
Fastboot燒錄流程
設備端操作
在U-Boot控制臺中執行以下命令進入Fastboot模式:
左右滑動查看完整內容
setenv serial#'Renesas1' # 自定義設備唯一標識saveenvfastboot usb 27 # 啟動USB Fastboot服務
PC端操作
1
驗證設備連接
左右滑動查看完整內容
fastbootdevices
2
創建并燒寫MBR分區表(包含500MB啟動分區和3.5GB根文件系統分區)
左右滑動查看完整內容
fastbootflash mbr part.mbr
3
創建啟動分區鏡像
左右滑動查看完整內容
ddif=/dev/zero of=boot.img bs=1M count=256sudomkfs.vfat -v -c -F32boot.img
4
掛載并復制內核文件
左右滑動查看完整內容
sudomount boot.img /mntcpkernel /mntcpdtb /mntsudoumount /mnt
5
燒錄分區并重啟
左右滑動查看完整內容
fastbootflash0:1boot.img#啟動分區fastbootflash0:2core-image-minimal-smarc-rzg2l.ext4 # 根文件系統fastbootreboot
啟動參數配置
左右滑動查看完整內容
setenvbootargs 'rw rootwait earlycon root=/dev/mmcblk0p2'setenvbootcmd 'mmc dev0; fatload mmc0:10x48080000 Image-smarc-rzg2l.bin;fatloadmmc0:10x48000000 Image-r9a07g044l2-smarc.dtb; booti0x48080000 -0x48000000'saveenv
多設備并行燒錄實戰
通過設備唯一ID識別,實現單PC控制多設備同步燒錄:
設備端設置
左右滑動查看完整內容
setenvserial# 'Device_001' # 設備唯一標識saveenvfastbootusb0
PC端并行操作
左右滑動查看完整內容
# 查看已連接設備fastbootdevices
# 終端1操作設備1fastboot-s Device_001 flash mbr part.mbrfastboot-s Device_001 flash0:1boot.imgfastboot-s Device_001 reboot
# 終端2同時操作設備2fastboot-s Device_002 flash mbr part.mbrfastboot-s Device_002 flash0:1boot.imgfastboot-s Device_002 reboot
附:單個板子燒錄成功log
fastboot log
左右滑動查看完整內容
g2l@g2l-VirtualBox:~$ fastboot devicesRenesas1fastbootg2l@g2l-VirtualBox:~$ fastboot flash mbr part.mbrtargetreported max download size of134217728bytessending'mbr' (0KB)...OKAY[ 0.007s]writing'mbr'...OKAY[ 0.007s]finished. total time:0.014sg2l@g2l-VirtualBox:~$ fastboot flash0:1boot.img #啟動分區targetreported max download size of134217728bytessending'0:1' (85274KB)...OKAY[ 7.543s]writing'0:1'...OKAY[ 4.010s]finished. total time:11.553sg2l@g2l-VirtualBox:~$ fastboot flash0:2core-image-minimal-smarc-rzg2l.ext4targetreported max download size of134217728bytesInvalidsparse file format at header magicerasing'0:2'...OKAY[ 5.145s]sendingsparse '0:2'1/1(80256KB)...OKAY[ 7.144s]writing'0:2'1/1...OKAY[ 54.646s]finished. total time:66.935sg2l@g2l-VirtualBox:~$ fastboot rebootrebooting...finished. total time:5.601sg2l@g2l-VirtualBox:~$
boot log
左右滑動查看完整內容
=> fastboot usb 0** Bad device specification mmc mbr_a **Couldn't find partition mmc mbr_a** Bad device specification mmc mbr **Couldn't find partition mmc mbr** Bad device specification mmc mbr **Couldn't find partition mmc mbrStarting download of 512 bytesdownloading of 512 bytes finishedfastboot_mmc_flash_write: updating MBR........ success** Bad partition specification mmc 0:1_a **Couldn't find partition mmc 0:1_aStarting download of 87320576 bytes..........................................................................downloading of 87320576 bytes finishedFlashing Raw Image........ wrote 87320576 bytes to '0:1'** Bad partition specification mmc 0:2_a **Couldn't find partition mmc 0:2_aErasing blocks 1026048 to 8388608 due to alignment........ erased 3769630720 bytes from '0:2'Starting download of 82182548 bytes..........................................................................downloading of 82182548 bytes finishedFlashing sparse image at offset 1026048Flashing Sparse Image........ wrote 1184509952 bytes to '0:2'resetting ...NOTICE: BL2: v2.9(release):v2.5/rzg2l-1.00-3883-gc314a391c-dirtyNOTICE: BL2: Built : 1418, Sep 192023NOTICE: BL2: eMMC boot from partition 1NOTICE: BL2: Load dst=0x1f840 src=(p:1)0x20000(256) len=0x10(1)NOTICE: BL2: eMMC boot from partition 1NOTICE: BL2: Load dst=0x1f9a0 src=(p:1)0x20010(256) len=0x28(1)NOTICE: BL2: eMMC boot from partition 1NOTICE: BL2: Load dst=0x44000000 src=(p:1)0x20090(256) len=0x6069(49)NOTICE: BL2: eMMC boot from partition 1NOTICE: BL2: Load dst=0x1f840 src=(p:1)0x20000(256) len=0x10(1)NOTICE: BL2: eMMC boot from partition 1NOTICE: BL2: Load dst=0x1f9a0 src=(p:1)0x20010(256) len=0x28(1)NOTICE: BL2: Load dst=0x1f9a0 src=(p:1)0x20038(256) len=0x28(1)NOTICE: BL2: eMMC boot from partition 1NOTICE: BL2: Load dst=0x50000000 src=(p:1)0x26100(304) len=0xc0120(1538)NOTICE: BL2: Booting BL31NOTICE: BL31: v2.9(release):v2.5/rzg2l-1.00-3883-gc314a391c-dirtyNOTICE: BL31: Built : 1418, Sep 192023U-Boot 2021.10 (Feb 182025 - 1150 +0800)CPU: Renesas Electronics CPU rev 1.0Model: smarc-rzg2lDRAM: 1.9 GiBWDT: watchdog@0000000012800800WDT: Started with servicing (60s timeout)MMC: sd@11c00000: 0, sd@11c10000: 1Loading Environment from MMC... OKIn: serial@1004b800Out: serial@1004b800Err: serial@1004b800U-boot WDT started!Net: eth0: ethernet@11c20000Hit any key to stop autoboot: 0switch to partitions#0, OKmmc0(part 0) is current device
方案適用場景
01
推薦使用場景
產線混合生產不同硬件版本
系統鏡像需要頻繁迭代的開發階段
小批量多配置定制化訂單
02
不適用場景
- 無USB調試接口的主板版本
方案價值
通過SCIF+Fastboot兩階段混合燒錄方案,RZG2L平臺不僅實現了多設備并行燒錄,還大幅提高了生產和開發效率。該方案尤其適合小批量定制化生產與快速迭代的開發階段,為嵌入式系統的量產部署提供了一種高效可行的思路。
-
瑞薩
+關注
關注
37文章
22481瀏覽量
90859 -
微處理器
+關注
關注
11文章
2431瀏覽量
85837 -
emmc
+關注
關注
7文章
261瀏覽量
55981
發布評論請先 登錄
基于瑞薩電子RZ/G2L的FET-G2LD-C核心板和OK-G2LD-C開發板評測
RZ/G2L高速虛擬串口方案 基于瑞薩RZ/G2L SMARC開發板的虛擬(Virtual UART)實現方案
瑞薩RZ/G2L量產提速利器:Fastboot模式下的eMMC高效燒錄方案
評論