AVR-LibC  2.3.0git
Standard C library for AVR-GCC
 

AVR-LibC Documen­tation

AVR-LibC Development Pages

Main Page

User Manual

Library Refe­rence

FAQ

Example Projects

File List

Index

Loading...
Searching...
No Matches
xmega.h
1/* Copyright (c) 2012 Joerg Wunsch
2 All rights reserved.
3
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6
7 * Redistributions of source code must retain the above copyright
8 notice, this list of conditions and the following disclaimer.
9
10 * Redistributions in binary form must reproduce the above copyright
11 notice, this list of conditions and the following disclaimer in
12 the documentation and/or other materials provided with the
13 distribution.
14
15 * Neither the name of the copyright holders nor the names of
16 contributors may be used to endorse or promote products derived
17 from this software without specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 POSSIBILITY OF SUCH DAMAGE. */
30
31/*
32 * This file is included by <avr/io.h> whenever compiling for an Xmega
33 * device. It abstracts certain features common to the Xmega device
34 * families.
35 */
36
37#ifndef _AVR_XMEGA_H
38#define _AVR_XMEGA_H
39
40#ifdef __DOXYGEN__
41/**
42 \def _PROTECTED_WRITE
43 \ingroup avr_io
44
45 Write value \c value to IO register \c reg that is protected through
46 the Xmega configuration change protection (CCP) mechanism. This
47 implements the timed sequence that is required for CCP.
48
49 Example to modify the CPU clock:
50 \code
51 #include <avr/io.h>
52
53 _PROTECTED_WRITE(CLK_PSCTRL, CLK_PSADIV0_bm);
54 _PROTECTED_WRITE(CLK_CTRL, CLK_SCLKSEL0_bm);
55 \endcode
56 */
57#define _PROTECTED_WRITE(reg, value)
58
59/**
60 \def _PROTECTED_WRITE_SPM
61 \ingroup avr_io
62
63 Write value \c value to register \c reg that is protected through
64 the Xmega configuration change protection (CCP) key for self
65 programming (SPM). This implements the timed sequence that is
66 required for CCP.
67
68 Example to modify the CPU clock:
69 \code
70 #include <avr/io.h>
71
72 _PROTECTED_WRITE_SPM(NVMCTRL_CTRLA, NVMCTRL_CMD_PAGEERASEWRITE_gc);
73 \endcode
74 */
75#define _PROTECTED_WRITE_SPM(reg, value)
76
77#else /* !__DOXYGEN__ */
78
79#define _PROTECTED_WRITE(reg, value) \
80 __asm__ __volatile__("out %[ccp], %[ccp_ioreg]" "\n\t" \
81 "sts %[ioreg], %[val]" \
82 : \
83 : [ccp] "I" (_SFR_IO_ADDR(CCP)), \
84 [ccp_ioreg] "d" ((uint8_t)CCP_IOREG_gc), \
85 [ioreg] "n" (_SFR_MEM_ADDR(reg)), \
86 [val] "r" ((uint8_t)value))
87
88#define _PROTECTED_WRITE_SPM(reg, value) \
89 __asm__ __volatile__("out %[ccp], %[ccp_spm_mask]" "\n\t" \
90 "sts %[ioreg], %[val]" \
91 : \
92 : [ccp] "I" (_SFR_IO_ADDR(CCP)), \
93 [ccp_spm_mask] "d" ((uint8_t)CCP_SPM_gc), \
94 [ioreg] "n" (_SFR_MEM_ADDR(reg)), \
95 [val] "r" ((uint8_t)value))
96#endif /* DOXYGEN */
97
98#endif /* _AVR_XMEGA_H */