Hello,
I'm using Spartan-6/OMAP Co-Processing Development Kit
AVNET give us uImage which customized by RidgeRun,
As I know, In this image, UART0 is disabled for SPI0
but, we changed uImage with customized by Arago project.
In this image, there all UART0/1/2 are enabled
and they appear in /dev list
For UART0 loopback test,
I wired UART0 RX and TX and write some messages to /dev/ttyS0 and forward it to /dev/ttyS2
but nothing printed at console
for enable UART0, I fixed
/ti-dvsdk_omapl138-evm_4_..../psp/linux-2.6.../arch/arm/mach-davinci/board-da850-evm.c
in line 1229, I attached below code
ret = da8xx_pinmux_setup(da850_uart0_pins);
in line 1290, I commented this line like this, because it will shut down uart 0 and 1
//__raw_writel(0, IO_ADDRESS(DA8XX_UART0_BASE) + 0x30);
and rebuild image and tested but same as before
Is there anyone know about HOW TO ENABLE UART0 in OMAP-L138
please, help