Hi,
I read some topics in forums and followed the below procedure:
In bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash.cfg :
-enable_combined_uart = 1;
-spe_uart_instance = 2;
+enable_combined_uart = 0;
+spe_uart_instance = 0xff;
In bootloader/t186ref/BCT/tegra194-mb1-bct-misc-l4t.cfg :
-enable_combined_uart = 1;
-spe_uart_instance = 0x2;
+enable_combined_uart = 0;
+spe_uart_instance = 0xff;
In p3668.conf.common:
-CMDLINE_ADD="console=ttyTCU0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0";
+CMDLINE_ADD="console=ttyTHS0,115200n8 console=tty0 fbcon=map:0 net.ifnames=0";
In flash.sh,
- CMDLINE_ADD="console=ttyTCU0,115200n8";
+ CMDLINE_ADD="console=ttyTHS0,115200n8";
In device tree, common/tegra194-p3668-common.dtsi :
- bootargs ="console=ttyTCU0,115200";
+ bootargs ="console=ttyTHS0,115200";
combined-uart {
console-port;
combined-uart;
- status = "okay";
+ status = "disabled";
};
With these changes, if I create a sdcard image using jetson-disk-image-creator.sh and flash development SoM, the board boots and it works fine.
But If I try to flash a production SoM, I am stuck in the following issue during flashing.
[ 13.0009 ] Sending bootloader and pre-requisite binaries
[ 13.0022 ] tegrarcm_v2 --download blob blob.bin
[ 13.0033 ] Applet version 01.00.0000
[ 13.0183 ] Sending blob
[ 13.0185 ] [................................................] 100%
[ 13.7927 ]
[ 13.7960 ] tegrarcm_v2 --boot recovery
[ 13.7983 ] Applet version 01.00.0000
[ 13.8223 ]
[ 14.8264 ] tegrarcm_v2 --isapplet
If I try to revert the changes in bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash.cfg and in bootloader/t186ref/BCT/tegra194-mb1-bct-misc-flash.cfg I kept the following changes and reverted the other.
-enable_combined_uart = 1;
+enable_combined_uart = 0;
I can able to flash, but during boot I faced the following issue:
[0001.165] I> EKB detected (length: 0x410) @ VA:0x52714400
ipc-unittest-main: 1519: Welcome to IPC unittest!!!
ipc-unittest-main: 1531: waiting forever
ipc-unittest-srv: 329: Init unittest services!!!
hwkey-agent: 40: hwkey-agent is running!!
hwkey-agent: 182: key_mgnt_processing .......
hwkey-agent: 157: Init hweky-agent services!!
platform_bootstrap_epilog: trusty bootstrap complete
Any ideas to debug this one? @JerryChang @WayneWWW @kayccc @jburman
Thanks,
Sakthi