sam3n port: add some peripheral register definitions.
authoraleph <aleph@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 15 Oct 2010 19:53:04 +0000 (19:53 +0000)
committeraleph <aleph@38d2e660-2303-0410-9eaa-f027e97ec537>
Fri, 15 Oct 2010 19:53:04 +0000 (19:53 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4433 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/cortex-m3/io/sam3.h
bertos/cpu/cortex-m3/io/sam3_ints.h [new file with mode: 0644]
bertos/cpu/cortex-m3/io/sam3_spi.h [new file with mode: 0644]
bertos/cpu/cortex-m3/io/sam3_usart.h [new file with mode: 0644]
bertos/cpu/cortex-m3/io/sam3_wdt.h [new file with mode: 0644]

index fc724ba855b632f365a83c33d826b830ad93bee6..2444f3ae50d1e48e2ee33c05c00897204b9a46e4 100644 (file)
 
 #include "sam3_sysctl.h"
 #include "sam3_pmc.h"
-#include "sam3_memmap.h"
 #include "sam3_ints.h"
 #include "sam3_pio.h"
 #include "sam3_nvic.h"
 #include "sam3_uart.h"
-#include "sam3_us.h"
+#include "sam3_usart.h"
 #include "sam3_spi.h"
 #include "sam3_flash.h"
 #include "sam3_wdt.h"
diff --git a/bertos/cpu/cortex-m3/io/sam3_ints.h b/bertos/cpu/cortex-m3/io/sam3_ints.h
new file mode 100644 (file)
index 0000000..422ff51
--- /dev/null
@@ -0,0 +1,78 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \brief AT91SAM3 interrupt definitions.
+ */
+
+#ifndef SAM3_INTS_H
+#define SAM3_INTS_H
+
+/**
+ * Defines for the interrupt assignments.
+ */
+/*\{*/
+#define INT_SUPC     0  ///< Supply Controller (SUPC)
+#define INT_RSTC     1  ///< Reset Controller (RSTC)
+#define INT_RTC      2  ///< Real Time Clock (RTC)
+#define INT_RTT      3  ///< Real Time Timer (RTT)
+#define INT_WDT      4  ///< Watchdog Timer (WDT)
+#define INT_PMC      5  ///< Power Management Controller (PMC)
+#define INT_EFC      6  ///< Enhanced Flash Controller (EFC)
+#define INT_UART0    8  ///< UART 0 (UART0)
+#define INT_UART1    9  ///< UART 1 (UART1)
+#define INT_PIOA    11  ///< Parallel I/O Controller A (PIOA)
+#define INT_PIOB    12  ///< Parallel I/O Controller B (PIOB)
+#define INT_PIOC    13  ///< Parallel I/O Controller C (PIOC)
+#define INT_USART0  14  ///< USART 0 (USART0)
+#define INT_USART1  15  ///< USART 1 (USART1)
+#define INT_TWI0    19  ///< Two Wire Interface 0 (TWI0)
+#define INT_TWI1    20  ///< Two Wire Interface 1 (TWI1)
+#define INT_SPI     21  ///< Serial Peripheral Interface (SPI)
+#define INT_TC0     23  ///< Timer/Counter 0 (TC0)
+#define INT_TC1     24  ///< Timer/Counter 1 (TC1)
+#define INT_TC2     25  ///< Timer/Counter 2 (TC2)
+#define INT_TC3     26  ///< Timer/Counter 3 (TC3)
+#define INT_TC4     27  ///< Timer/Counter 4 (TC4)
+#define INT_TC5     28  ///< Timer/Counter 5 (TC5)
+#define INT_ADC     29  ///< Analog To Digital Converter (ADC)
+#define INT_DACC    30  ///< Digital To Analog Converter (DACC)
+#define INT_PWM     31  ///< Pulse Width Modulation (PWM)
+/*\}*/
+
+/**
+ * Total number of interrupts.
+ */
+/*\{*/
+#define NUM_INTERRUPTS  32
+/*\}*/
+
+#endif /* SAM3_INTS_H */
diff --git a/bertos/cpu/cortex-m3/io/sam3_spi.h b/bertos/cpu/cortex-m3/io/sam3_spi.h
new file mode 100644 (file)
index 0000000..9785995
--- /dev/null
@@ -0,0 +1,286 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2007,2010 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ *
+ * \author Francesco Sacchi <batt@develer.com>
+ *
+ * ATSAM3 SPI register definitions.
+ * This file is based on NUT/OS implementation. See license below.
+
+ */
+
+/*
+ * Copyright (C) 2006-2007 by egnite Software GmbH. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
+ * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * For additional information see http://www.ethernut.de/
+
+ */
+
+#ifndef SAM3_SPI_H
+#define SAM3_SPI_H
+
+/**
+ * SPI base addresses.
+ */
+#define SPI0_BASE  0x40008000
+
+/**
+ * SPI Control Register
+ */
+/*\{*/
+#define        SPI_CR_OFF          0x00000000  ///< Control register offset.
+
+#define SPI_SPIEN                0  ///< SPI enable.
+#define SPI_SPIDIS               1  ///< SPI disable.
+#define SPI_SWRST                7  ///< Software reset.
+#define SPI_LASTXFER            24  ///< Last transfer.
+/*\}*/
+
+/**
+ * SPI Mode Register
+ */
+/*\{*/
+#define SPI_MR_OFF             0x00000004  ///< Mode register offset.
+
+#define SPI_MSTR                 0  ///< Master mode.
+#define SPI_PS                   1  ///< Peripheral select.
+#define SPI_PCSDEC               2 ///< Chip select decode.
+#define SPI_FDIV                 3  ///< Clock selection.
+#define SPI_MODFDIS              4  ///< Mode fault detection.
+#define SPI_LLB                  7  ///< Local loopback enable.
+#define SPI_PCS         0x000F0000  ///< Peripheral chip select mask.
+#define SPI_PCS_0       0x000E0000  ///< Peripheral chip select 0.
+#define SPI_PCS_1       0x000D0000  ///< Peripheral chip select 1.
+#define SPI_PCS_2       0x000B0000  ///< Peripheral chip select 2.
+#define SPI_PCS_3       0x00070000  ///< Peripheral chip select 3.
+#define SPI_PCS_SHIFT           16  ///< Least significant bit of peripheral chip select.
+#define SPI_DLYBCS      0xFF000000  ///< Mask for delay between chip selects.
+#define SPI_DLYBCS_SHIFT        24  ///< Least significant bit of delay between chip selects.
+/*\}*/
+
+/**
+ * SPI Receive Data Register
+ */
+/*\{*/
+#define SPI_RDR_OFF            0x00000008  ///< Receive data register offset.
+
+#define SPI_RD          0x0000FFFF  ///< Receive data mask.
+#define SPI_RD_SHIFT             0  ///< Least significant bit of receive data.
+/*\}*/
+
+/**
+ * SPI Transmit Data Register
+ */
+/*\{*/
+#define SPI_TDR_OFF            0x0000000C  ///< Transmit data register offset.
+
+#define SPI_TD          0x0000FFFF  ///< Transmit data mask.
+#define SPI_TD_SHIFT             0  ///< Least significant bit of transmit data.
+/*\}*/
+
+/**
+ * SPI Status and Interrupt Register
+ */
+/*\{*/
+#define SPI_SR_OFF             0x00000010  ///< Status register offset.
+#define SPI_IER_OFF            0x00000014  ///< Interrupt enable register offset.
+#define SPI_IDR_OFF            0x00000018  ///< Interrupt disable register offset.
+#define SPI_IMR_OFF            0x0000001C  ///< Interrupt mask register offset.
+
+#define SPI_RDRF                 0  ///< Receive data register full.
+#define SPI_TDRE                 1  ///< Transmit data register empty.
+#define SPI_MODF                 2  ///< Mode fault error.
+#define SPI_OVRES                3  ///< Overrun error status.
+#define SPI_ENDRX                4  ///< End of RX buffer.
+#define SPI_ENDTX                5  ///< End of TX buffer.
+#define SPI_RXBUFF               6  ///< RX buffer full.
+#define SPI_TXBUFE               7  ///< TX buffer empty.
+#define SPI_NSSR                 8  ///< NSS rising.
+#define SPI_TXEMPTY              9  ///< Transmission register empty.
+#define SPI_SPIENS              16  ///< SPI enable status.
+/*\}*/
+
+/**
+ * SPI Chip Select Registers
+ */
+/*\{*/
+#define SPI_CSR0_OFF   0x00000030  ///< Chip select register 0 offset.
+#define SPI_CSR1_OFF   0x00000034  ///< Chip select register 1 offset.
+#define SPI_CSR2_OFF   0x00000038  ///< Chip select register 2 offset.
+#define SPI_CSR3_OFF    0x0000003C  ///< Chip select register 3 offset.
+
+#define SPI_CPOL                 0  ///< Clock polarity.
+#define SPI_NCPHA                1  ///< Clock phase.
+#define SPI_CSAAT                3  ///< Chip select active after transfer.
+#define SPI_BITS        0x000000F0  ///< Bits per transfer mask.
+#define SPI_BITS_8      0x00000000  ///< 8 bits per transfer.
+#define SPI_BITS_9      0x00000010  ///< 9 bits per transfer.
+#define SPI_BITS_10     0x00000020  ///< 10 bits per transfer.
+#define SPI_BITS_11     0x00000030  ///< 11 bits per transfer.
+#define SPI_BITS_12     0x00000040  ///< 12 bits per transfer.
+#define SPI_BITS_13     0x00000050  ///< 13 bits per transfer.
+#define SPI_BITS_14     0x00000060  ///< 14 bits per transfer.
+#define SPI_BITS_15     0x00000070  ///< 15 bits per transfer.
+#define SPI_BITS_16     0x00000080  ///< 16 bits per transfer.
+#define SPI_BITS_SHIFT           4  ///< Least significant bit of bits per transfer.
+#define SPI_SCBR        0x0000FF00  ///< Serial clock baud rate mask.
+#define SPI_SCBR_SHIFT           8  ///< Least significant bit of serial clock baud rate.
+#define SPI_DLYBS       0x00FF0000  ///< Delay before SPCK mask.
+#define SPI_DLYBS_SHIFT         16  ///< Least significant bit of delay before SPCK.
+#define SPI_DLYBCT      0xFF000000  ///< Delay between consecutive transfers mask.
+#define SPI_DLYBCT_SHIFT        24  ///< Least significant bit of delay between consecutive transfers.
+/*\}*/
+
+/**
+ * Single SPI Register Addresses
+ */
+/*\{*/
+#if defined(SPI_BASE)
+       #define SPI0_BASE   SPI_BASE
+       #define SPI_CR          (*((reg32_t *)(SPI0_BASE + SPI0_CR_OFF)))     ///< SPI Control Register Write-only.
+       #define SPI_MR          (*((reg32_t *)(SPI0_BASE + SPI0_MR_OFF)))     ///< SPI Mode Register Read/Write Reset=0x0.
+       #define SPI_RDR         (*((reg32_t *)(SPI0_BASE + SPI0_RDR_OFF)))    ///< SPI Receive Data Register Read-only Reset=0x0.
+       #define SPI_TDR         (*((reg32_t *)(SPI0_BASE + SPI0_TDR_OFF)))    ///< SPI Transmit Data Register Write-only .
+       #define SPI_SR          (*((reg32_t *)(SPI0_BASE + SPI0_SR_OFF)))     ///< SPI Status Register Read-only Reset=0x000000F0.
+       #define SPI_IER         (*((reg32_t *)(SPI0_BASE + SPI0_IER_OFF)))    ///< SPI Interrupt Enable Register Write-only.
+       #define SPI_IDR         (*((reg32_t *)(SPI0_BASE + SPI0_IDR_OFF)))    ///< SPI Interrupt Disable Register Write-only.
+       #define SPI_IMR         (*((reg32_t *)(SPI0_BASE + SPI0_IMR_OFF)))    ///< SPI Interrupt Mask Register Read-only Reset=0x0.
+       #define SPI_CSR0        (*((reg32_t *)(SPI0_BASE + SPI0_CSR0_OFF)))   ///< SPI Chip Select Register 0 Read/Write Reset=0x0.
+       #define SPI_CSR1        (*((reg32_t *)(SPI0_BASE + SPI0_CSR1_OFF)))   ///< SPI Chip Select Register 1 Read/Write Reset=0x0.
+       #define SPI_CSR2        (*((reg32_t *)(SPI0_BASE + SPI0_CSR2_OFF)))   ///< SPI Chip Select Register 2 Read/Write Reset=0x0.
+       #define SPI_CSR3        (*((reg32_t *)(SPI0_BASE + SPI0_CSR3_OFF)))   ///< SPI Chip Select Register 3 Read/Write Reset=0x0.
+       #if defined(SPI_HAS_PDC)
+               #define SPI_RPR     (*((reg32_t *)(SPI0_BASE + SPI0_RPR_OFF)))    ///< PDC channel 0 receive pointer register.
+               #define SPI_RCR     (*((reg32_t *)(SPI0_BASE + SPI0_RCR_OFF)))    ///< PDC channel 0 receive counter register.
+               #define SPI_TPR     (*((reg32_t *)(SPI0_BASE + SPI0_TPR_OFF)))    ///< PDC channel 0 transmit pointer register.
+               #define SPI_TCR     (*((reg32_t *)(SPI0_BASE + SPI0_TCR_OFF)))    ///< PDC channel 0 transmit counter register.
+               #define SPI_RNPR    (*((reg32_t *)(SPI0_BASE + SPI0_RNPR_OFF)))   ///< PDC channel 0 receive next pointer register.
+               #define SPI_RNCR    (*((reg32_t *)(SPI0_BASE + SPI0_RNCR_OFF)))   ///< PDC channel 0 receive next counter register.
+               #define SPI_TNPR    (*((reg32_t *)(SPI0_BASE + SPI0_TNPR_OFF)))   ///< PDC channel 0 transmit next pointer register.
+               #define SPI_TNCR    (*((reg32_t *)(SPI0_BASE + SPI0_TNCR_OFF)))   ///< PDC channel 0 transmit next counter register.
+               #define SPI_PTCR    (*((reg32_t *)(SPI0_BASE + SPI0_PTCR_OFF)))   ///< PDC channel 0 transfer control register.
+               #define SPI_PTSR    (*((reg32_t *)(SPI0_BASE + SPI0_PTSR_OFF)))   ///< PDC channel 0 transfer status register.
+       #endif /* SPI_HAS_PDC */
+#endif /* SPI_BASE */
+/*\}*/
+
+/**
+ * SPI 0 Register Addresses
+ */
+/*\{*/
+#if defined(SPI0_BASE)
+       #define SPI0_CR         (*((reg32_t *)(SPI0_BASE + SPI_CR_OFF)))        ///< SPI Control Register Write-only.
+       #define SPI0_MR         (*((reg32_t *)(SPI0_BASE + SPI_MR_OFF)))        ///< SPI Mode Register Read/Write Reset=0x0.
+       #define SPI0_RDR        (*((reg32_t *)(SPI0_BASE + SPI_RDR_OFF)))       ///< SPI Receive Data Register Read-only Reset=0x0.
+       #define SPI0_TDR        (*((reg32_t *)(SPI0_BASE + SPI_TDR_OFF)))       ///< SPI Transmit Data Register Write-only .
+       #define SPI0_SR         (*((reg32_t *)(SPI0_BASE + SPI_SR_OFF)))        ///< SPI Status Register Read-only Reset=0x000000F0.
+       #define SPI0_IER        (*((reg32_t *)(SPI0_BASE + SPI_IER_OFF)))       ///< SPI Interrupt Enable Register Write-only.
+       #define SPI0_IDR        (*((reg32_t *)(SPI0_BASE + SPI_IDR_OFF)))       ///< SPI Interrupt Disable Register Write-only.
+       #define SPI0_IMR        (*((reg32_t *)(SPI0_BASE + SPI_IMR_OFF)))       ///< SPI Interrupt Mask Register Read-only Reset=0x0.
+       #define SPI0_CSR0       (*((reg32_t *)(SPI0_BASE + SPI_CSR0_OFF)))      ///< SPI Chip Select Register 0 Read/Write Reset=0x0.
+       #define SPI0_CSR1       (*((reg32_t *)(SPI0_BASE + SPI_CSR1_OFF)))      ///< SPI Chip Select Register 1 Read/Write Reset=0x0.
+       #define SPI0_CSR2       (*((reg32_t *)(SPI0_BASE + SPI_CSR2_OFF)))      ///< SPI Chip Select Register 2 Read/Write Reset=0x0.
+       #define SPI0_CSR3       (*((reg32_t *)(SPI0_BASE + SPI_CSR3_OFF)))      ///< SPI Chip Select Register 3 Read/Write Reset=0x0.
+       #if defined(SPI_HAS_PDC)
+               #define SPI0_RPR    (*((reg32_t *)(SPI0_BASE + PERIPH_RPR_OFF)))    ///< PDC channel 0 receive pointer register.
+               #define SPI0_RCR    (*((reg32_t *)(SPI0_BASE + PERIPH_RCR_OFF)))    ///< PDC channel 0 receive counter register.
+               #define SPI0_TPR    (*((reg32_t *)(SPI0_BASE + PERIPH_TPR_OFF)))    ///< PDC channel 0 transmit pointer register.
+               #define SPI0_TCR    (*((reg32_t *)(SPI0_BASE + PERIPH_TCR_OFF)))    ///< PDC channel 0 transmit counter register.
+               #define SPI0_RNPR   (*((reg32_t *)(SPI0_BASE + PERIPH_RNPR_OFF)))   ///< PDC channel 0 receive next pointer register.
+               #define SPI0_RNCR   (*((reg32_t *)(SPI0_BASE + PERIPH_RNCR_OFF)))   ///< PDC channel 0 receive next counter register.
+               #define SPI0_TNPR   (*((reg32_t *)(SPI0_BASE + PERIPH_TNPR_OFF)))   ///< PDC channel 0 transmit next pointer register.
+               #define SPI0_TNCR   (*((reg32_t *)(SPI0_BASE + PERIPH_TNCR_OFF)))   ///< PDC channel 0 transmit next counter register.
+               #define SPI0_PTCR   (*((reg32_t *)(SPI0_BASE + PERIPH_PTCR_OFF)))   ///< PDC channel 0 transfer control register.
+               #define SPI0_PTSR   (*((reg32_t *)(SPI0_BASE + PERIPH_PTSR_OFF)))   ///< PDC channel 0 transfer status register.
+       #endif /* SPI_HAS_PDC */
+#endif /* SPI0_BASE */
+/*\}*/
+
+/**
+ * SPI 1 Register Addresses
+ */
+/*\{*/
+#if defined(SPI1_BASE)
+       #define SPI1_CR         (*((reg32_t *)(SPI1_BASE + SPI_CR_OFF)))        ///< SPI Control Register Write-only.
+       #define SPI1_MR         (*((reg32_t *)(SPI1_BASE + SPI_MR_OFF)))        ///< SPI Mode Register Read/Write Reset=0x0.
+       #define SPI1_RDR        (*((reg32_t *)(SPI1_BASE + SPI_RDR_OFF)))       ///< SPI Receive Data Register Read-only Reset=0x0.
+       #define SPI1_TDR        (*((reg32_t *)(SPI1_BASE + SPI_TDR_OFF)))       ///< SPI Transmit Data Register Write-only .
+       #define SPI1_SR         (*((reg32_t *)(SPI1_BASE + SPI_SR_OFF)))        ///< SPI Status Register Read-only Reset=0x000000F0.
+       #define SPI1_IER        (*((reg32_t *)(SPI1_BASE + SPI_IER_OFF)))       ///< SPI Interrupt Enable Register Write-only.
+       #define SPI1_IDR        (*((reg32_t *)(SPI1_BASE + SPI_IDR_OFF)))       ///< SPI Interrupt Disable Register Write-only.
+       #define SPI1_IMR        (*((reg32_t *)(SPI1_BASE + SPI_IMR_OFF)))       ///< SPI Interrupt Mask Register Read-only Reset=0x0.
+       #define SPI1_CSR0       (*((reg32_t *)(SPI1_BASE + SPI_CSR0_OFF)))      ///< SPI Chip Select Register 0 Read/Write Reset=0x0.
+       #define SPI1_CSR1       (*((reg32_t *)(SPI1_BASE + SPI_CSR1_OFF)))      ///< SPI Chip Select Register 1 Read/Write Reset=0x0.
+       #define SPI1_CSR2       (*((reg32_t *)(SPI1_BASE + SPI_CSR2_OFF)))      ///< SPI Chip Select Register 2 Read/Write Reset=0x0.
+       #define SPI1_CSR3       (*((reg32_t *)(SPI1_BASE + SPI_CSR3_OFF)))      ///< SPI Chip Select Register 3 Read/Write Reset=0x0.
+       #if defined(SPI_HAS_PDC)
+               #define SPI1_RPR    (*((reg32_t *)(SPI1_BASE + PERIPH_RPR_OFF)))    ///< PDC channel 1 receive pointer register.
+               #define SPI1_RCR    (*((reg32_t *)(SPI1_BASE + PERIPH_RCR_OFF)))    ///< PDC channel 1 receive counter register.
+               #define SPI1_TPR    (*((reg32_t *)(SPI1_BASE + PERIPH_TPR_OFF)))    ///< PDC channel 1 transmit pointer register.
+               #define SPI1_TCR    (*((reg32_t *)(SPI1_BASE + PERIPH_TCR_OFF)))    ///< PDC channel 1 transmit counter register.
+               #define SPI1_RNPR   (*((reg32_t *)(SPI1_BASE + PERIPH_RNPR_OFF)))   ///< PDC channel 1 receive next pointer register.
+               #define SPI1_RNCR   (*((reg32_t *)(SPI1_BASE + PERIPH_RNCR_OFF)))   ///< PDC channel 1 receive next counter register.
+               #define SPI1_TNPR   (*((reg32_t *)(SPI1_BASE + PERIPH_TNPR_OFF)))   ///< PDC channel 1 transmit next pointer register.
+               #define SPI1_TNCR   (*((reg32_t *)(SPI1_BASE + PERIPH_TNCR_OFF)))   ///< PDC channel 1 transmit next counter register.
+               #define SPI1_PTCR   (*((reg32_t *)(SPI1_BASE + PERIPH_PTCR_OFF)))   ///< PDC channel 1 transfer control register.
+               #define SPI1_PTSR   (*((reg32_t *)(SPI1_BASE + PERIPH_PTSR_OFF)))   ///< PDC channel 1 transfer status register.
+       #endif /* SPI_HAS_PDC */
+#endif /* SPI1_BASE */
+/*\}*/
+
+#endif  /* SAM3_SPI_H */
diff --git a/bertos/cpu/cortex-m3/io/sam3_usart.h b/bertos/cpu/cortex-m3/io/sam3_usart.h
new file mode 100644 (file)
index 0000000..f5c05c1
--- /dev/null
@@ -0,0 +1,356 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2007,2010 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ *
+ * \author Daniele Basile <asterix@develer.com>
+ *
+ * ATSAM3 USART User interface.
+ * This file is based on NUT/OS implementation. See license below.
+ */
+/*
+ * Copyright (C) 2005-2006 by egnite Software GmbH. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
+ * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * For additional information see http://www.ethernut.de/
+ */
+
+#ifndef SAM3_USART_H
+#define SAM3_USART_H
+
+/**
+ * USART base addresses.
+ */
+#if CPU_CM3_AT91SAM3U
+       #define USART0_BASE  0x40090000
+       #define USART1_BASE  0x40094000
+       #define USART2_BASE  0x40098000
+       #define USART3_BASE  0x4009C000
+#else
+       #define USART0_BASE  0x40024000
+       #define USART1_BASE  0x40028000
+#endif
+
+/**
+ * USART Control Register
+ */
+/*\{*/
+#define US_CR_OFF               0x00000000      ///< USART control register offset.
+#define US0_CR  (*((reg32_t *)(USART0_BASE + US_CR_OFF)))       ///< Channel 0 control register address.
+#define US1_CR  (*((reg32_t *)(USART1_BASE + US_CR_OFF)))       ///< Channel 1 control register address.
+#define US_RSTRX                         2      ///< Reset receiver.
+#define US_RSTTX                         3      ///< Reset transmitter.
+#define US_RXEN                          4      ///< Receiver enable.
+#define US_RXDIS                         5      ///< Receiver disable.
+#define US_TXEN                          6      ///< Transmitter enable.
+#define US_TXDIS                         7      ///< Transmitter disable.
+#define US_RSTSTA                        8      ///< Reset status bits.
+#define US_STTBRK                        9      ///< Start break.
+#define US_STPBRK                        10     ///< Stop break.
+#define US_STTTO                         11     ///< Start timeout.
+#define US_SENDA                         12     ///< Send next byte with address bit set.
+#define US_RSTIT                         13     ///< Reset interations.
+#define US_RSTNAK                        14     ///< Reset non acknowledge.
+#define US_RETTO                         15     ///< Rearm time out.
+#define US_DTREN                         16     ///< Data terminal ready enable.
+#define US_DTRDIS                        17     ///< Data terminal ready disable.
+#define US_RTSEN                         18     ///< Request to send enable.
+#define US_RTSDIS                        19     ///< Request to send disable.
+/*\}*/
+
+/**
+ * Mode Register
+ */
+/*\{*/
+#define US_MR_OFF               0x00000004      ///< USART mode register offset.
+#define US0_MR  (*((reg32_t *)(USART0_BASE + US_MR_OFF)))       ///< Channel 0 mode register address.
+#define US1_MR  (*((reg32_t *)(USART1_BASE + US_MR_OFF)))       ///< Channel 1 mode register address.
+
+#define US_USART_MODE_MASK      0x0000000F      ///< USART mode mask.
+#define US_USART_MODE_NORMA     0x00000000      ///< Normal.
+#define US_USART_MODE_RS485     0x00000001      ///< RS485.
+#define US_USART_MODE_HW_HDSH   0x00000002      ///< Hardware handshaking.
+#define US_USART_MODE_MODEM     0x00000003      ///< Modem.
+#define US_USART_MODE_ISO7816T0 0x00000004      ///< ISO7816 protocol: T=0.
+#define US_USART_MODE_ISO7816T1 0x00000006      ///< ISO7816 protocol: T=1.
+#define US_USART_MODE_IRDA      0x00000008      ///< IrDA.
+
+#define US_CLKS_MASK            0x00000030      ///< Clock selection mask.
+#define US_CLKS_MCK             0x00000000      ///< Master clock.
+#define US_CLKS_MCK8            0x00000010      ///< Master clock divided by 8.
+#define US_CLKS_SCK             0x00000020      ///< External clock.
+#define US_CLKS_SLCK            0x00000030      ///< Slow clock.
+
+#define US_CHRL_MASK            0x000000C0      ///< Masks data length.
+#define US_CHRL_5               0x00000000      ///< 5 data bits.
+#define US_CHRL_6               0x00000040      ///< 6 data bits.
+#define US_CHRL_7               0x00000080      ///< 7 data bits.
+#define US_CHRL_8               0x000000C0      ///< 8 data bits.
+
+#define US_SYNC                          8      ///< Synchronous mode enable.
+
+#define US_PAR_MASK             0x00000E00      ///< Parity mode mask.
+#define US_PAR_EVEN             0x00000000      ///< Even parity.
+#define US_PAR_ODD              0x00000200      ///< Odd parity.
+#define US_PAR_SPACE            0x00000400      ///< Space parity.
+#define US_PAR_MARK             0x00000600      ///< Marked parity.
+#define US_PAR_NO               0x00000800      ///< No parity.
+#define US_PAR_MULTIDROP        0x00000C00      ///< Multi-drop mode.
+
+#define US_NBSTOP_MASK          0x00003000      ///< Masks stop bit length.
+#define US_NBSTOP_1             0x00000000      ///< 1 stop bit.
+#define US_NBSTOP_1_5           0x00001000      ///< 1.5 stop bits.
+#define US_NBSTOP_2             0x00002000      ///< 2 stop bits.
+
+#define US_CHMODE_MASK              0x0000C000  ///< Channel mode mask.
+#define US_CHMODE_NORMAL            0x00000000  ///< Normal mode.
+#define US_CHMODE_AUTOMATIC_ECHO    0x00004000  ///< Automatic echo.
+#define US_CHMODE_LOCAL_LOOPBACK    0x00008000  ///< Local loopback.
+#define US_CHMODE_REMOTE_LOOPBACK   0x0000C000  ///< Remote loopback.
+
+#define US_MSBF                         16      ///< Bit order.
+#define US_MODE9                        17      ///< 9 bit mode.
+#define US_CLKO                         18      ///< Clock output select.
+#define US_OVER                         19      ///< Oversampling mode.
+#define US_INACK                        20      ///< Inhibit non acknowledge.
+#define US_DSNACK                       21      ///< Disable successive nack.
+
+#define US_MAX_INTERATION_MASK      0x07000000  ///< Max numer of interation in mode ISO7816 T=0.
+
+#define US_FILTER                       28      ///< Infrared receive line filter.
+
+/*\}*/
+
+/**
+ * Status and Interrupt Register
+ */
+/*\{*/
+#define US_IER_OFF              0x00000008      ///< USART interrupt enable register offset.
+#define US0_IER (*((reg32_t *)(USART0_BASE + US_IER_OFF)))      ///< Channel 0 interrupt enable register address.
+#define US1_IER (*((reg32_t *)(USART1_BASE + US_IER_OFF)))      ///< Channel 1 interrupt enable register address.
+
+#define US_IDR_OFF              0x0000000C      ///< USART interrupt disable register offset.
+#define US0_IDR (*((reg32_t *)(USART0_BASE + US_IDR_OFF)))      ///< Channel 0 interrupt disable register address.
+#define US1_IDR (*((reg32_t *)(USART1_BASE + US_IDR_OFF)))      ///< Channel 1 interrupt disable register address.
+
+#define US_IMR_OFF              0x00000010      ///< USART interrupt mask register offset.
+#define US0_IMR (*((reg32_t *)(USART0_BASE + US_IMR_OFF)))      ///< Channel 0 interrupt mask register address.
+#define US1_IMR (*((reg32_t *)(USART1_BASE + US_IMR_OFF)))      ///< Channel 1 interrupt mask register address.
+
+#define US_CSR_OFF              0x00000014      ///< USART status register offset.
+#define US0_CSR (*((reg32_t *)(USART0_BASE + US_CSR_OFF)))      ///< Channel 0 status register address.
+#define US1_CSR (*((reg32_t *)(USART1_BASE + US_CSR_OFF)))      ///< Channel 1 status register address.
+#define US_CSR_RI                       20      ///< Image of RI input.
+#define US_CSR_DSR                      21      ///< Image of DSR input.
+#define US_CSR_DCD                      22      ///< Image of DCD input.
+#define US_CSR_CTS                      23      ///< Image of CTS input.
+
+#define US_RXRDY                         0      ///< Receiver ready.
+#define US_TXRDY                         1      ///< Transmitter ready.
+#define US_RXBRK                         2      ///< Receiver break.
+#define US_ENDRX                         3      ///< End of receiver PDC transfer.
+#define US_ENDTX                         4      ///< End of transmitter PDC transfer.
+#define US_OVRE                          5      ///< Overrun error.
+#define US_FRAME                         6      ///< Framing error.
+#define US_PARE                          7      ///< Parity error.
+#define US_TIMEOUT                       8      ///< Receiver timeout.
+#define US_TXEMPTY                       9      ///< Transmitter empty.
+#define US_ITERATION                    10      ///< Iteration interrupt enable.
+#define US_TXBUFE                       11      ///< Buffer empty interrupt enable.
+#define US_RXBUFF                       12      ///< Buffer full interrupt enable.
+#define US_NACK                         13      ///< Non acknowledge interrupt enable.
+#define US_RIIC                         16      ///< Ring indicator input change enable.
+#define US_DSRIC                        17      ///< Data set ready input change enable.
+#define US_DCDIC                        18      ///< Data carrier detect input change interrupt enable.
+#define US_CTSIC                        19      ///< Clear to send input change interrupt enable.
+
+/**
+ * Receiver Holding Register
+ */
+/*\{*/
+#define US_RHR_OFF              0x00000018      ///< USART receiver holding register offset.
+#define US0_RHR (*((reg32_t *)(USART0_BASE + US_RHR_OFF)))      ///< Channel 0 receiver holding register address.
+#define US1_RHR (*((reg32_t *)(USART1_BASE + US_RHR_OFF)))      ///< Channel 1 receiver holding register address.
+#define US_RHR_RXCHR_MASK       0x000001FF      ///< Last char received if US_RXRDY is set.
+#define US_RHR_RXSYNH                   15      ///< Received sync.
+/*\}*/
+
+/**
+ * Transmitter Holding Register
+ */
+/*\{*/
+#define US_THR_OFF              0x0000001C      ///< USART transmitter holding register offset.
+#define US0_THR (*((reg32_t *)(USART0_BASE + US_THR_OFF)))      ///< Channel 0 transmitter holding register address.
+#define US1_THR (*((reg32_t *)(USART1_BASE + US_THR_OFF)))      ///< Channel 1 transmitter holding register address.
+#define US_THR_TXCHR_MASK       0x000001FF      ///< Next char to be trasmitted.
+#define US_THR_TXSYNH                   15      ///< Sync field to be trasmitted.
+/*\}*/
+
+/**
+ * Baud Rate Generator Register
+ */
+/*\{*/
+#define US_BRGR_OFF             0x00000020      ///< USART baud rate register offset.
+#define US0_BRGR (*((reg32_t *)(USART0_BASE + US_BRGR_OFF)))    ///< Channel 0 baud rate register address.
+#define US1_BRGR (*((reg32_t *)(USART1_BASE + US_BRGR_OFF)))    ///< Channel 1 baud rate register address.
+/*\}*/
+
+/**
+ * Receiver Timeout Register
+ */
+/*\{*/
+#define US_RTOR_OFF             0x00000024      ///< USART receiver timeout register offset.
+#define US0_RTOR (*((reg32_t *)(USART0_BASE + US_RTOR_OFF)))    ///< Channel 0 receiver timeout register address.
+#define US1_RTOR (*((reg32_t *)(USART1_BASE + US_RTOR_OFF)))    ///< Channel 1 receiver timeout register address.
+/*\}*/
+
+/**
+ * Transmitter Time Guard Register
+ */
+/*\{*/
+#define US_TTGR_OFF             0x00000028      ///< USART transmitter time guard register offset.
+#define US0_TTGR (*((reg32_t *)(USART0_BASE + US_TTGR_OFF)))    ///< Channel 0 transmitter time guard register address.
+#define US1_TTGR (*((reg32_t *)(USART1_BASE + US_TTGR_OFF)))    ///< Channel 1 transmitter time guard register address.
+/*\}*/
+
+/**
+ * FI DI Ratio Register
+*/
+/*\{*/
+#define US_FIDI_OFF             0x00000040      ///< USART FI DI ratio register offset.
+#define US0_FIDI (*((reg32_t *)(USART0_BASE + US_FIDI_OFF)))    ///< Channel 0 FI DI ratio register address.
+#define US1_FIDI (*((reg32_t *)(USART1_BASE + US_FIDI_OFF)))    ///< Channel 1 FI DI ratio register address.
+/*\}*/
+
+/**
+ * Error Counter Register
+ */
+/*\{*/
+#define US_NER_OFF              0x00000044      ///< USART error counter register offset.
+#define US0_NER  (*((reg32_t *)(USART0_BASE + US_NER_OFF)))     ///< Channel 0 error counter register address.
+#define US1_NER  (*((reg32_t *)(USART1_BASE + US_NER_OFF)))     ///< Channel 1 error counter register address.
+/*\}*/
+
+/**
+ * IrDA Filter Register
+ */
+/*\{*/
+#define US_IF_OFF               0x0000004C      ///< USART IrDA filter register offset.
+#define US0_IF (*((reg32_t *)(USART0_BASE + US_IF_OFF)))        ///< Channel 0 IrDA filter register address.
+#define US1_IF (*((reg32_t *)(USART1_BASE + US_IF_OFF)))        ///< Channel 1 IrDA filter register address.
+/*\}*/
+
+#if USART_HAS_PDC
+
+       /**
+        * Receive Pointer Register
+        */
+       /*\{*/
+       #define US0_RPR (*((reg32_t *)(USART0_BASE + PERIPH_RPR_OFF)))      ///< Channel 0 receive pointer register address.
+       #define US1_RPR (*((reg32_t *)(USART1_BASE + PERIPH_RPR_OFF)))      ///< Channel 1 receive pointer register address.
+       /*\}*/
+
+       /**
+        * Receive Counter Register
+        */
+       /*\{*/
+       #define US0_RCR (*((reg32_t *)(USART0_BASE + PERIPH_RCR_OFF)))      ///< Channel 0 receive counter register address.
+       #define US1_RCR (*((reg32_t *)(USART1_BASE + PERIPH_RCR_OFF)))      ///< Channel 1 receive counter register address.
+       /*\}*/
+
+       /**
+       * Transmit Pointer Register
+       */
+       /*\{*/
+       #define US0_TPR (*((reg32_t *)(USART0_BASE + PERIPH_TPR_OFF)))      ///< Channel 0 transmit pointer register address.
+       #define US1_TPR (*((reg32_t *)(USART1_BASE + PERIPH_TPR_OFF)))      ///< Channel 1 transmit pointer register address.
+       /*\}*/
+
+       /**
+       * Transmit Counter Register
+       */
+       /*\{*/
+       #define US0_TCR (*((reg32_t *)(USART0_BASE + PERIPH_TCR_OFF)))      ///< Channel 0 transmit counter register address.
+       #define US1_TCR (*((reg32_t *)(USART1_BASE + PERIPH_TCR_OFF)))      ///< Channel 1 transmit counter register address.
+       /*\}*/
+
+       #if defined(PERIPH_RNPR_OFF) && defined(PERIPH_RNCR_OFF)
+       #define US0_RNPR   (*((reg32_t *)(USART0_BASE + PERIPH_RNPR_OFF)))  ///< PDC channel 0 receive next pointer register.
+       #define US1_RNPR   (*((reg32_t *)(USART1_BASE + PERIPH_RNPR_OFF)))  ///< PDC channel 1 receive next pointer register.
+       #define US0_RNCR   (*((reg32_t *)(USART0_BASE + PERIPH_RNCR_OFF)))  ///< PDC channel 0 receive next counter register.
+       #define US1_RNCR   (*((reg32_t *)(USART1_BASE + PERIPH_RNCR_OFF)))  ///< PDC channel 1 receive next counter register.
+       #endif
+
+       #if defined(PERIPH_TNPR_OFF) && defined(PERIPH_TNCR_OFF)
+       #define US0_TNPR   (*((reg32_t *)(USART0_BASE + PERIPH_TNPR_OFF)))  ///< PDC channel 0 transmit next pointer register.
+       #define US1_TNPR   (*((reg32_t *)(USART1_BASE + PERIPH_TNPR_OFF)))  ///< PDC channel 1 transmit next pointer register.
+       #define US0_TNCR   (*((reg32_t *)(USART0_BASE + PERIPH_TNCR_OFF)))  ///< PDC channel 0 transmit next counter register.
+       #define US1_TNCR   (*((reg32_t *)(USART1_BASE + PERIPH_TNCR_OFF)))  ///< PDC channel 1 transmit next counter register.
+       #endif
+
+       #if defined(PERIPH_PTCR_OFF)
+       #define US0_PTCR   (*((reg32_t *)(USART0_BASE + PERIPH_PTCR_OFF)))  ///< PDC channel 0 transfer control register.
+       #define US1_PTCR   (*((reg32_t *)(USART1_BASE + PERIPH_PTCR_OFF)))  ///< PDC channel 1 transfer control register.
+       #endif
+
+       #if defined(PERIPH_PTSR_OFF)
+       #define US0_PTSR   (*((reg32_t *)(USART0_BASE + PERIPH_PTSR_OFF)))  ///< PDC channel 0 transfer status register.
+       #define US1_PTSR   (*((reg32_t *)(USART1_BASE + PERIPH_PTSR_OFF)))  ///< PDC channel 1 transfer status register.
+       #endif
+
+#endif  /* USART_HAS_PDC */
+
+#endif /* SAM3_USART_H */
diff --git a/bertos/cpu/cortex-m3/io/sam3_wdt.h b/bertos/cpu/cortex-m3/io/sam3_wdt.h
new file mode 100644 (file)
index 0000000..833743a
--- /dev/null
@@ -0,0 +1,110 @@
+/**
+ * \file
+ * <!--
+ * This file is part of BeRTOS.
+ *
+ * Bertos is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ * As a special exception, you may use this file as part of a free software
+ * library without restriction.  Specifically, if other files instantiate
+ * templates or use macros or inline functions from this file, or you compile
+ * this file and link it with other files to produce an executable, this
+ * file does not by itself cause the resulting executable to be covered by
+ * the GNU General Public License.  This exception does not however
+ * invalidate any other reasons why the executable file might be covered by
+ * the GNU General Public License.
+ *
+ * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
+ *
+ * -->
+ *
+ * \author Francesco Sacchi <batt@develer.com>
+ *
+ * ATSAM3 Watchdog.
+ * This file is based on NUT/OS implementation. See license below.
+ */
+
+
+/*
+ * Copyright (C) 2005-2006 by egnite Software GmbH. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ * 3. Neither the name of the copyright holders nor the names of
+ *    contributors may be used to endorse or promote products derived
+ *    from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
+ * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
+ * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+ * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ *
+ * For additional information see http://www.ethernut.de/
+ */
+
+#ifndef SAM3_WDT_H
+#define SAM3_WDT_H
+
+/** Watch Dog registers base address */
+#define WDT_BASE  0x400E1450
+
+/** Watch Dog Control Register */
+/*\{*/
+#define WDT_CR_OFF          0x00000000  ///< Watchdog control register offset.
+#define WDT_CR              (*((reg32_t *)(WDT_BASE + WDT_CR_OFF))) ///< Watchdog control register address.
+#define WDT_WDRSTT          0           ///< Watchdog restart.
+#define WDT_KEY             0xA5000000  ///< Watchdog password.
+/*\}*/
+
+/** Watch Dog Mode Register */
+/*\{*/
+#define WDT_MR_OFF          0x00000004  ///< Mode register offset.
+#define WDT_MR              (*((reg32_t *)(WDT_BASE + WDT_MR_OFF))) ///< Mode register address.
+#define WDT_WDV_MASK        0x00000FFF  ///< Counter value mask.
+#define WDT_WDV_SHIFT       0           ///< Counter value LSB.
+#define WDT_WDFIEN          12          ///< Fault interrupt enable.
+#define WDT_WDRSTEN         13          ///< Reset enable.
+#define WDT_WDRPROC         14          ///< Eset processor enable.
+#define WDT_WDDIS           15          ///< Watchdog disable.
+#define WDT_WDD_MASK        0x0FFF0000  ///< Delta value mask.
+#define WDT_WDD_SHIFT       16          ///< Delta value LSB.
+#define WDT_WDDBGHLT        28          ///< Watchdog debug halt.
+#define WDT_WDIDLEHLT       29          ///< Watchdog idle halt.
+/*\}*/
+
+/** Watch Dog Status Register */
+/*\{*/
+#define WDT_SR_OFF          0x00000008  ///< Status register offset.
+#define WDT_SR              (*((reg32_t *)(WDT_BASE + WDT_SR_OFF))) ///< Status register address.
+#define WDT_WDUNF           0  ///< Watchdog underflow.
+#define WDT_WDERR           1  ///< Watchdog error.
+/*\}*/
+
+#endif /* SAM3_WDT_H */