9c8fa8312fdfbea403929e3dd5cc41d9eb216a1e
[fw/altos] / src / usbtrng / ao_pins.h
1 /*
2  * Copyright © 2013 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #define HAS_BEEP        0
19 #define HAS_LED         1
20
21 #define AO_STACK_SIZE   384
22
23 #define IS_FLASH_LOADER 0
24
25 /* Crystal on the board */
26 #define AO_LPC_CLKIN    12000000
27
28 /* Main clock frequency. 48MHz for USB so we don't use the USB PLL */
29 #define AO_LPC_CLKOUT   48000000
30
31 /* System clock frequency */
32 #define AO_LPC_SYSCLK   24000000
33
34 #define HAS_USB         1
35
36 #define HAS_USB_CONNECT 0
37 #define HAS_USB_VBUS    0
38 #define HAS_USB_PULLUP  1
39 #define AO_USB_PULLUP_PORT      0
40 #define AO_USB_PULLUP_PIN       6
41
42 /* USART */
43
44 #define HAS_SERIAL              1
45 #define USE_SERIAL_0_STDIN      0
46 #define SERIAL_0_18_19          1
47 #define SERIAL_0_14_15          0
48 #define SERIAL_0_17_18          0
49 #define SERIAL_0_26_27          0
50
51 /* SPI */
52
53 #define HAS_SPI_0               0
54 #define SPI_SCK0_P0_6           0
55 #define HAS_SPI_1               1
56 #define SPI_SCK1_P1_15          0
57 #define SPI_MISO1_P0_22         1
58 #define SPI_MOSI1_P0_21         0
59
60 /* LED */
61
62 #define LED_PORT                0
63 #define LED_PIN_RED             3
64 #define LED_PIN_GREEN           21
65 #define AO_LED_RED              (1 << LED_PIN_RED)
66 #define AO_LED_GREEN            (1 << LED_PIN_GREEN)
67
68 #define LEDS_AVAILABLE          (AO_LED_RED|AO_LED_GREEN)
69
70 /* Kludge the SPI driver to not configure any
71  * pin for SCK or MOSI
72  */
73 #define HAS_SCK1                0
74 #define HAS_MOSI1               0