Add ssc pins definition for sam3 family.
[bertos.git] / bertos / cpu / cortex-m3 / io / sam3.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 2010,2011 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \author Stefano Fedrigo <aleph@develer.com>
34  */
35
36 #ifndef SAM3_H
37 #define SAM3_H
38
39 #include <cpu/detect.h>
40 #include <cfg/compiler.h>
41
42 /*
43  * Peripherals IDs.
44  */
45 /*\{*/
46 #if CPU_CM3_SAM3N
47         #define SUPC_ID      0   ///< Supply Controller (SUPC)
48         #define RSTC_ID      1   ///< Reset Controller (RSTC)
49         #define RTC_ID       2   ///< Real Time Clock (RTC)
50         #define RTT_ID       3   ///< Real Time Timer (RTT)
51         #define WDT_ID       4   ///< Watchdog Timer (WDT)
52         #define PMC_ID       5   ///< Power Management Controller (PMC)
53         #define EEFC0_ID     6   ///< Enhanced Flash Controller
54         #define UART0_ID     8   ///< UART 0 (UART0)
55         #define UART1_ID     9   ///< UART 1 (UART1)
56         #define PIOA_ID     11   ///< Parallel I/O Controller A (PIOA)
57         #define PIOB_ID     12   ///< Parallel I/O Controller B (PIOB)
58         #define PIOC_ID     13   ///< Parallel I/O Controller C (PIOC)
59         #define US0_ID      14   ///< USART 0 (USART0)
60         #define US1_ID      15   ///< USART 1 (USART1)
61         #define TWI0_ID     19   ///< Two Wire Interface 0 (TWI0)
62         #define TWI1_ID     20   ///< Two Wire Interface 1 (TWI1)
63         #define SPI0_ID     21   ///< Serial Peripheral Interface (SPI)
64         #define TC0_ID      23   ///< Timer/Counter 0 (TC0)
65         #define TC1_ID      24   ///< Timer/Counter 1 (TC1)
66         #define TC2_ID      25   ///< Timer/Counter 2 (TC2)
67         #define TC3_ID      26   ///< Timer/Counter 3 (TC3)
68         #define TC4_ID      27   ///< Timer/Counter 4 (TC4)
69         #define TC5_ID      28   ///< Timer/Counter 5 (TC5)
70         #define ADC_ID      29   ///< Analog To Digital Converter (ADC)
71         #define DACC_ID     30   ///< Digital To Analog Converter (DACC)
72         #define PWM_ID      31   ///< Pulse Width Modulation (PWM)
73 #elif CPU_CM3_SAM3X
74         #define SUPC_ID        0   ///< Supply Controller (SUPC)
75         #define RSTC_ID        1   ///< Reset Controller (RSTC)
76         #define RTC_ID         2   ///< Real Time Clock (RTC)
77         #define RTT_ID         3   ///< Real Time Timer (RTT)
78         #define WDT_ID         4   ///< Watchdog Timer (WDT)
79         #define PMC_ID         5   ///< Power Management Controller (PMC)
80         #define EEFC0_ID       6   ///< Enhanced Flash Controller
81         #define EEFC1_ID       7   ///< Enhanced Flash Controller
82         #define UART0_ID       8   ///< UART 0 (UART0)
83         #define SMC_SDRAMC_ID  9   ///< Satic memory controller / SDRAM controller
84         #define SDRAMC_ID     10   ///< Satic memory controller / SDRAM controller
85         #define PIOA_ID       11   ///< Parallel I/O Controller A
86         #define PIOB_ID       12   ///< Parallel I/O Controller B
87         #define PIOC_ID       13   ///< Parallel I/O Controller C
88         #define PIOD_ID       14   ///< Parallel I/O Controller D
89         #define PIOE_ID       15   ///< Parallel I/O Controller E
90         #define PIOF_ID       16   ///< Parallel I/O Controller F
91         #define US0_ID        17   ///< USART 0
92         #define US1_ID        18   ///< USART 1
93         #define US2_ID        19   ///< USART 2
94         #define US3_ID        20   ///< USART 3
95         #define HSMCI_ID      21   ///< High speed multimedia card interface
96         #define TWI0_ID       22   ///< Two Wire Interface 0
97         #define TWI1_ID       23   ///< Two Wire Interface 1
98         #define SPI0_ID       24   ///< Serial Peripheral Interface
99         #define SPI1_ID       25   ///< Serial Peripheral Interface
100         #define SSC_ID        26   ///< Synchronous serial controller
101         #define TC0_ID        27   ///< Timer/Counter 0
102         #define TC1_ID        28   ///< Timer/Counter 1
103         #define TC2_ID        29   ///< Timer/Counter 2
104         #define TC3_ID        30   ///< Timer/Counter 3
105         #define TC4_ID        31   ///< Timer/Counter 4
106         #define TC5_ID        32   ///< Timer/Counter 5
107         #define TC6_ID        33   ///< Timer/Counter 6
108         #define TC7_ID        34   ///< Timer/Counter 7
109         #define TC8_ID        35   ///< Timer/Counter 8
110         #define PWM_ID        36   ///< Pulse width modulation controller
111         #define ADC_ID        37   ///< ADC controller
112         #define DACC_ID       38   ///< DAC controller
113         #define DMAC_ID       39   ///< DMA controller
114         #define UOTGHS_ID     40   ///< USB OTG high speed
115         #define TRNG_ID       41   ///< True random number generator
116         #define EMAC_ID       42   ///< Ethernet MAC
117     #define CAN0_ID       43   ///< CAN controller 0
118     #define CAN1_ID       44   ///< CAN controller 1
119 #else
120         #error Peripheral IDs undefined
121 #endif
122 /*\}*/
123
124 /*
125  * Hardware features for drivers.
126  */
127 #define USART_HAS_PDC  1
128 #define SPI_HAS_PDC    1
129
130 #if CPU_CM3_SAM3X || CPU_CM3_SAM3U
131         #define USART_PORTS    1
132         #define UART_PORTS     4
133 #elif CPU_CM3_SAM3N || CPU_CM3_SAM3S
134         #define USART_PORTS    2
135         #define UART_PORTS     2
136 #else
137         #error undefined U(S)ART_PORTS for this cpu
138 #endif
139
140 #include "sam3_sysctl.h"
141 #include "sam3_pdc.h"
142 #include "sam3_pmc.h"
143 #include "sam3_smc.h"
144 #include "sam3_sdramc.h"
145 #include "sam3_ints.h"
146 #include "sam3_pio.h"
147 #include "sam3_nvic.h"
148 #include "sam3_uart.h"
149 #include "sam3_usart.h"
150 #include "sam3_spi.h"
151 #include "sam3_flash.h"
152 #include "sam3_wdt.h"
153 #include "sam3_emac.h"
154 #include "sam3_rstc.h"
155 #include "sam3_adc.h"
156 #include "sam3_dacc.h"
157 #include "sam3_tc.h"
158 #include "sam3_twi.h"
159 #include "sam3_ssc.h"
160
161 /**
162  * U(S)ART I/O pins
163  */
164 /*\{*/
165 #if CPU_CM3_SAM3U
166         #define UART0_PORT   PIOA_BASE
167         #define USART0_PORT  PIOA_BASE
168         #define USART1_PORT  PIOA_BASE
169         #define USART2_PORT  PIOA_BASE
170         #define USART3_PORT  PIOC_BASE
171
172         #define UART0_PERIPH   PIO_PERIPH_A
173         #define USART0_PERIPH  PIO_PERIPH_A
174         #define USART1_PERIPH  PIO_PERIPH_A
175         #define USART2_PERIPH  PIO_PERIPH_A
176         #define USART3_PERIPH  PIO_PERIPH_B
177
178         #define URXD0   11
179         #define UTXD0   12
180         #define RXD0    19
181         #define TXD0    18
182         #define RXD1    21
183         #define TXD1    20
184         #define RXD2    23
185         #define TXD2    22
186         #define RXD3    13
187         #define TXD3    12
188 #elif CPU_CM3_SAM3X
189         #define UART0_PORT   PIOA_BASE
190         #define USART0_PORT  PIOA_BASE
191         #define USART1_PORT  PIOA_BASE
192         #define USART2_PORT  PIOB_BASE
193         #define USART3_PORT  PIOD_BASE
194
195         #define UART0_PERIPH   PIO_PERIPH_A
196         #define USART0_PERIPH  PIO_PERIPH_A
197         #define USART1_PERIPH  PIO_PERIPH_A
198         #define USART2_PERIPH  PIO_PERIPH_A
199         #define USART3_PERIPH  PIO_PERIPH_B
200
201         #define URXD0    8
202         #define UTXD0    9
203         #define RXD0    10
204         #define TXD0    11
205         #define RXD1    12
206         #define TXD1    13
207         #define RXD2    21
208         #define TXD2    20
209         #define RXD3     5
210         #define TXD3     4
211 #elif CPU_CM3_SAM3N || CPU_CM3_SAM3S
212         #define UART0_PORT   PIOA_BASE
213         #define UART1_PORT   PIOB_BASE
214         #define USART0_PORT  PIOA_BASE
215         #define USART1_PORT  PIOA_BASE
216
217         #define UART0_PERIPH   PIO_PERIPH_A
218         #define UART1_PERIPH   PIO_PERIPH_A
219         #define USART0_PERIPH  PIO_PERIPH_A
220         #define USART1_PERIPH  PIO_PERIPH_A
221
222         #define URXD0    9
223         #define UTXD0   10
224         #define URXD1    2
225         #define UTXD1    3
226         #define RXD0     5
227         #define TXD0     6
228         #define RXD1    21
229         #define TXD1    22
230 #endif
231 /*\}*/
232
233 /**
234  * SPI I/O pins
235  */
236 /*\{*/
237 #if CPU_CM3_SAM3U
238         #define SPI0_SPCK   15
239         #define SPI0_MOSI   14
240         #define SPI0_MISO   13
241 #elif CPU_CM3_SAM3X
242         #define SPI0_SPCK   27
243         #define SPI0_MOSI   26
244         #define SPI0_MISO   25
245 #else
246         #define SPI0_SPCK   14
247         #define SPI0_MOSI   13
248         #define SPI0_MISO   12
249 #endif
250 /*\}*/
251
252 /**
253  * TWI I/O pins
254  */
255 /*\{*/
256 #if CPU_CM3_SAM3X
257         #define TWI0_PORT   PIOA_BASE
258         #define TWI1_PORT   PIOA_BASE
259
260         #define TWI0_PERIPH  PIO_PERIPH_A
261         #define TWI1_PERIPH  PIO_PERIPH_A
262
263         #define TWI0_TWD    17
264         #define TWI0_TWCK   18
265         #define TWI1_TWD    12
266         #define TWI1_TWCK   13
267 #elif CPU_CM3_SAM3N || CPU_CM3_SAM3S
268         #define TWI0_PORT   PIOA_BASE
269         #define TWI1_PORT   PIOB_BASE
270
271         #define TWI0_PERIPH  PIO_PERIPH_A
272         #define TWI1_PERIPH  PIO_PERIPH_A
273
274         #define TWI0_TWD    3
275         #define TWI0_TWCK   4
276         #define TWI1_TWD    4
277         #define TWI1_TWCK   5
278 #elif CPU_CM3_SAM3U
279         #define TWI0_PORT   PIOA_BASE
280         #define TWI1_PORT   PIOA_BASE
281
282         #define TWI0_PERIPH  PIO_PERIPH_A
283         #define TWI1_PERIPH  PIO_PERIPH_A
284
285         #define TWI0_TWD    9
286         #define TWI0_TWCK   10
287         #define TWI1_TWD    24
288         #define TWI1_TWCK   25
289 #endif
290
291 #if CPU_CM3_SAM3X
292         #define SSC_PORT            PIOA_BASE
293         #define SSC_PIO_PDR         PIOA_PDR
294         #define SSC_RECV_PERIPH     PIO_PERIPH_A
295         #define SSC_TRAN_PERIPH     PIO_PERIPH_B
296         #define SSC_RD              18
297         #define SSC_RF              17
298         #define SSC_RK              19
299         #define SSC_TD              16
300         #define SSC_TF              15
301         #define SSC_TK              14
302 #elif CPU_CM3_SAM3N
303         #define SSC_PORT            /* None! */
304         #define SSC_PIO_PDR         /* None! */
305         #define SSC_RECV_PERIPH     /* None! */
306         #define SSC_TRAN_PERIPH     /* None! */
307         #define SSC_RD              /* None! */
308         #define SSC_RF              /* None! */
309         #define SSC_RK              /* None! */
310         #define SSC_TD              /* None! */
311         #define SSC_TF              /* None! */
312         #define SSC_TK              /* None! */
313 #elif CPU_CM3_SAM3S
314         #define SSC_PORT            PIOA_BASE
315         #define SSC_PIO_PDR         PIOA_PDR
316         #define SSC_RECV_PERIPH     PIO_PERIPH_A
317         #define SSC_TRAN_PERIPH     PIO_PERIPH_A
318         #define SSC_RD              18
319         #define SSC_RF              20
320         #define SSC_RK              19
321         #define SSC_TD              17
322         #define SSC_TF              15
323         #define SSC_TK              16
324 #elif CPU_CM3_SAM3U
325         #define SSC_PORT            PIOA_BASE
326         #define SSC_PIO_PDR         PIOA_PDR
327         #define SSC_RECV_PERIPH     PIO_PERIPH_A
328         #define SSC_TRAN_PERIPH     PIO_PERIPH_A
329         #define SSC_RD              27
330         #define SSC_RF              31
331         #define SSC_RK              29
332         #define SSC_TD              26
333         #define SSC_TF              30
334         #define SSC_TK              28
335 #else
336         #error no ssc pins are defined for this cpu
337 #endif
338
339 /*\}*/
340 #endif /* SAM3_H */