2 * Copyright © 2012 Keith Packard <keithp@keithp.com>
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.
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.
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.
21 volatile AO_TICK_TYPE ao_tick_count;
30 volatile __data uint8_t ao_data_interval = 1;
31 volatile __data uint8_t ao_data_count;
38 void stm_tim6_isr(void)
40 if (stm_tim6.sr & (1 << STM_TIM67_SR_UIF)) {
44 if (ao_task_alarm_tick && (int16_t) (ao_tick_count - ao_task_alarm_tick) >= 0)
45 ao_task_check_alarm((uint16_t) ao_tick_count);
48 if (++ao_data_count == ao_data_interval) {
51 #if (AO_DATA_ALL & ~(AO_DATA_ADC))
52 ao_wakeup((void *) &ao_data_count);
61 ao_timer_set_adc_interval(uint8_t interval)
64 ao_data_interval = interval;
71 * According to the STM clock-configuration, timers run
72 * twice as fast as the APB1 clock *if* the APB1 prescaler
76 #if AO_APB1_PRESCALER > 1
77 #define TIMER_23467_SCALER 2
79 #define TIMER_23467_SCALER 1
82 #define TIMER_10kHz ((AO_PCLK1 * TIMER_23467_SCALER) / 10000)
87 stm_nvic_set_enable(STM_ISR_TIM6_POS);
88 stm_nvic_set_priority(STM_ISR_TIM6_POS, AO_STM_NVIC_CLOCK_PRIORITY);
91 stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_TIM6EN);
93 stm_tim6.psc = TIMER_10kHz;
97 /* Enable update interrupt */
98 stm_tim6.dier = (1 << STM_TIM67_DIER_UIE);
100 /* Poke timer to reload values */
101 stm_tim6.egr |= (1 << STM_TIM67_EGR_UG);
103 stm_tim6.cr2 = (STM_TIM67_CR2_MMS_RESET << STM_TIM67_CR2_MMS);
106 stm_tim6.cr1 = ((0 << STM_TIM67_CR1_ARPE) |
107 (0 << STM_TIM67_CR1_OPM) |
108 (1 << STM_TIM67_CR1_URS) |
109 (0 << STM_TIM67_CR1_UDIS) |
110 (1 << STM_TIM67_CR1_CEN));
119 /* Switch to MSI while messing about */
120 stm_rcc.cr |= (1 << STM_RCC_CR_MSION);
121 while (!(stm_rcc.cr & (1 << STM_RCC_CR_MSIRDY)))
124 /* reset SW, HPRE, PPRE1, PPRE2, MCOSEL and MCOPRE */
125 stm_rcc.cfgr &= (uint32_t)0x88FFC00C;
127 /* reset HSION, HSEON, CSSON and PLLON bits */
128 stm_rcc.cr &= 0xeefefffe;
130 /* reset PLLSRC, PLLMUL and PLLDIV bits */
131 stm_rcc.cfgr &= 0xff02ffff;
133 /* Disable all interrupts */
138 stm_rcc.cr |= (1 << STM_RCC_CR_HSEBYP);
140 stm_rcc.cr &= ~(1 << STM_RCC_CR_HSEBYP);
142 /* Enable HSE clock */
143 stm_rcc.cr |= (1 << STM_RCC_CR_HSEON);
144 while (!(stm_rcc.cr & (1 << STM_RCC_CR_HSERDY)))
147 #define STM_RCC_CFGR_SWS_TARGET_CLOCK (STM_RCC_CFGR_SWS_HSE << STM_RCC_CFGR_SWS)
148 #define STM_RCC_CFGR_SW_TARGET_CLOCK (STM_RCC_CFGR_SW_HSE)
149 #define STM_PLLSRC AO_HSE
150 #define STM_RCC_CFGR_PLLSRC_TARGET_CLOCK (1 << STM_RCC_CFGR_PLLSRC)
152 #define STM_HSI 16000000
153 #define STM_RCC_CFGR_SWS_TARGET_CLOCK (STM_RCC_CFGR_SWS_HSI << STM_RCC_CFGR_SWS)
154 #define STM_RCC_CFGR_SW_TARGET_CLOCK (STM_RCC_CFGR_SW_HSI)
155 #define STM_PLLSRC STM_HSI
156 #define STM_RCC_CFGR_PLLSRC_TARGET_CLOCK (0 << STM_RCC_CFGR_PLLSRC)
159 #if !AO_HSE || HAS_ADC
160 /* Enable HSI RC clock 16MHz */
161 stm_rcc.cr |= (1 << STM_RCC_CR_HSION);
162 while (!(stm_rcc.cr & (1 << STM_RCC_CR_HSIRDY)))
166 /* Set flash latency to tolerate 32MHz SYSCLK -> 1 wait state */
168 /* Enable 64-bit access and prefetch */
169 stm_flash.acr |= (1 << STM_FLASH_ACR_ACC64);
170 stm_flash.acr |= (1 << STM_FLASH_ACR_PRFEN);
172 /* Enable 1 wait state so the CPU can run at 32MHz */
173 /* (haven't managed to run the CPU at 32MHz yet, it's at 16MHz) */
174 stm_flash.acr |= (1 << STM_FLASH_ACR_LATENCY);
176 /* Enable power interface clock */
177 stm_rcc.apb1enr |= (1 << STM_RCC_APB1ENR_PWREN);
179 /* Set voltage range to 1.8V */
181 /* poll VOSF bit in PWR_CSR. Wait until it is reset to 0 */
182 while ((stm_pwr.csr & (1 << STM_PWR_CSR_VOSF)) != 0)
185 /* Configure voltage scaling range */
187 cr &= ~(STM_PWR_CR_VOS_MASK << STM_PWR_CR_VOS);
188 cr |= (STM_PWR_CR_VOS_1_8 << STM_PWR_CR_VOS);
191 /* poll VOSF bit in PWR_CSR. Wait until it is reset to 0 */
192 while ((stm_pwr.csr & (1 << STM_PWR_CSR_VOSF)) != 0)
195 /* HCLK to 16MHz -> AHB prescaler = /1 */
197 cfgr &= ~(STM_RCC_CFGR_HPRE_MASK << STM_RCC_CFGR_HPRE);
198 cfgr |= (AO_RCC_CFGR_HPRE_DIV << STM_RCC_CFGR_HPRE);
200 while ((stm_rcc.cfgr & (STM_RCC_CFGR_HPRE_MASK << STM_RCC_CFGR_HPRE)) !=
201 (AO_RCC_CFGR_HPRE_DIV << STM_RCC_CFGR_HPRE))
204 /* APB1 Prescaler = AO_APB1_PRESCALER */
206 cfgr &= ~(STM_RCC_CFGR_PPRE1_MASK << STM_RCC_CFGR_PPRE1);
207 cfgr |= (AO_RCC_CFGR_PPRE1_DIV << STM_RCC_CFGR_PPRE1);
210 /* APB2 Prescaler = AO_APB2_PRESCALER */
212 cfgr &= ~(STM_RCC_CFGR_PPRE2_MASK << STM_RCC_CFGR_PPRE2);
213 cfgr |= (AO_RCC_CFGR_PPRE2_DIV << STM_RCC_CFGR_PPRE2);
216 /* Disable the PLL */
217 stm_rcc.cr &= ~(1 << STM_RCC_CR_PLLON);
218 while (stm_rcc.cr & (1 << STM_RCC_CR_PLLRDY))
221 /* PLLVCO to 96MHz (for USB) -> PLLMUL = 6, PLLDIV = 4 */
223 cfgr &= ~(STM_RCC_CFGR_PLLMUL_MASK << STM_RCC_CFGR_PLLMUL);
224 cfgr &= ~(STM_RCC_CFGR_PLLDIV_MASK << STM_RCC_CFGR_PLLDIV);
226 cfgr |= (AO_RCC_CFGR_PLLMUL << STM_RCC_CFGR_PLLMUL);
227 cfgr |= (AO_RCC_CFGR_PLLDIV << STM_RCC_CFGR_PLLDIV);
230 cfgr &= ~(1 << STM_RCC_CFGR_PLLSRC);
231 cfgr |= STM_RCC_CFGR_PLLSRC_TARGET_CLOCK;
235 /* Enable the PLL and wait for it */
236 stm_rcc.cr |= (1 << STM_RCC_CR_PLLON);
237 while (!(stm_rcc.cr & (1 << STM_RCC_CR_PLLRDY)))
240 /* Switch to the PLL for the system clock */
243 cfgr &= ~(STM_RCC_CFGR_SW_MASK << STM_RCC_CFGR_SW);
244 cfgr |= (STM_RCC_CFGR_SW_PLL << STM_RCC_CFGR_SW);
247 uint32_t c, part, mask, val;
250 mask = (STM_RCC_CFGR_SWS_MASK << STM_RCC_CFGR_SWS);
251 val = (STM_RCC_CFGR_SWS_PLL << STM_RCC_CFGR_SWS);
258 stm_rcc.apb2rstr = 0xffff;
259 stm_rcc.apb1rstr = 0xffff;
260 stm_rcc.ahbrstr = 0x3f;
261 stm_rcc.ahbenr = (1 << STM_RCC_AHBENR_FLITFEN);
265 stm_rcc.apb1rstr = 0;
266 stm_rcc.apb2rstr = 0;
269 /* Clear reset flags */
270 stm_rcc.csr |= (1 << STM_RCC_CSR_RMVF);
274 /* Output SYSCLK on PA8 for measurments */
276 stm_rcc.ahbenr |= (1 << STM_RCC_AHBENR_GPIOAEN);
278 stm_afr_set(&stm_gpioa, 8, STM_AFR_AF0);
279 stm_moder_set(&stm_gpioa, 8, STM_MODER_ALTERNATE);
280 stm_ospeedr_set(&stm_gpioa, 8, STM_OSPEEDR_40MHz);
282 stm_rcc.cfgr |= (STM_RCC_CFGR_MCOPRE_DIV_1 << STM_RCC_CFGR_MCOPRE);
283 stm_rcc.cfgr |= (STM_RCC_CFGR_MCOSEL_HSE << STM_RCC_CFGR_MCOSEL);