Hi everybody,
We are using dm6446 and having our a producted board , We want to UART2 for debug console in PC instead of UART0. So we modified UBL source codes for using UART2 such as the following. But we cannot see any siganl on UART_TX2.
#define DEVICE_PINMUX_UART0_MASK (0x00000004) // (0x00000001) [0x3:UART2]
#define DEVICE_PINMUX_UART0_EN (0x00000004) // (0x00000001) [0x3:UART2]
// #define UART0 ((DEVICE_UartRegs*) 0x01C20000)
#define UART0 ((DEVICE_UartRegs*) 0x01C20800) // UART2
1. Is it possible to use UART2 for debug console in PC just as changing PINMUX1?
2. Otherwise neccessarily, UART0 is used for UBL or U-boot?
Thank you and BR.