mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Mon Oct 02 15:33:19 2017 +0100
Revision:
174:b96e65c34a4d
Parent:
160:d5399cc887bb
Child:
182:a56a73fd2a6f
This updates the lib to the mbed lib v 152

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 149:156823d33999 1 /* mbed Microcontroller Library
<> 149:156823d33999 2 * Copyright (c) 2015-2016 Nuvoton
<> 149:156823d33999 3 *
<> 149:156823d33999 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 149:156823d33999 5 * you may not use this file except in compliance with the License.
<> 149:156823d33999 6 * You may obtain a copy of the License at
<> 149:156823d33999 7 *
<> 149:156823d33999 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 149:156823d33999 9 *
<> 149:156823d33999 10 * Unless required by applicable law or agreed to in writing, software
<> 149:156823d33999 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 149:156823d33999 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 149:156823d33999 13 * See the License for the specific language governing permissions and
<> 149:156823d33999 14 * limitations under the License.
<> 149:156823d33999 15 */
<> 149:156823d33999 16
<> 149:156823d33999 17 #include "us_ticker_api.h"
<> 149:156823d33999 18 #include "sleep_api.h"
<> 149:156823d33999 19 #include "mbed_assert.h"
<> 149:156823d33999 20 #include "nu_modutil.h"
<> 149:156823d33999 21 #include "nu_miscutil.h"
<> 160:d5399cc887bb 22 #include "mbed_critical.h"
<> 149:156823d33999 23
<> 149:156823d33999 24 // us_ticker tick = us = timestamp
<> 149:156823d33999 25 #define US_PER_TICK 1
<> 149:156823d33999 26 #define US_PER_SEC (1000 * 1000)
<> 149:156823d33999 27
<> 149:156823d33999 28 #define TMR0HIRES_CLK_PER_SEC (1000 * 1000)
<> 149:156823d33999 29 #define TMR1HIRES_CLK_PER_SEC (1000 * 1000)
<> 149:156823d33999 30
<> 149:156823d33999 31 #define US_PER_TMR0HIRES_CLK (US_PER_SEC / TMR0HIRES_CLK_PER_SEC)
<> 149:156823d33999 32 #define US_PER_TMR1HIRES_CLK (US_PER_SEC / TMR1HIRES_CLK_PER_SEC)
<> 149:156823d33999 33
<> 149:156823d33999 34 #define US_PER_TMR0HIRES_INT (1000 * 1000 * 10)
<> 149:156823d33999 35 #define TMR0HIRES_CLK_PER_TMR0HIRES_INT ((uint32_t) ((uint64_t) US_PER_TMR0HIRES_INT * TMR0HIRES_CLK_PER_SEC / US_PER_SEC))
<> 149:156823d33999 36
<> 149:156823d33999 37
<> 149:156823d33999 38 static void tmr0_vec(void);
<> 149:156823d33999 39 static void tmr1_vec(void);
<> 149:156823d33999 40 static void us_ticker_arm_cd(void);
<> 149:156823d33999 41
<> 149:156823d33999 42 static int us_ticker_inited = 0;
<> 149:156823d33999 43 static volatile uint32_t counter_major = 0;
<> 149:156823d33999 44 static volatile uint32_t cd_major_minor_us = 0;
<> 149:156823d33999 45 static volatile uint32_t cd_minor_us = 0;
<> 149:156823d33999 46
<> 149:156823d33999 47 // NOTE: PCLK is set up in mbed_sdk_init(), invocation of which must be before C++ global object constructor. See init_api.c for details.
<> 149:156823d33999 48 // NOTE: Choose clock source of timer:
<> 149:156823d33999 49 // 1. HIRC: Be the most accurate but might cause unknown HardFault.
<> 149:156823d33999 50 // 2. HXT: Less accurate and cannot pass mbed-drivers test.
<> 149:156823d33999 51 // 3. PCLK(HXT): Less accurate but can pass mbed-drivers test.
<> 149:156823d33999 52 // NOTE: TIMER_0 for normal counter, TIMER_1 for countdown.
<> 149:156823d33999 53 static const struct nu_modinit_s timer0hires_modinit = {TIMER_0, TMR0_MODULE, CLK_CLKSEL1_TMR0SEL_PCLK, 0, TMR0_RST, TMR0_IRQn, (void *) tmr0_vec};
<> 149:156823d33999 54 static const struct nu_modinit_s timer1hires_modinit = {TIMER_1, TMR1_MODULE, CLK_CLKSEL1_TMR1SEL_PCLK, 0, TMR1_RST, TMR1_IRQn, (void *) tmr1_vec};
<> 149:156823d33999 55
<> 149:156823d33999 56 #define TMR_CMP_MIN 2
<> 149:156823d33999 57 #define TMR_CMP_MAX 0xFFFFFFu
<> 149:156823d33999 58
<> 149:156823d33999 59 void us_ticker_init(void)
<> 149:156823d33999 60 {
<> 149:156823d33999 61 if (us_ticker_inited) {
<> 149:156823d33999 62 return;
<> 149:156823d33999 63 }
<> 149:156823d33999 64
<> 149:156823d33999 65 counter_major = 0;
<> 149:156823d33999 66 cd_major_minor_us = 0;
<> 149:156823d33999 67 cd_minor_us = 0;
<> 149:156823d33999 68 us_ticker_inited = 1;
<> 149:156823d33999 69
<> 149:156823d33999 70 // Reset IP
<> 149:156823d33999 71 SYS_ResetModule(timer0hires_modinit.rsetidx);
<> 159:612c381a210f 72 SYS_ResetModule(timer1hires_modinit.rsetidx);
<> 149:156823d33999 73
<> 149:156823d33999 74 // Select IP clock source
<> 149:156823d33999 75 CLK_SetModuleClock(timer0hires_modinit.clkidx, timer0hires_modinit.clksrc, timer0hires_modinit.clkdiv);
<> 159:612c381a210f 76 CLK_SetModuleClock(timer1hires_modinit.clkidx, timer1hires_modinit.clksrc, timer1hires_modinit.clkdiv);
<> 149:156823d33999 77 // Enable IP clock
<> 149:156823d33999 78 CLK_EnableModuleClock(timer0hires_modinit.clkidx);
<> 159:612c381a210f 79 CLK_EnableModuleClock(timer1hires_modinit.clkidx);
<> 149:156823d33999 80
<> 149:156823d33999 81 // Timer for normal counter
<> 149:156823d33999 82 uint32_t clk_timer0 = TIMER_GetModuleClock((TIMER_T *) NU_MODBASE(timer0hires_modinit.modname));
<> 149:156823d33999 83 uint32_t prescale_timer0 = clk_timer0 / TMR0HIRES_CLK_PER_SEC - 1;
<> 149:156823d33999 84 MBED_ASSERT((prescale_timer0 != (uint32_t) -1) && prescale_timer0 <= 127);
<> 149:156823d33999 85 MBED_ASSERT((clk_timer0 % TMR0HIRES_CLK_PER_SEC) == 0);
<> 149:156823d33999 86 uint32_t cmp_timer0 = TMR0HIRES_CLK_PER_TMR0HIRES_INT;
<> 149:156823d33999 87 MBED_ASSERT(cmp_timer0 >= TMR_CMP_MIN && cmp_timer0 <= TMR_CMP_MAX);
<> 149:156823d33999 88 ((TIMER_T *) NU_MODBASE(timer0hires_modinit.modname))->CTL = TIMER_PERIODIC_MODE | prescale_timer0 | TIMER_CTL_CNTDATEN_Msk;
<> 149:156823d33999 89 ((TIMER_T *) NU_MODBASE(timer0hires_modinit.modname))->CMP = cmp_timer0;
<> 149:156823d33999 90
<> 149:156823d33999 91 NVIC_SetVector(timer0hires_modinit.irq_n, (uint32_t) timer0hires_modinit.var);
<> 159:612c381a210f 92 NVIC_SetVector(timer1hires_modinit.irq_n, (uint32_t) timer1hires_modinit.var);
<> 149:156823d33999 93
<> 149:156823d33999 94 NVIC_EnableIRQ(timer0hires_modinit.irq_n);
<> 159:612c381a210f 95 NVIC_EnableIRQ(timer1hires_modinit.irq_n);
<> 149:156823d33999 96
<> 149:156823d33999 97 TIMER_EnableInt((TIMER_T *) NU_MODBASE(timer0hires_modinit.modname));
<> 149:156823d33999 98 TIMER_Start((TIMER_T *) NU_MODBASE(timer0hires_modinit.modname));
<> 149:156823d33999 99 }
<> 149:156823d33999 100
<> 149:156823d33999 101 uint32_t us_ticker_read()
<> 149:156823d33999 102 {
<> 149:156823d33999 103 if (! us_ticker_inited) {
<> 149:156823d33999 104 us_ticker_init();
<> 149:156823d33999 105 }
<> 149:156823d33999 106
<> 149:156823d33999 107 TIMER_T * timer0_base = (TIMER_T *) NU_MODBASE(timer0hires_modinit.modname);
<> 149:156823d33999 108
<> 149:156823d33999 109 do {
<> 149:156823d33999 110 uint32_t major_minor_us;
<> 149:156823d33999 111 uint32_t minor_us;
<> 149:156823d33999 112
<> 149:156823d33999 113 // NOTE: As TIMER_CNT = TIMER_CMP and counter_major has increased by one, TIMER_CNT doesn't change to 0 for one tick time.
<> 149:156823d33999 114 // NOTE: As TIMER_CNT = TIMER_CMP or TIMER_CNT = 0, counter_major (ISR) may not sync with TIMER_CNT. So skip and fetch stable one at the cost of 1 clock delay on this read.
<> 149:156823d33999 115 do {
<> 149:156823d33999 116 core_util_critical_section_enter();
<> 149:156823d33999 117
<> 149:156823d33999 118 // NOTE: Order of reading minor_us/carry here is significant.
<> 149:156823d33999 119 minor_us = TIMER_GetCounter(timer0_base) * US_PER_TMR0HIRES_CLK;
<> 149:156823d33999 120 uint32_t carry = (timer0_base->INTSTS & TIMER_INTSTS_TIF_Msk) ? 1 : 0;
<> 149:156823d33999 121 // When TIMER_CNT approaches TIMER_CMP and will wrap soon, we may get carry but TIMER_CNT not wrapped. Hanlde carefully carry == 1 && TIMER_CNT is near TIMER_CMP.
<> 149:156823d33999 122 if (carry && minor_us > (US_PER_TMR0HIRES_INT / 2)) {
<> 149:156823d33999 123 major_minor_us = (counter_major + 1) * US_PER_TMR0HIRES_INT;
<> 149:156823d33999 124 }
<> 149:156823d33999 125 else {
<> 149:156823d33999 126 major_minor_us = (counter_major + carry) * US_PER_TMR0HIRES_INT + minor_us;
<> 149:156823d33999 127 }
<> 149:156823d33999 128
<> 149:156823d33999 129 core_util_critical_section_exit();
<> 149:156823d33999 130 }
<> 149:156823d33999 131 while (minor_us == 0 || minor_us == US_PER_TMR0HIRES_INT);
<> 149:156823d33999 132
<> 159:612c381a210f 133 return (major_minor_us / US_PER_TICK);
<> 149:156823d33999 134 }
<> 149:156823d33999 135 while (0);
<> 149:156823d33999 136 }
<> 149:156823d33999 137
<> 149:156823d33999 138 void us_ticker_disable_interrupt(void)
<> 149:156823d33999 139 {
<> 159:612c381a210f 140 TIMER_DisableInt((TIMER_T *) NU_MODBASE(timer1hires_modinit.modname));
<> 149:156823d33999 141 }
<> 149:156823d33999 142
<> 149:156823d33999 143 void us_ticker_clear_interrupt(void)
<> 149:156823d33999 144 {
<> 159:612c381a210f 145 TIMER_ClearIntFlag((TIMER_T *) NU_MODBASE(timer1hires_modinit.modname));
<> 149:156823d33999 146 }
<> 149:156823d33999 147
<> 149:156823d33999 148 void us_ticker_set_interrupt(timestamp_t timestamp)
<> 149:156823d33999 149 {
<> 159:612c381a210f 150 TIMER_Stop((TIMER_T *) NU_MODBASE(timer1hires_modinit.modname));
<> 149:156823d33999 151
AnnaBridge 174:b96e65c34a4d 152 uint32_t delta = timestamp - us_ticker_read();
AnnaBridge 174:b96e65c34a4d 153 cd_major_minor_us = delta * US_PER_TICK;
AnnaBridge 174:b96e65c34a4d 154 us_ticker_arm_cd();
AnnaBridge 174:b96e65c34a4d 155 }
AnnaBridge 174:b96e65c34a4d 156
AnnaBridge 174:b96e65c34a4d 157 void us_ticker_fire_interrupt(void)
AnnaBridge 174:b96e65c34a4d 158 {
AnnaBridge 174:b96e65c34a4d 159 cd_major_minor_us = cd_minor_us = 0;
AnnaBridge 174:b96e65c34a4d 160 NVIC_SetPendingIRQ(timer1hires_modinit.irq_n);
<> 149:156823d33999 161 }
<> 149:156823d33999 162
<> 149:156823d33999 163 static void tmr0_vec(void)
<> 149:156823d33999 164 {
<> 149:156823d33999 165 TIMER_ClearIntFlag((TIMER_T *) NU_MODBASE(timer0hires_modinit.modname));
<> 149:156823d33999 166 counter_major ++;
<> 149:156823d33999 167 }
<> 149:156823d33999 168
<> 149:156823d33999 169 static void tmr1_vec(void)
<> 149:156823d33999 170 {
<> 159:612c381a210f 171 TIMER_ClearIntFlag((TIMER_T *) NU_MODBASE(timer1hires_modinit.modname));
<> 149:156823d33999 172 cd_major_minor_us = (cd_major_minor_us > cd_minor_us) ? (cd_major_minor_us - cd_minor_us) : 0;
<> 149:156823d33999 173 if (cd_major_minor_us == 0) {
<> 149:156823d33999 174 // NOTE: us_ticker_set_interrupt() may get called in us_ticker_irq_handler();
<> 149:156823d33999 175 us_ticker_irq_handler();
<> 149:156823d33999 176 }
<> 149:156823d33999 177 else {
<> 149:156823d33999 178 us_ticker_arm_cd();
<> 149:156823d33999 179 }
<> 149:156823d33999 180 }
<> 149:156823d33999 181
<> 149:156823d33999 182 static void us_ticker_arm_cd(void)
<> 149:156823d33999 183 {
<> 159:612c381a210f 184 TIMER_T * timer1_base = (TIMER_T *) NU_MODBASE(timer1hires_modinit.modname);
<> 149:156823d33999 185
<> 159:612c381a210f 186 cd_minor_us = cd_major_minor_us;
<> 159:612c381a210f 187
<> 149:156823d33999 188 // Reset 8-bit PSC counter, 24-bit up counter value and CNTEN bit
<> 149:156823d33999 189 timer1_base->CTL |= TIMER_CTL_RSTCNT_Msk;
<> 149:156823d33999 190 // One-shot mode, Clock = 1 MHz
<> 159:612c381a210f 191 uint32_t clk_timer1 = TIMER_GetModuleClock((TIMER_T *) NU_MODBASE(timer1hires_modinit.modname));
<> 159:612c381a210f 192 uint32_t prescale_timer1 = clk_timer1 / TMR1HIRES_CLK_PER_SEC - 1;
<> 149:156823d33999 193 MBED_ASSERT((prescale_timer1 != (uint32_t) -1) && prescale_timer1 <= 127);
<> 159:612c381a210f 194 MBED_ASSERT((clk_timer1 % TMR1HIRES_CLK_PER_SEC) == 0);
<> 149:156823d33999 195 timer1_base->CTL &= ~(TIMER_CTL_OPMODE_Msk | TIMER_CTL_PSC_Msk | TIMER_CTL_CNTDATEN_Msk);
<> 149:156823d33999 196 timer1_base->CTL |= TIMER_ONESHOT_MODE | prescale_timer1 | TIMER_CTL_CNTDATEN_Msk;
<> 149:156823d33999 197
<> 159:612c381a210f 198 uint32_t cmp_timer1 = cd_minor_us / US_PER_TMR1HIRES_CLK;
<> 149:156823d33999 199 cmp_timer1 = NU_CLAMP(cmp_timer1, TMR_CMP_MIN, TMR_CMP_MAX);
<> 149:156823d33999 200 timer1_base->CMP = cmp_timer1;
<> 149:156823d33999 201
<> 149:156823d33999 202 TIMER_EnableInt(timer1_base);
<> 149:156823d33999 203 TIMER_Start(timer1_base);
<> 149:156823d33999 204 }