2016-10-04 20:02:44 +00:00
|
|
|
|
|
|
|
/** \addtogroup hal */
|
|
|
|
/** @{*/
|
2013-02-18 15:32:11 +00:00
|
|
|
/* mbed Microcontroller Library
|
2015-04-23 13:56:34 +00:00
|
|
|
* Copyright (c) 2006-2015 ARM Limited
|
2018-11-09 11:27:45 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-02-18 15:32:11 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
#ifndef MBED_US_TICKER_API_H
|
|
|
|
#define MBED_US_TICKER_API_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2016-10-01 07:11:36 +00:00
|
|
|
#include "hal/ticker_api.h"
|
2013-02-18 15:32:11 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-04-23 13:56:34 +00:00
|
|
|
/**
|
2017-09-19 21:25:50 +00:00
|
|
|
* \defgroup hal_us_ticker Microsecond Ticker
|
|
|
|
* Low level interface to the microsecond ticker of a target
|
|
|
|
*
|
|
|
|
* # Defined behavior
|
2017-10-30 08:20:32 +00:00
|
|
|
* * Has a reported frequency between 250KHz and 8MHz - Verified by test ::us_ticker_info_test
|
|
|
|
* * Has a counter that is at least 16 bits wide - Verified by test ::us_ticker_info_test
|
2017-09-19 21:25:50 +00:00
|
|
|
* * All behavior defined by the @ref hal_ticker_shared "ticker specification"
|
|
|
|
*
|
|
|
|
* # Undefined behavior
|
|
|
|
* * See the @ref hal_ticker_shared "ticker specification"
|
|
|
|
*
|
|
|
|
* @see hal_us_ticker_tests
|
|
|
|
*
|
2015-04-23 13:56:34 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2017-09-19 21:25:50 +00:00
|
|
|
/**
|
|
|
|
* \defgroup hal_us_ticker_tests Microsecond Ticker tests
|
|
|
|
* Tests to validate the proper implementation of the microsecond ticker
|
|
|
|
*
|
|
|
|
* To run the microsecond ticker hal tests use the command:
|
|
|
|
*
|
2018-03-23 20:11:22 +00:00
|
|
|
* mbed test -t <toolchain> -m <target> -n tests-mbed_hal-common_ticker*,tests-mbed_hal-us_ticker*
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* @see hal_ticker_tests
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup hal_ticker_shared Ticker Hal
|
|
|
|
* Low level interface to the ticker of a target
|
|
|
|
*
|
|
|
|
* # Defined behavior
|
|
|
|
* * The function ticker_init is safe to call repeatedly - Verified by test ::ticker_init_test
|
2018-01-19 07:07:49 +00:00
|
|
|
* * The function ticker_init allows the ticker to keep counting and disables the ticker interrupt - Verified by test ::ticker_init_test
|
2017-09-19 21:25:50 +00:00
|
|
|
* * Ticker frequency is non-zero and counter is at least 8 bits - Verified by ::ticker_info_test
|
|
|
|
* * The ticker rolls over at (1 << bits) and continues counting starting from 0 - Verified by ::ticker_overflow_test
|
|
|
|
* * The ticker counts at the specified frequency +- 10% - Verified by ::ticker_frequency_test
|
|
|
|
* * The ticker increments by 1 each tick - Verified by ::ticker_increment_test
|
|
|
|
* * The ticker interrupt fires only when the ticker times increments to or past the value set by ticker_set_interrupt.
|
|
|
|
* Verified by ::ticker_interrupt_test and ::ticker_past_test
|
|
|
|
* * It is safe to call ticker_set_interrupt repeatedly before the handler is called - Verified by ::ticker_repeat_reschedule_test
|
|
|
|
* * The function ticker_fire_interrupt causes ticker_irq_handler to be called immediately from interrupt context -
|
|
|
|
* Verified by ::ticker_fire_now_test
|
|
|
|
* * The ticker operations ticker_read, ticker_clear_interrupt, ticker_set_interrupt and ticker_fire_interrupt
|
|
|
|
* take less than 20us to complete - Verified by ::ticker_speed_test
|
|
|
|
*
|
|
|
|
* # Undefined behavior
|
|
|
|
* * Calling any function other than ticker_init before the initialization of the ticker
|
|
|
|
* * Whether ticker_irq_handler is called a second time if the time wraps and matches the value set by ticker_set_interrupt again
|
|
|
|
* * Calling ticker_set_interrupt with a value that has more than the supported number of bits
|
2018-01-15 16:33:16 +00:00
|
|
|
* * Calling any function other than us_ticker_init after calling us_ticker_free
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* # Potential bugs
|
2017-10-30 08:20:32 +00:00
|
|
|
* * Drift due to reschedule - Verified by ::ticker_repeat_reschedule_test
|
2017-09-19 21:25:50 +00:00
|
|
|
* * Incorrect overflow handling of timers - Verified by ::ticker_overflow_test
|
|
|
|
* * Interrupting at a time of 0 - Verified by ::ticker_overflow_test
|
2017-10-30 08:20:32 +00:00
|
|
|
* * Interrupt triggered more than once - Verified by ::ticker_interrupt_test
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* @ingroup hal_us_ticker
|
|
|
|
* @ingroup hal_lp_ticker
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \defgroup hal_ticker_tests Ticker Tests
|
|
|
|
* Tests to validate the proper implementation of a ticker
|
|
|
|
*
|
|
|
|
* To run the ticker hal tests use the command:
|
|
|
|
*
|
2018-03-23 20:11:22 +00:00
|
|
|
* mbed test -t <toolchain> -m <target> -n tests-mbed_hal-common_ticker*
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* @ingroup hal_us_ticker
|
|
|
|
* @ingroup hal_lp_ticker
|
|
|
|
*/
|
|
|
|
|
2018-06-20 10:24:18 +00:00
|
|
|
|
2017-10-02 07:53:13 +00:00
|
|
|
typedef void (*ticker_irq_handler_type)(const ticker_data_t *const);
|
|
|
|
|
|
|
|
/** Set ticker IRQ handler
|
|
|
|
*
|
|
|
|
* @param ticker_irq_handler IRQ handler to be connected
|
|
|
|
*
|
|
|
|
* @return previous ticker IRQ handler
|
|
|
|
*
|
2017-10-30 08:20:32 +00:00
|
|
|
* @note by default IRQ handler is set to ::ticker_irq_handler
|
2017-10-02 07:53:13 +00:00
|
|
|
* @note this function is primarily for testing purposes and it's not required part of HAL implementation
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
ticker_irq_handler_type set_us_ticker_irq_handler(ticker_irq_handler_type ticker_irq_handler);
|
|
|
|
|
2015-04-23 13:56:34 +00:00
|
|
|
/** Get ticker's data
|
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* @return The microsecond ticker data
|
2015-04-23 13:56:34 +00:00
|
|
|
*/
|
2018-06-20 10:24:18 +00:00
|
|
|
const ticker_data_t *get_us_ticker_data(void);
|
2014-08-20 12:32:49 +00:00
|
|
|
|
2013-02-18 15:32:11 +00:00
|
|
|
|
2015-04-23 13:56:34 +00:00
|
|
|
/** The wrapper for ticker_irq_handler, to pass us ticker's data
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void us_ticker_irq_handler(void);
|
2013-02-18 15:32:11 +00:00
|
|
|
|
2015-04-23 13:56:34 +00:00
|
|
|
/* HAL us ticker */
|
2013-02-18 15:32:11 +00:00
|
|
|
|
2015-04-23 13:56:34 +00:00
|
|
|
/** Initialize the ticker
|
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* Initialize or re-initialize the ticker. This resets all the
|
|
|
|
* clocking and prescaler registers, along with disabling
|
|
|
|
* the compare interrupt.
|
|
|
|
*
|
|
|
|
* @note Initialization properties tested by ::ticker_init_test
|
|
|
|
*
|
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* void us_ticker_init()
|
|
|
|
* {
|
|
|
|
* // Enable clock gate so processor can read TIMER registers
|
|
|
|
* POWER_CTRL |= POWER_CTRL_TIMER_Msk;
|
|
|
|
*
|
|
|
|
* // Disable the timer and ensure it is powered down
|
|
|
|
* TIMER_CTRL &= ~(TIMER_CTRL_ENABLE_Msk | TIMER_CTRL_COMPARE_ENABLE_Msk);
|
|
|
|
*
|
|
|
|
* // Configure divisors
|
|
|
|
* uint32_t prescale = SystemCoreClock / 1000000;
|
|
|
|
* TIMER_PRESCALE = prescale - 1;
|
|
|
|
* TIMER_CTRL |= TIMER_CTRL_ENABLE_Msk;
|
|
|
|
*
|
|
|
|
* // Install the interrupt handler
|
|
|
|
* NVIC_SetVector(TIMER_IRQn, (uint32_t)us_ticker_irq_handler);
|
|
|
|
* NVIC_EnableIRQ(TIMER_IRQn);
|
|
|
|
* }
|
|
|
|
* @endcode
|
2015-04-23 13:56:34 +00:00
|
|
|
*/
|
2013-03-14 11:52:38 +00:00
|
|
|
void us_ticker_init(void);
|
2015-04-23 13:56:34 +00:00
|
|
|
|
2018-01-22 14:14:42 +00:00
|
|
|
/** Deinitialize the us ticker
|
|
|
|
*
|
|
|
|
* Powerdown the us ticker in preparation for sleep, powerdown, or reset.
|
|
|
|
*
|
|
|
|
* After this function is called, no other ticker functions should be called
|
|
|
|
* except us_ticker_init(), calling any function other than init is undefined.
|
|
|
|
*
|
|
|
|
* @note This function stops the ticker from counting.
|
2018-07-12 12:59:31 +00:00
|
|
|
*
|
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* uint32_t us_ticker_free()
|
|
|
|
* {
|
|
|
|
* // Disable timer
|
|
|
|
* TIMER_CTRL &= ~TIMER_CTRL_ENABLE_Msk;
|
|
|
|
*
|
|
|
|
* // Disable the compare interrupt
|
|
|
|
* TIMER_CTRL &= ~TIMER_CTRL_COMPARE_ENABLE_Msk;
|
|
|
|
*
|
|
|
|
* // Disable timer interrupt
|
|
|
|
* NVIC_DisableIRQ(TIMER_IRQn);
|
|
|
|
*
|
|
|
|
* // Disable clock gate so processor cannot read TIMER registers
|
|
|
|
* POWER_CTRL &= ~POWER_CTRL_TIMER_Msk;
|
|
|
|
* }
|
|
|
|
* @endcode
|
|
|
|
*
|
2018-01-22 14:14:42 +00:00
|
|
|
*/
|
|
|
|
void us_ticker_free(void);
|
|
|
|
|
|
|
|
/** Read the current counter
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* Read the current counter value without performing frequency conversions.
|
2017-10-30 08:20:32 +00:00
|
|
|
* If no rollover has occurred, the seconds passed since us_ticker_init()
|
2017-09-19 21:25:50 +00:00
|
|
|
* was called can be found by dividing the ticks returned by this function
|
|
|
|
* by the frequency returned by ::us_ticker_get_info.
|
|
|
|
*
|
|
|
|
* @return The current timer's counter value in ticks
|
2015-04-23 13:56:34 +00:00
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* uint32_t us_ticker_read()
|
|
|
|
* {
|
|
|
|
* return TIMER_COUNT;
|
|
|
|
* }
|
|
|
|
* @endcode
|
2015-04-23 13:56:34 +00:00
|
|
|
*/
|
|
|
|
uint32_t us_ticker_read(void);
|
|
|
|
|
|
|
|
/** Set interrupt for specified timestamp
|
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* @param timestamp The time in ticks to be set
|
|
|
|
*
|
|
|
|
* @note no special handling needs to be done for times in the past
|
|
|
|
* as the common timer code will detect this and call
|
2017-10-30 08:20:32 +00:00
|
|
|
* us_ticker_fire_interrupt() if this is the case
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* @note calling this function with timestamp of more than the supported
|
|
|
|
* number of bits returned by ::us_ticker_get_info results in undefined
|
|
|
|
* behavior.
|
|
|
|
*
|
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* void us_ticker_set_interrupt(timestamp_t timestamp)
|
|
|
|
* {
|
|
|
|
* TIMER_COMPARE = timestamp;
|
|
|
|
* TIMER_CTRL |= TIMER_CTRL_COMPARE_ENABLE_Msk;
|
|
|
|
* }
|
|
|
|
* @endcode
|
2015-04-23 13:56:34 +00:00
|
|
|
*/
|
2014-08-20 12:32:49 +00:00
|
|
|
void us_ticker_set_interrupt(timestamp_t timestamp);
|
2015-04-23 13:56:34 +00:00
|
|
|
|
|
|
|
/** Disable us ticker interrupt
|
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* void us_ticker_disable_interrupt(void)
|
|
|
|
* {
|
|
|
|
* // Disable the compare interrupt
|
|
|
|
* TIMER_CTRL &= ~TIMER_CTRL_COMPARE_ENABLE_Msk;
|
|
|
|
* }
|
|
|
|
* @endcode
|
2015-04-23 13:56:34 +00:00
|
|
|
*/
|
2013-03-14 11:52:38 +00:00
|
|
|
void us_ticker_disable_interrupt(void);
|
2015-04-23 13:56:34 +00:00
|
|
|
|
|
|
|
/** Clear us ticker interrupt
|
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* void us_ticker_clear_interrupt(void)
|
|
|
|
* {
|
|
|
|
* // Write to the ICR (interrupt clear register) of the TIMER
|
|
|
|
* TIMER_ICR = TIMER_ICR_COMPARE_Msk;
|
|
|
|
* }
|
|
|
|
* @endcode
|
2015-04-23 13:56:34 +00:00
|
|
|
*/
|
2013-03-14 11:52:38 +00:00
|
|
|
void us_ticker_clear_interrupt(void);
|
|
|
|
|
Ticker: add fire interrupt now function
fire_interrupt function should be used for events in the past. As we have now
64bit timestamp, we can figure out what is in the past, and ask a target to invoke
an interrupt immediately. The previous attemps in the target HAL tickers were not ideal, as it can wrap around easily (16 or 32 bit counters). This new
functionality should solve this problem.
set_interrupt for tickers in HAL code should not handle anything but the next match interrupt. If it was in the past is handled by the upper layer.
It is possible that we are setting next event to the close future, so once it is set it is already in the past. Therefore we add a check after set interrupt to verify it is in future.
If it is not, we fire interrupt immediately. This results in
two events - first one immediate, correct one. The second one might be scheduled in far future (almost entire ticker range),
that should be discarded.
The specification for the fire_interrupts are:
- should set pending bit for the ticker interrupt (as soon as possible),
the event we are scheduling is already in the past, and we do not want to skip
any events
- no arguments are provided, neither return value, not needed
- ticker should be initialized prior calling this function (no need to check if it is already initialized)
All our targets provide this new functionality, removing old misleading if (timestamp is in the past) checks.
2017-06-27 11:18:59 +00:00
|
|
|
/** Set pending interrupt that should be fired right away.
|
2018-01-22 14:14:42 +00:00
|
|
|
*
|
Ticker: add fire interrupt now function
fire_interrupt function should be used for events in the past. As we have now
64bit timestamp, we can figure out what is in the past, and ask a target to invoke
an interrupt immediately. The previous attemps in the target HAL tickers were not ideal, as it can wrap around easily (16 or 32 bit counters). This new
functionality should solve this problem.
set_interrupt for tickers in HAL code should not handle anything but the next match interrupt. If it was in the past is handled by the upper layer.
It is possible that we are setting next event to the close future, so once it is set it is already in the past. Therefore we add a check after set interrupt to verify it is in future.
If it is not, we fire interrupt immediately. This results in
two events - first one immediate, correct one. The second one might be scheduled in far future (almost entire ticker range),
that should be discarded.
The specification for the fire_interrupts are:
- should set pending bit for the ticker interrupt (as soon as possible),
the event we are scheduling is already in the past, and we do not want to skip
any events
- no arguments are provided, neither return value, not needed
- ticker should be initialized prior calling this function (no need to check if it is already initialized)
All our targets provide this new functionality, removing old misleading if (timestamp is in the past) checks.
2017-06-27 11:18:59 +00:00
|
|
|
* The ticker should be initialized prior calling this function.
|
2017-09-19 21:25:50 +00:00
|
|
|
*
|
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* void us_ticker_fire_interrupt(void)
|
|
|
|
* {
|
|
|
|
* NVIC_SetPendingIRQ(TIMER_IRQn);
|
|
|
|
* }
|
|
|
|
* @endcode
|
Ticker: add fire interrupt now function
fire_interrupt function should be used for events in the past. As we have now
64bit timestamp, we can figure out what is in the past, and ask a target to invoke
an interrupt immediately. The previous attemps in the target HAL tickers were not ideal, as it can wrap around easily (16 or 32 bit counters). This new
functionality should solve this problem.
set_interrupt for tickers in HAL code should not handle anything but the next match interrupt. If it was in the past is handled by the upper layer.
It is possible that we are setting next event to the close future, so once it is set it is already in the past. Therefore we add a check after set interrupt to verify it is in future.
If it is not, we fire interrupt immediately. This results in
two events - first one immediate, correct one. The second one might be scheduled in far future (almost entire ticker range),
that should be discarded.
The specification for the fire_interrupts are:
- should set pending bit for the ticker interrupt (as soon as possible),
the event we are scheduling is already in the past, and we do not want to skip
any events
- no arguments are provided, neither return value, not needed
- ticker should be initialized prior calling this function (no need to check if it is already initialized)
All our targets provide this new functionality, removing old misleading if (timestamp is in the past) checks.
2017-06-27 11:18:59 +00:00
|
|
|
*/
|
|
|
|
void us_ticker_fire_interrupt(void);
|
|
|
|
|
2017-09-13 23:31:38 +00:00
|
|
|
/** Get frequency and counter bits of this ticker.
|
|
|
|
*
|
2017-09-19 21:25:50 +00:00
|
|
|
* Pseudo Code:
|
|
|
|
* @code
|
|
|
|
* const ticker_info_t* us_ticker_get_info()
|
|
|
|
* {
|
|
|
|
* static const ticker_info_t info = {
|
|
|
|
* 1000000, // 1 MHz
|
|
|
|
* 32 // 32 bit counter
|
|
|
|
* };
|
|
|
|
* return &info;
|
|
|
|
* }
|
|
|
|
* @endcode
|
2017-09-13 23:31:38 +00:00
|
|
|
*/
|
2018-06-20 10:24:18 +00:00
|
|
|
const ticker_info_t *us_ticker_get_info(void);
|
2017-09-13 23:31:38 +00:00
|
|
|
|
2015-04-23 13:56:34 +00:00
|
|
|
/**@}*/
|
2013-02-18 15:32:11 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2016-10-04 20:02:44 +00:00
|
|
|
|
|
|
|
/** @}*/
|