2016-08-16 11:51:48 +00:00
/**
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* @ file dma_map . h
* @ brief DMA hw module register map
* @ internal
* @ author ON Semiconductor
* $ Rev : 3415 $
* $ Date : 2015 - 06 - 05 13 : 29 : 52 + 0530 ( Fri , 05 Jun 2015 ) $
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
2016-09-01 11:25:41 +00:00
* Copyright 2016 Semiconductor Components Industries LLC ( d / b / a <EFBFBD> ON Semiconductor <EFBFBD> ) .
* All rights reserved . This software and / or documentation is licensed by ON Semiconductor
* under limited terms and conditions . The terms and conditions pertaining to the software
* and / or documentation are available at http : //www.onsemi.com/site/pdf/ONSEMI_T&C.pdf
* ( <EFBFBD> ON Semiconductor Standard Terms and Conditions of Sale , Section 8 Software <EFBFBD> ) and
* if applicable the software license agreement . Do not use this software and / or
* documentation unless you have carefully read and you agree to the limited terms and
* conditions . By using this software and / or documentation , you agree to the limited
* terms and conditions .
2016-08-16 11:51:48 +00:00
*
* THIS SOFTWARE IS PROVIDED " AS IS " . NO WARRANTIES , WHETHER EXPRESS , IMPLIED
* OR STATUTORY , INCLUDING , BUT NOT LIMITED TO , IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE .
* ON SEMICONDUCTOR SHALL NOT , IN ANY CIRCUMSTANCES , BE LIABLE FOR SPECIAL ,
* INCIDENTAL , OR CONSEQUENTIAL DAMAGES , FOR ANY REASON WHATSOEVER .
* @ endinternal
*
* @ ingroup dma
*
* @ details
*/
# ifndef DMA_MAP_H_
# define DMA_MAP_H_
/*************************************************************************************************
* *
* Header files *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# include "architecture.h"
/**************************************************************************************************
* *
* Type definitions *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/** DMA control HW registers structure overlay */
2016-08-26 11:22:11 +00:00
typedef struct {
union {
struct {
2016-07-11 14:14:03 +00:00
__IO uint32_t ENABLE : 1 ; /**< DMA enable: 1 to enable; 0 to disable */
__IO uint32_t MODE : 2 ; /**< DMA mode: 00 <20> Memory to memory; 01 <20> Memory to peripheral; 10 <20> Peripheral to memory; 11 <20> Peripheral to peripheral */
2016-08-26 11:22:11 +00:00
} BITS ;
__IO uint32_t WORD ;
2016-07-11 14:14:03 +00:00
} CONTROL ; /**< Control register */
__IO uint32_t SOURCE ; /**< Address of source, read to get the number of bytes written */
__IO uint32_t DESTINATION ; /**< Address of destination, read to get the number of bytes written */
__IO uint32_t SIZE ; /**< Lenght of the entire transfer */
2016-08-26 11:22:11 +00:00
union {
struct {
2016-07-11 14:14:03 +00:00
__I uint32_t COMPLETED : 1 ; /**< Done: 0 <20> Not complete, 1 <20> Complete */
__I uint32_t SOURCE_ERROR : 1 ; /**< Source Error: 0 <20> No Error, 1 <20> Error */
__I uint32_t DESTINATION_ERROR : 1 ; /**< Destination Error: 0 <20> No Error, 1 <20> Source Error */
2016-08-26 11:22:11 +00:00
} BITS ;
__I uint32_t WORD ;
2016-07-11 14:14:03 +00:00
} STATUS ; /**< Status register */
2016-08-26 11:22:11 +00:00
union {
struct {
2016-07-11 14:14:03 +00:00
__IO uint32_t COMPLETED : 1 ; /**< A write of <20> 1<EFBFBD> enables the interrupt generated by a DMA transfer complete */
__IO uint32_t SOURCE_ERROR : 1 ; /**< A write of <20> 1<EFBFBD> enables the interrupt generated by an error on the source side of the DMA transfer */
__IO uint32_t DESTINATION_ERROR : 1 ; /**< A write of <20> 1<EFBFBD> enables the interrupt generated by an error on the destination side of the DMA transfer */
2016-08-26 11:22:11 +00:00
} BITS ;
__IO uint32_t WORD ;
2016-07-11 14:14:03 +00:00
} INT_ENABLE ; /**< Interrupt enable */
2016-08-26 11:22:11 +00:00
union {
struct {
2016-07-11 14:14:03 +00:00
__IO uint32_t COMPLETED : 1 ; /**< A write clears the interrupt generated by a DMA transfer complete */
__IO uint32_t SOURCE_ERROR : 1 ; /**< A write clears the interrupt generated by an error on the source side of the DMA transfer */
__IO uint32_t DESTINATION_ERROR : 1 ; /**< A write clears the interrupt generated by an error on the destination side of the DMA transfer */
2016-08-26 11:22:11 +00:00
} BITS ;
__IO uint32_t WORD ;
2016-07-11 14:14:03 +00:00
} INT_CLEAR ; /**< Interrupt clear */
2016-08-26 11:22:11 +00:00
union {
struct {
2016-07-11 14:14:03 +00:00
__I uint32_t COMPLETED : 1 ; /**< Transfer complete interrupt */
__I uint32_t SOURCE_ERROR : 1 ; /**< Source error interrupt */
__I uint32_t DESTINATION_ERROR : 1 ; /**< Destination error interrupt */
2016-08-26 11:22:11 +00:00
} BITS ;
__I uint32_t WORD ;
2016-07-11 14:14:03 +00:00
} INT_STATUS ; /**< Interrupt status */
2016-08-26 11:22:11 +00:00
} DmaReg_t , * DmaReg_pt ;
2016-08-16 11:51:48 +00:00
# endif /* DMA_MAP_H_ */