Hi im new in this,
How do i configure UART2 for my board, i need to be able to transmit.
Sorry if i cant provide a lot of information, im using ti-ezsdk_c6a811x-evm_5_05_01_09
Seems like uart0 is working by default, but cant fiind the files in the U Boot.
In my system also have a radio_pll_pinmux.ko, i tried to initialize like this in J5 init
#define CM_ALWON_UART_2_CLKCTRL (PRCM_BASE_ADDR + 0x1558)
//UART PIN CONTROL
ptr=REMAP(PINCNTL(61));//uart2TDX
WR_MEM_32(ptr, 0x00000080);
ptr=REMAP(PINCNTL(59));//uart2RDX
WR_MEM_32(ptr, 0x00000080);
ptr=REMAP(CM_ALWON_UART_2_CLKCTRL);
WR_MEM_32(ptr,0x2);
while(RD_MEM_32(ptr)!=0x2);
Please let me know which files i'll should be checking or pint any information related, thanks