/********************************************************************** * $Id$ lpc17xx_gpdma.h 2010-05-21 *//** * @file lpc17xx_gpdma.h * @brief Contains all macro definitions and function prototypes * support for GPDMA firmware library on LPC17xx * @version 2.0 * @date 21. May. 2010 * @author NXP MCU SW Application Team * * Copyright(C) 2010, NXP Semiconductor * All rights reserved. * *********************************************************************** * Software that is described herein is for illustrative purposes only * which provides customers with programming information regarding the * products. This software is supplied "AS IS" without any warranties. * NXP Semiconductors assumes no responsibility or liability for the * use of the software, conveys no license or title under any patent, * copyright, or mask work right to the product. NXP Semiconductors * reserves the right to make changes in the software without * notification. NXP Semiconductors also make no representation or * warranty that such application will be suitable for the specified * use without further testing or modification. * Permission to use, copy, modify, and distribute this software and its * documentation is hereby granted, under NXP Semiconductors' * relevant copyright in the software, without fee, provided that it * is used in conjunction with NXP Semiconductors microcontrollers. This * copyright, permission, and disclaimer notice must appear in all copies of * this code. **********************************************************************/ /* Peripheral group ----------------------------------------------------------- */ /** @defgroup GPDMA GPDMA (General Purpose Direct Memory Access) * @ingroup LPC1700CMSIS_FwLib_Drivers * @{ */ #ifndef LPC17XX_GPDMA_H_ #define LPC17XX_GPDMA_H_ /* Includes ------------------------------------------------------------------- */ #include "LPC17xx.h" #include "lpc_types.h" #ifdef __cplusplus extern "C" { #endif /* Public Macros -------------------------------------------------------------- */ /** @defgroup GPDMA_Public_Macros GPDMA Public Macros * @{ */ /** DMA Connection number definitions */ #define GPDMA_CONN_SSP0_Tx ((0UL)) /**< SSP0 Tx */ #define GPDMA_CONN_SSP0_Rx ((1UL)) /**< SSP0 Rx */ #define GPDMA_CONN_SSP1_Tx ((2UL)) /**< SSP1 Tx */ #define GPDMA_CONN_SSP1_Rx ((3UL)) /**< SSP1 Rx */ #define GPDMA_CONN_ADC ((4UL)) /**< ADC */ #define GPDMA_CONN_I2S_Channel_0 ((5UL)) /**< I2S channel 0 */ #define GPDMA_CONN_I2S_Channel_1 ((6UL)) /**< I2S channel 1 */ #define GPDMA_CONN_DAC ((7UL)) /**< DAC */ #define GPDMA_CONN_UART0_Tx ((8UL)) /**< UART0 Tx */ #define GPDMA_CONN_UART0_Rx ((9UL)) /**< UART0 Rx */ #define GPDMA_CONN_UART1_Tx ((10UL)) /**< UART1 Tx */ #define GPDMA_CONN_UART1_Rx ((11UL)) /**< UART1 Rx */ #define GPDMA_CONN_UART2_Tx ((12UL)) /**< UART2 Tx */ #define GPDMA_CONN_UART2_Rx ((13UL)) /**< UART2 Rx */ #define GPDMA_CONN_UART3_Tx ((14UL)) /**< UART3 Tx */ #define GPDMA_CONN_UART3_Rx ((15UL)) /**< UART3 Rx */ #define GPDMA_CONN_MAT0_0 ((16UL)) /**< MAT0.0 */ #define GPDMA_CONN_MAT0_1 ((17UL)) /**< MAT0.1 */ #define GPDMA_CONN_MAT1_0 ((18UL)) /**< MAT1.0 */ #define GPDMA_CONN_MAT1_1 ((19UL)) /**< MAT1.1 */ #define GPDMA_CONN_MAT2_0 ((20UL)) /**< MAT2.0 */ #define GPDMA_CONN_MAT2_1 ((21UL)) /**< MAT2.1 */ #define GPDMA_CONN_MAT3_0 ((22UL)) /**< MAT3.0 */ #define GPDMA_CONN_MAT3_1 ((23UL)) /**< MAT3.1 */ /** GPDMA Transfer type definitions */ #define GPDMA_TRANSFERTYPE_M2M ((0UL)) /**< Memory to memory - DMA control */ #define GPDMA_TRANSFERTYPE_M2P ((1UL)) /**< Memory to peripheral - DMA control */ #define GPDMA_TRANSFERTYPE_P2M ((2UL)) /**< Peripheral to memory - DMA control */ #define GPDMA_TRANSFERTYPE_P2P ((3UL)) /**< Source peripheral to destination peripheral - DMA control */ /** Burst size in Source and Destination definitions */ #define GPDMA_BSIZE_1 ((0UL)) /**< Burst size = 1 */ #define GPDMA_BSIZE_4 ((1UL)) /**< Burst size = 4 */ #define GPDMA_BSIZE_8 ((2UL)) /**< Burst size = 8 */ #define GPDMA_BSIZE_16 ((3UL)) /**< Burst size = 16 */ #define GPDMA_BSIZE_32 ((4UL)) /**< Burst size = 32 */ #define GPDMA_BSIZE_64 ((5UL)) /**< Burst size = 64 */ #define GPDMA_BSIZE_128 ((6UL)) /**< Burst size = 128 */ #define GPDMA_BSIZE_256 ((7UL)) /**< Burst size = 256 */ /** Width in Source transfer width and Destination transfer width definitions */ #define GPDMA_WIDTH_BYTE ((0UL)) /**< Width = 1 byte */ #define GPDMA_WIDTH_HALFWORD ((1UL)) /**< Width = 2 bytes */ #define GPDMA_WIDTH_WORD ((2UL)) /**< Width = 4 bytes */ /** DMA Request Select Mode definitions */ #define GPDMA_REQSEL_UART ((0UL)) /**< UART TX/RX is selected */ #define GPDMA_REQSEL_TIMER ((1UL)) /**< Timer match is selected */ /** * @} */ /* Private Macros ------------------------------------------------------------- */ /** @defgroup GPDMA_Private_Macros GPDMA Private Macros * @{ */ /* --------------------- BIT DEFINITIONS -------------------------------------- */ /*********************************************************************//** * Macro defines for DMA Interrupt Status register **********************************************************************/ #define GPDMA_DMACIntStat_Ch(n) (((1UL<