Add PMC definitions.
[bertos.git] / cpu / arm / io / at91sam7s.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \version $Id$
34  *
35  * \author Francesco Sacchi <batt@develer.com>
36  *
37  * AT91SAM7S register definitions.
38  * This file is based on NUT/OS implementation. See license below.
39  */
40
41 /*
42  * Copyright (C) 2006-2007 by egnite Software GmbH. All rights reserved.
43  *
44  * Redistribution and use in source and binary forms, with or without
45  * modification, are permitted provided that the following conditions
46  * are met:
47  *
48  * 1. Redistributions of source code must retain the above copyright
49  *    notice, this list of conditions and the following disclaimer.
50  * 2. Redistributions in binary form must reproduce the above copyright
51  *    notice, this list of conditions and the following disclaimer in the
52  *    documentation and/or other materials provided with the distribution.
53  * 3. Neither the name of the copyright holders nor the names of
54  *    contributors may be used to endorse or promote products derived
55  *    from this software without specific prior written permission.
56  *
57  * THIS SOFTWARE IS PROVIDED BY EGNITE SOFTWARE GMBH AND CONTRIBUTORS
58  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
59  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
60  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL EGNITE
61  * SOFTWARE GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
62  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
63  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
64  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
65  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
66  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
67  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68  * SUCH DAMAGE.
69  *
70  * For additional information see http://www.ethernut.de/
71  */
72
73 #ifndef AT91SAM7S_H
74 #define AT91SAM7S_H
75
76 #define FLASH_BASE      0x100000UL
77 #define RAM_BASE        0x200000UL
78
79 #define TC_BASE         0xFFFA0000      ///< Timer/counter base address.
80 #define UDP_BASE        0xFFFB0000      ///< USB device port base address.
81 #define TWI_BASE        0xFFFB8000      ///< Two-wire interface base address.
82 #define USART0_BASE     0xFFFC0000      ///< USART 0 base address.
83 #define USART1_BASE     0xFFFC4000      ///< USART 1 base address.
84 #define PWMC_BASE       0xFFFCC000      ///< PWM controller base address.
85 #define SSC_BASE        0xFFFD4000      ///< Serial synchronous controller base address.
86 #define ADC_BASE        0xFFFD8000      ///< ADC base address.
87 #define SPI_BASE        0xFFFE0000      ///< SPI0 base address.
88
89 #define AIC_BASE        0xFFFFF000      ///< AIC base address.
90 #define DBGU_BASE       0xFFFFF200      ///< DBGU base address.
91 #define PIOA_BASE       0xFFFFF400      ///< PIO A base address.
92 #define PMC_BASE        0xFFFFFC00      ///< PMC base address.
93 #define RSTC_BASE       0xFFFFFD00      ///< Resect controller register base address.
94 #define RTT_BASE        0xFFFFFD20      ///< Realtime timer base address.
95 #define PIT_BASE        0xFFFFFD30      ///< Periodic interval timer base address.
96 #define WDT_BASE        0xFFFFFD40      ///< Watch Dog register base address.
97 #define VREG_BASE       0xFFFFFD60      ///< Voltage regulator mode controller base address.
98 #define MC_BASE         0xFFFFFF00      ///< Memory controller base.
99
100 #include "at91_aic.h"
101 #include "at91_pit.h"
102 #include "at91_pmc.h"
103 //TODO: add other peripherals
104
105 /** Peripheral Identifiers and Interrupts */
106 /*\{*/
107 #define FIQ_ID      0       ///< Fast interrupt ID.
108 #define SYSC_ID     1       ///< System controller interrupt.
109 #define PIOA_ID     2       ///< Parallel I/O controller ID.
110 /* ID 3 is reserved */
111 #define ADC_ID      4       ///< Analog to digital converter ID.
112 #define SPI_ID      5       ///< Serial peripheral interface ID.
113 #define US0_ID      6       ///< USART 0 ID.
114 #define US1_ID      7       ///< USART 1 ID.
115 #define SSC_ID      8       ///< Synchronous serial controller ID.
116 #define TWI_ID      9       ///< Two-wire interface ID.
117 #define PWMC_ID     10      ///< PWM controller ID.
118 #define UDP_ID      11      ///< USB device port ID.
119 #define TC0_ID      12      ///< Timer 0 ID.
120 #define TC1_ID      13      ///< Timer 1 ID.
121 #define TC2_ID      14      ///< Timer 2 ID.
122
123 #define IRQ0_ID     30      ///< External interrupt 0 ID.
124 #define IRQ1_ID     31      ///< External interrupt 1 ID.
125 /*\}*/
126
127 #warning Revise me after this line!
128
129 #define PERIPH_RPR_OFF  0x00000100      ///< Receive pointer register offset.
130 #define PERIPH_RCR_OFF  0x00000104      ///< Receive counter register offset.
131 #define PERIPH_TPR_OFF  0x00000108      ///< Transmit pointer register offset.
132 #define PERIPH_TCR_OFF  0x0000010C      ///< Transmit counter register offset.
133 #define PERIPH_RNPR_OFF 0x00000110      ///< Receive next pointer register offset.
134 #define PERIPH_RNCR_OFF 0x00000114      ///< Receive next counter register offset.
135 #define PERIPH_TNPR_OFF 0x00000118      ///< Transmit next pointer register offset.
136 #define PERIPH_TNCR_OFF 0x0000011C      ///< Transmit next counter register offset.
137 #define PERIPH_PTCR_OFF 0x00000120      ///< PDC transfer control register offset.
138 #define PERIPH_PTSR_OFF 0x00000124      ///< PDC transfer status register offset.
139
140 #define PDC_RXTEN       0x00000001      ///< Receiver transfer enable.
141 #define PDC_RXTDIS      0x00000002      ///< Receiver transfer disable.
142 #define PDC_TXTEN       0x00000100      ///< Transmitter transfer enable.
143 #define PDC_TXTDIS      0x00000200      ///< Transmitter transfer disable.
144
145 #define DBGU_HAS_PDC
146 #define SPI_HAS_PDC
147 #define SSC_HAS_PDC
148 #define USART_HAS_PDC
149
150 #define PIO_HAS_MULTIDRIVER
151 #define PIO_HAS_PULLUP
152 #define PIO_HAS_PERIPHERALSELECT
153 #define PIO_HAS_OUTPUTWRITEENABLE
154
155
156 /** Historical SPI0 Peripheral Multiplexing Names */
157 /*\{*/
158 #define SPI0_NPCS0_PA12A        12      ///< Port bit number on PIO-A Perpheral A.
159 #define SPI0_NPCS1_PA13A        13      ///< Port bit number on PIO-A Perpheral A.
160 #define SPI0_NPCS1_PA07B        7       ///< Port bit number on PIO-A Perpheral B.
161 #define SPI0_NPCS1_PB13B        13      ///< Port bit number on PIO-B Perpheral B.
162 #define SPI0_NPCS2_PA14A        14      ///< Port bit number on PIO-A Perpheral A.
163 #define SPI0_NPCS2_PA08B        8       ///< Port bit number on PIO-A Perpheral B.
164 #define SPI0_NPCS2_PB14B        14      ///< Port bit number on PIO-B Perpheral B.
165 #define SPI0_NPCS3_PA15A        15      ///< Port bit number on PIO-A Perpheral A.
166 #define SPI0_NPCS3_PA09B        9       ///< Port bit number on PIO-A Perpheral B.
167 #define SPI0_NPCS3_PB17B        17      ///< Port bit number on PIO-B Perpheral B.
168 #define SPI0_MISO_PA16A         16      ///< Port bit number on PIO-A Perpheral A.
169 #define SPI0_MOSI_PA17A         17      ///< Port bit number on PIO-A Perpheral A.
170 #define SPI0_SPCK_PA18A         18      ///< Port bit number on PIO-A Perpheral A.
171 /*\}*/
172
173 /** USART Peripheral Multiplexing */
174 /*\{*/
175 #define PA0_RXD0_A          0
176 #define PA1_TXD0_A          1
177 #define PA2_SCK0_A          2
178 #define PA3_RTS0_A          3
179 #define PA4_CTS0_A          4
180
181 #define PA5_RXD1_A          5
182 #define PA6_TXD1_A          6
183 #define PA7_SCK1_A          7
184 #define PA8_RTS1_A          8
185 #define PA9_CTS1_A          9
186 #define PB23_DCD1_B         23
187 #define PB24_DSR1_B         24
188 #define PB25_DTR1_B         25
189 #define PB26_RI1_B          26
190 /*\}*/
191
192 /** SPI Peripheral Multiplexing */
193 /*\{*/
194 #define PA16_SPI0_MISO_A    16
195 #define PA17_SPI0_MOSI_A    17
196 #define PA18_SPI0_SPCK_A    18
197 #define PA12_SPI0_NPCS0_A   12
198 #define PA13_SPI0_NPCS1_A   13
199 #define PA7_SPI0_NPCS1_B    7
200 #define PA14_SPI0_NPCS2_A   14
201 #define PB14_SPI0_NPCS2_B   14
202 #define PA8_SPI0_NPCS2_B    8
203 #define PA15_SPI0_NPCS3_A   15
204 #define PA9_SPI0_NPCS3_B    9
205
206 #define SPI0_PINS           _BV(PA16_SPI0_MISO_A) | _BV(PA17_SPI0_MOSI_A) | _BV(PA18_SPI0_SPCK_A)
207 #define SPI0_PIO_BASE       PIOA_BASE
208 #define SPI0_PSR_OFF        PIO_ASR_OFF
209
210 #define SPI0_CS0_PIN        _BV(PA12_SPI0_NPCS0_A)
211 #define SPI0_CS0_PIO_BASE   PIOA_BASE
212 #define SPI0_CS0_PSR_OFF    PIO_ASR_OFF
213
214 #ifndef SPI0_CS1_PIN
215 #define SPI0_CS1_PIN        _BV(PA13_SPI0_NPCS1_A)
216 #define SPI0_CS1_PIO_BASE   PIOA_BASE
217 #define SPI0_CS1_PSR_OFF    PIO_ASR_OFF
218 #endif
219
220 #ifndef SPI0_CS2_PIN
221 #define SPI0_CS2_PIN        _BV(PA14_SPI0_NPCS2_A)
222 #define SPI0_CS2_PIO_BASE   PIOA_BASE
223 #define SPI0_CS2_PSR_OFF    PIO_ASR_OFF
224 #endif
225
226 #ifndef SPI0_CS3_PIN
227 #define SPI0_CS3_PIN        _BV(PA15_SPI0_NPCS3_A)
228 #define SPI0_CS3_PIO_BASE   PIOA_BASE
229 #define SPI0_CS3_PSR_OFF    PIO_ASR_OFF
230 #endif
231
232 #define PA24_SPI1_MISO_B    24
233 #define PA23_SPI1_MOSI_B    23
234 #define PA22_SPI1_SPCK_B    22
235 #define PA21_SPI1_NPCS0_B   21
236 #define PA25_SPI1_NPCS1_B   25
237 #define PB13_SPI0_NPCS1_B   13
238 #define PA2_SPI1_NPCS1_B    2
239 #define PB10_SPI1_NPCS1_B   10
240 #define PA26_SPI1_NPCS2_B   26
241 #define PA3_SPI1_NPCS2_B    3
242 #define PB11_SPI1_NPCS2_B   11
243 #define PB17_SPI0_NPCS3_B   17
244 #define PA4_SPI1_NPCS3_B    4
245 #define PA29_SPI1_NPCS3_B   29
246 #define PB16_SPI1_NPCS3_B   16
247
248 #define SPI1_PINS           _BV(PA24_SPI1_MISO_B) | _BV(PA23_SPI1_MOSI_B) | _BV(PA22_SPI1_SPCK_B)
249 #define SPI1_PIO_BASE       PIOA_BASE
250 #define SPI1_PSR_OFF        PIO_BSR_OFF
251
252 #define SPI1_CS0_PIN        _BV(PA21_SPI1_NPCS0_B)
253 #define SPI1_CS0_PIO_BASE   PIOA_BASE
254 #define SPI1_CS0_PSR_OFF    PIO_BSR_OFF
255
256 #ifndef SPI1_CS1_PIN
257 #define SPI1_CS1_PIN        _BV(PA25_SPI1_NPCS1_B)
258 #define SPI1_CS1_PIO_BASE   PIOA_BASE
259 #define SPI1_CS1_PSR_OFF    PIO_BSR_OFF
260 #endif
261
262 #ifndef SPI1_CS2_PIN
263 #define SPI1_CS2_PIN        _BV(PA26_SPI1_NPCS2_B)
264 #define SPI1_CS2_PIO_BASE   PIOA_BASE
265 #define SPI1_CS2_PSR_OFF    PIO_BSR_OFF
266 #endif
267
268 #ifndef SPI1_CS3_PIN
269 #define SPI1_CS3_PIN        _BV(PA29_SPI1_NPCS3_B)
270 #define SPI1_CS3_PIO_BASE   PIOA_BASE
271 #define SPI1_CS3_PSR_OFF    PIO_BSR_OFF
272 #endif
273
274 /*\}*/
275
276 /** EMAC Interface Peripheral Multiplexing */
277 /*\{*/
278 #define PB0_ETXCK_EREFCK_A  0
279 #define PB1_ETXEN_A         1
280 #define PB2_ETX0_A          2
281 #define PB3_ETX1_A          3
282 #define PB4_ECRS_A          4
283 #define PB5_ERX0_A          5
284 #define PB6_ERX1_A          6
285 #define PB7_ERXER_A         7
286 #define PB8_EMDC_A          8
287 #define PB9_EMDIO_A         9
288 #define PB10_ETX2_A         10
289 #define PB11_ETX3_A         11
290 #define PB12_ETXER_A        12
291 #define PB13_ERX2_A         13
292 #define PB14_ERX3_A         14
293 #define PB15_ERXDV_ECRSDV_A 15
294 #define PB16_ECOL_A         16
295 #define PB17_ERXCK_A        17
296 #define PB18_EF100_A        18
297 /*\}*/
298
299 /** Debug Unit Peripheral Multiplexing */
300 /*\{*/
301 #define PA27_DRXD_A         27
302 #define PA28_DTXD_A         28
303 /*\}*/
304
305 /** Synchronous Serial Controller Peripheral Multiplexing */
306 /*\{*/
307 #define PA23_TD_A           23  ///< Transmit data pin.
308 #define PA24_RD_A           24  ///< Receive data pin.
309 #define PA22_TK_A           22  ///< Transmit clock pin.
310 #define PA25_RK_A           25  ///< Receive clock pin.
311 #define PA21_TF_A           21  ///< Transmit frame sync. pin.
312 #define PA26_RF_A           26  ///< Receive frame sync. pin.
313 /*\}*/
314
315 /** Two Wire Interface Peripheral Multiplexing */
316 /*\{*/
317 #define PA10_TWD_A          10  ///< Two wire serial data pin.
318 #define PA11_TWCK_A         11  ///< Two wire serial clock pin.
319 /*\}*/
320
321 /** Timer/Counter Peripheral Multiplexing */
322 /*\{*/
323 #define PB23_TIOA0_A        23
324 #define PB24_TIOB0_A        24
325 #define PB12_TCLK0_B        12
326
327 #define PB25_TIOA1_A        25
328 #define PB26_TIOB1_A        26
329 #define PB19_TCLK1_B        19
330
331 #define PB27_TIOA2_A        27
332 #define PB28_TIOB2_A        28
333 #define PA15_TCLK2_B        15
334 /*\}*/
335
336 /** Clocks, Oscillators and PLLs Peripheral Multiplexing */
337 /*\{*/
338 #define PB0_PCK0_B          0
339 #define PB20_PCK0_B         20
340 #define PA13_PCK1_B         13
341 #define PB29_PCK1_A         29
342 #define PB21_PCK1_B         21
343 #define PA30_PCK2_B         30
344 #define PB30_PCK2_A         30
345 #define PB22_PCK2_B         22
346 #define PA27_PCK3_B         27
347 /*\}*/
348
349 /** Advanced Interrupt Controller Peripheral Multiplexing */
350 /*\{*/
351 #define PA29_FIQ_A          29
352 #define PA30_IRQ0_A         30
353 #define PA14_IRQ1_B         14
354 /*\}*/
355
356 /** ADC Interface Peripheral Multiplexing */
357 /*\{*/
358 #define PB18_ADTRG_B        18  ///< ADC trigger pin.
359 /*\}*/
360
361 /** CAN Interface Peripheral Multiplexing */
362 /*\{*/
363 #define PA19_CANRX_A        19
364 #define PA20_CANTX_A        20
365 /*\}*/
366
367 /** PWM Peripheral Multiplexing */
368 /*\{*/
369 #define PB19_PWM0_A         19
370 #define PB27_PWM0_B         27
371 #define PB20_PWM1_A         20
372 #define PB28_PWM1_B         28
373 #define PB21_PWM2_A         21
374 #define PB29_PWM2_B         29
375 #define PB22_PWM3_A         22
376 #define PB30_PWM3_B         30
377 /*\}*/
378
379 #endif /* AT91SAM7S_H */