amiro-os / modules / PowerManagement_1-1 / board.c @ 20a4e01c
History | View | Annotate | Download (5.696 KB)
1 |
/*
|
---|---|
2 |
AMiRo-OS is an operating system designed for the Autonomous Mini Robot (AMiRo) platform.
|
3 |
Copyright (C) 2016..2018 Thomas Schöpping et al.
|
4 |
|
5 |
This program is free software: you can redistribute it and/or modify
|
6 |
it under the terms of the GNU General Public License as published by
|
7 |
the Free Software Foundation, either version 3 of the License, or
|
8 |
(at your option) any later version.
|
9 |
|
10 |
This program is distributed in the hope that it will be useful,
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13 |
GNU General Public License for more details.
|
14 |
|
15 |
You should have received a copy of the GNU General Public License
|
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17 |
*/
|
18 |
|
19 |
/**
|
20 |
* @file
|
21 |
* @brief PowerManagement v1.1 Board specific initializations.
|
22 |
*
|
23 |
* @addtogroup powermanagement_board
|
24 |
* @{
|
25 |
*/
|
26 |
|
27 |
#include <hal.h> |
28 |
#include <stm32_gpio.h> |
29 |
|
30 |
/**
|
31 |
* @brief GPIO initialization.
|
32 |
*
|
33 |
* @param[in] gpiop GPIO register block.
|
34 |
* @param[in] config GPIO configuration.
|
35 |
*/
|
36 |
|
37 |
|
38 |
|
39 |
/**
|
40 |
* @brief GPIO initialization.
|
41 |
*
|
42 |
* @param[in] gpiop GPIO register block.
|
43 |
* @param[in] moder Mode register configuration.
|
44 |
* @param[in] otyper Otype register configuration.
|
45 |
* @param[in] ospeedr Ospeed register configuration.
|
46 |
* @param[in] pupdr Pupd register configuration.
|
47 |
* @param[in] odr OD register configuration.
|
48 |
* @param[in] afrl AF register (low) configuration.
|
49 |
* @param[in] afrh AF register (high ) configuration.
|
50 |
* @param[in] ignmask Mask to ignore individual pads.
|
51 |
*/
|
52 |
static void gpio_init(stm32_gpio_t *gpiop, |
53 |
const uint32_t moder,
|
54 |
const uint32_t otyper,
|
55 |
const uint32_t ospeedr,
|
56 |
const uint32_t pupdr,
|
57 |
const uint32_t odr,
|
58 |
const uint32_t afrl,
|
59 |
const uint32_t afrh,
|
60 |
const uint16_t ignmask) {
|
61 |
|
62 |
uint32_t ignmask2 = 0;
|
63 |
uint32_t ignmask4_low = 0;
|
64 |
uint32_t ignmask4_high = 0;
|
65 |
|
66 |
/* some bit-magic to fan out the mask */
|
67 |
const uint8_t lut[] = {0x00, 0x03, 0x0C, 0x0F, |
68 |
0x30, 0x33, 0x3C, 0x3F, |
69 |
0xC0, 0xC3, 0xCC, 0xCF, |
70 |
0xF0, 0xF3, 0xFC, 0xFF}; |
71 |
for (uint8_t i = 0; i < 4; ++i) { |
72 |
ignmask2 |= lut[(ignmask >> 4*i) & 0x0F] << (8*i); |
73 |
ignmask4_low |= lut[lut[(ignmask >> 2*i) & 0x03]] << (8*i); |
74 |
ignmask4_high |= lut[lut[(ignmask >> (8 + 2*i)) & 0x03]] << (8*i); |
75 |
} |
76 |
|
77 |
gpiop->OTYPER = (gpiop->OTYPER & ignmask ) | (otyper & ~ignmask ); |
78 |
gpiop->OSPEEDR = (gpiop->OSPEEDR & ignmask2 ) | (ospeedr & ~ignmask2 ); |
79 |
gpiop->PUPDR = (gpiop->PUPDR & ignmask2 ) | (pupdr & ~ignmask2 ); |
80 |
gpiop->ODR = (gpiop->ODR & ignmask ) | (odr & ~ignmask ); |
81 |
gpiop->AFRL = (gpiop->AFRL & ignmask4_low ) | (afrl & ~ignmask4_low ); |
82 |
gpiop->AFRH = (gpiop->AFRH & ignmask4_high) | (afrh & ~ignmask4_high); |
83 |
gpiop->MODER = (gpiop->MODER & ignmask2 ) | (moder & ~ignmask2 ); |
84 |
} |
85 |
|
86 |
/**
|
87 |
* @brief GPIO initilization for all ports.
|
88 |
*/
|
89 |
static void stm32_gpio_init(void) { |
90 |
|
91 |
/* Enabling GPIO-related clocks, the mask comes from the
|
92 |
registry header file.*/
|
93 |
rccResetAHB1(STM32_GPIO_EN_MASK); |
94 |
rccEnableAHB1(STM32_GPIO_EN_MASK, true);
|
95 |
|
96 |
/* Initializing all the defined GPIO ports.*/
|
97 |
#if STM32_HAS_GPIOA
|
98 |
gpio_init(GPIOA, VAL_GPIOA_MODER, VAL_GPIOA_OTYPER, VAL_GPIOA_OSPEEDR, VAL_GPIOA_PUPDR, VAL_GPIOA_ODR, VAL_GPIOA_AFRL, VAL_GPIOA_AFRH, VAL_GPIOA_IGNORE); |
99 |
#endif
|
100 |
#if STM32_HAS_GPIOB
|
101 |
gpio_init(GPIOB, VAL_GPIOB_MODER, VAL_GPIOB_OTYPER, VAL_GPIOB_OSPEEDR, VAL_GPIOB_PUPDR, VAL_GPIOB_ODR, VAL_GPIOB_AFRL, VAL_GPIOB_AFRH, VAL_GPIOB_IGNORE); |
102 |
#endif
|
103 |
#if STM32_HAS_GPIOC
|
104 |
gpio_init(GPIOC, VAL_GPIOC_MODER, VAL_GPIOC_OTYPER, VAL_GPIOC_OSPEEDR, VAL_GPIOC_PUPDR, VAL_GPIOC_ODR, VAL_GPIOC_AFRL, VAL_GPIOC_AFRH, VAL_GPIOC_IGNORE); |
105 |
#endif
|
106 |
#if STM32_HAS_GPIOD
|
107 |
gpio_init(GPIOD, VAL_GPIOD_MODER, VAL_GPIOD_OTYPER, VAL_GPIOD_OSPEEDR, VAL_GPIOD_PUPDR, VAL_GPIOD_ODR, VAL_GPIOD_AFRL, VAL_GPIOD_AFRH, VAL_GPIOD_IGNORE); |
108 |
#endif
|
109 |
#if STM32_HAS_GPIOE
|
110 |
gpio_init(GPIOE, VAL_GPIOE_MODER, VAL_GPIOE_OTYPER, VAL_GPIOE_OSPEEDR, VAL_GPIOE_PUPDR, VAL_GPIOE_ODR, VAL_GPIOE_AFRL, VAL_GPIOE_AFRH, VAL_GPIOE_IGNORE); |
111 |
#endif
|
112 |
#if STM32_HAS_GPIOF
|
113 |
gpio_init(GPIOF, VAL_GPIOF_MODER, VAL_GPIOF_OTYPER, VAL_GPIOF_OSPEEDR, VAL_GPIOF_PUPDR, VAL_GPIOF_ODR, VAL_GPIOF_AFRL, VAL_GPIOF_AFRH, VAL_GPIOF_IGNORE); |
114 |
#endif
|
115 |
#if STM32_HAS_GPIOG
|
116 |
gpio_init(GPIOG, VAL_GPIOG_MODER, VAL_GPIOG_OTYPER, VAL_GPIOG_OSPEEDR, VAL_GPIOG_PUPDR, VAL_GPIOG_ODR, VAL_GPIOG_AFRL, VAL_GPIOG_AFRH, VAL_GPIOG_IGNORE); |
117 |
#endif
|
118 |
#if STM32_HAS_GPIOH
|
119 |
gpio_init(GPIOH, VAL_GPIOH_MODER, VAL_GPIOH_OTYPER, VAL_GPIOH_OSPEEDR, VAL_GPIOH_PUPDR, VAL_GPIOH_ODR, VAL_GPIOH_AFRL, VAL_GPIOH_AFRH, VAL_GPIOH_IGNORE); |
120 |
#endif
|
121 |
#if STM32_HAS_GPIOI
|
122 |
gpio_init(GPIOI, VAL_GPIOI_MODER, VAL_GPIOI_OTYPER, VAL_GPIOI_OSPEEDR, VAL_GPIOI_PUPDR, VAL_GPIOI_ODR, VAL_GPIOI_AFRL, VAL_GPIOI_AFRH, VAL_GPIOI_IGNORE); |
123 |
#endif
|
124 |
#if STM32_HAS_GPIOJ
|
125 |
gpio_init(GPIOJ, VAL_GPIOJ_MODER, VAL_GPIOJ_OTYPER, VAL_GPIOJ_OSPEEDR, VAL_GPIOJ_PUPDR, VAL_GPIOJ_ODR, VAL_GPIOJ_AFRL, VAL_GPIOJ_AFRH, VAL_GPIOJ_IGNORE); |
126 |
#endif
|
127 |
#if STM32_HAS_GPIOK
|
128 |
gpio_init(GPIOK, VAL_GPIOK_MODER, VAL_GPIOK_OTYPER, VAL_GPIOK_OSPEEDR, VAL_GPIOK_PUPDR, VAL_GPIOK_ODR, VAL_GPIOK_AFRL, VAL_GPIOK_AFRH, VAL_GPIOK_IGNORE); |
129 |
#endif
|
130 |
} |
131 |
|
132 |
/**
|
133 |
* @brief Early initialization code.
|
134 |
* @details This initialization must be performed just after stack setup
|
135 |
* and before any other initialization.
|
136 |
*/
|
137 |
void __early_init(void) { |
138 |
|
139 |
stm32_gpio_init(); |
140 |
stm32_clock_init(); |
141 |
} |
142 |
|
143 |
/**
|
144 |
* @brief Board-specific initialization code.
|
145 |
* @todo Add your board-specific code, if any.
|
146 |
*/
|
147 |
void boardInit(void) { |
148 |
} |
149 |
|
150 |
/** @} */
|