Hi.
I am using FRDM64. but i think it will be similar.
You can starting looking at.
hardware_init.c
void dbg_uart_init(void)
{
uint32_t i;
/* enable clock for PORTs */
for (i = 0; i < HW_PORT_INSTANCE_COUNT; i++)
{
CLOCK_SYS_EnablePortClock(i);
}
configure_uart_pins(BOARD_DEBUG_UART_INSTANCE);
DbgConsole_Init(BOARD_DEBUG_UART_INSTANCE, BOARD_DEBUG_UART_BAUD, kDebugConsoleUART);
}
then you can take care the UART configurations. Most of then are in the Board folder.