git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2855 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2011-03-31 18:21:08 +00:00
parent 91e4dee81e
commit a0baaface3
4 changed files with 56 additions and 33 deletions

View File

@ -59,6 +59,18 @@ typedef enum {
ICU_IDLE = 5, /**< Idle cycle phase. */ ICU_IDLE = 5, /**< Idle cycle phase. */
} icustate_t; } icustate_t;
/**
* @brief Type of a structure representing an ICU driver.
*/
typedef struct ICUDriver ICUDriver;
/**
* @brief ICU notification callback type.
*
* @param[in] icup pointer to a @p ICUDriver object
*/
typedef void (*icucallback_t)(ICUDriver *icup);
#include "icu_lld.h" #include "icu_lld.h"
/*===========================================================================*/ /*===========================================================================*/

View File

@ -248,6 +248,7 @@ void icu_lld_init(void) {
* @notapi * @notapi
*/ */
void icu_lld_start(ICUDriver *icup) { void icu_lld_start(ICUDriver *icup) {
uint32_t clock, psc;
if (icup->state == ICU_STOP) { if (icup->state == ICU_STOP) {
/* Clock activation and timer reset.*/ /* Clock activation and timer reset.*/
@ -258,6 +259,7 @@ void icu_lld_start(ICUDriver *icup) {
RCC->APB2RSTR = 0; RCC->APB2RSTR = 0;
NVICEnableVector(TIM1_CC_IRQn, NVICEnableVector(TIM1_CC_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM1_IRQ_PRIORITY)); CORTEX_PRIORITY_MASK(STM32_ICU_TIM1_IRQ_PRIORITY));
clock = STM32_TIMCLK2;
} }
#endif #endif
#if STM32_ICU_USE_TIM2 #if STM32_ICU_USE_TIM2
@ -267,6 +269,7 @@ void icu_lld_start(ICUDriver *icup) {
RCC->APB1RSTR = 0; RCC->APB1RSTR = 0;
NVICEnableVector(TIM2_IRQn, NVICEnableVector(TIM2_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM2_IRQ_PRIORITY)); CORTEX_PRIORITY_MASK(STM32_ICU_TIM2_IRQ_PRIORITY));
clock = STM32_TIMCLK1;
} }
#endif #endif
#if STM32_ICU_USE_TIM3 #if STM32_ICU_USE_TIM3
@ -276,6 +279,7 @@ void icu_lld_start(ICUDriver *icup) {
RCC->APB1RSTR = 0; RCC->APB1RSTR = 0;
NVICEnableVector(TIM3_IRQn, NVICEnableVector(TIM3_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM3_IRQ_PRIORITY)); CORTEX_PRIORITY_MASK(STM32_ICU_TIM3_IRQ_PRIORITY));
clock = STM32_TIMCLK1;
} }
#endif #endif
#if STM32_ICU_USE_TIM4 #if STM32_ICU_USE_TIM4
@ -285,6 +289,7 @@ void icu_lld_start(ICUDriver *icup) {
RCC->APB1RSTR = 0; RCC->APB1RSTR = 0;
NVICEnableVector(TIM4_IRQn, NVICEnableVector(TIM4_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM4_IRQ_PRIORITY)); CORTEX_PRIORITY_MASK(STM32_ICU_TIM4_IRQ_PRIORITY));
clock = STM32_TIMCLK1;
} }
#endif #endif
@ -295,16 +300,28 @@ void icu_lld_start(ICUDriver *icup) {
RCC->APB1RSTR = 0; RCC->APB1RSTR = 0;
NVICEnableVector(TIM5_IRQn, NVICEnableVector(TIM5_IRQn,
CORTEX_PRIORITY_MASK(STM32_ICU_TIM5_IRQ_PRIORITY)); CORTEX_PRIORITY_MASK(STM32_ICU_TIM5_IRQ_PRIORITY));
clock = STM32_TIMCLK1;
} }
#endif #endif
} }
else {
/* Driver re-configuration scenario, it must be stopped first.*/
icup->tim->CR1 = 0; /* Timer disabled. */
icup->tim->DIER = 0; /* All IRQs disabled. */
icup->tim->SR = 0; /* Clear eventual pending IRQs. */
icup->tim->CCR1 = 0; /* Comparator 1 disabled. */
icup->tim->CCR2 = 0; /* Comparator 2 disabled. */
icup->tim->CNT = 0; /* Counter reset to zero. */
}
/* Timer configuration, PWM input mode.*/ /* Timer configuration.*/
icup->tim->CR1 = 0; /* Initially stopped. */ psc = (clock / icup->config->frequency) - 1;
icup->tim->CR2 = 0; chDbgAssert((psc <= 0xFFFF) &&
((psc + 1) * icup->config->frequency) == clock,
"icu_lld_start(), #1", "invalid frequency");
icup->tim->PSC = (uint16_t)psc;
icup->tim->ARR = 0xFFFF; icup->tim->ARR = 0xFFFF;
icup->tim->PSC = icup->config->psc; /* Prescaler value. */
icup->tim->DIER = 0;
/* CCMR1_CC1S = 01 = CH1 Input on TI1. /* CCMR1_CC1S = 01 = CH1 Input on TI1.
CCMR1_CC2S = 10 = CH2 Input on TI2.*/ CCMR1_CC2S = 10 = CH2 Input on TI2.*/
icup->tim->CCMR1 = TIM_CCMR1_CC1S_0 | icup->tim->CCMR1 = TIM_CCMR1_CC1S_0 |

