1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-04 15:24:12 +01:00
Arduino/hardware/sam/system/libsam/cmsis/sam3u/include/sam3u1e.h
2011-09-06 21:05:41 +02:00

337 lines
17 KiB
C

/* $asf_license$ */
#ifndef _SAM3U1E_
#define _SAM3U1E_
/** \addtogroup SAM3U1E_definitions SAM3U1E definitions
This file defines all structures and symbols for SAM3U1E:
- registers and bitfields
- peripheral base address
- peripheral ID
- PIO definitions
*/
/*@{*/
#ifdef __cplusplus
extern "C" {
#endif
#ifndef __ASSEMBLY__
#include <stdint.h>
#ifndef __cplusplus
typedef volatile const uint32_t RoReg; /**< Read only 32-bit register (volatile const unsigned int) */
#else
typedef volatile uint32_t RoReg; /**< Read only 32-bit register (volatile const unsigned int) */
#endif
typedef volatile uint32_t WoReg; /**< Write only 32-bit register (volatile unsigned int) */
typedef volatile uint32_t RwReg; /**< Read-Write 32-bit register (volatile unsigned int) */
#endif
/* ************************************************************************** */
/* CMSIS DEFINITIONS FOR SAM3U1E */
/* ************************************************************************** */
/** \addtogroup SAM3U1E_cmsis CMSIS Definitions */
/*@{*/
/**< Interrupt Number Definition */
typedef enum IRQn
{
/****** Cortex-M3 Processor Exceptions Numbers ******************************/
NonMaskableInt_IRQn = -14, /**< 2 Non Maskable Interrupt */
MemoryManagement_IRQn = -12, /**< 4 Cortex-M3 Memory Management Interrupt */
BusFault_IRQn = -11, /**< 5 Cortex-M3 Bus Fault Interrupt */
UsageFault_IRQn = -10, /**< 6 Cortex-M3 Usage Fault Interrupt */
SVCall_IRQn = -5, /**< 11 Cortex-M3 SV Call Interrupt */
DebugMonitor_IRQn = -4, /**< 12 Cortex-M3 Debug Monitor Interrupt */
PendSV_IRQn = -2, /**< 14 Cortex-M3 Pend SV Interrupt */
SysTick_IRQn = -1, /**< 15 Cortex-M3 System Tick Interrupt */
/****** SAM3U1E specific Interrupt Numbers *********************************/
SUPC_IRQn = 0, /**< 0 SAM3U1E Supply Controller (SUPC) */
RSTC_IRQn = 1, /**< 1 SAM3U1E Reset Controller (RSTC) */
RTC_IRQn = 2, /**< 2 SAM3U1E Real Time Clock (RTC) */
RTT_IRQn = 3, /**< 3 SAM3U1E Real Time Timer (RTT) */
WDT_IRQn = 4, /**< 4 SAM3U1E Watchdog Timer (WDT) */
PMC_IRQn = 5, /**< 5 SAM3U1E Power Management Controller (PMC) */
EFC0_IRQn = 6, /**< 6 SAM3U1E Enhanced Embedded Flash Controller 0 (EFC0) */
EFC1_IRQn = 7, /**< 7 SAM3U1E Enhanced Embedded Flash Controller 1 (EFC1) */
UART_IRQn = 8, /**< 8 SAM3U1E Universal Asynchronous Receiver Transmitter (UART) */
SMC_IRQn = 9, /**< 9 SAM3U1E Static Memory Controller (SMC) */
PIOA_IRQn = 10, /**< 10 SAM3U1E Parallel I/O Controller A, (PIOA) */
PIOB_IRQn = 11, /**< 11 SAM3U1E Parallel I/O Controller B (PIOB) */
PIOC_IRQn = 12, /**< 12 SAM3U1E Parallel I/O Controller C (PIOC) */
USART0_IRQn = 13, /**< 13 SAM3U1E USART 0 (USART0) */
USART1_IRQn = 14, /**< 14 SAM3U1E USART 1 (USART1) */
USART2_IRQn = 15, /**< 15 SAM3U1E USART 2 (USART2) */
USART3_IRQn = 16, /**< 16 SAM3U1E USART 3 (USART3) */
HSMCI_IRQn = 17, /**< 17 SAM3U1E High Speed Multimedia Card Interface (HSMCI) */
TWI0_IRQn = 18, /**< 18 SAM3U1E Two-Wire Interface 0 (TWI0) */
TWI1_IRQn = 19, /**< 19 SAM3U1E Two-Wire Interface 1 (TWI1) */
SPI_IRQn = 20, /**< 20 SAM3U1E Serial Peripheral Interface (SPI) */
SSC_IRQn = 21, /**< 21 SAM3U1E Synchronous Serial Controller (SSC) */
TC0_IRQn = 22, /**< 22 SAM3U1E Timer Counter 0 (TC0) */
TC1_IRQn = 23, /**< 23 SAM3U1E Timer Counter 1 (TC1) */
TC2_IRQn = 24, /**< 24 SAM3U1E Timer Counter 2 (TC2) */
PWM_IRQn = 25, /**< 25 SAM3U1E Pulse Width Modulation Controller (PWM) */
ADC12B_IRQn = 26, /**< 26 SAM3U1E 12-bit ADC Controller (ADC12B) */
ADC_IRQn = 27, /**< 27 SAM3U1E 10-bit ADC Controller (ADC) */
DMAC_IRQn = 28, /**< 28 SAM3U1E DMA Controller (DMAC) */
UDPHS_IRQn = 29 /**< 29 SAM3U1E USB Device High Speed (UDPHS) */
} IRQn_Type;
/**
* \brief Configuration of the Cortex-M3 Processor and Core Peripherals
*/
#define __MPU_PRESENT 1 /**< SAM3U1E does provide a MPU */
#define __NVIC_PRIO_BITS 4 /**< SAM3U1E uses 4 Bits for the Priority Levels */
#define __Vendor_SysTickConfig 0 /**< Set to 1 if different SysTick Config is used */
/*
* \brief CMSIS includes
*/
#include <core_cm3.h>
/*@}*/
/* ************************************************************************** */
/** SOFTWARE PERIPHERAL API DEFINITION FOR SAM3U1E */
/* ************************************************************************** */
/** \addtogroup SAM3U1E_api Peripheral Software API */
/*@{*/
#include "component/adc.h"
#include "component/adc12b.h"
#include "component/chipid.h"
#include "component/dmac.h"
#include "component/efc.h"
#include "component/gpbr.h"
#include "component/hsmci.h"
#include "component/matrix.h"
#include "component/pdc.h"
#include "component/pio.h"
#include "component/pmc.h"
#include "component/pwm.h"
#include "component/rstc.h"
#include "component/rtc.h"
#include "component/rtt.h"
#include "component/smc.h"
#include "component/spi.h"
#include "component/ssc.h"
#include "component/supc.h"
#include "component/tc.h"
#include "component/twi.h"
#include "component/uart.h"
#include "component/udphs.h"
#include "component/usart.h"
#include "component/wdt.h"
/*@}*/
/* ************************************************************************** */
/* REGISTER ACCESS DEFINITIONS FOR SAM3U1E */
/* ************************************************************************** */
/** \addtogroup SAM3U1E_reg Registers Access Definitions */
/*@{*/
#include "instance/hsmci.h"
#include "instance/ssc.h"
#include "instance/spi.h"
#include "instance/tc0.h"
#include "instance/twi0.h"
#include "instance/twi1.h"
#include "instance/pwm.h"
#include "instance/usart0.h"
#include "instance/usart1.h"
#include "instance/usart2.h"
#include "instance/usart3.h"
#include "instance/udphs.h"
#include "instance/adc12b.h"
#include "instance/adc.h"
#include "instance/dmac.h"
#include "instance/smc.h"
#include "instance/matrix.h"
#include "instance/pmc.h"
#include "instance/uart.h"
#include "instance/chipid.h"
#include "instance/efc0.h"
#include "instance/efc1.h"
#include "instance/pioa.h"
#include "instance/piob.h"
#include "instance/pioc.h"
#include "instance/rstc.h"
#include "instance/supc.h"
#include "instance/rtt.h"
#include "instance/wdt.h"
#include "instance/rtc.h"
#include "instance/gpbr.h"
/*@}*/
/* ************************************************************************** */
/* PERIPHERAL ID DEFINITIONS FOR SAM3U1E */
/* ************************************************************************** */
/** \addtogroup SAM3U1E_id Peripheral Ids Definitions */
/*@{*/
#define ID_SUPC ( 0) /**< \brief Supply Controller (SUPC) */
#define ID_RSTC ( 1) /**< \brief Reset Controller (RSTC) */
#define ID_RTC ( 2) /**< \brief Real Time Clock (RTC) */
#define ID_RTT ( 3) /**< \brief Real Time Timer (RTT) */
#define ID_WDT ( 4) /**< \brief Watchdog Timer (WDT) */
#define ID_PMC ( 5) /**< \brief Power Management Controller (PMC) */
#define ID_EFC0 ( 6) /**< \brief Enhanced Embedded Flash Controller 0 (EFC0) */
#define ID_EFC1 ( 7) /**< \brief Enhanced Embedded Flash Controller 1 (EFC1) */
#define ID_UART ( 8) /**< \brief Universal Asynchronous Receiver Transmitter (UART) */
#define ID_SMC ( 9) /**< \brief Static Memory Controller (SMC) */
#define ID_PIOA (10) /**< \brief Parallel I/O Controller A, (PIOA) */
#define ID_PIOB (11) /**< \brief Parallel I/O Controller B (PIOB) */
#define ID_PIOC (12) /**< \brief Parallel I/O Controller C (PIOC) */
#define ID_USART0 (13) /**< \brief USART 0 (USART0) */
#define ID_USART1 (14) /**< \brief USART 1 (USART1) */
#define ID_USART2 (15) /**< \brief USART 2 (USART2) */
#define ID_USART3 (16) /**< \brief USART 3 (USART3) */
#define ID_HSMCI (17) /**< \brief High Speed Multimedia Card Interface (HSMCI) */
#define ID_TWI0 (18) /**< \brief Two-Wire Interface 0 (TWI0) */
#define ID_TWI1 (19) /**< \brief Two-Wire Interface 1 (TWI1) */
#define ID_SPI (20) /**< \brief Serial Peripheral Interface (SPI) */
#define ID_SSC (21) /**< \brief Synchronous Serial Controller (SSC) */
#define ID_TC0 (22) /**< \brief Timer Counter 0 (TC0) */
#define ID_TC1 (23) /**< \brief Timer Counter 1 (TC1) */
#define ID_TC2 (24) /**< \brief Timer Counter 2 (TC2) */
#define ID_PWM (25) /**< \brief Pulse Width Modulation Controller (PWM) */
#define ID_ADC12B (26) /**< \brief 12-bit ADC Controller (ADC12B) */
#define ID_ADC (27) /**< \brief 10-bit ADC Controller (ADC) */
#define ID_DMAC (28) /**< \brief DMA Controller (DMAC) */
#define ID_UDPHS (29) /**< \brief USB Device High Speed (UDPHS) */
/*@}*/
/* ************************************************************************** */
/* BASE ADDRESS DEFINITIONS FOR SAM3U1E */
/* ************************************************************************** */
/** \addtogroup SAM3U1E_base Peripheral Base Address Definitions */
/*@{*/
#ifdef __ASSEMBLY__
#define HSMCI (0x40000000U) /**< \brief (HSMCI ) Base Address */
#define SSC (0x40004000U) /**< \brief (SSC ) Base Address */
#define SPI (0x40008000U) /**< \brief (SPI ) Base Address */
#define TC0 (0x40080000U) /**< \brief (TC0 ) Base Address */
#define TWI0 (0x40084000U) /**< \brief (TWI0 ) Base Address */
#define PDC_TWI0 (0x40084100U) /**< \brief (PDC_TWI0 ) Base Address */
#define TWI1 (0x40088000U) /**< \brief (TWI1 ) Base Address */
#define PDC_TWI1 (0x40088100U) /**< \brief (PDC_TWI1 ) Base Address */
#define PWM (0x4008C000U) /**< \brief (PWM ) Base Address */
#define PDC_PWM (0x4008C100U) /**< \brief (PDC_PWM ) Base Address */
#define USART0 (0x40090000U) /**< \brief (USART0 ) Base Address */
#define PDC_USART0 (0x40090100U) /**< \brief (PDC_USART0) Base Address */
#define USART1 (0x40094000U) /**< \brief (USART1 ) Base Address */
#define PDC_USART1 (0x40094100U) /**< \brief (PDC_USART1) Base Address */
#define USART2 (0x40098000U) /**< \brief (USART2 ) Base Address */
#define PDC_USART2 (0x40098100U) /**< \brief (PDC_USART2) Base Address */
#define USART3 (0x4009C000U) /**< \brief (USART3 ) Base Address */
#define PDC_USART3 (0x4009C100U) /**< \brief (PDC_USART3) Base Address */
#define UDPHS (0x400A4000U) /**< \brief (UDPHS ) Base Address */
#define ADC12B (0x400A8000U) /**< \brief (ADC12B ) Base Address */
#define PDC_ADC12B (0x400A8100U) /**< \brief (PDC_ADC12B) Base Address */
#define ADC (0x400AC000U) /**< \brief (ADC ) Base Address */
#define PDC_ADC (0x400AC100U) /**< \brief (PDC_ADC ) Base Address */
#define DMAC (0x400B0000U) /**< \brief (DMAC ) Base Address */
#define SMC (0x400E0000U) /**< \brief (SMC ) Base Address */
#define MATRIX (0x400E0200U) /**< \brief (MATRIX ) Base Address */
#define PMC (0x400E0400U) /**< \brief (PMC ) Base Address */
#define UART (0x400E0600U) /**< \brief (UART ) Base Address */
#define PDC_UART (0x400E0700U) /**< \brief (PDC_UART ) Base Address */
#define CHIPID (0x400E0740U) /**< \brief (CHIPID ) Base Address */
#define EFC0 (0x400E0800U) /**< \brief (EFC0 ) Base Address */
#define EFC1 (0x400E0A00U) /**< \brief (EFC1 ) Base Address */
#define PIOA (0x400E0C00U) /**< \brief (PIOA ) Base Address */
#define PIOB (0x400E0E00U) /**< \brief (PIOB ) Base Address */
#define PIOC (0x400E1000U) /**< \brief (PIOC ) Base Address */
#define RSTC (0x400E1200U) /**< \brief (RSTC ) Base Address */
#define SUPC (0x400E1210U) /**< \brief (SUPC ) Base Address */
#define RTT (0x400E1230U) /**< \brief (RTT ) Base Address */
#define WDT (0x400E1250U) /**< \brief (WDT ) Base Address */
#define RTC (0x400E1260U) /**< \brief (RTC ) Base Address */
#define GPBR (0x400E1290U) /**< \brief (GPBR ) Base Address */
#else
#define HSMCI ((Hsmci *)0x40000000U) /**< \brief (HSMCI ) Base Address */
#define SSC ((Ssc *)0x40004000U) /**< \brief (SSC ) Base Address */
#define SPI ((Spi *)0x40008000U) /**< \brief (SPI ) Base Address */
#define TC0 ((Tc *)0x40080000U) /**< \brief (TC0 ) Base Address */
#define TWI0 ((Twi *)0x40084000U) /**< \brief (TWI0 ) Base Address */
#define PDC_TWI0 ((Pdc *)0x40084100U) /**< \brief (PDC_TWI0 ) Base Address */
#define TWI1 ((Twi *)0x40088000U) /**< \brief (TWI1 ) Base Address */
#define PDC_TWI1 ((Pdc *)0x40088100U) /**< \brief (PDC_TWI1 ) Base Address */
#define PWM ((Pwm *)0x4008C000U) /**< \brief (PWM ) Base Address */
#define PDC_PWM ((Pdc *)0x4008C100U) /**< \brief (PDC_PWM ) Base Address */
#define USART0 ((Usart *)0x40090000U) /**< \brief (USART0 ) Base Address */
#define PDC_USART0 ((Pdc *)0x40090100U) /**< \brief (PDC_USART0) Base Address */
#define USART1 ((Usart *)0x40094000U) /**< \brief (USART1 ) Base Address */
#define PDC_USART1 ((Pdc *)0x40094100U) /**< \brief (PDC_USART1) Base Address */
#define USART2 ((Usart *)0x40098000U) /**< \brief (USART2 ) Base Address */
#define PDC_USART2 ((Pdc *)0x40098100U) /**< \brief (PDC_USART2) Base Address */
#define USART3 ((Usart *)0x4009C000U) /**< \brief (USART3 ) Base Address */
#define PDC_USART3 ((Pdc *)0x4009C100U) /**< \brief (PDC_USART3) Base Address */
#define UDPHS ((Udphs *)0x400A4000U) /**< \brief (UDPHS ) Base Address */
#define ADC12B ((Adc12b *)0x400A8000U) /**< \brief (ADC12B ) Base Address */
#define PDC_ADC12B ((Pdc *)0x400A8100U) /**< \brief (PDC_ADC12B) Base Address */
#define ADC ((Adc *)0x400AC000U) /**< \brief (ADC ) Base Address */
#define PDC_ADC ((Pdc *)0x400AC100U) /**< \brief (PDC_ADC ) Base Address */
#define DMAC ((Dmac *)0x400B0000U) /**< \brief (DMAC ) Base Address */
#define SMC ((Smc *)0x400E0000U) /**< \brief (SMC ) Base Address */
#define MATRIX ((Matrix *)0x400E0200U) /**< \brief (MATRIX ) Base Address */
#define PMC ((Pmc *)0x400E0400U) /**< \brief (PMC ) Base Address */
#define UART ((Uart *)0x400E0600U) /**< \brief (UART ) Base Address */
#define PDC_UART ((Pdc *)0x400E0700U) /**< \brief (PDC_UART ) Base Address */
#define CHIPID ((Chipid *)0x400E0740U) /**< \brief (CHIPID ) Base Address */
#define EFC0 ((Efc *)0x400E0800U) /**< \brief (EFC0 ) Base Address */
#define EFC1 ((Efc *)0x400E0A00U) /**< \brief (EFC1 ) Base Address */
#define PIOA ((Pio *)0x400E0C00U) /**< \brief (PIOA ) Base Address */
#define PIOB ((Pio *)0x400E0E00U) /**< \brief (PIOB ) Base Address */
#define PIOC ((Pio *)0x400E1000U) /**< \brief (PIOC ) Base Address */
#define RSTC ((Rstc *)0x400E1200U) /**< \brief (RSTC ) Base Address */
#define SUPC ((Supc *)0x400E1210U) /**< \brief (SUPC ) Base Address */
#define RTT ((Rtt *)0x400E1230U) /**< \brief (RTT ) Base Address */
#define WDT ((Wdt *)0x400E1250U) /**< \brief (WDT ) Base Address */
#define RTC ((Rtc *)0x400E1260U) /**< \brief (RTC ) Base Address */
#define GPBR ((Gpbr *)0x400E1290U) /**< \brief (GPBR ) Base Address */
#endif /* __ASSEMBLY__ */
/*@}*/
/* ************************************************************************** */
/* PIO DEFINITIONS FOR SAM3U1E */
/* ************************************************************************** */
/** \addtogroup SAM3U1E_pio Peripheral Pio Definitions */
/*@{*/
#include "pio/sam3u1e.h"
/*@}*/
/* ************************************************************************** */
/* MEMORY MAPPING DEFINITIONS FOR SAM3U1E */
/* ************************************************************************** */
#define IFLASH_SIZE 0x10000
#define IFLASH_PAGE_SIZE 256
#define IFLASH_LOCK_REGION_SIZE 8192
#define IFLASH_NB_OF_PAGES 32
#define IRAM_SIZE 0x5000
#define IFLASH0_ADDR (0x00080000u) /**< Internal Flash 0 base address */
#if defined IFLASH0_SIZE
#define IFLASH1_ADDR (IFLASH0_ADDR+IFLASH0_SIZE) /**< Internal Flash 1 base address */
#endif
#define IROM_ADDR (0x00180000u) /**< Internal ROM base address */
#define IRAM0_ADDR (0x20000000u) /**< Internal RAM 0 base address */
#define IRAM1_ADDR (0x20080000u) /**< Internal RAM 1 base address */
#define NFC_RAM_ADDR (0x20100000u) /**< NAND Flash Controller RAM base address */
#define UDPHS_RAM_ADDR (0x20180000u) /**< USB High Speed Device Port RAM base address */
#ifdef __cplusplus
}
#endif
/*@}*/
#endif /* _SAM3U1E_ */