123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- /*
- * File : drv_uart.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006-2013, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2017-10-10 Tanek the first version
- * 2018-03-17 laiyiketang Add other uart.
- */
- #include <rtthread.h>
- #include "drv_uart.h"
- #include "fsl_common.h"
- #include "fsl_lpuart.h"
- #include "fsl_iomuxc.h"
- #ifdef RT_USING_SERIAL
- /* GPIO外设时钟会在LPUART_Init中自动配置, 如果定义了以下宏则不会自动配置 */
- #if defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL
- #error "Please don't define 'FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL'!"
- #endif
- #if !defined(RT_USING_UART1) && !defined(RT_USING_UART2) && \
- !defined(RT_USING_UART3) && !defined(RT_USING_UART4) && \
- !defined(RT_USING_UART5) && !defined(RT_USING_UART6) && \
- !defined(RT_USING_UART7) && !defined(RT_USING_UART8)
- #error "Please define at least one UARTx"
- #endif
- #include <rtdevice.h>
- /* imxrt uart driver */
- struct imxrt_uart
- {
- LPUART_Type * uart_base;
- IRQn_Type irqn;
- struct rt_serial_device * serial;
- char *device_name;
- };
- static void uart_isr(struct rt_serial_device *serial);
- #if defined(RT_USING_UART1)
- struct rt_serial_device serial1;
- void LPUART1_IRQHandler(void)
- {
- uart_isr(&serial1);
- }
- #endif /* RT_USING_UART1 */
- #if defined(RT_USING_UART2)
- struct rt_serial_device serial2;
- void LPUART2_IRQHandler(void)
- {
- uart_isr(&serial2);
- }
- #endif /* RT_USING_UART2 */
- #if defined(RT_USING_UART3)
- struct rt_serial_device serial3;
- void LPUART3_IRQHandler(void)
- {
- uart_isr(&serial3);
- }
- #endif /* RT_USING_UART3 */
- #if defined(RT_USING_UART4)
- struct rt_serial_device serial4;
- void LPUART4_IRQHandler(void)
- {
- uart_isr(&serial4);
- }
- #endif /* RT_USING_UART4 */
- #if defined(RT_USING_UART5)
- struct rt_serial_device serial5;
- void LPUART5_IRQHandler(void)
- {
- uart_isr(&serial5);
- }
- #endif /* RT_USING_UART5 */
- #if defined(RT_USING_UART6)
- struct rt_serial_device serial6;
- void LPUART6_IRQHandler(void)
- {
- uart_isr(&serial6);
- }
- #endif /* RT_USING_UART6 */
- #if defined(RT_USING_UART7)
- struct rt_serial_device serial7;
- void LPUART7_IRQHandler(void)
- {
- uart_isr(&serial7);
- }
- #endif /* RT_USING_UART7 */
- #if defined(RT_USING_UART8)
- struct rt_serial_device serial8;
- void LPUART8_IRQHandler(void)
- {
- uart_isr(&serial8);
- }
- #endif /* RT_USING_UART8 */
- static const struct imxrt_uart uarts[] = {
- #ifdef RT_USING_UART1
- {
- LPUART1,
- LPUART1_IRQn,
- &serial1,
- "uart1",
- },
- #endif
- #ifdef RT_USING_UART2
- {
- LPUART2,
- LPUART2_IRQn,
- &serial2,
- "uart2",
- },
- #endif
- #ifdef RT_USING_UART3
- {
- LPUART3,
- LPUART3_IRQn,
- &serial3,
- "uart3",
- },
- #endif
- #ifdef RT_USING_UART4
- {
- LPUART4,
- LPUART4_IRQn,
- &serial4,
- "uart4",
- },
- #endif
- #ifdef RT_USING_UART5
- {
- LPUART5,
- LPUART5_IRQn,
- &serial5,
- "uart5",
- },
- #endif
- #ifdef RT_USING_UART6
- {
- LPUART6,
- LPUART6_IRQn,
- &serial6,
- "uart6",
- },
- #endif
- #ifdef RT_USING_UART7
- {
- LPUART7,
- LPUART7_IRQn,
- &serial7,
- "uart7",
- },
- #endif
- #ifdef RT_USING_UART8
- {
- LPUART8,
- LPUART8_IRQn,
- &serial8,
- "uart8",
- },
- #endif
- };
- /* Get debug console frequency. */
- uint32_t BOARD_DebugConsoleSrcFreq(void)
- {
- uint32_t freq;
- /* To make it simple, we assume default PLL and divider settings, and the only variable
- from application is use PLL3 source or OSC source */
- if (CLOCK_GetMux(kCLOCK_UartMux) == 0) /* PLL3 div6 80M */
- {
- freq = (CLOCK_GetPllFreq(kCLOCK_PllUsb1) / 6U) / (CLOCK_GetDiv(kCLOCK_UartDiv) + 1U);
- }
- else
- {
- freq = CLOCK_GetOscFreq() / (CLOCK_GetDiv(kCLOCK_UartDiv) + 1U);
- }
- return freq;
- }
- /**
- * @brief UART MSP Initialization
- * This function configures the hardware resources used in this example:
- * - Peripheral's clock enable
- * - Peripheral's GPIO Configuration
- * - NVIC configuration for UART interrupt request enable
- * @param huart: UART handle pointer
- * @retval None
- */
- void imxrt_uart_gpio_init(struct imxrt_uart *uart)
- {
- if (uart->uart_base != RT_NULL)
- {
- #ifdef RT_USING_UART1
- CLOCK_EnableClock(kCLOCK_Iomuxc); /* iomuxc clock (iomuxc_clk_enable): 0x03u */
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B0_12_LPUART1_TX, /* GPIO_AD_B0_12 is configured as LPUART1_TX */
- 0U); /* Software Input On Field: Input Path is determined by functionality */
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B0_13_LPUART1_RX, /* GPIO_AD_B0_13 is configured as LPUART1_RX */
- 0U); /* Software Input On Field: Input Path is determined by functionality */
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B0_12_LPUART1_TX, /* GPIO_AD_B0_12 PAD functional properties : */
- 0x10B0u); /* Slew Rate Field: Slow Slew Rate
- Drive Strength Field: R0/6
- Speed Field: medium(100MHz)
- Open Drain Enable Field: Open Drain Disabled
- Pull / Keep Enable Field: Pull/Keeper Enabled
- Pull / Keep Select Field: Keeper
- Pull Up / Down Config. Field: 100K Ohm Pull Down
- Hyst. Enable Field: Hysteresis Disabled */
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B0_13_LPUART1_RX, /* GPIO_AD_B0_13 PAD functional properties : */
- 0x10B0u); /* Slew Rate Field: Slow Slew Rate
- Drive Strength Field: R0/6
- Speed Field: medium(100MHz)
- Open Drain Enable Field: Open Drain Disabled
- Pull / Keep Enable Field: Pull/Keeper Enabled
- Pull / Keep Select Field: Keeper
- Pull Up / Down Config. Field: 100K Ohm Pull Down
- Hyst. Enable Field: Hysteresis Disabled */
- #endif
- #ifdef RT_USING_UART2
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B1_02_LPUART2_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B1_03_LPUART2_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B1_02_LPUART2_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B1_03_LPUART2_RX,
- 0x10B0u);
- #endif
- #ifdef RT_USING_UART3
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B1_06_LPUART3_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B1_07_LPUART3_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B1_06_LPUART3_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B1_07_LPUART3_RX,
- 0x10B0u);
- #endif
- #ifdef RT_USING_UART4
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_B1_00_LPUART4_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_B1_01_LPUART4_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_B1_00_LPUART4_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_B1_01_LPUART4_RX,
- 0x10B0u);
- #endif
- #ifdef RT_USING_UART5
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_B1_12_LPUART5_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_B1_13_LPUART5_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_B1_12_LPUART5_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_B1_13_LPUART5_RX,
- 0x10B0u);
- #endif
- #ifdef RT_USING_UART6
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B0_02_LPUART6_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B0_03_LPUART6_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B0_02_LPUART6_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B0_03_LPUART6_RX,
- 0x10B0u);
- #endif
- #ifdef RT_USING_UART7
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_EMC_31_LPUART7_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_EMC_32_LPUART7_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_EMC_31_LPUART7_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_EMC_32_LPUART7_RX,
- 0x10B0u);
- #endif
- #ifdef RT_USING_UART8
- CLOCK_EnableClock(kCLOCK_Iomuxc);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B1_10_LPUART8_TX,
- 0U);
- IOMUXC_SetPinMux(
- IOMUXC_GPIO_AD_B1_11_LPUART8_RX,
- 0U);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B1_10_LPUART8_TX,
- 0x10B0u);
- IOMUXC_SetPinConfig(
- IOMUXC_GPIO_AD_B1_11_LPUART8_RX,
- 0x10B0u);
- #endif
- }
- else
- {
- RT_ASSERT(RT_NULL);
- }
- }
- static rt_err_t imxrt_configure(struct rt_serial_device *serial, struct serial_configure *cfg)
- {
- struct imxrt_uart *uart;
- lpuart_config_t config;
- RT_ASSERT(serial != RT_NULL);
- RT_ASSERT(cfg != RT_NULL);
- uart = (struct imxrt_uart *)serial->parent.user_data;
- imxrt_uart_gpio_init(uart);
- LPUART_GetDefaultConfig(&config);
- config.baudRate_Bps = cfg->baud_rate;
- switch (cfg->data_bits)
- {
- case DATA_BITS_7:
- config.dataBitsCount = kLPUART_SevenDataBits;
- break;
- default:
- config.dataBitsCount = kLPUART_EightDataBits;
- break;
- }
- switch (cfg->stop_bits)
- {
- case STOP_BITS_2:
- config.stopBitCount = kLPUART_TwoStopBit;
- break;
- default:
- config.stopBitCount = kLPUART_OneStopBit;
- break;
- }
- switch (cfg->parity)
- {
- case PARITY_ODD:
- config.parityMode = kLPUART_ParityOdd;
- break;
- case PARITY_EVEN:
- config.parityMode = kLPUART_ParityEven;
- break;
- default:
- config.parityMode = kLPUART_ParityDisabled;
- break;
- }
- config.enableTx = true;
- config.enableRx = true;
- LPUART_Init(uart->uart_base, &config, BOARD_DebugConsoleSrcFreq());
- return RT_EOK;
- }
- static rt_err_t imxrt_control(struct rt_serial_device *serial, int cmd, void *arg)
- {
- struct imxrt_uart *uart;
- RT_ASSERT(serial != RT_NULL);
- uart = (struct imxrt_uart *)serial->parent.user_data;
- switch (cmd)
- {
- case RT_DEVICE_CTRL_CLR_INT:
- /* disable interrupt */
- LPUART_DisableInterrupts(uart->uart_base, kLPUART_RxDataRegFullInterruptEnable);
- /* disable rx irq */
- DisableIRQ(uart->irqn);
- break;
- case RT_DEVICE_CTRL_SET_INT:
- /* enable interrupt */
- LPUART_EnableInterrupts(uart->uart_base, kLPUART_RxDataRegFullInterruptEnable);
- /* enable rx irq */
- EnableIRQ(uart->irqn);
- break;
- }
- return RT_EOK;
- }
- static int imxrt_putc(struct rt_serial_device *serial, char ch)
- {
- struct imxrt_uart *uart;
- RT_ASSERT(serial != RT_NULL);
- uart = (struct imxrt_uart *)serial->parent.user_data;
- LPUART_WriteByte(uart->uart_base, ch);
- while(!(LPUART_GetStatusFlags(uart->uart_base) & kLPUART_TxDataRegEmptyFlag));
- return 1;
- }
- static int imxrt_getc(struct rt_serial_device *serial)
- {
- int ch;
- struct imxrt_uart *uart;
- RT_ASSERT(serial != RT_NULL);
- uart = (struct imxrt_uart *)serial->parent.user_data;
- ch = -1;
- if (LPUART_GetStatusFlags(uart->uart_base) & kLPUART_RxDataRegFullFlag)
- ch = LPUART_ReadByte(uart->uart_base);
- return ch;
- }
- /**
- * Uart common interrupt process. This need add to uart ISR.
- *
- * @param serial serial device
- */
- static void uart_isr(struct rt_serial_device *serial)
- {
- struct imxrt_uart *uart;
- LPUART_Type *base;
- RT_ASSERT(serial != RT_NULL);
- uart = (struct imxrt_uart *) serial->parent.user_data;
- RT_ASSERT(uart != RT_NULL);
- base = uart->uart_base;
- RT_ASSERT(base != RT_NULL);
- /* enter interrupt */
- rt_interrupt_enter();
- /* UART in mode Receiver -------------------------------------------------*/
- if (LPUART_GetStatusFlags(base) & kLPUART_RxDataRegFullFlag)
- {
- rt_hw_serial_isr(serial, RT_SERIAL_EVENT_RX_IND);
- }
- /* If RX overrun. */
- if (LPUART_STAT_OR_MASK & base->STAT)
- {
- /* Clear overrun flag, otherwise the RX does not work. */
- base->STAT = ((base->STAT & 0x3FE00000U) | LPUART_STAT_OR_MASK);
- }
- /* leave interrupt */
- rt_interrupt_leave();
- }
- static const struct rt_uart_ops imxrt_uart_ops =
- {
- imxrt_configure,
- imxrt_control,
- imxrt_putc,
- imxrt_getc,
- };
- int imxrt_hw_usart_init(void)
- {
- struct serial_configure config = RT_SERIAL_CONFIG_DEFAULT;
- int i;
- for (i = 0; i < sizeof(uarts) / sizeof(uarts[0]); i++)
- {
- uarts[i].serial->ops = &imxrt_uart_ops;
- uarts[i].serial->config = config;
- /* register UART1 device */
- rt_hw_serial_register(uarts[i].serial,
- uarts[i].device_name,
- RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX,
- (void *)&uarts[i]);
- }
- return 0;
- }
- INIT_BOARD_EXPORT(imxrt_hw_usart_init);
- #endif /*RT_USING_SERIAL */
|