609e549416ba1c2b048865e28f1ff86f91309cfd
[fw/altos] / src / telelco-v0.2 / ao_pins.h
1 /*
2  * Copyright © 2012 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 #ifndef _AO_PINS_H_
19 #define _AO_PINS_H_
20
21 /* 8MHz High speed external crystal */
22 #define AO_HSE                  8000000
23
24 /* PLLVCO = 96MHz (so that USB will work) */
25 #define AO_PLLMUL               12
26 #define AO_RCC_CFGR_PLLMUL      (STM_RCC_CFGR_PLLMUL_12)
27
28 /* SYSCLK = 32MHz (no need to go faster than CPU) */
29 #define AO_PLLDIV               3
30 #define AO_RCC_CFGR_PLLDIV      (STM_RCC_CFGR_PLLDIV_3)
31
32 /* HCLK = 32MHz (CPU clock) */
33 #define AO_AHB_PRESCALER        1
34 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
35
36 /* Run APB1 at 16MHz (HCLK/2) */
37 #define AO_APB1_PRESCALER       2
38 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE2_DIV_2
39
40 /* Run APB2 at 16MHz (HCLK/2) */
41 #define AO_APB2_PRESCALER       2
42 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_2
43
44 #define HAS_EEPROM              1
45 #define USE_INTERNAL_FLASH      1
46 #define USE_EEPROM_CONFIG       1
47 #define USE_STORAGE_CONFIG      0
48 #define HAS_USB                 1
49 #define HAS_BEEP                1
50 #define HAS_RADIO               1
51 #define HAS_TELEMETRY           0
52 #define HAS_AES                 1
53
54 #define HAS_SPI_1               0
55 #define SPI_1_PA5_PA6_PA7       0
56 #define SPI_1_PB3_PB4_PB5       0
57 #define SPI_1_PE13_PE14_PE15    0
58
59 #define HAS_SPI_2               1       /* CC1120 */
60 #define SPI_2_PB13_PB14_PB15    0
61 #define SPI_2_PD1_PD3_PD4       1
62 #define SPI_2_GPIO              (&stm_gpiod)
63 #define SPI_2_SCK               1
64 #define SPI_2_MISO              3
65 #define SPI_2_MOSI              4
66 #define SPI_2_OSPEEDR           STM_OSPEEDR_10MHz
67
68 #define HAS_I2C_1               0
69
70 #define HAS_I2C_2               0
71
72 #define PACKET_HAS_SLAVE        0
73 #define PACKET_HAS_MASTER       0
74
75 #define FAST_TIMER_FREQ         200     /* 5ms for debouncing */
76
77 /*
78  * Radio is a cc1120 connected via SPI
79  */
80
81 #define AO_RADIO_CAL_DEFAULT    0x6ca333
82
83 #define AO_FEC_DEBUG            0
84 #define AO_CC1120_SPI_CS_PORT   (&stm_gpiod)
85 #define AO_CC1120_SPI_CS_PIN    0
86 #define AO_CC1120_SPI_BUS       AO_SPI_2_PD1_PD3_PD4
87 #define AO_CC1120_SPI           stm_spi2
88
89 #define AO_CC1120_INT_PORT              (&stm_gpioc)
90 #define AO_CC1120_INT_PIN               (15)
91 #define AO_CC1120_MCU_WAKEUP_PORT       (&stm_gpiod)
92 #define AO_CC1120_MCU_WAKEUP_PIN        (2)
93
94 #define AO_CC1120_INT_GPIO      2
95 #define AO_CC1120_INT_GPIO_IOCFG        CC1120_IOCFG2
96
97 #define AO_CC1120_MARC_GPIO     3
98 #define AO_CC1120_MARC_GPIO_IOCFG       CC1120_IOCFG3
99
100
101 #define LOW_LEVEL_DEBUG         0
102
103 #define LED_PORT_ENABLE         STM_RCC_AHBENR_GPIOCEN
104 #define LED_PORT                (&stm_gpioc)
105 #define LED_PIN_RED             7
106 #define LED_PIN_AMBER           8
107 #define LED_PIN_GREEN           9
108 #define LED_PIN_CONTINUITY_3    10
109 #define LED_PIN_CONTINUITY_2    11
110 #define LED_PIN_CONTINUITY_1    12
111 #define LED_PIN_CONTINUITY_0    13
112 #define LED_PIN_REMOTE_ARM      14
113 #define AO_LED_RED              (1 << LED_PIN_RED)
114 #define AO_LED_AMBER            (1 << LED_PIN_AMBER)
115 #define AO_LED_GREEN            (1 << LED_PIN_GREEN)
116 #define AO_LED_CONTINUITY_3     (1 << LED_PIN_CONTINUITY_3)
117 #define AO_LED_CONTINUITY_2     (1 << LED_PIN_CONTINUITY_2)
118 #define AO_LED_CONTINUITY_1     (1 << LED_PIN_CONTINUITY_1)
119 #define AO_LED_CONTINUITY_0     (1 << LED_PIN_CONTINUITY_0)
120
121 #define AO_LED_CONTINUITY_NUM   4
122
123 #define AO_LED_REMOTE_ARM       (1 << LED_PIN_REMOTE_ARM)
124
125 #define LEDS_AVAILABLE          (AO_LED_RED |           \
126                                  AO_LED_AMBER |         \
127                                  AO_LED_GREEN |         \
128                                  AO_LED_CONTINUITY_3 |  \
129                                  AO_LED_CONTINUITY_2 |  \
130                                  AO_LED_CONTINUITY_1 |  \
131                                  AO_LED_CONTINUITY_0 |  \
132                                  AO_LED_REMOTE_ARM)
133
134 /* LCD displays */
135
136 #define LCD_DEBUG               0
137 #define SEVEN_SEGMENT_DEBUG     0
138
139 #define AO_LCD_STM_SEG_ENABLED_0 (              \
140                 (1 << 0) | /* PA1 */            \
141                 (1 << 1) | /* PA2 */            \
142                 (1 << 2) | /* PA3 */            \
143                 (1 << 3) | /* PA6 */            \
144                 (1 << 4) | /* PA7 */            \
145                 (1 << 5) | /* PB0 */            \
146                 (1 << 6) | /* PB1 */            \
147                 (1 << 7) | /* PB3 */            \
148                 (1 << 8) | /* PB4 */            \
149                 (1 << 9) | /* PB5 */            \
150                 (1 << 10) | /* PB10 */          \
151                 (1 << 11) | /* PB11 */          \
152                 (1 << 12) | /* PB12 */          \
153                 (1 << 13) | /* PB13 */          \
154                 (1 << 14) | /* PB14 */          \
155                 (1 << 15) | /* PB15 */          \
156                 (1 << 16) | /* PB8 */           \
157                 (1 << 17) | /* PA15 */          \
158                 (1 << 18) | /* PC0 */           \
159                 (1 << 19) | /* PC1 */           \
160                 (1 << 20) | /* PC2 */           \
161                 (1 << 21) | /* PC3 */           \
162                 (1 << 22) | /* PC4 */           \
163                 (1 << 23) | /* PC5 */           \
164                 (0 << 24) | /* PC6 */           \
165                 (0 << 25) | /* PC7 */           \
166                 (0 << 26) | /* PC8 */           \
167                 (0 << 27) | /* PC9 */           \
168                 (0 << 28) | /* PC10 or PD8 */   \
169                 (0 << 29) | /* PC11 or PD9 */   \
170                 (0 << 30) | /* PC12 or PD10 */  \
171                 (0 << 31))  /* PD2 or PD11 */
172
173 #define AO_LCD_STM_SEG_ENABLED_1 (              \
174                 (0 << 0) | /* PD12 */           \
175                 (0 << 1) | /* PD13 */           \
176                 (0 << 2) | /* PD14 */           \
177                 (0 << 3) | /* PD15 */           \
178                 (0 << 4) | /* PE0 */            \
179                 (0 << 5) | /* PE1 */            \
180                 (0 << 6) | /* PE2 */            \
181                 (0 << 7))  /* PE3 */
182
183 #define AO_LCD_STM_COM_ENABLED (                \
184                 (1 << 0) | /* PA8 */            \
185                 (0 << 1) | /* PA9 */            \
186                 (0 << 2) | /* PA10 */           \
187                 (0 << 3) | /* PB9 */            \
188                 (0 << 4) | /* PC10 */           \
189                 (0 << 5) | /* PC11 */           \
190                 (0 << 6)) /* PC12 */
191
192 #define AO_LCD_28_ON_C  0
193
194 #define AO_LCD_DUTY     STM_LCD_CR_DUTY_STATIC
195
196 #define AO_LCD_PER_DIGIT        1
197
198 #define AO_LCD_DIGITS           3
199 #define AO_LCD_SEGMENTS         8
200
201 #define AO_SEGMENT_MAP {                        \
202                 /* pad segments */              \
203                 { 0, 14 },                      \
204                 { 0, 13 },                      \
205                 { 0, 15 },                      \
206                 { 0, 17 },                      \
207                 { 0, 16 },                      \
208                 { 0, 8 },                       \
209                 { 0, 9 },                       \
210                 { 0, 7 },                       \
211                 /* box1 segments */             \
212                 { 0, 10 },                      \
213                 { 0, 6 },                       \
214                 { 0, 11 },                      \
215                 { 0, 12 },                      \
216                 { 0, 21 },                      \
217                 { 0, 19 },                      \
218                 { 0, 20 },                      \
219                 { 0, 18 },                      \
220                 /* box0 segments */             \
221                 { 0, 22 },                      \
222                 { 0, 4 },                       \
223                 { 0, 23 },                      \
224                 { 0, 5 },                       \
225                 { 0, 3 },                       \
226                 { 0, 1 },                       \
227                 { 0, 2 },                       \
228                 { 0, 0 },                       \
229 }
230
231 /*
232  * Use event queue for input devices
233  */
234
235 #define AO_EVENT                1
236
237 /*
238  * Knobs
239  */
240
241 #define AO_QUADRATURE_COUNT     2
242
243 #define AO_QUADRATURE_0_PORT    &stm_gpioe
244 #define AO_QUADRATURE_0_A       3
245 #define AO_QUADRATURE_0_B       2
246
247 #define AO_QUADRATURE_PAD       0
248
249 #define AO_QUADRATURE_1_PORT    &stm_gpioe
250 #define AO_QUADRATURE_1_A       1
251 #define AO_QUADRATURE_1_B       0
252
253 #define AO_QUADRATURE_BOX       1
254
255 /*
256  * Buttons
257  */
258
259 #define AO_BUTTON_COUNT         2
260 #define AO_BUTTON_MODE          AO_EXTI_MODE_PULL_UP
261
262 #define AO_BUTTON_0_PORT        &stm_gpioe
263 #define AO_BUTTON_0             4
264
265 #define AO_BUTTON_ARM           0
266
267 #define AO_BUTTON_1_PORT        &stm_gpioe
268 #define AO_BUTTON_1             5
269
270 #define AO_BUTTON_FIRE          1
271
272 #endif /* _AO_PINS_H_ */