Other Parts Discussed in Thread: TPS65218
Tool/software: Linux
Hi,
I'm working with a Am437x-gp-evm development board. It can boot from NAND with u-boot-2014-07. When I update it to u-boot-2018-01, It's cann't boot. The MLO and u-boot.img produce the same way as u-boot-2014-07 as following:
1)make CROSS_COMPILE=arm-linux-gnueabihf- distclean;
2)make CROSS_COMPILE=arm-linux-gnueabihf- am43xx_evm_defconfig;
3)make CROSS_COMPILE=arm-linux-gnueabhif-.
after above,I get the MLO and u-boot.img.
then, I boot it (there is u-boot 2014-07 in the NAND). and stop it in u-boot, update it to u-boot-2018 as following:
1)u-boot#:nand erase.chip
2)u-boot#:tftp 0x81000000 MLO;
3)u-boot#:nand write 0x81000000 NAND.SPL
4)u-boot#:nand write 0x81000000 NAND.SPL.backup1;
5)u-boot#:nand write 0x81000000 NAND.SPL.backup2
6)u-boot#:nand write 0x81000000 NAND.SPL.backup3
7)u-boot#:tftp 0x81000000 u-boot.img
8)u-boot#:nand write 0x81000000 NAND.u-boot.
Then, restart the board, there is nothing appear in the uart0 console.
what is wrong in the above? the same way i get for u-boot-2014-07 is ok. is there something need to be modifed in u-boot-2018-01? I update u-boot to 2018-01 for linux-4.14.67 which support Wifi and Bluetooth.