Robobo
component_rstc.h
1 /* ----------------------------------------------------------------------------
2  * SAM Software Package License
3  * ----------------------------------------------------------------------------
4  * Copyright (c) 2012, Atmel Corporation
5  *
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following condition is met:
10  *
11  * - Redistributions of source code must retain the above copyright notice,
12  * this list of conditions and the disclaimer below.
13  *
14  * Atmel's name may not be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
20  * DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
23  * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
26  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  * ----------------------------------------------------------------------------
28  */
29 
30 #ifndef _SAM3N_RSTC_COMPONENT_
31 #define _SAM3N_RSTC_COMPONENT_
32 
33 /* ============================================================================= */
35 /* ============================================================================= */
38 
39 #if !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
40 
41 typedef struct {
45 } Rstc;
46 #endif /* !(defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
47 /* -------- RSTC_CR : (RSTC Offset: 0x00) Control Register -------- */
48 #define RSTC_CR_PROCRST (0x1u << 0)
49 #define RSTC_CR_PERRST (0x1u << 2)
50 #define RSTC_CR_EXTRST (0x1u << 3)
51 #define RSTC_CR_KEY_Pos 24
52 #define RSTC_CR_KEY_Msk (0xffu << RSTC_CR_KEY_Pos)
53 #define RSTC_CR_KEY(value) ((RSTC_CR_KEY_Msk & ((value) << RSTC_CR_KEY_Pos)))
54 /* -------- RSTC_SR : (RSTC Offset: 0x04) Status Register -------- */
55 #define RSTC_SR_URSTS (0x1u << 0)
56 #define RSTC_SR_RSTTYP_Pos 8
57 #define RSTC_SR_RSTTYP_Msk (0x7u << RSTC_SR_RSTTYP_Pos)
58 #define RSTC_SR_NRSTL (0x1u << 16)
59 #define RSTC_SR_SRCMP (0x1u << 17)
60 /* -------- RSTC_MR : (RSTC Offset: 0x08) Mode Register -------- */
61 #define RSTC_MR_URSTEN (0x1u << 0)
62 #define RSTC_MR_URSTIEN (0x1u << 4)
63 #define RSTC_MR_ERSTL_Pos 8
64 #define RSTC_MR_ERSTL_Msk (0xfu << RSTC_MR_ERSTL_Pos)
65 #define RSTC_MR_ERSTL(value) ((RSTC_MR_ERSTL_Msk & ((value) << RSTC_MR_ERSTL_Pos)))
66 #define RSTC_MR_KEY_Pos 24
67 #define RSTC_MR_KEY_Msk (0xffu << RSTC_MR_KEY_Pos)
68 #define RSTC_MR_KEY(value) ((RSTC_MR_KEY_Msk & ((value) << RSTC_MR_KEY_Pos)))
69 
73 #endif /* _SAM3N_RSTC_COMPONENT_ */
volatile uint32_t RwReg
Definition: sam3n00a.h:54
volatile uint32_t WoReg
Definition: sam3n00a.h:53
RwReg RSTC_MR
(Rstc Offset: 0x08) Mode Register
Definition: component_rstc.h:44
WoReg RSTC_CR
(Rstc Offset: 0x00) Control Register
Definition: component_rstc.h:42
Rstc hardware registers.
Definition: component_rstc.h:41
volatile const uint32_t RoReg
Definition: sam3n00a.h:49
RoReg RSTC_SR
(Rstc Offset: 0x04) Status Register
Definition: component_rstc.h:43