Tool/software:
Question 1:
Is it possible to access the serial console for both A53 (A5F) and R5F cores simultaneously on AM64x?
I am working with an AM64x-based board where the A53 (A5F) core is using UART0 as the serial console. I want to access the same UART0 console for the R5F core while A53 is still running.
- Is it possible to share the UART0 console between both cores?
- If yes, what configurations or modifications are required?
- If not, is there an alternative way to log data from both cores on a single serial interface
Question 2:
How to disable A53 (A5F) from using the serial console so that R5F can take control?
Since A53 (A5F) is using UART0 as the serial console, I want to free it up and use it exclusively for the R5F core.
- What is the proper method to disable UART0 for A53 without modifying the device tree?
- I tried using
sudo systemctl disable serial-getty@ttyS2.service, but after a reboot, it gets enabled again. How can I ensure it stays disabled persistently? - Are there any other runtime methods to disable A53’s access to the serial console and allow R5F to use it?