Added EICU driver in HAL. Added STM32 backend for EICU.

This commit is contained in:
barthess 2015-02-28 21:42:40 +03:00
parent 605fb84bcd
commit 4e7a5796b4
8 changed files with 1721 additions and 2 deletions

View File

@ -2,6 +2,7 @@ include ${CHIBIOS}/os/hal/hal.mk
HALSRC += ${CHIBIOS}/community/os/hal/src/hal_community.c \ HALSRC += ${CHIBIOS}/community/os/hal/src/hal_community.c \
${CHIBIOS}/community/os/hal/src/nand.c \ ${CHIBIOS}/community/os/hal/src/nand.c \
${CHIBIOS}/community/os/hal/src/onewire.c ${CHIBIOS}/community/os/hal/src/onewire.c \
${CHIBIOS}/community/os/hal/src/eicu.c
HALINC += ${CHIBIOS}/community/os/hal/include HALINC += ${CHIBIOS}/community/os/hal/include

239
os/hal/include/eicu.h Normal file
View File

@ -0,0 +1,239 @@
/*
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
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.
*/
/*
Rewritten by Emil Fresk (1/5 - 2014) for extended input capture
functionallity. And fix for spourious callbacks in the interrupt handler.
*/
#ifndef _EICU_H_
#define _EICU_H_
#if HAL_USE_EICU || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver constants. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver pre-compile time settings. */
/*===========================================================================*/
/*===========================================================================*/
/* Derived constants and error checks. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver data structures and types. */
/*===========================================================================*/
/**
* @brief Driver state machine possible states.
*/
typedef enum {
EICU_UNINIT = 0, /* Not initialized. */
EICU_STOP = 1, /* Stopped. */
EICU_READY = 2, /* Ready. */
EICU_WAITING = 3, /* Waiting for first edge. */
EICU_ACTIVE = 4, /* Active cycle phase. */
EICU_IDLE = 5 /* Idle cycle phase. */
} eicustate_t;
/**
* @brief EICU channel selection definition
*/
typedef enum {
EICU_CHANNEL_1 = 0,
EICU_CHANNEL_2 = 1,
EICU_CHANNEL_3 = 2,
EICU_CHANNEL_4 = 3
} eicuchannel_t;
/**
* @brief Type of a structure representing an EICU driver.
*/
typedef struct EICUDriver EICUDriver;
/**
* @brief EICU notification callback type.
*
* @param[in] eicup Pointer to a EICUDriver object
* @param[in] channel EICU channel that fired the interrupt
*/
typedef void (*eicucallback_t)(EICUDriver *eicup, eicuchannel_t channel);
#include "eicu_lld.h"
/*===========================================================================*/
/* Driver macros. */
/*===========================================================================*/
/**
* @name Macro Functions
* @{
*/
/**
* @brief Enables the extended input capture.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @iclass
*/
#define eicuEnableI(eicup) eicu_lld_enable(eicup)
/**
* @brief Disables the extended input capture.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @iclass
*/
#define eicuDisableI(eicup) eicu_lld_disable(eicup)
/**
* @brief Returns the width of the latest pulse.
* @details The pulse width is defined as number of ticks between the start
* edge and the stop edge.
* @note This function is meant to be invoked from the width capture
* callback only.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @param[in] channel The timer channel that fired the interrupt.
* @return The number of ticks.
*
* @special
*/
#define eicuGetWidth(eicup, channel) eicu_lld_get_width((eicup), (channel))
/**
* @brief Returns the width of the latest cycle.
* @details The cycle width is defined as number of ticks between a start
* edge and the next start edge.
* @note This function is meant to be invoked from the width capture
* callback only.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @return The number of ticks.
*
* @special
*/
#define eicuGetPeriod(eicup) eicu_lld_get_period(eicup)
/** @} */
/**
* @name Low Level driver helper macros
* @{
*/
/**
* @brief Common ISR code, EICU PWM width event.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @param[in] channel The timer channel that fired the interrupt.
*
* @notapi
*/
#define _eicu_isr_invoke_pwm_width_cb(eicup, channel) { \
if ((eicup)->state != EICU_WAITING) { \
(eicup)->state = EICU_IDLE; \
(eicup)->config->iccfgp[channel]->width_cb((eicup), (channel)); \
} \
}
/**
* @brief Common ISR code, EICU PWM period event.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @param[in] channel The timer channel that fired the interrupt.
*
* @notapi
*/
#define _eicu_isr_invoke_pwm_period_cb(eicup, channel) { \
eicustate_t previous_state = (eicup)->state; \
(eicup)->state = EICU_ACTIVE; \
if (previous_state != EICU_WAITING) \
(eicup)->config->period_cb((eicup), (channel)); \
}
/**
* @brief Common ISR code, EICU Pulse width event.
* @details This macro needs special care since it needs to invert the
* correct polarity bit to detect pulses.
* @note This macro assumes that the polarity is not changed by some
* external user. It must only be changed using the HAL.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @param[in] channel The timer channel that fired the interrupt.
*
* @notapi
*/
#define _eicu_isr_invoke_pulse_width_cb(eicup, channel) { \
if ((eicup)->state == EICU_ACTIVE) { \
(eicup)->state = EICU_READY; \
eicu_lld_invert_polarity((eicup), (channel)); \
(eicup)->config->iccfgp[(channel)]->width_cb((eicup), (channel)); \
} else { \
(eicup)->state = EICU_ACTIVE; \
(eicup)->last_count[(channel)] = eicu_lld_get_compare((eicup), (channel)); \
eicu_lld_invert_polarity((eicup), (channel)); \
} \
}
/**
* @brief Common ISR code, EICU Edge detect event.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @param[in] channel The timer channel that fired the interrupt.
*
* @notapi
*/
#define _eicu_isr_invoke_edge_detect_cb(eicup, channel) { \
(eicup)->state = EICU_READY; \
(eicup)->config->iccfgp[(channel)]->width_cb((eicup), (channel)); \
}
/**
* @brief Common ISR code, EICU timer overflow event.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @notapi
*/
#define _eicu_isr_invoke_overflow_cb(icup) { \
(eicup)->config->overflow_cb(eicup, 0); \
}
/** @} */
/*===========================================================================*/
/* External declarations. */
/*===========================================================================*/
#ifdef __cplusplus
extern "C" {
#endif
void eicuInit(void);
void eicuObjectInit(EICUDriver *eicup);
void eicuStart(EICUDriver *eicup, const EICUConfig *config);
void eicuStop(EICUDriver *eicup);
void eicuEnable(EICUDriver *eicup);
void eicuDisable(EICUDriver *eicup);
#ifdef __cplusplus
}
#endif
#endif /* HAL_USE_EICU */
#endif /* _EICU_H_ */
/** @} */