View File

@ -161,23 +161,16 @@ typedef enum {
ICU_INPUT_ACTIVE_LOW = 1, /**< Trigger on falling edge. */ ICU_INPUT_ACTIVE_LOW = 1, /**< Trigger on falling edge. */
} icumode_t; } icumode_t;
/**
* @brief ICU frequency type.
*/
typedef uint32_t icufreq_t;
/** /**
* @brief ICU counter type. * @brief ICU counter type.
*/ */
typedef uint16_t icucnt_t; typedef uint16_t icucnt_t;
/**
* @brief Type of a structure representing an ICU driver.
*/
typedef struct ICUDriver ICUDriver;
/**
* @brief ICU notification callback type.
*
* @param[in] icup pointer to a @p ICUDriver object
*/
typedef void (*icucallback_t)(ICUDriver *icup);
/** /**
* @brief Driver configuration structure. * @brief Driver configuration structure.
* @note It could be empty on some architectures. * @note It could be empty on some architectures.
@ -187,6 +180,12 @@ typedef struct {
* @brief Driver mode. * @brief Driver mode.
*/ */
icumode_t mode; icumode_t mode;
/**
* @brief Timer clock in Hz.
* @note The low level can use assertions in order to catch invalid
* frequency specifications.
*/
icufreq_t frequency;
/** /**
* @brief Callback for pulse width measurement. * @brief Callback for pulse width measurement.
*/ */
@ -196,10 +195,6 @@ typedef struct {
*/ */
icucallback_t period_cb; icucallback_t period_cb;
/* End of the mandatory fields.*/ /* End of the mandatory fields.*/
/**
* @brief TIM PSC (pre-scaler) register initialization data.
*/
uint16_t psc;
} ICUConfig; } ICUConfig;
/** /**

View File

@ -55,23 +55,16 @@ typedef enum {
ICU_INPUT_ACTIVE_LOW = 1, /**< Trigger on falling edge. */ ICU_INPUT_ACTIVE_LOW = 1, /**< Trigger on falling edge. */
} icumode_t; } icumode_t;
/**
* @brief ICU frequency type.
*/
typedef uint32_t icufreq_t;
/** /**
* @brief ICU counter type. * @brief ICU counter type.
*/ */
typedef uint16_t icucnt_t; typedef uint16_t icucnt_t;
/**
* @brief Type of a structure representing an ICU driver.
*/
typedef struct ICUDriver ICUDriver;
/**
* @brief ICU notification callback type.
*
* @param[in] icup pointer to a @p ICUDriver object
*/
typedef void (*icucallback_t)(ICUDriver *icup);
/** /**
* @brief Driver configuration structure. * @brief Driver configuration structure.
* @note It could be empty on some architectures. * @note It could be empty on some architectures.
@ -81,6 +74,12 @@ typedef struct {
* @brief Driver mode. * @brief Driver mode.
*/ */
icumode_t mode; icumode_t mode;
/**
* @brief Timer clock in Hz.
* @note The low level can use assertions in order to catch invalid
* frequency specifications.
*/
icufreq_t frequency;
/** /**
* @brief Callback for pulse width measurement. * @brief Callback for pulse width measurement.
*/ */