Hello to all, i have some problem for creating the QSPI image form Sdk Vivado or Sdk 14.4 .
When i create the qspi.msc whit sdk 14_4 the board boot well and the fpga is programed but i have this message out on serial terminal
Copying ramdisk...
Wrong Image Format for bootm command
ERROR: can't get kernel image!
zynq-uboot>
i make the qspi image whit fsbl, fil.bit, u-boot.elf
zImage.bin, devitree and ramdisk image.
I had found the qspi address in zynq.dtsi file on petalinux_2014_r2, i think ... and add this qspi offset in qspi image procedure found on pdf files CTT. When i program the qspi flash the fpga is programmed and the u-boot start
but dont found the kernel image for zImage or uImage format
here the definition of qspi address :
primary_flash: ps7-qspi@0 {
#address-cells = <1>;
#size-cells = <1>;
compatible = "st,m25p80";
reg = <0x0>;
spi-max-frequency = <50000000>;
partition@0x00000000 {
label = "boot";
reg = <0x00000000 0x00500000>;
};
partition@0x00500000 {
label = "bootenv";
reg = <0x00500000 0x00020000>;
};
partition@0x00520000 {
label = "config";
reg = <0x00520000 0x00020000>;
};
partition@0x00540000 {
label = "image";
reg = <0x00540000 0x00a80000>;
};
partition@0x00fc0000 {
label = "spare";
reg = <0x00fc0000 0x00000000>;
};
};
When i try to make the same file whit vivado 2014 the board doesn't boot or program the fpga and the i cant see the blue led done.
where i wrong ?
thanks in advance
-Nicolas