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