source: rtos_arduino/trunk/arduino_lib/hardware/tools/CMSIS/Device/ATMEL/samd21/include/instance/pm.h@ 136

Last change on this file since 136 was 136, checked in by ertl-honda, 8 years ago

ライブラリとOS及びベーシックなサンプルの追加.

File size: 4.7 KB
Line 
1/**
2 * \file
3 *
4 * \brief Instance description for PM
5 *
6 * Copyright (c) 2014 Atmel Corporation. All rights reserved.
7 *
8 * \asf_license_start
9 *
10 * \page License
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions are met:
14 *
15 * 1. Redistributions of source code must retain the above copyright notice,
16 * this list of conditions and the following disclaimer.
17 *
18 * 2. Redistributions in binary form must reproduce the above copyright notice,
19 * this list of conditions and the following disclaimer in the documentation
20 * and/or other materials provided with the distribution.
21 *
22 * 3. The name of Atmel may not be used to endorse or promote products derived
23 * from this software without specific prior written permission.
24 *
25 * 4. This software may only be redistributed and used in connection with an
26 * Atmel microcontroller product.
27 *
28 * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED
29 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
30 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
31 * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR
32 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
36 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
37 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38 * POSSIBILITY OF SUCH DAMAGE.
39 *
40 * \asf_license_stop
41 *
42 */
43
44#ifndef _SAMD21_PM_INSTANCE_
45#define _SAMD21_PM_INSTANCE_
46
47/* ========== Register definition for PM peripheral ========== */
48#if (defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__))
49#define REG_PM_CTRL (0x40000400U) /**< \brief (PM) Control */
50#define REG_PM_SLEEP (0x40000401U) /**< \brief (PM) Sleep Mode */
51#define REG_PM_CPUSEL (0x40000408U) /**< \brief (PM) CPU Clock Select */
52#define REG_PM_APBASEL (0x40000409U) /**< \brief (PM) APBA Clock Select */
53#define REG_PM_APBBSEL (0x4000040AU) /**< \brief (PM) APBB Clock Select */
54#define REG_PM_APBCSEL (0x4000040BU) /**< \brief (PM) APBC Clock Select */
55#define REG_PM_AHBMASK (0x40000414U) /**< \brief (PM) AHB Mask */
56#define REG_PM_APBAMASK (0x40000418U) /**< \brief (PM) APBA Mask */
57#define REG_PM_APBBMASK (0x4000041CU) /**< \brief (PM) APBB Mask */
58#define REG_PM_APBCMASK (0x40000420U) /**< \brief (PM) APBC Mask */
59#define REG_PM_INTENCLR (0x40000434U) /**< \brief (PM) Interrupt Enable Clear */
60#define REG_PM_INTENSET (0x40000435U) /**< \brief (PM) Interrupt Enable Set */
61#define REG_PM_INTFLAG (0x40000436U) /**< \brief (PM) Interrupt Flag Status and Clear */
62#define REG_PM_RCAUSE (0x40000438U) /**< \brief (PM) Reset Cause */
63#else
64#define REG_PM_CTRL (*(RwReg8 *)0x40000400U) /**< \brief (PM) Control */
65#define REG_PM_SLEEP (*(RwReg8 *)0x40000401U) /**< \brief (PM) Sleep Mode */
66#define REG_PM_CPUSEL (*(RwReg8 *)0x40000408U) /**< \brief (PM) CPU Clock Select */
67#define REG_PM_APBASEL (*(RwReg8 *)0x40000409U) /**< \brief (PM) APBA Clock Select */
68#define REG_PM_APBBSEL (*(RwReg8 *)0x4000040AU) /**< \brief (PM) APBB Clock Select */
69#define REG_PM_APBCSEL (*(RwReg8 *)0x4000040BU) /**< \brief (PM) APBC Clock Select */
70#define REG_PM_AHBMASK (*(RwReg *)0x40000414U) /**< \brief (PM) AHB Mask */
71#define REG_PM_APBAMASK (*(RwReg *)0x40000418U) /**< \brief (PM) APBA Mask */
72#define REG_PM_APBBMASK (*(RwReg *)0x4000041CU) /**< \brief (PM) APBB Mask */
73#define REG_PM_APBCMASK (*(RwReg *)0x40000420U) /**< \brief (PM) APBC Mask */
74#define REG_PM_INTENCLR (*(RwReg8 *)0x40000434U) /**< \brief (PM) Interrupt Enable Clear */
75#define REG_PM_INTENSET (*(RwReg8 *)0x40000435U) /**< \brief (PM) Interrupt Enable Set */
76#define REG_PM_INTFLAG (*(RwReg8 *)0x40000436U) /**< \brief (PM) Interrupt Flag Status and Clear */
77#define REG_PM_RCAUSE (*(RoReg8 *)0x40000438U) /**< \brief (PM) Reset Cause */
78#endif /* (defined(__ASSEMBLY__) || defined(__IAR_SYSTEMS_ASM__)) */
79
80/* ========== Instance parameters for PM peripheral ========== */
81#define PM_CTRL_MCSEL_DFLL48M 3
82#define PM_CTRL_MCSEL_GCLK 0
83#define PM_CTRL_MCSEL_OSC8M 1
84#define PM_CTRL_MCSEL_XOSC 2
85#define PM_PM_CLK_APB_NUM 2
86
87#endif /* _SAMD21_PM_INSTANCE_ */
Note: See TracBrowser for help on using the repository browser.