Hi all:
We have modified Demo project and have added our IP which is generated by VivadoHLS. In SDK, we have also generated FSBL and created the boot.bin (fsbl.elf+system.bit+u-boot.elf).
For creating FSBL we modified the ClearFSBLIn as Xilinx mentions in his forum.
void ClearFSBLIn(void) {
FsblOut32(REBOOT_STATUS_REG,
(FsblIn32(REBOOT_STATUS_REG) & ~FSBL_IN_MASK) &
t~PARTITION_NUMBER_MASK);
}
When the board starts, doesn't load all linux. It halts in line
[ 0.560000] ---[ end trace 1b75b31a2719ed1e ]---
or
[ 0.630000] [<c000e1d8>] (cpu_idle+0x38/0x9c) from [<00449b14>] (0x449b14)
But it never load all system.
Do we have to recompile The Kernel Linux to include new IP's drivers or can we load the drivers later?
Ty for help.