1 /* 2 * Copyright (c) 2013-2016 ARM Limited. All rights reserved. 3 * Copyright (c) 2016, Freescale Semiconductor, Inc. Not a Contribution. 4 * Copyright 2016-2017 NXP. Not a Contribution. 5 * 6 * SPDX-License-Identifier: Apache-2.0 7 * 8 * Licensed under the Apache License, Version 2.0 (the License); you may 9 * not use this file except in compliance with the License. 10 * You may obtain a copy of the License at 11 * 12 * http://www.apache.org/licenses/LICENSE-2.0 13 * 14 * Unless required by applicable law or agreed to in writing, software 15 * distributed under the License is distributed on an AS IS BASIS, WITHOUT 16 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 17 * See the License for the specific language governing permissions and 18 * limitations under the License. 19 */ 20 21 #ifndef _FSL_UART_CMSIS_H_ 22 #define _FSL_UART_CMSIS_H_ 23 24 #include "fsl_common.h" 25 #include "Driver_USART.h" 26 #include "RTE_Device.h" 27 #include "fsl_uart.h" 28 #if (defined(FSL_FEATURE_SOC_SDMA_COUNT) && FSL_FEATURE_SOC_SDMA_COUNT) 29 #include "fsl_uart_sdma.h" 30 #endif 31 #if defined(UART1) && defined(RTE_USART1) && RTE_USART1 32 extern ARM_DRIVER_USART Driver_USART1; 33 #endif /* UART1 */ 34 35 #if defined(UART2) && defined(RTE_USART2) && RTE_USART2 36 extern ARM_DRIVER_USART Driver_USART2; 37 #endif /* UART2 */ 38 39 #if defined(UART3) && defined(RTE_USART3) && RTE_USART3 40 extern ARM_DRIVER_USART Driver_USART3; 41 #endif /* UART3 */ 42 43 #if defined(UART4) && defined(RTE_USART4) && RTE_USART4 44 extern ARM_DRIVER_USART Driver_USART4; 45 #endif /* UART4 */ 46 47 /* USART Driver state flags */ 48 #define USART_FLAG_UNINIT (0U) 49 #define USART_FLAG_INIT (1U << 0) 50 #define USART_FLAG_POWER (1U << 1) 51 #define USART_FLAG_CONFIGURED (1U << 2) 52 53 #endif /* _FSL_UART_CMSIS_H_ */ 54