altos: Add generic LED driver.
[fw/altos] / src / stm32f4-disco / ao_pins.h
1 /*
2  * Copyright © 2018 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 #ifndef _AO_PINS_H_
15 #define _AO_PINS_H_
16
17 /* Clock tree configuration */
18 #define AO_HSE          8000000 /* fed from st/link processor */
19 #define AO_HSE_BYPASS   1       /* no xtal, directly fed */
20
21 #define AO_PLL_M        4       /* down to 2MHz */
22
23 #define AO_PLL1_N       96      /* up to 192MHz */
24 #define AO_PLL1_P       2       /* down to 96MHz */
25 #define AO_PLL1_Q       4       /* down to 48MHz for USB and SDIO */
26
27 #define AO_AHB_PRESCALER        1
28 #define AO_RCC_CFGR_HPRE_DIV    STM_RCC_CFGR_HPRE_DIV_1
29
30 #define AO_APB1_PRESCALER       1
31 #define AO_RCC_CFGR_PPRE1_DIV   STM_RCC_CFGR_PPRE1_DIV_1
32 #define AO_APB2_PRESCALER       1
33 #define AO_RCC_CFGR_PPRE2_DIV   STM_RCC_CFGR_PPRE2_DIV_1
34
35 #define DEBUG_THE_CLOCK 1
36
37 #define HAS_USB         0
38 #define HAS_BEEP        0
39
40 #define B_USER_PORT     (&stm_gpioa)
41 #define B_USER_PIN      0
42
43 /* LEDs */
44
45 #define HAS_LED         1
46
47 #define LED_0_PORT      (&stm_gpioc)
48 #define LED_0_PIN       5
49 #define LED_GREEN       (1 << 0)
50
51 #define LED_1_PORT      (&stm_gpioe)
52 #define LED_1_PIN       3
53 #define LED_RED         (1 << 1)
54
55 #endif /* _AO_PINS_H_ */