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,2020,2021 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_LPUART_CMSIS_H_ 22 #define _FSL_LPUART_CMSIS_H_ 23 24 #include "fsl_common.h" 25 #include "Driver_USART.h" 26 #include "RTE_Device.h" 27 #include "fsl_lpuart.h" 28 #if (defined(FSL_FEATURE_SOC_DMAMUX_COUNT) && FSL_FEATURE_SOC_DMAMUX_COUNT) 29 #include "fsl_dmamux.h" 30 #endif 31 #if (defined(FSL_FEATURE_SOC_DMA_COUNT) && FSL_FEATURE_SOC_DMA_COUNT) 32 #include "fsl_lpuart_dma.h" 33 #endif 34 #if (defined(FSL_FEATURE_SOC_EDMA_COUNT) && FSL_FEATURE_SOC_EDMA_COUNT) 35 #include "fsl_lpuart_edma.h" 36 #endif 37 38 #if defined(LPUART0) && defined(RTE_USART0) && RTE_USART0 39 extern ARM_DRIVER_USART Driver_USART0; 40 #endif /* LPUART0 */ 41 42 #if defined(LPUART1) && defined(RTE_USART1) && RTE_USART1 43 extern ARM_DRIVER_USART Driver_USART1; 44 #endif /* LPUART1 */ 45 46 #if defined(LPUART2) && defined(RTE_USART2) && RTE_USART2 47 extern ARM_DRIVER_USART Driver_USART2; 48 #endif /* LPUART2 */ 49 50 #if defined(LPUART3) && defined(RTE_USART3) && RTE_USART3 51 extern ARM_DRIVER_USART Driver_USART3; 52 #endif /* LPUART3 */ 53 54 #if defined(LPUART4) && defined(RTE_USART4) && RTE_USART4 55 extern ARM_DRIVER_USART Driver_USART4; 56 #endif /* LPUART4 */ 57 58 #if defined(LPUART5) && defined(RTE_USART5) && RTE_USART5 59 extern ARM_DRIVER_USART Driver_USART5; 60 #endif /* LPUART5 */ 61 62 #if defined(LPUART6) && defined(RTE_USART6) && RTE_USART6 63 extern ARM_DRIVER_USART Driver_USART6; 64 #endif /* LPUART6 */ 65 66 #if defined(LPUART7) && defined(RTE_USART7) && RTE_USART7 67 extern ARM_DRIVER_USART Driver_USART7; 68 #endif /* LPUART7 */ 69 70 #if defined(LPUART8) && defined(RTE_USART8) && RTE_USART8 71 extern ARM_DRIVER_USART Driver_USART8; 72 #endif /* LPUART8 */ 73 74 #if defined(LPUART9) && defined(RTE_USART9) && RTE_USART9 75 extern ARM_DRIVER_USART Driver_USART9; 76 #endif /* LPUART9 */ 77 78 #if defined(LPUART10) && defined(RTE_USART10) && RTE_USART10 79 extern ARM_DRIVER_USART Driver_USART10; 80 #endif /* LPUART10 */ 81 82 #if defined(LPUART11) && defined(RTE_USART11) && RTE_USART11 83 extern ARM_DRIVER_USART Driver_USART11; 84 #endif /* LPUART11 */ 85 86 #if defined(LPUART12) && defined(RTE_USART12) && RTE_USART12 87 extern ARM_DRIVER_USART Driver_USART12; 88 #endif /* LPUART12 */ 89 90 #if (FSL_FEATURE_SOC_LPUART_COUNT == 1) && (FSL_FEATURE_SOC_UART_COUNT == 3) 91 extern ARM_DRIVER_USART Driver_USART3; 92 #endif 93 94 #if (FSL_FEATURE_SOC_LPUART_COUNT == 1) && (FSL_FEATURE_SOC_UART_COUNT == 4) 95 extern ARM_DRIVER_USART Driver_USART4; 96 #endif 97 98 #if (FSL_FEATURE_SOC_LPUART_COUNT == 1) && (FSL_FEATURE_SOC_UART_COUNT == 5) 99 extern ARM_DRIVER_USART Driver_USART5; 100 #endif 101 102 /* USART Driver state flags */ 103 #define USART_FLAG_UNINIT (0UL) 104 #define USART_FLAG_INIT (1UL << 0) 105 #define USART_FLAG_POWER (1UL << 1) 106 #define USART_FLAG_CONFIGURED (1UL << 2) 107 108 #endif /* _FSL_LPUART_CMSIS_H_ */ 109