Can anyone here verify that the this new u-boot, which combines support for the secondary preloader and u-boot into one u-boot-with-spl binary, is capable of loading a CycloneV FPGA?
This is a hugely important feature for SoCs and I cannot imagine it was overlooked, but I have been blocked on trying to get this feature to work for months. If there is some bug, I would like to report it or at least how to diagnose the problem.
Right. That is fine.
You should be able to build u-boot-with-spl.sfp so that you can get through the SPL, which is working fine as far as I can tell.
Then you should be able to point u-boot to a script that contains commands to interface with the FPGA manager in order to load a CycloneV FPGA image off of the SD Card or out of SPI Flash and program it into the FPGA
Right now, I can not do this and I do not know anyone on this forum who has. Back at Christmas time, I emailed Tom Rini, who at that time had the latest u-boot commits to socfpga_cyclone5_defconfig, detailing the issues and asking for guidance. He never got back to me, nor has anyone been able to program CycloneV FPGA from u-boot since this new build flow came out.
To date, my best investigation has led me here GSRD v13.1 - Programming FPGA from HPS | Documentation | RocketBoards.org, which details that the -6 error code I receive every time I try to program the FPGA is due to âThe FPGA is having timeout from entering init phase or user mode after disable AXI configuration at FPGA Managerâ. Perhaps I am configuring the HPS incorrectly in my Quartus build, but I believe I once configured the HPS the same way it is documented in this excellent guide from some former Cornell undergrads https://people.ece.cornell.edu/land/courses/ece5760/DE1_SOC/SoC-FPGA%20Design%20Guide_EPFL.pdf and I was able to program the FPGA from u-boot using the old flow with separate SPL and u-boot
Although I am just a hobbyist on the Intel platform, it seems to me like there is a bug and no one with the expertise to date has been able to offer insight on this forum.
I am struggling to get anything to appear on my console at boot.
I think it is a problem with my SoC design. Do you have a qpf with a qsys example of the CycloneV setup that you are using that I might see. If itâs proprietary, no worries.
echo --- Resetting Env variables ---
# reset environment variables to default
env default -a
echo --- Setting Env variables ---
# Set the kernel image
setenv bootimage zImage;
# address to which the device tree will be loaded
setenv fdtaddr 0x00000100
# Set the devicetree image
setenv fdtimage socfpga.dtb;
# set kernel boot arguments, then boot the kernel
setenv mmcboot 'setenv bootargs mem=1024M console=ttyS0,115200 root=${mmcroot} rw rootwait; bootz
${loadaddr} - ${fdtaddr}';
# load linux kernel image and device tree to memory
setenv mmcload 'mmc rescan; ${mmcloadcmd} mmc 0:${mmcloadpart} ${loadaddr} ${bootimage}; ${mmcloadcmd}
mmc 0:${mmcloadpart} ${fdtaddr} ${fdtimage}'
# command to be executed to read from sdcard
setenv mmcloadcmd fatload
# sdcard fat32 partition number
setenv mmcloadpart 1
# sdcard ext3 identifier
setenv mmcroot /dev/mmcblk0p2
# standard input/output
setenv stderr serial
setenv stdin serial
setenv stdout serial
# save environment to sdcard (not needed, but useful to avoid CRC errors on a new sdcard)
saveenv
################################################################################
echo --- Programming FPGA ---
# load rbf from FAT partition into memory
fatload mmc 0:1 ${fpgadata} socfpga.rbf;
# program FPGA
fpga load 0 ${fpgadata} ${filesize};
# enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges
bridge enable;
################################################################################
echo --- Booting Linux ---
# load linux kernel image and device tree to memory
run mmcload;
# set kernel boot arguments, then boot the kernel
run mmcboot;
Will post on any progress.
If you have something I can copy, that would be very helpful.
CPU: Altera SoCFPGA Platform
FPGA: Altera Cyclone V, SE/A5 or SX/C5 or ST/D5, version 0x0
BOOT: SD/MMC Internal Transceiver (3.0V)
Watchdog enabled
DRAM: 1 GiB
MMC: dwmmc0@ff704000: 0
Loading Environment from MMC⌠OK
In: serial
Out: serial
Err: serial
Model: Altera SOCFPGA Cyclone V SoC Development Kit
Net: eth-1: ethernet@ff702000
Hit any key to stop autoboot: 0
1787 bytes read in 4 ms (435.5 KiB/s)
Executing script at 02000000
â Resetting Env variables â
Resetting to default environment
â Setting Env variables â
Saving Environment to MMC⌠Writing to MMC(0)⌠OK
â Programming FPGA â
7007204 bytes read in 372 ms (18 MiB/s)
Command âloadâ failed: Error -6
â Booting Linux â
4978264 bytes read in 267 ms (17.8 MiB/s)
fatload - load binary file from a dos filesystem
Usage:
fatload [<dev[:part]> [ [ [bytes [pos]]]]]
- Load binary file âfilenameâ from âdevâ on âinterfaceâ
to address âaddrâ from dos filesystem.
âposâ gives the file position to start loading from.
If âposâ is omitted, 0 is used. âposâ requires âbytesâ.
âbytesâ gives the size to load. If âbytesâ is 0 or omitted,
the load stops on end of file.
If either âposâ or âbytesâ are not aligned to
ARCH_DMA_MINALIGN then a misaligned buffer warning will
be printed and performance will suffer for the load.
mmc - MMC sub system
Usage:
mmc info - display info of the current MMC device
mmc read addr blk# cnt
mmc write addr blk# cnt
mmc erase blk# cnt
mmc rescan
mmc part - lists available partition on current mmc device
mmc dev [dev] [part] - show or set current mmc device [partition]
mmc list - lists available devices
mmc hwpartition [argsâŚ] - does hardware partitioning
arguments (sizes in 512-byte blocks):
[user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes
[gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition
[check|set|complete] - mode, complete set partitioning completed
WARNING: Partitioning is a write-once setting once it is set to complete.
Power cycling is required to initialize partitions after set to complete.
mmc setdsr - set DSR register value
FDT and ATAGS support not compiled in - hanging
ERROR ### Please RESET the board
I am using the branch from your repository labeled socfpga_v2019.04
My guess is that it is either my script (although I cannot understand how my commands are wrong for programming the FPGA) or maybe my Quartus isnât right.
What version of Quartus are you using?
When I look at my version in Help->About Quartus Prime, it says
Quartus Prime Version 19.1.0 Build 670 09/22/2019 SJ Lite Edition
It is not neccessary to have the FPGA programmed to boot the kernel. It may lead to problems later in the boot process, if you have any devices in your DeviceTree that rely on a programmed FPGA.
You should skip this step for now.
It seems that fatload fails. From what I see, loadaddr is empty in the script. Recheck the parameters used in the mmcload variable. I think youâre really close to have a booting kernel
@thaler
I know I can get into the kernel. I have done this with the default config in the u-boot that you shared earlier. I think the arguments for the script I was using were not right for booting the kernel, even if they were correct for programming the FPGA.
I really want to write platform drivers and load them at boot so everything in the kernel is initialized at login. (I like automating things.) To do this, I need the fabric configured before I start probing the AXI busand the kernel enumerates devices. That is my underlying motivation for this whole thing, even though I know it is not necessary.
My question about the image size still stands. How do you get that number?
I also wondered what the bitmask argument to the bridge enable command is. That is another difference between our scripts
It is the size of the RBF in bytes. You also get this number returned by the ext4load (or fatload) in the $filesize variable.
[00:54:17:564] 7007204 bytes read in 383 ms (17.4 MiB/s)
It tells U-Boot which of the three bridges to enable. Since there are only three bridges, I guess 0x7 is enough to enable all three. Iâm not sure about their order. You can check in source code.
CPU: Altera SoCFPGA Platform
FPGA: Altera Cyclone V, SE/A5 or SX/C5 or ST/D5, version 0x0
BOOT: SD/MMC Internal Transceiver (3.0V)
Watchdog enabled
DRAM: 1 GiB
MMC: dwmmc0@ff704000: 0
Loading Environment from MMC⌠*** Warning - bad CRC, using default environment
In: serial
Out: serial
Err: serial
Model: Altera SOCFPGA Cyclone V SoC Development Kit
Net: eth-1: ethernet@ff702000
Hit any key to stop autoboot: 0
707 bytes read in 3 ms (229.5 KiB/s)
Executing script at 02000000
7007204 bytes read in 385 ms (17.4 MiB/s)
Command âloadâ failed: Error -6
4978264 bytes read in 275 ms (17.3 MiB/s)
26612 bytes read in 5 ms (5.1 MiB/s)
Flattened Device Tree blob at 00001000
Booting using the fdt blob at 0x001000
Loading Device Tree to 03ff6000, end 03fff7f3 ⌠OK
Starting kernel âŚ
What other variables could it be? Is there any chance you could send me a verified .rbf to try. Perhaps itâs my Intel Quartus tools?
This is going to sound REALLY bad
I started looking through the DE1-SoC user guide and I saw this table
I had the switches in the configuration 01010.
I switched it to 00000, and the programming operation in u-boot worked. @thaler , sorry for going through all this with you. Hopefully you can get a laugh out of this. I have been working on this for months and it was a board DIP switch.
@man27 where are you struggling? Perhaps I can assist you.
I used Quartus Lite 19.1
I used @thalerâs u-boot repo
I checked out branch socfpga_v2019.04
I used the exact script from post 9 that @thaler posted with the changes in u-boot that I made explicitly in post 7. I compiled the script not as the name he compiled it to (which was boot.img) and made changes to the file names in the script to match my files, and named my compiled script u-boot.scr to match the changes I made in the u-boot environment variables.
I included
the compiled device tree (in my case socfpga_cyclone5_socdk.dtb)
the kernel boot image (zImage)
the rbf (in my case I called it hps_only.rbf)
in the rootfs in the /boot/ directory as thalers script would suggest.
Where the ./sdfs had the compiled u-boot.scr
and ./rootfs had the root file system with the extra files added in the /boot directory as described above.
Copied the sdcard_cv.img onto the sdcard using Balena Etcher
===========================================================
If you can get into Linux, I would suggest you play with the fpga manger. I was able to read the status and state files for fpga0. The state was âpowered offâ. That alerted me that there was something wrong at the board level. Thatâs when I rechecked the electrical connections and reviewed the DIP switch settings. If your fpga is powered off, but you are sure your DIP switches and other circuit settings are right, maybe your board has an electrical problem.
Thanks for the summary. I will try it out and post the results.
Edit:
I was not able to load FPGA image working for Terasic DE0-nano board with Thalerâs u-boot branch.
However, I strangely was able to get a DE10-nano board to work with the newer u-boot 2019.10 and Quartus 18.0 lite using the new bootloader guide and u-boot.scr to boot kernel and load FPGA image.
I believe my DE0-nano board is faulty or not supported by u-boot since changing the switches did not make any difference.
It turns out that I made a mistake. I had Quartus building the firmware image .rbf for the wrong device. I changed it to DE0-nano and the fpga image successfully loaded!
Sorry for digging this up. However, I do have some confusion regarding the u-boot.scr file. As I followed your instruction, I do make my fpga board (DE10 Standard) to load up the .rbf file. I tested it with the original u-boot.script in which the needed files are saved in mmc 0:1 (picture 1) and this did not went well, next, I tried thalerâs script and put all the files into mmc 0:2 (picture 2) and it works. So I did a little test with the first version, and I realize that the âfatloadâ function did not work at all. Comparing the âfatloadâ and âext4loadâ, they are similar in syntax, and my .rbf was obviously recognized by the system. So I wonder if you guys have looked into this and somehow make the âfatloadâ work, as saving the required files in the FAT32 region will save a lot of time with the upgrading of the system.