View File

@ -34,6 +34,7 @@
/* Normal drivers.*/ /* Normal drivers.*/
#include "nand.h" #include "nand.h"
#include "eicu.h"
/* Complex drivers.*/ /* Complex drivers.*/
#include "onewire.h" #include "onewire.h"

View File

@ -0,0 +1,852 @@
/*
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
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.
*/
/*
Concepts and parts of this file have been contributed by Fabio Utzig and
Xo Wang.
*/
/*
Rewritten by Emil Fresk (1/5 - 2014) for extended input capture
functionallity. And fix for spourious callbacks in the interrupt handler.
*/
/*
* Hardware Abstraction Layer for Extended Input Capture Unit
*/
#include "hal.h"
#if HAL_USE_EICU || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver local definitions. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver exported variables. */
/*===========================================================================*/
/**
* @brief EICUD1 driver identifier.
* @note The driver EICUD1 allocates the complex timer TIM1 when enabled.
*/
#if STM32_EICU_USE_TIM1 && !defined(__DOXYGEN__)
EICUDriver EICUD1;
#endif
/**
* @brief EICUD2 driver identifier.
* @note The driver EICUD2 allocates the timer TIM2 when enabled.
*/
#if STM32_EICU_USE_TIM2 && !defined(__DOXYGEN__)
EICUDriver EICUD2;
#endif
/**
* @brief EICUD3 driver identifier.
* @note The driver EICUD3 allocates the timer TIM3 when enabled.
*/
#if STM32_EICU_USE_TIM3 && !defined(__DOXYGEN__)
EICUDriver EICUD3;
#endif
/**
* @brief EICUD4 driver identifier.
* @note The driver EICUD4 allocates the timer TIM4 when enabled.
*/
#if STM32_EICU_USE_TIM4 && !defined(__DOXYGEN__)
EICUDriver EICUD4;
#endif
/**
* @brief EICUD5 driver identifier.
* @note The driver EICUD5 allocates the timer TIM5 when enabled.
*/
#if STM32_EICU_USE_TIM5 && !defined(__DOXYGEN__)
EICUDriver EICUD5;
#endif
/**
* @brief EICUD8 driver identifier.
* @note The driver EICUD8 allocates the timer TIM8 when enabled.
*/
#if STM32_EICU_USE_TIM8 && !defined(__DOXYGEN__)
EICUDriver EICUD8;
#endif
/**
* @brief EICUD9 driver identifier.
* @note The driver EICUD9 allocates the timer TIM9 when enabled.
*/
#if STM32_EICU_USE_TIM9 && !defined(__DOXYGEN__)
EICUDriver EICUD9;
#endif
/**
* @brief EICUD12 driver identifier.
* @note The driver EICUD12 allocates the timer TIM12 when enabled.
*/
#if STM32_EICU_USE_TIM12 && !defined(__DOXYGEN__)
EICUDriver EICUD12;
#endif
/*===========================================================================*/
/* Driver local variables and types. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver local functions. */
/*===========================================================================*/
/**
* @brief Shared IRQ handler.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*/
static void eicu_lld_serve_interrupt(EICUDriver *eicup)
{
uint16_t sr;
sr = eicup->tim->SR;
/* Pick out the interrupts we are interested in by using
the interrupt enable bits as mask */
sr &= (eicup->tim->DIER & STM32_TIM_DIER_IRQ_MASK);
/* Clear interrupts */
eicup->tim->SR = ~sr;
if (eicup->config->input_type == EICU_INPUT_PWM) {
if (eicup->config->iccfgp[0] != NULL) {
if ((sr & STM32_TIM_SR_CC1IF) != 0)
_eicu_isr_invoke_pwm_period_cb(eicup, EICU_CHANNEL_1);
if ((sr & STM32_TIM_SR_CC2IF) != 0)
_eicu_isr_invoke_pwm_width_cb(eicup, EICU_CHANNEL_1);
} else {
if ((sr & STM32_TIM_SR_CC1IF) != 0)
_eicu_isr_invoke_pwm_width_cb(eicup, EICU_CHANNEL_2);
if ((sr & STM32_TIM_SR_CC2IF) != 0)
_eicu_isr_invoke_pwm_period_cb(eicup, EICU_CHANNEL_2);
}
} else if (eicup->config->input_type == EICU_INPUT_PULSE) {
if ((sr & STM32_TIM_SR_CC1IF) != 0)
_eicu_isr_invoke_pulse_width_cb(eicup, EICU_CHANNEL_1);
if ((sr & STM32_TIM_SR_CC2IF) != 0)
_eicu_isr_invoke_pulse_width_cb(eicup, EICU_CHANNEL_2);
if ((sr & STM32_TIM_SR_CC3IF) != 0)
_eicu_isr_invoke_pulse_width_cb(eicup, EICU_CHANNEL_3);
if ((sr & STM32_TIM_SR_CC4IF) != 0)
_eicu_isr_invoke_pulse_width_cb(eicup, EICU_CHANNEL_4);
} else { /* EICU_INPUT_EDGE */
if ((sr & STM32_TIM_SR_CC1IF) != 0)
_eicu_isr_invoke_edge_detect_cb(eicup, EICU_CHANNEL_1);
if ((sr & STM32_TIM_SR_CC2IF) != 0)
_eicu_isr_invoke_edge_detect_cb(eicup, EICU_CHANNEL_2);
if ((sr & STM32_TIM_SR_CC3IF) != 0)
_eicu_isr_invoke_edge_detect_cb(eicup, EICU_CHANNEL_3);
if ((sr & STM32_TIM_SR_CC4IF) != 0)
_eicu_isr_invoke_edge_detect_cb(eicup, EICU_CHANNEL_4);
}
if ((sr & STM32_TIM_SR_UIF) != 0)
_eicu_isr_invoke_overflow_cb(eicup);
}
/*===========================================================================*/
/* Driver interrupt handlers. */
/*===========================================================================*/
#if STM32_EICU_USE_TIM1
#if !defined(STM32_TIM1_UP_HANDLER)
#error "STM32_TIM1_UP_HANDLER not defined"
#endif
/**
* @brief TIM1 compare interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM1_UP_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD1);
OSAL_IRQ_EPILOGUE();
}
#if !defined(STM32_TIM1_CC_HANDLER)
#error "STM32_TIM1_CC_HANDLER not defined"
#endif
/**
* @brief TIM1 compare interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM1_CC_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD1);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM1 */
#if STM32_EICU_USE_TIM2
#if !defined(STM32_TIM2_HANDLER)
#error "STM32_TIM2_HANDLER not defined"
#endif
/**
* @brief TIM2 interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM2_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD2);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM2 */
#if STM32_EICU_USE_TIM3
#if !defined(STM32_TIM3_HANDLER)
#error "STM32_TIM3_HANDLER not defined"
#endif
/**
* @brief TIM3 interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM3_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD3);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM3 */
#if STM32_EICU_USE_TIM4
#if !defined(STM32_TIM4_HANDLER)
#error "STM32_TIM4_HANDLER not defined"
#endif
/**
* @brief TIM4 interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM4_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD4);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM4 */
#if STM32_EICU_USE_TIM5
#if !defined(STM32_TIM5_HANDLER)
#error "STM32_TIM5_HANDLER not defined"
#endif
/**
* @brief TIM5 interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM5_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD5);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM5 */
#if STM32_EICU_USE_TIM8
#if !defined(STM32_TIM8_UP_HANDLER)
#error "STM32_TIM8_UP_HANDLER not defined"
#endif
/**
* @brief TIM8 compare interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM8_UP_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD8);
OSAL_IRQ_EPILOGUE();
}
#if !defined(STM32_TIM8_CC_HANDLER)
#error "STM32_TIM8_CC_HANDLER not defined"
#endif
/**
* @brief TIM8 compare interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM8_CC_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD8);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM8 */
#if STM32_EICU_USE_TIM9
#if !defined(STM32_TIM9_HANDLER)
#error "STM32_TIM9_HANDLER not defined"
#endif
/**
* @brief TIM9 interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM9_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD9);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM9 */
#if STM32_EICU_USE_TIM12
#if !defined(STM32_TIM12_HANDLER)
#error "STM32_TIM12_HANDLER not defined"
#endif
/**
* @brief TIM12 interrupt handler.
* @note It is assumed that the various sources are only activated if the
* associated callback pointer is not equal to @p NULL in order to not
* perform an extra check in a potentially critical interrupt handler.
*
* @isr
*/
OSAL_IRQ_HANDLER(STM32_TIM12_HANDLER) {
OSAL_IRQ_PROLOGUE();
eicu_lld_serve_interrupt(&EICUD12);
OSAL_IRQ_EPILOGUE();
}
#endif /* STM32_EICU_USE_TIM12 */
/*===========================================================================*/
/* Driver exported functions. */
/*===========================================================================*/
/**
* @brief Low level EICU driver initialization.
*
* @notapi
*/
void eicu_lld_init(void) {
#if STM32_EICU_USE_TIM1
/* Driver initialization.*/
eicuObjectInit(&EICUD1);
EICUD1.tim = STM32_TIM1;
#endif
#if STM32_EICU_USE_TIM2
/* Driver initialization.*/
eicuObjectInit(&EICUD2);
EICUD2.tim = STM32_TIM2;
#endif
#if STM32_EICU_USE_TIM3
/* Driver initialization.*/
eicuObjectInit(&EICUD3);
EICUD3.tim = STM32_TIM3;
#endif
#if STM32_EICU_USE_TIM4
/* Driver initialization.*/
eicuObjectInit(&EICUD4);
EICUD4.tim = STM32_TIM4;
#endif
#if STM32_EICU_USE_TIM5
/* Driver initialization.*/
eicuObjectInit(&EICUD5);
EICUD5.tim = STM32_TIM5;
#endif
#if STM32_EICU_USE_TIM8
/* Driver initialization.*/
eicuObjectInit(&EICUD8);
EICUD8.tim = STM32_TIM8;
#endif
#if STM32_EICU_USE_TIM9
/* Driver initialization.*/
eicuObjectInit(&EICUD9);
EICUD9.tim = STM32_TIM9;
#endif
#if STM32_EICU_USE_TIM12
/* Driver initialization.*/
eicuObjectInit(&EICUD12);
EICUD12.tim = STM32_TIM12;
#endif
}
/**
* @brief Configures and activates the EICU peripheral.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @notapi
*/
void eicu_lld_start(EICUDriver *eicup) {
uint32_t psc;
osalDbgAssert((eicup->config->iccfgp[0] != NULL) ||
(eicup->config->iccfgp[1] != NULL) ||
(eicup->config->iccfgp[2] != NULL) ||
(eicup->config->iccfgp[3] != NULL),
"invalid input configuration");
if (eicup->state == EICU_STOP) {
/* Clock activation and timer reset.*/
#if STM32_EICU_USE_TIM1
if (&EICUD1 == eicup) {
rccEnableTIM1(FALSE);
rccResetTIM1();
nvicEnableVector(STM32_TIM1_UP_NUMBER, STM32_EICU_TIM1_IRQ_PRIORITY);
nvicEnableVector(STM32_TIM1_CC_NUMBER, STM32_EICU_TIM1_IRQ_PRIORITY);
#if defined(STM32_TIM1CLK)
eicup->clock = STM32_TIM1CLK;
#else
eicup->clock = STM32_TIMCLK2;
#endif
}
#endif
#if STM32_EICU_USE_TIM2
if (&EICUD2 == eicup) {
rccEnableTIM2(FALSE);
rccResetTIM2();
nvicEnableVector(STM32_TIM2_NUMBER, STM32_EICU_TIM2_IRQ_PRIORITY);
eicup->clock = STM32_TIMCLK1;
}
#endif
#if STM32_EICU_USE_TIM3
if (&EICUD3 == eicup) {
rccEnableTIM3(FALSE);
rccResetTIM3();
nvicEnableVector(STM32_TIM3_NUMBER, STM32_EICU_TIM3_IRQ_PRIORITY);
eicup->clock = STM32_TIMCLK1;
}
#endif
#if STM32_EICU_USE_TIM4
if (&EICUD4 == eicup) {
rccEnableTIM4(FALSE);
rccResetTIM4();
nvicEnableVector(STM32_TIM4_NUMBER, STM32_EICU_TIM4_IRQ_PRIORITY);
eicup->clock = STM32_TIMCLK1;
}
#endif
#if STM32_EICU_USE_TIM5
if (&EICUD5 == eicup) {
rccEnableTIM5(FALSE);
rccResetTIM5();
nvicEnableVector(STM32_TIM5_NUMBER, STM32_EICU_TIM5_IRQ_PRIORITY);
eicup->clock = STM32_TIMCLK1;
}
#endif
#if STM32_EICU_USE_TIM8
if (&EICUD8 == eicup) {
rccEnableTIM8(FALSE);
rccResetTIM8();
nvicEnableVector(STM32_TIM8_UP_NUMBER, STM32_EICU_TIM8_IRQ_PRIORITY);
nvicEnableVector(STM32_TIM8_CC_NUMBER, STM32_EICU_TIM8_IRQ_PRIORITY);
#if defined(STM32_TIM8CLK)
eicup->clock = STM32_TIM8CLK;
#else
eicup->clock = STM32_TIMCLK2;
#endif
}
#endif
#if STM32_EICU_USE_TIM9
if (&EICUD9 == eicup) {
rccEnableTIM9(FALSE);
rccResetTIM9();
nvicEnableVector(STM32_TIM9_NUMBER, STM32_EICU_TIM9_IRQ_PRIORITY);
eicup->clock = STM32_TIMCLK2;
}
#endif
#if STM32_EICU_USE_TIM12
if (&EICUD12 == eicup) {
rccEnableTIM12(FALSE);
rccResetTIM12();
nvicEnableVector(STM32_TIM12_NUMBER, STM32_EICU_TIM12_IRQ_PRIORITY);
eicup->clock = STM32_TIMCLK1;
}
#endif
}
else {
/* Driver re-configuration scenario, it must be stopped first.*/
eicup->tim->CR1 = 0; /* Timer disabled. */
eicup->tim->DIER = eicup->config->dier &/* DMA-related DIER settings. */
~STM32_TIM_DIER_IRQ_MASK;
eicup->tim->SR = 0; /* Clear eventual pending IRQs. */
eicup->tim->CCR[0] = 0; /* Comparator 1 disabled. */
eicup->tim->CCR[1] = 0; /* Comparator 2 disabled. */
eicup->tim->CNT = 0; /* Counter reset to zero. */
}
/* Timer configuration.*/
psc = (eicup->clock / eicup->config->frequency) - 1;
chDbgAssert((psc <= 0xFFFF) &&
((psc + 1) * eicup->config->frequency) == eicup->clock,
"invalid frequency");
eicup->tim->PSC = (uint16_t)psc;
eicup->tim->ARR = 0xFFFF;
/* Reset registers */
eicup->tim->SMCR = 0;
eicup->tim->CCMR1 = 0;
eicup->last_count[0] = 0;
eicup->last_count[1] = 0;
eicup->last_count[2] = 0;
eicup->last_count[3] = 0;
#if STM32_EICU_USE_TIM9 && !STM32_EICU_USE_TIM12
if (eicup != &EICUD9)
eicup->tim->CCMR2 = 0;
#elif !STM32_EICU_USE_TIM9 && STM32_EICU_USE_TIM12
if (eicup != &EICUD12)
eicup->tim->CCMR2 = 0;
#elif STM32_EICU_USE_TIM9 && STM32_EICU_USE_TIM12
if ((eicup != &EICUD9) && (eicup != &EICUD12))
eicup->tim->CCMR2 = 0;
#else
eicup->tim->CCMR2 = 0;
#endif
if (eicup->config->input_type == EICU_INPUT_PWM)
{
if (eicup->config->iccfgp[0] != NULL) {
/* Selected input 1.
CCMR1_CC1S = 01 = CH1 Input on TI1.
CCMR1_CC2S = 10 = CH2 Input on TI1.*/
eicup->tim->CCMR1 = STM32_TIM_CCMR1_CC1S(1) | STM32_TIM_CCMR1_CC2S(2);
/* SMCR_TS = 101, input is TI1FP1.
SMCR_SMS = 100, reset on rising edge.*/
eicup->tim->SMCR = STM32_TIM_SMCR_TS(5) | STM32_TIM_SMCR_SMS(4);
/* The CCER settings depend on the selected trigger mode.
EICU_INPUT_ACTIVE_HIGH: Active on rising edge, idle on falling edge.
EICU_INPUT_ACTIVE_LOW: Active on falling edge, idle on rising edge.
*/
if (eicup->config->iccfgp[0]->mode == EICU_INPUT_ACTIVE_HIGH)
eicup->tim->CCER = STM32_TIM_CCER_CC1E |
STM32_TIM_CCER_CC2E | STM32_TIM_CCER_CC2P;
else
eicup->tim->CCER = STM32_TIM_CCER_CC1E | STM32_TIM_CCER_CC1P |
STM32_TIM_CCER_CC2E;
/* Direct pointers to the capture registers in order to make reading
data faster from within callbacks.*/
eicup->wccrp[0] = &eicup->tim->CCR[1];
eicup->pccrp = &eicup->tim->CCR[0];
} else {
/* Selected input 2.
CCMR1_CC1S = 10 = CH1 Input on TI2.
CCMR1_CC2S = 01 = CH2 Input on TI2.*/
eicup->tim->CCMR1 = STM32_TIM_CCMR1_CC1S(2) | STM32_TIM_CCMR1_CC2S(1);
/* SMCR_TS = 110, input is TI2FP2.
SMCR_SMS = 100, reset on rising edge.*/
eicup->tim->SMCR = STM32_TIM_SMCR_TS(6) | STM32_TIM_SMCR_SMS(4);
/* The CCER settings depend on the selected trigger mode.
EICU_INPUT_ACTIVE_HIGH: Active on rising edge, idle on falling edge.
EICU_INPUT_ACTIVE_LOW: Active on falling edge, idle on rising edge.
*/
if (eicup->config->iccfgp[1]->mode == EICU_INPUT_ACTIVE_HIGH)
eicup->tim->CCER = STM32_TIM_CCER_CC1E | STM32_TIM_CCER_CC1P |
STM32_TIM_CCER_CC2E;
else
eicup->tim->CCER = STM32_TIM_CCER_CC1E |
STM32_TIM_CCER_CC2E | STM32_TIM_CCER_CC2P;
/* Direct pointers to the capture registers in order to make reading
data faster from within callbacks.*/
eicup->wccrp[1] = &eicup->tim->CCR[0];
eicup->pccrp = &eicup->tim->CCR[1];
}
} else { /* EICU_INPUT_EDGE & EICU_INPUT_PULSE */
/* Set each input channel that is used as: a normal input capture channel,
link the corresponding CCR register and set polarity. */
/* Input capture channel 1 */
if (eicup->config->iccfgp[0] != NULL) {
/* Normal capture input input */
eicup->tim->CCMR1 |= STM32_TIM_CCMR1_CC1S(1);
/* Link CCR register */
eicup->wccrp[0] = &eicup->tim->CCR[0];
/* Set input polarity */
if (eicup->config->iccfgp[0]->mode == EICU_INPUT_ACTIVE_HIGH)
eicup->tim->CCER |= STM32_TIM_CCER_CC1E;
else
eicup->tim->CCER |= STM32_TIM_CCER_CC1E | STM32_TIM_CCER_CC1P;
}
/* Input capture channel 2 */
if (eicup->config->iccfgp[1] != NULL) {
/* Normal capture input input */
eicup->tim->CCMR1 |= STM32_TIM_CCMR1_CC2S(1);
/* Link CCR register */
eicup->wccrp[1] = &eicup->tim->CCR[1];
/* Set input polarity */
if (eicup->config->iccfgp[1]->mode == EICU_INPUT_ACTIVE_HIGH)
eicup->tim->CCER |= STM32_TIM_CCER_CC2E;
else
eicup->tim->CCER |= STM32_TIM_CCER_CC2E | STM32_TIM_CCER_CC2P;
}
/* Input capture channel 3 (not for TIM 9 and 12) */
if (eicup->config->iccfgp[2] != NULL) {
/* Normal capture input input */
eicup->tim->CCMR2 |= STM32_TIM_CCMR2_CC3S(1);
/* Link CCR register */
eicup->wccrp[2] = &eicup->tim->CCR[2];
/* Set input polarity */
if (eicup->config->iccfgp[2]->mode == EICU_INPUT_ACTIVE_HIGH)
eicup->tim->CCER |= STM32_TIM_CCER_CC3E;
else
eicup->tim->CCER |= STM32_TIM_CCER_CC3E | STM32_TIM_CCER_CC3P;
}
/* Input capture channel 4 (not for TIM 9 and 12) */
if (eicup->config->iccfgp[3] != NULL) {
/* Normal capture input input */
eicup->tim->CCMR2 |= STM32_TIM_CCMR2_CC4S(1);
/* Link CCR register */
eicup->wccrp[3] = &eicup->tim->CCR[3];
/* Set input polarity */
if (eicup->config->iccfgp[3]->mode == EICU_INPUT_ACTIVE_HIGH)
eicup->tim->CCER |= STM32_TIM_CCER_CC4E;
else
eicup->tim->CCER |= STM32_TIM_CCER_CC4E | STM32_TIM_CCER_CC4P;
}
}
}
/**
* @brief Deactivates the EICU peripheral.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @notapi
*/
void eicu_lld_stop(EICUDriver *eicup) {
if (eicup->state == EICU_READY) {
/* Clock deactivation.*/
eicup->tim->CR1 = 0; /* Timer disabled. */
eicup->tim->DIER = 0; /* All IRQs disabled. */
eicup->tim->SR = 0; /* Clear eventual pending IRQs. */
#if STM32_EICU_USE_TIM1
if (&EICUD1 == eicup) {
nvicDisableVector(STM32_TIM1_UP_NUMBER);
nvicDisableVector(STM32_TIM1_CC_NUMBER);
rccDisableTIM1(FALSE);
}
#endif
#if STM32_EICU_USE_TIM2
if (&EICUD2 == eicup) {
nvicDisableVector(STM32_TIM2_NUMBER);
rccDisableTIM2(FALSE);
}
#endif
#if STM32_EICU_USE_TIM3
if (&EICUD3 == eicup) {
nvicDisableVector(STM32_TIM3_NUMBER);
rccDisableTIM3(FALSE);
}
#endif
#if STM32_EICU_USE_TIM4
if (&EICUD4 == eicup) {
nvicDisableVector(STM32_TIM4_NUMBER);
rccDisableTIM4(FALSE);
}
#endif
#if STM32_EICU_USE_TIM5
if (&EICUD5 == eicup) {
nvicDisableVector(STM32_TIM5_NUMBER);
rccDisableTIM5(FALSE);
}
#endif
#if STM32_EICU_USE_TIM8
if (&EICUD8 == eicup) {
nvicDisableVector(STM32_TIM8_UP_NUMBER);
nvicDisableVector(STM32_TIM8_CC_NUMBER);
rccDisableTIM8(FALSE);
}
#endif
#if STM32_EICU_USE_TIM9
if (&EICUD9 == eicup) {
nvicDisableVector(STM32_TIM9_NUMBER);
rccDisableTIM9(FALSE);
}
#endif
#if STM32_EICU_USE_TIM12
if (&EICUD12 == eicup) {
nvicDisableVector(STM32_TIM12_NUMBER);
rccDisableTIM12(FALSE);
}
#endif
}
}
/**
* @brief Enables the EICU.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @notapi
*/
void eicu_lld_enable(EICUDriver *eicup) {
eicup->tim->EGR = STM32_TIM_EGR_UG;
eicup->tim->SR = 0; /* Clear pending IRQs (if any). */
if (eicup->config->input_type == EICU_INPUT_PWM) {
if (eicup->config->iccfgp[0] != NULL) {
if (eicup->config->period_cb != NULL)
eicup->tim->DIER |= STM32_TIM_DIER_CC1IE;
if ((eicup->config->iccfgp[EICU_CHANNEL_1] != NULL) &&
(eicup->config->iccfgp[EICU_CHANNEL_1]->width_cb != NULL))
eicup->tim->DIER |= STM32_TIM_DIER_CC2IE;
} else {
if ((eicup->config->iccfgp[EICU_CHANNEL_2] != NULL) &&
(eicup->config->iccfgp[EICU_CHANNEL_2]->width_cb != NULL))
eicup->tim->DIER |= STM32_TIM_DIER_CC1IE;
if (eicup->config->period_cb != NULL)
eicup->tim->DIER |= STM32_TIM_DIER_CC2IE;
}
} else { /* EICU_INPUT_PULSE & EICU_INPUT_EDGE */
if ((eicup->config->iccfgp[EICU_CHANNEL_1] != NULL) &&
(eicup->config->iccfgp[EICU_CHANNEL_1]->width_cb != NULL))
eicup->tim->DIER |= STM32_TIM_DIER_CC1IE;
if ((eicup->config->iccfgp[EICU_CHANNEL_2] != NULL) &&
eicup->config->iccfgp[EICU_CHANNEL_2]->width_cb != NULL)
eicup->tim->DIER |= STM32_TIM_DIER_CC2IE;
if ((eicup->config->iccfgp[EICU_CHANNEL_3] != NULL) &&
eicup->config->iccfgp[EICU_CHANNEL_3]->width_cb != NULL)
eicup->tim->DIER |= STM32_TIM_DIER_CC3IE;
if ((eicup->config->iccfgp[EICU_CHANNEL_4] != NULL) &&
eicup->config->iccfgp[EICU_CHANNEL_4]->width_cb != NULL)
eicup->tim->DIER |= STM32_TIM_DIER_CC4IE;
}
if (eicup->config->overflow_cb != NULL)
eicup->tim->DIER |= STM32_TIM_DIER_UIE;
eicup->tim->CR1 = STM32_TIM_CR1_URS | STM32_TIM_CR1_CEN;
}
/**
* @brief Disables the EICU.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @notapi
*/
void eicu_lld_disable(EICUDriver *eicup) {
eicup->tim->CR1 = 0; /* Initially stopped. */
eicup->tim->SR = 0; /* Clear pending IRQs (if any). */
/* All interrupts disabled.*/
eicup->tim->DIER &= ~STM32_TIM_DIER_IRQ_MASK;
}
/**
* @brief Returns the width of the latest pulse.
* @details The pulse width is defined as number of ticks between the start
* edge and the stop edge.
*
* @param[in] eicup Pointer to the EICUDriver object.
* @param[in] channel The timer channel that fired the interrupt.
* @return The number of ticks.
*
* @notapi
*/
uint16_t eicu_lld_get_width(EICUDriver *eicup, uint16_t channel) {
uint16_t capture, last_count;
capture = eicu_lld_get_compare(eicup, channel);
/* Add code to compensate for overflows when in pulse */
if (eicup->config->input_type == EICU_INPUT_PULSE) {
last_count = eicup->last_count[channel];
if (capture > last_count) /* No overflow */
capture = capture - last_count;
else if (capture < last_count) /* Timer overflow */
capture = ((0xFFFF - last_count) + capture);
}
return capture;
}
#endif /* HAL_USE_EICU */

