Attention: For security reasons,please choose a user name *different* from your login name.
Also make sure to choose a secure password and change it regularly.
Quote from: harrx on October 31, 2025, 03:13:18 PMDear,
Could you please help me resolve some the on-boarding issues with TE0821 module(2CG1E- 4 GB DDR) with TE0706 board.
I started with the Test board design v2024.2. I am stuck at the stage of the booting.
My config:
Power: 5V, 1A
Dip switches S1: (1:'1', 2:'0', 3:'0' 4:'1') Default
Reference design:
1. Booting with SD Card: I followed the reference design procedure and copied the 3 required files to the SD card Boot (1st) Partition. Nothing in the Root (2nd) partition. As soon as I power up the device with SD card inserted, all LEDs (incl. Ethernet) starts blinking and I see only? on the Serial terminal. Taking out the SD card, all LEDs are stable again.
2. QSPI Boot: TE::pr_program_flash -swapp u-boot ,, also does not work for me. I get the error "Flash programming is not supported in the selected boot mode". I tried switching S1-3:'1', but this does not help also.
3. Simple JTAG programming also does not work. Programming Baremetal application with Vitis also generates the error: "Flash programming is not supported in the selected boot mode, switch mode to JTAG".
Could you please help me resolve this issue. Point#03 is the most cirtical to be able to quickly load App changes from Vitis without the need to boot the whole device.
Best regards,
Haris.
Quote from: harrx on October 31, 2025, 03:13:18 PMDear,
Could you please help me resolve some the on-boarding issues with TE0821 module(2CG1E- 4 GB DDR) with TE0706 board.
I started with the Test board design v2024.2. I am stuck at the stage of the booting.
My config:
Power: 5V, 1A
Dip switches S1: (1:'1', 2:'0', 3:'0' 4:'1') Default
Reference design:
1. Booting with SD Card: I followed the reference design procedure and copied the 3 required files to the SD card Boot (1st) Partition. Nothing in the Root (2nd) partition. As soon as I power up the device with SD card inserted, all LEDs (incl. Ethernet) starts blinking and I see only "-?-" on the Serial terminal. Taking out the SD card, all LEDs are stable again.
2. QSPI Boot: TE::pr_program_flash -swapp u-boot ,, also does not work for me. I get the error "Flash programming is not supported in the selected boot mode". I tried switching S1-3:'1', but this does not help also.
3. Simple JTAG programming also does not work. Programming Baremetal application with Vitis also generates the error: "Flash programming is not supported in the selected boot mode, switch mode to JTAG".
Could you please help me resolve this issue. Point#03 is the most cirtical to be able to quickly load App changes from Vitis without the need to boot the whole device.
Best regards,
Haris.
?" on the Serial terminal. Taking out the SD card, all LEDs are stable again.make all make all
make all

connect
targets -set -filter {name =~ "Cortex-A9 #0"}
rst
dow fsbl.elf
con
# Wait until DDR init done, then stop CPU and load U-Boot:
stop
dow u-boot.elf
con
On Uboot load your boot.bin with tftp and write to the qspi flah. this should be somthing like this:setenv serverip 192.168.1.1
setenv ipaddr 192.168.1.10
tftpboot 0x1000000 BOOT.BIN && \
sf probe 0 0 0 && \
sf erase 0x0 +${filesize} && \
sf write 0x1000000 0x0 ${filesize}
Page created in 0.082 seconds with 18 queries.