aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-24 06:58:23 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-24 06:58:23 +0000
commit071fd8ce536522ca6365580d64cd465e4c18a031 (patch)
tree604c4881c36b11f37d0203f9466d6078080847b7 /LUFA/Common
parenta7aaa45ec4c3f415bf6073a5cc016635d5ecf77d (diff)
downloadlufa-071fd8ce536522ca6365580d64cd465e4c18a031.tar.gz
lufa-071fd8ce536522ca6365580d64cd465e4c18a031.tar.bz2
lufa-071fd8ce536522ca6365580d64cd465e4c18a031.zip
Revert changes made for the partial port to the AVR32 architecture.
Diffstat (limited to 'LUFA/Common')
-rw-r--r--LUFA/Common/Atomic.h99
-rw-r--r--LUFA/Common/BoardTypes.h3
-rw-r--r--LUFA/Common/Common.h27
3 files changed, 2 insertions, 127 deletions
diff --git a/LUFA/Common/Atomic.h b/LUFA/Common/Atomic.h
deleted file mode 100644
index 81ac10cc6..000000000
--- a/LUFA/Common/Atomic.h
+++ /dev/null
@@ -1,99 +0,0 @@
-/*
- LUFA Library
- Copyright (C) Dean Camera, 2010.
-
- dean [at] fourwalledcubicle [dot] com
- www.fourwalledcubicle.com
-*/
-
-/*
- Copyright 2010 Dean Camera (dean [at] fourwalledcubicle [dot] com)
-
- Permission to use, copy, modify, distribute, and sell this
- software and its documentation for any purpose is hereby granted
- without fee, provided that the above copyright notice appear in
- all copies and that both that the copyright notice and this
- permission notice and warranty disclaimer appear in supporting
- documentation, and that the name of the author not be used in
- advertising or publicity pertaining to distribution of the
- software without specific, written prior permission.
-
- The author disclaim all warranties with regard to this
- software, including all implied warranties of merchantability
- and fitness. In no event shall the author be liable for any
- special, indirect or consequential damages or any damages
- whatsoever resulting from loss of use, data or profits, whether
- in an action of contract, negligence or other tortious action,
- arising out of or in connection with the use or performance of
- this software.
-*/
-
-/** \file
- *
- * Atomic block header for the 32-bit AVRs, modelled on the 8-bit AVR's util/atomic.h
- * header.
- *
- * \note Do not include this file directly, rather include the Common.h header file instead to gain this file's
- * functionality on the 32-bit AVRs.
- */
-
-#ifndef __ATOMIC_H__
-#define __ATOMIC_H__
-
- /* Includes: */
- #include <avr32/io.h>
- #include <stdint.h>
- #include <stdbool.h>
-
- /* Public Interface - May be used in end-application: */
- /* Macros: */
- #define ATOMIC_BLOCK(type) for ( type, __ToDo = __iCliRetVal(); \
- __ToDo ; __ToDo = 0 )
- #define NONATOMIC_BLOCK(type) for ( type, __ToDo = __iSeiRetVal(); \
- __ToDo ; __ToDo = 0 )
- #define ATOMIC_RESTORESTATE uint8_t sreg_save \
- __attribute__((__cleanup__(__iRestore))) = 0 /* TODO */
- #define ATOMIC_FORCEON uint8_t sreg_save \
- __attribute__((__cleanup__(__iSeiParam))) = 0
- #define NONATOMIC_RESTORESTATE uint8_t sreg_save \
- __attribute__((__cleanup__(__iRestore))) = 0 /* TODO */
- #define NONATOMIC_FORCEOFF uint8_t sreg_save \
- __attribute__((__cleanup__(__iCliParam))) = 0
-
- /* Private Interface - For use in library only: */
- #if !defined(__DOXYGEN__)
- /* Inline Functions: */
- static __inline__ uint8_t __iSeiRetVal(void)
- {
- ((avr32_sr_t*)AVR32_SR_T)->gm = true;
- return 1;
- }
-
- static __inline__ uint8_t __iCliRetVal(void)
- {
- ((avr32_sr_t*)AVR32_SR_T)->gm = false;
- return 1;
- }
-
- static __inline__ void __iSeiParam(const uint8_t *__s)
- {
- ((avr32_sr_t*)AVR32_SR_T)->gm = true;
- __asm__ volatile ("" ::: "memory");
- (void)__s;
- }
-
- static __inline__ void __iCliParam(const uint8_t *__s)
- {
- ((avr32_sr_t*)AVR32_SR_T)->gm = false;
- __asm__ volatile ("" ::: "memory");
- (void)__s;
- }
-
- static __inline__ void __iRestore(const uint8_t *__s)
- {
- ((avr32_sr_t*)AVR32_SR_T)->gm = *__s;
- __asm__ volatile ("" ::: "memory");
- }
- #endif
-
-#endif
diff --git a/LUFA/Common/BoardTypes.h b/LUFA/Common/BoardTypes.h
index 43b692dbd..10e31ac1b 100644
--- a/LUFA/Common/BoardTypes.h
+++ b/LUFA/Common/BoardTypes.h
@@ -94,9 +94,6 @@
* such as the Joystick driver, where the removal would adversely affect the code's operation is still disallowed. */
#define BOARD_NONE 10
- /** Selects the EVK1101 specific board drivers, including Temperature, Button, Dataflash, Joystick and LED drivers. */
- #define BOARD_EVK1101 11
-
#if !defined(__DOXYGEN__)
#define BOARD_ BOARD_NONE
diff --git a/LUFA/Common/Common.h b/LUFA/Common/Common.h
index 74b687b40..2ddb58c8c 100644
--- a/LUFA/Common/Common.h
+++ b/LUFA/Common/Common.h
@@ -56,17 +56,8 @@
#define __COMMON_H__
/* Includes: */
- #if defined(__AVR32__)
- #include <avr32/io.h>
- #include <stdint.h>
-
- #include "Atomic.h"
-
- #define PROGMEM const
- #elif defined(__AVR__)
- #include <avr/io.h>
- #endif
-
+ #include <avr/io.h>
+
#include "FunctionAttributes.h"
#include "BoardTypes.h"
@@ -188,20 +179,6 @@
}
}
- /* Type Defines: */
- #if defined(__AVR32__)
- /** Type define for an unsigned native word-sized chunk of data. */
- typedef uint32_t uintN_t;
-
- /** Type define for a signed native word-sized chunk of data. */
- typedef int32_t intN_t;
- #elif defined(__AVR__)
- /** Type define for an unsigned native word-sized chunk of data. */
- typedef uint8_t uintN_t;
-
- /** Type define for a signed native word-sized chunk of data. */
- typedef int8_t intN_t;
- #endif
#endif
/** @} */