View File

@ -0,0 +1,471 @@
/*
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
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.
*/
/*
Rewritten by Emil Fresk (1/5 - 2014) for extended input capture
functionality. And fix for spurious callbacks in the interrupt handler.
*/
#ifndef __EICU_LLD_H
#define __EICU_LLD_H
#include "stm32_tim.h"
#if HAL_USE_EICU || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver constants. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver pre-compile time settings. */
/*===========================================================================*/
/**
* @name Configuration options
* @{
*/
/**
* @brief EICUD1 driver enable switch.
* @details If set to @p TRUE the support for EICUD1 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM1) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM1 FALSE
#endif
/**
* @brief EICUD2 driver enable switch.
* @details If set to @p TRUE the support for EICUD2 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM2) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM2 FALSE
#endif
/**
* @brief EICUD3 driver enable switch.
* @details If set to @p TRUE the support for EICUD3 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM3) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM3 FALSE
#endif
/**
* @brief EICUD4 driver enable switch.
* @details If set to @p TRUE the support for EICUD4 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM4) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM4 FALSE
#endif
/**
* @brief EICUD5 driver enable switch.
* @details If set to @p TRUE the support for EICUD5 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM5) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM5 FALSE
#endif
/**
* @brief EICUD8 driver enable switch.
* @details If set to @p TRUE the support for EICUD8 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM8) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM8 FALSE
#endif
/**
* @brief EICUD9 driver enable switch.
* @details If set to @p TRUE the support for EICUD9 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM9) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM9 FALSE
#endif
/**
* @brief EICUD12 driver enable switch.
* @details If set to @p TRUE the support for EICUD12 is included.
* @note The default is @p TRUE.
*/
#if !defined(STM32_EICU_USE_TIM12) || defined(__DOXYGEN__)
#define STM32_EICU_USE_TIM12 FALSE
#endif
/**
* @brief EICUD1 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM1_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM1_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD2 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM2_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM2_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD3 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM3_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM3_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD4 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM4_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM4_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD5 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM5_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM5_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD8 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM8_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM8_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD9 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM9_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM9_IRQ_PRIORITY 7
#endif
/**
* @brief EICUD12 interrupt priority level setting.
*/
#if !defined(STM32_EICU_TIM12_IRQ_PRIORITY) || defined(__DOXYGEN__)
#define STM32_EICU_TIM12_IRQ_PRIORITY 7
#endif
/** @} */
/*===========================================================================*/
/* Derived constants and error checks. */
/*===========================================================================*/
#if STM32_EICU_USE_TIM1 && !STM32_HAS_TIM1
#error "TIM1 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM2 && !STM32_HAS_TIM2
#error "TIM2 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM3 && !STM32_HAS_TIM3
#error "TIM3 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM4 && !STM32_HAS_TIM4
#error "TIM4 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM5 && !STM32_HAS_TIM5
#error "TIM5 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM8 && !STM32_HAS_TIM8
#error "TIM8 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM9 && !STM32_HAS_TIM9
#error "TIM9 not present in the selected device"
#endif
#if STM32_EICU_USE_TIM12 && !STM32_HAS_TIM12
#error "TIM12 not present in the selected device"
#endif
#if !STM32_EICU_USE_TIM1 && !STM32_EICU_USE_TIM2 && \
!STM32_EICU_USE_TIM3 && !STM32_EICU_USE_TIM4 && \
!STM32_EICU_USE_TIM5 && !STM32_EICU_USE_TIM8 && \
!STM32_EICU_USE_TIM9 && !STM32_EICU_USE_TIM12
#error "EICU driver activated but no TIM peripheral assigned"
#endif
#if STM32_EICU_USE_TIM1 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM1_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM1"
#endif
#if STM32_EICU_USE_TIM2 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM2_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM2"
#endif
#if STM32_EICU_USE_TIM3 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM3_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM3"
#endif
#if STM32_EICU_USE_TIM4 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM4_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM4"
#endif
#if STM32_EICU_USE_TIM5 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM5_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM5"
#endif
#if STM32_EICU_USE_TIM8 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM8_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM8"
#endif
#if STM32_EICU_USE_TIM9 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM9_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM9"
#endif
#if STM32_EICU_USE_TIM12 && \
!CORTEX_IS_VALID_KERNEL_PRIORITY(STM32_EICU_TIM12_IRQ_PRIORITY)
#error "Invalid IRQ priority assigned to TIM12"
#endif
/*===========================================================================*/
/* Driver data structures and types. */
/*===========================================================================*/
/**
* @brief EICU driver mode.
*/
typedef enum {
/**
* @brief Trigger on rising edge.
*/
EICU_INPUT_ACTIVE_HIGH = 0,
/**
* @brief Trigger on falling edge.
*/
EICU_INPUT_ACTIVE_LOW = 1,
} eicumode_t;
/**
* @brief Input type selector.
*/
typedef enum {
/**
* @brief Triggers on the edge of the input.
*/
EICU_INPUT_EDGE = 0,
/**
* @brief Triggers on detected pulse.
*/
EICU_INPUT_PULSE = 1,
/**
* @brief Triggers on detected PWM period and width.
*/
EICU_INPUT_PWM = 2
} eicuinput_t;
/**
* @brief EICU frequency type.
*/
typedef uint32_t eicufreq_t;
/**
* @brief EICU counter type.
*/
typedef uint16_t eicucnt_t;
/**
* @brief EICU Input Capture Settings structure definition.
*/
typedef struct {
/**
* @brief Specifies the active edge of the input signal.
*/
eicumode_t mode;
/**
* @brief Capture event callback. Used for PWM width, pulse width and
* normal capture event.
*/
eicucallback_t width_cb;
} EICU_IC_Settings;
/**
* @brief EICU Input Capture Config structure definition.
*/
typedef struct
{
/**
* @brief Select which input type the driver will be configured for.
*/
eicuinput_t input_type;
/**
* @brief Specifies the Timer clock in Hz.
*/
eicufreq_t frequency;
/**
* @brief Pointer to each Input Capture channel configuration.
* @note A NULL parameter indicates the channel as unused.
* @note In PWM mode, only Channel 1 OR Channel 2 may be used.
*/
const EICU_IC_Settings *iccfgp[4];
/**
* @brief Period capture event callback.
* @note Only used when in PWM measuremtent mode
*/
eicucallback_t period_cb;
/**
* @brief Timer overflow event callback.
*/
eicucallback_t overflow_cb;
/**
* @brief TIM DIER register initialization data.
*/
uint32_t dier;
} EICUConfig;
/**
* @brief EICU Input Capture Driver structure definition
*/
struct EICUDriver
{
/**
* @brief STM32 timer peripheral for Input Capture.
*/
stm32_tim_t *tim;
/**
* @brief Driver state for the interal state machine.
*/
eicustate_t state;
/**
* @brief Temporary width holder during pulse measurement.
*/
eicucnt_t last_count[4];
/**
* @brief Timer base clock.
*/
uint32_t clock;
/**
* @brief Pointer to configuration for the driver.
*/
const EICUConfig *config;
/**
* @brief CCR registers for width capture.
*/
volatile uint32_t *wccrp[4];
/**
* @brief CCR register for period capture.
* @note Only one is needed since only one PWM input per timer is allowed.
*/
volatile uint32_t *pccrp;
};
/*===========================================================================*/
/* Driver macros. */
/*===========================================================================*/
/**
* @brief Returns the width of the latest cycle.
* @details The cycle width is defined as number of ticks between a start
* edge and the next start edge.
*
* @param[in] eicup Pointer to the EICUDriver object.
* @return The number of ticks.
*
* @notapi
*/
#define eicu_lld_get_period(eicup) (*((eicup)->pccrp) + 1)
/**
* @brief Returns the compare value of the latest cycle.
*
* @param[in] eicup Pointer to the EICUDriver object.
* @param[in] channel The timer channel that fired the interrupt.
* @return The number of ticks.
*
* @notapi
*/
#define eicu_lld_get_compare(eicup, channel) (*((eicup)->wccrp[(channel)]) + 1)
/**
* @brief Inverts the polarity for the given channel.
*
* @param[in] eicup Pointer to the EICUDriver object.
* @param[in] channel The timer channel to invert.
*
* @notapi
*/
#define eicu_lld_invert_polarity(eicup, channel) \
(eicup)->tim->CCER ^= ((uint16_t)(STM32_TIM_CCER_CC1P << ((channel) * 4)))
/*===========================================================================*/
/* External declarations. */
/*===========================================================================*/
#if STM32_EICU_USE_TIM1 && !defined(__DOXYGEN__)
extern EICUDriver EICUD1;
#endif
#if STM32_EICU_USE_TIM2 && !defined(__DOXYGEN__)
extern EICUDriver EICUD2;
#endif
#if STM32_EICU_USE_TIM3 && !defined(__DOXYGEN__)
extern EICUDriver EICUD3;
#endif
#if STM32_EICU_USE_TIM4 && !defined(__DOXYGEN__)
extern EICUDriver EICUD4;
#endif
#if STM32_EICU_USE_TIM5 && !defined(__DOXYGEN__)
extern EICUDriver EICUD5;
#endif
#if STM32_EICU_USE_TIM8 && !defined(__DOXYGEN__)
extern EICUDriver EICUD8;
#endif
#if STM32_EICU_USE_TIM9 && !defined(__DOXYGEN__)
extern EICUDriver EICUD9;
#endif
#if STM32_EICU_USE_TIM12 && !defined(__DOXYGEN__)
extern EICUDriver EICUD12;
#endif
#ifdef __cplusplus
extern "C" {
#endif
void eicu_lld_init(void);
void eicu_lld_start(EICUDriver *eicup);
void eicu_lld_stop(EICUDriver *eicup);
void eicu_lld_enable(EICUDriver *eicup);
void eicu_lld_disable(EICUDriver *eicup);
uint16_t eicu_lld_get_width(EICUDriver *eicup, uint16_t channel);
#ifdef __cplusplus
}
#endif
#endif /* HAL_USE_EICU */
#endif /* __EICU_LLD_H */

