altos/test: Adjust CRC error rate after FEC fix
[fw/altos] / src / telelco-v2.0 / 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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #ifndef _AO_PINS_H_
20 #define _AO_PINS_H_
21
22 /* 8MHz High speed external crystal */
23 #define AO_HSE                  8000000
24
25 /* PLLVCO = 96MHz (so that USB will work) */
26 #define AO_PLLMUL               12
27 #define AO_RCC_CFGR_PLLMUL      (STM_RCC_CFGR_PLLMUL_12)
28
29 #define AO_CC1200_FOSC          40000000
30
31 /* SYSCLK = 32MHz (no need to go faster than CPU) */
32 #define AO_PLLDIV               3
33 #define AO_RCC_CFGR_PLLDIV      (STM_RCC_CFGR_PLLDIV_3)
34
35 /* HCLK = 32MHz (CPU clock) */
36 #define AO_AHB_PRESCALER        1
37 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
38
39 /* Run APB1 at 16MHz (HCLK/2) */
40 #define AO_APB1_PRESCALER       2
41 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE2_DIV_2
42
43 /* Run APB2 at 16MHz (HCLK/2) */
44 #define AO_APB2_PRESCALER       2
45 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_2
46
47 #define HAS_EEPROM              1
48 #define USE_INTERNAL_FLASH      1
49 #define USE_EEPROM_CONFIG       1
50 #define USE_STORAGE_CONFIG      0
51 #define HAS_USB                 1
52 #define HAS_BEEP                1
53 #define BEEPER_TIMER            3
54 #define BEEPER_CHANNEL          1
55 #define BEEPER_PORT             (&stm_gpioc)
56 #define BEEPER_PIN              6
57 #define HAS_RADIO               1
58 #define HAS_RADIO_RATE          1
59 #define HAS_TELEMETRY           0
60 #define HAS_AES                 1
61 #define HAS_STATIC_TEST         0
62
63 #define HAS_SPI_1               0
64 #define SPI_1_PA5_PA6_PA7       0
65 #define SPI_1_PB3_PB4_PB5       0
66 #define SPI_1_PE13_PE14_PE15    0
67
68 #define HAS_SPI_2               1       /* CC1200 */
69 #define SPI_2_PB13_PB14_PB15    0
70 #define SPI_2_PD1_PD3_PD4       1
71 #define SPI_2_GPIO              (&stm_gpiod)
72 #define SPI_2_SCK               1
73 #define SPI_2_MISO              3
74 #define SPI_2_MOSI              4
75 #define SPI_2_OSPEEDR           STM_OSPEEDR_10MHz
76
77 #define HAS_I2C_1               0
78
79 #define HAS_I2C_2               0
80
81 #define PACKET_HAS_SLAVE        0
82 #define PACKET_HAS_MASTER       0
83
84 #define FAST_TIMER_FREQ         10000   /* .1ms for debouncing */
85
86 /*
87  * Radio is a cc1200 connected via SPI
88  */
89
90 #define AO_RADIO_CAL_DEFAULT    5695733
91
92 #define AO_CC1200_SPI_CS_PORT   (&stm_gpiod)
93 #define AO_CC1200_SPI_CS_PIN    0
94 #define AO_CC1200_SPI_BUS       AO_SPI_2_PD1_PD3_PD4
95 #define AO_CC1200_SPI           stm_spi2
96
97 #define AO_CC1200_INT_PORT              (&stm_gpiod)
98 #define AO_CC1200_INT_PIN               (5)
99
100 #define AO_CC1200_INT_GPIO      2
101 #define AO_CC1200_INT_GPIO_IOCFG        CC1200_IOCFG2
102
103 #define LOW_LEVEL_DEBUG         0
104
105 #define HAS_LED                 1
106
107 /* PC7 - PC9, LED 0 - 2 */
108 #define LED_0_PORT              (&stm_gpioc)
109 #define LED_0_PIN               7
110 #define LED_1_PORT              (&stm_gpioc)
111 #define LED_1_PIN               8
112 #define LED_2_PORT              (&stm_gpioc)
113 #define LED_2_PIN               9
114
115 /* PD8 - PD10, LED 3 - 5 */
116 #define LED_3_PORT              (&stm_gpiod)
117 #define LED_3_PIN               8
118 #define LED_4_PORT              (&stm_gpiod)
119 #define LED_4_PIN               9
120 #define LED_5_PORT              (&stm_gpiod)
121 #define LED_5_PIN               10
122
123 /* PE2 - PE11 (not PE6), LED 6-14 */
124 #define LED_6_PORT              (&stm_gpioe)
125 #define LED_6_PIN               2
126 #define LED_7_PORT              (&stm_gpioe)
127 #define LED_7_PIN               3
128 #define LED_8_PORT              (&stm_gpioe)
129 #define LED_8_PIN               4
130 #define LED_9_PORT              (&stm_gpioe)
131 #define LED_9_PIN               5
132 #define LED_10_PORT             (&stm_gpioe)
133 #define LED_10_PIN              7
134 #define LED_11_PORT             (&stm_gpioe)
135 #define LED_11_PIN              8
136 #define LED_12_PORT             (&stm_gpioe)
137 #define LED_12_PIN              9
138 #define LED_13_PORT             (&stm_gpioe)
139 #define LED_13_PIN              10
140 #define LED_14_PORT             (&stm_gpioe)
141 #define LED_14_PIN              11
142
143 /* PA5, LED 15 */
144 #define LED_15_PORT             (&stm_gpioa)
145 #define LED_15_PIN              5
146
147 #define AO_LED_RED              AO_LED_0
148 #define AO_LED_AMBER            AO_LED_1
149 #define AO_LED_GREEN            AO_LED_2
150 #define AO_LED_BOX              AO_LED_3
151 #define AO_LED_PAD              AO_LED_4
152 #define AO_LED_DRAG             AO_LED_5
153 #define AO_LED_CONTINUITY_7     AO_LED_6
154 #define AO_LED_CONTINUITY_6     AO_LED_7
155 #define AO_LED_CONTINUITY_5     AO_LED_8
156 #define AO_LED_CONTINUITY_4     AO_LED_9
157 #define AO_LED_CONTINUITY_3     AO_LED_10
158 #define AO_LED_CONTINUITY_2     AO_LED_11
159 #define AO_LED_CONTINUITY_1     AO_LED_12
160 #define AO_LED_CONTINUITY_0     AO_LED_13
161 #define AO_LED_CONTINUITY_NUM   8
162 #define AO_LED_REMOTE_ARM       AO_LED_14
163 #define AO_LED_FIRE             AO_LED_15
164
165 /* LCD displays */
166
167 #define LCD_DEBUG               0
168 #define SEVEN_SEGMENT_DEBUG     0
169
170 #define AO_LCD_STM_SEG_ENABLED_0 (              \
171                 (1 << 0) | /* PA1 */            \
172                 (1 << 1) | /* PA2 */            \
173                 (1 << 2) | /* PA3 */            \
174                 (1 << 3) | /* PA6 */            \
175                 (1 << 4) | /* PA7 */            \
176                 (1 << 5) | /* PB0 */            \
177                 (1 << 6) | /* PB1 */            \
178                 (1 << 7) | /* PB3 */            \
179                 (1 << 8) | /* PB4 */            \
180                 (1 << 9) | /* PB5 */            \
181                 (1 << 10) | /* PB10 */          \
182                 (1 << 11) | /* PB11 */          \
183                 (1 << 12) | /* PB12 */          \
184                 (1 << 13) | /* PB13 */          \
185                 (1 << 14) | /* PB14 */          \
186                 (1 << 15) | /* PB15 */          \
187                 (1 << 16) | /* PB8 */           \
188                 (1 << 17) | /* PA15 */          \
189                 (1 << 18) | /* PC0 */           \
190                 (1 << 19) | /* PC1 */           \
191                 (1 << 20) | /* PC2 */           \
192                 (1 << 21) | /* PC3 */           \
193                 (1 << 22) | /* PC4 */           \
194                 (1 << 23) | /* PC5 */           \
195                 (0 << 24) | /* PC6 */           \
196                 (0 << 25) | /* PC7 */           \
197                 (0 << 26) | /* PC8 */           \
198                 (0 << 27) | /* PC9 */           \
199                 (0 << 28) | /* PC10 or PD8 */   \
200                 (0 << 29) | /* PC11 or PD9 */   \
201                 (0 << 30) | /* PC12 or PD10 */  \
202                 (0 << 31))  /* PD2 or PD11 */
203
204 #define AO_LCD_STM_SEG_ENABLED_1 (              \
205                 (0 << 0) | /* PD12 */           \
206                 (0 << 1) | /* PD13 */           \
207                 (0 << 2) | /* PD14 */           \
208                 (0 << 3) | /* PD15 */           \
209                 (0 << 4) | /* PE0 */            \
210                 (0 << 5) | /* PE1 */            \
211                 (0 << 6) | /* PE2 */            \
212                 (0 << 7))  /* PE3 */
213
214 #define AO_LCD_STM_COM_ENABLED (                \
215                 (1 << 0) | /* PA8 */            \
216                 (0 << 1) | /* PA9 */            \
217                 (0 << 2) | /* PA10 */           \
218                 (0 << 3) | /* PB9 */            \
219                 (0 << 4) | /* PC10 */           \
220                 (0 << 5) | /* PC11 */           \
221                 (0 << 6)) /* PC12 */
222
223 #define AO_LCD_28_ON_C  0
224
225 #define AO_LCD_DUTY     STM_LCD_CR_DUTY_STATIC
226
227 #define AO_LCD_PER_DIGIT        1
228
229 #define AO_LCD_DIGITS           3
230 #define AO_LCD_SEGMENTS         8
231
232 #define AO_SEGMENT_MAP {                        \
233                 /* pad segments */              \
234                 { 0, 14 },                      \
235                 { 0, 13 },                      \
236                 { 0, 15 },                      \
237                 { 0, 17 },                      \
238                 { 0, 16 },                      \
239                 { 0, 8 },                       \
240                 { 0, 9 },                       \
241                 { 0, 7 },                       \
242                 /* box1 segments */             \
243                 { 0, 10 },                      \
244                 { 0, 6 },                       \
245                 { 0, 11 },                      \
246                 { 0, 12 },                      \
247                 { 0, 21 },                      \
248                 { 0, 19 },                      \
249                 { 0, 20 },                      \
250                 { 0, 18 },                      \
251                 /* box0 segments */             \
252                 { 0, 22 },                      \
253                 { 0, 4 },                       \
254                 { 0, 23 },                      \
255                 { 0, 5 },                       \
256                 { 0, 3 },                       \
257                 { 0, 1 },                       \
258                 { 0, 2 },                       \
259                 { 0, 0 },                       \
260 }
261
262 /*
263  * Use event queue for input devices
264  */
265
266 #define AO_EVENT                1
267
268 /*
269  * Knobs
270  */
271
272 #define AO_QUADRATURE_COUNT     1
273 #define AO_QUADRATURE_DEBOUNCE  0
274 #define AO_QUADRATURE_SINGLE_CODE       1
275
276 #define AO_QUADRATURE_0_PORT    &stm_gpioe
277 #define AO_QUADRATURE_0_A       15
278 #define AO_QUADRATURE_0_B       14
279
280 #define AO_QUADRATURE_SELECT    0
281
282 /*
283  * Buttons
284  */
285
286 #define AO_BUTTON_COUNT         9
287 #define AO_BUTTON_MODE          AO_EXTI_MODE_PULL_UP
288
289 #define AO_BUTTON_DRAG_MODE     0
290 #define AO_BUTTON_0_PORT        &stm_gpioe
291 #define AO_BUTTON_0             1
292
293 #define AO_BUTTON_DRAG_SELECT   1
294 #define AO_BUTTON_1_PORT        &stm_gpioe
295 #define AO_BUTTON_1             0
296
297 #define AO_BUTTON_SPARE1        2
298 #define AO_BUTTON_2_PORT        &stm_gpiob
299 #define AO_BUTTON_2             9
300
301 #define AO_BUTTON_SPARE2        3
302 #define AO_BUTTON_3_PORT        &stm_gpiob
303 #define AO_BUTTON_3             7
304
305 #define AO_BUTTON_SPARE3        4
306 #define AO_BUTTON_4_PORT        &stm_gpiob
307 #define AO_BUTTON_4             6
308
309 #define AO_BUTTON_ARM           5
310 #define AO_BUTTON_5_PORT        &stm_gpioe
311 #define AO_BUTTON_5             12
312
313 #define AO_BUTTON_FIRE          6
314 #define AO_BUTTON_6_PORT        &stm_gpioa
315 #define AO_BUTTON_6             4
316
317 #define AO_BUTTON_SPARE4        7
318 #define AO_BUTTON_7_PORT        &stm_gpiod
319 #define AO_BUTTON_7             11
320
321 #define AO_BUTTON_ENCODER_SELECT        8
322 #define AO_BUTTON_8_PORT        &stm_gpioe
323 #define AO_BUTTON_8             13
324
325 /* ADC */
326
327 struct ao_adc {
328         int16_t         v_batt;
329 };
330
331 #define AO_ADC_DUMP(p) \
332         printf("batt: %5d\n", (p)->v_batt)
333
334 #define HAS_ADC_SINGLE          1
335 #define HAS_ADC_TEMP            0
336 #define HAS_BATTERY_REPORT      1
337
338 #define AO_ADC_V_BATT           0
339 #define AO_ADC_V_BATT_PORT      (&stm_gpioa)
340 #define AO_ADC_V_BATT_PIN       0
341
342 #define AO_ADC_RCC_AHBENR       (1 << STM_RCC_AHBENR_GPIOAEN)
343
344 #define AO_ADC_PIN0_PORT        AO_ADC_V_BATT_PORT
345 #define AO_ADC_PIN0_PIN         AO_ADC_V_BATT_PIN
346
347 #define AO_ADC_SQ1              AO_ADC_V_BATT
348
349 #define AO_NUM_ADC              1
350
351 /*
352  * Voltage divider on ADC battery sampler
353  */
354 #define AO_BATTERY_DIV_PLUS     15      /* 15k */
355 #define AO_BATTERY_DIV_MINUS    27      /* 27k */
356
357 /*
358  * ADC reference in decivolts
359  */
360 #define AO_ADC_REFERENCE_DV     33
361
362 #endif /* _AO_PINS_H_ */