Hi,
I am trying to port software on our custom board which uses AM3352.
U-boot version is u-boot-2011.09-psp04.06.00.08.
I would like to change UART channel which is used by U-boot from UART 0 to UART1.
I've modified AM335x confiuratiuon as follows:
/include/configs/am335x_evm.h
#define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */
→
#define CONFIG_SYS_NS16550_COM1 0x48022000 /* Base EVM has UART1 */
However, no character is displayed on terminal both of UART0 and UART1.
Which point should I modified else?
I have confirmed that UART1 worked properly, since kernel did output characters on UART1 with modification of uEnv.txt.
Thank you.
Mukawa