View File

@ -3,6 +3,8 @@ include ${CHIBIOS}/os/hal/ports/STM32/STM32F4xx/platform.mk
PLATFORMSRC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc.c \ PLATFORMSRC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc.c \
${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/nand_lld.c \ ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/nand_lld.c \
${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c \ ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1/fsmc_sram.c \
${CHIBIOS}/community/os/hal/ports/STM32/LLD/eicu_lld.c \
${CHIBIOS}/community/os/hal/src/fsmc_sdram.c ${CHIBIOS}/community/os/hal/src/fsmc_sdram.c
PLATFORMINC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1 PLATFORMINC += ${CHIBIOS}/community/os/hal/ports/STM32/LLD/FSMCv1 \
${CHIBIOS}/community/os/hal/ports/STM32/LLD

149
os/hal/src/eicu.c Normal file
View File

@ -0,0 +1,149 @@
/*
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
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.
*/
/*
Rewritten by Emil Fresk (1/5 - 2014) for extended input capture
functionallity. And fix for spourious callbacks in the interrupt handler.
*/
/*
* Hardware Abstraction Layer for Extended Input Capture Unit
*/
#include "hal.h"
#if HAL_USE_EICU || defined(__DOXYGEN__)
/*===========================================================================*/
/* Driver local definitions. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver exported variables. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver local variables and types. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver local functions. */
/*===========================================================================*/
/*===========================================================================*/
/* Driver exported functions. */
/*===========================================================================*/
/**
* @brief EICU Driver initialization.
*
* @init
*/
void eicuInit(void) {
eicu_lld_init();
}
/**
* @brief Initializes the standard part of a @p EICUDriver structure.
*
* @param[out] eicup Pointer to the @p EICUDriver object
*
* @init
*/
void eicuObjectInit(EICUDriver *eicup) {
eicup->state = EICU_STOP;
eicup->config = NULL;
}
/**
* @brief Configures and activates the EICU peripheral.
*
* @param[in] eicup Pointer to the @p EICUDriver object
* @param[in] config Pointer to the @p EICUConfig object
*
* @api
*/
void eicuStart(EICUDriver *eicup, const EICUConfig *config) {
osalDbgCheck((eicup != NULL) && (config != NULL));
osalSysLock();
osalDbgAssert((eicup->state == EICU_STOP) || (eicup->state == EICU_READY),
"invalid state");
eicup->config = config;
eicu_lld_start(eicup);
eicup->state = EICU_READY;
osalSysUnlock();
}
/**
* @brief Deactivates the EICU peripheral.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @api
*/
void eicuStop(EICUDriver *eicup) {
osalDbgCheck(eicup != NULL);
osalSysLock();
osalDbgAssert((eicup->state == EICU_STOP) || (eicup->state == EICU_READY),
"invalid state");
eicu_lld_stop(eicup);
eicup->state = EICU_STOP;
osalSysUnlock();
}
/**
* @brief Enables the extended input capture.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @api
*/
void eicuEnable(EICUDriver *eicup) {
osalDbgCheck(eicup != NULL);
osalSysLock();
osalDbgAssert(eicup->state == EICU_READY, "invalid state");
eicu_lld_enable(eicup);
eicup->state = EICU_WAITING;
osalSysUnlock();
}
/**
* @brief Disables the extended input capture.
*
* @param[in] eicup Pointer to the @p EICUDriver object
*
* @api
*/
void eicuDisable(EICUDriver *eicup) {
osalDbgCheck(eicup != NULL);
osalSysLock();
osalDbgAssert((eicup->state == EICU_READY) || (eicup->state == EICU_WAITING) ||
(eicup->state == EICU_ACTIVE) || (eicup->state == EICU_IDLE),
"invalid state");
eicu_lld_disable(eicup);
eicup->state = EICU_READY;
osalSysUnlock();
}
#endif /* HAL_USE_EICU */

View File

@ -59,6 +59,10 @@ void halCommunityInit(void) {
#if HAL_USE_NAND || defined(__DOXYGEN__) #if HAL_USE_NAND || defined(__DOXYGEN__)
nandInit(); nandInit();
#endif #endif
#if HAL_USE_EICU || defined(__DOXYGEN__)
eicuInit();
#endif
} }
#endif /* HAL_USE_COMMUNITY */ #endif /* HAL_USE_COMMUNITY */