*** Please note that this reply is generated by LLM automatically ***
The issue you’re experiencing with serial communication not working after upgrading to JetPack 6.2.2 on your Jetson Orin Nano device is related to the Device Tree DMA configuration. This problem is specifically mentioned in the JetPack 6.2.2 release notes.
To resolve this issue, you need to modify the Device Tree configuration. Here’s a step-by-step solution:
Open the Device Tree file using a text editor. The exact file path may vary depending on your system configuration, but it’s usually located in the /boot directory or a similar location.
Look for the entry related to the serial communication interface (e.g., uart0, uart1, etc.). The exact entry name may vary depending on your device configuration.
Remove the DMA lines from the entry. If you’re not sure which lines to remove, look for any lines that contain the string “dma” or “dma-names”.
If there is no dma-names line in the entry, add the following line under the compatible line:
dma-names = "rx", "tx";
Save the modified Device Tree file.
Reboot your Jetson Orin Nano device.
After rebooting, your serial communication should be working correctly.
It’s worth noting that this issue is specific to JetPack 6.2.2, and the solution may not be applicable to other versions of JetPack. If you’re experiencing similar issues with other versions, you should refer to the release notes for that specific version for guidance.
In comparison to other Jetson devices, the Jetson Orin Nano has similar Device Tree configurations, but the exact entries and lines may vary. If you’re experiencing similar issues on other Jetson devices, you should follow the same steps, but be sure to modify the correct entries and lines for your specific device.
Additionally, if you’re experiencing issues with other peripherals or interfaces on your Jetson Orin Nano device, you should refer to the JetPack 6.2.2 release notes and the Device Tree documentation for guidance on resolving those issues.
*** Please give the thumbs up if you get answers you like. Or provide feedback to help us improve the answer. ***
I followed your solution and modified the tegra234.dtsifile. After recompiling the kernel OOT modules and using the updated .dtb file on my Jetson module I tested serial communication and is now working correctly.