This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM335x U-boot configuration for UART

Other Parts Discussed in Thread: AM3352

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