Merge pull request #4263 from thread-liu/master
[PWM] Fix the pwm clock frequency doubling problem.
This commit is contained in:
commit
8b0d2bd323
|
@ -6,6 +6,7 @@
|
||||||
* Change Logs:
|
* Change Logs:
|
||||||
* Date Author Notes
|
* Date Author Notes
|
||||||
* 2018-12-13 zylx first version
|
* 2018-12-13 zylx first version
|
||||||
|
* 2021-01-23 thread-liu Fix the timer clock frequency doubling problem
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <board.h>
|
#include <board.h>
|
||||||
|
@ -158,6 +159,43 @@ static struct stm32_pwm stm32_pwm_obj[] =
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* APBx timer clocks frequency doubler state related to APB1CLKDivider value */
|
||||||
|
static void pclkx_doubler_get(rt_uint32_t *pclk1_doubler, rt_uint32_t *pclk2_doubler)
|
||||||
|
{
|
||||||
|
rt_uint32_t flatency = 0;
|
||||||
|
RCC_ClkInitTypeDef RCC_ClkInitStruct = {0};
|
||||||
|
|
||||||
|
RT_ASSERT(pclk1_doubler != RT_NULL);
|
||||||
|
RT_ASSERT(pclk1_doubler != RT_NULL);
|
||||||
|
|
||||||
|
HAL_RCC_GetClockConfig(&RCC_ClkInitStruct, &flatency);
|
||||||
|
|
||||||
|
*pclk1_doubler = 1;
|
||||||
|
*pclk2_doubler = 1;
|
||||||
|
|
||||||
|
#if defined(SOC_SERIES_STM32MP1)
|
||||||
|
if (RCC_ClkInitStruct.APB1_Div != RCC_APB1_DIV1)
|
||||||
|
{
|
||||||
|
*pclk1_doubler = 2;
|
||||||
|
}
|
||||||
|
if (RCC_ClkInitStruct.APB2_Div != RCC_APB2_DIV1)
|
||||||
|
{
|
||||||
|
*pclk2_doubler = 2;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
if (RCC_ClkInitStruct.APB1CLKDivider != RCC_HCLK_DIV1)
|
||||||
|
{
|
||||||
|
*pclk1_doubler = 2;
|
||||||
|
}
|
||||||
|
#if !defined(SOC_SERIES_STM32F0) && !defined(SOC_SERIES_STM32G0)
|
||||||
|
if (RCC_ClkInitStruct.APB2CLKDivider != RCC_HCLK_DIV1)
|
||||||
|
{
|
||||||
|
*pclk2_doubler = 2;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
static rt_err_t drv_pwm_control(struct rt_device_pwm *device, int cmd, void *arg);
|
static rt_err_t drv_pwm_control(struct rt_device_pwm *device, int cmd, void *arg);
|
||||||
static struct rt_pwm_ops drv_ops =
|
static struct rt_pwm_ops drv_ops =
|
||||||
{
|
{
|
||||||
|
@ -200,6 +238,9 @@ static rt_err_t drv_pwm_get(TIM_HandleTypeDef *htim, struct rt_pwm_configuration
|
||||||
/* Converts the channel number to the channel number of Hal library */
|
/* Converts the channel number to the channel number of Hal library */
|
||||||
rt_uint32_t channel = 0x04 * (configuration->channel - 1);
|
rt_uint32_t channel = 0x04 * (configuration->channel - 1);
|
||||||
rt_uint64_t tim_clock;
|
rt_uint64_t tim_clock;
|
||||||
|
rt_uint32_t pclk1_doubler, pclk2_doubler;
|
||||||
|
|
||||||
|
pclkx_doubler_get(&pclk1_doubler, &pclk2_doubler);
|
||||||
|
|
||||||
#if defined(SOC_SERIES_STM32F2) || defined(SOC_SERIES_STM32F4) || defined(SOC_SERIES_STM32F7)
|
#if defined(SOC_SERIES_STM32F2) || defined(SOC_SERIES_STM32F4) || defined(SOC_SERIES_STM32F7)
|
||||||
if (htim->Instance == TIM9 || htim->Instance == TIM10 || htim->Instance == TIM11)
|
if (htim->Instance == TIM9 || htim->Instance == TIM10 || htim->Instance == TIM11)
|
||||||
|
@ -212,16 +253,12 @@ static rt_err_t drv_pwm_get(TIM_HandleTypeDef *htim, struct rt_pwm_configuration
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if !defined(SOC_SERIES_STM32F0) && !defined(SOC_SERIES_STM32G0)
|
#if !defined(SOC_SERIES_STM32F0) && !defined(SOC_SERIES_STM32G0)
|
||||||
tim_clock = HAL_RCC_GetPCLK2Freq() * 2;
|
tim_clock = (rt_uint32_t)(HAL_RCC_GetPCLK2Freq() * pclk2_doubler);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if defined(SOC_SERIES_STM32L4) || defined(SOC_SERIES_STM32F0) || defined(SOC_SERIES_STM32G0) || defined(SOC_SERIES_STM32H7)
|
tim_clock = (rt_uint32_t)(HAL_RCC_GetPCLK1Freq() * pclk1_doubler);
|
||||||
tim_clock = HAL_RCC_GetPCLK1Freq();
|
|
||||||
#else
|
|
||||||
tim_clock = HAL_RCC_GetPCLK1Freq() * 2;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (__HAL_TIM_GET_CLOCKDIVISION(htim) == TIM_CLOCKDIVISION_DIV2)
|
if (__HAL_TIM_GET_CLOCKDIVISION(htim) == TIM_CLOCKDIVISION_DIV2)
|
||||||
|
@ -245,9 +282,12 @@ static rt_err_t drv_pwm_set(TIM_HandleTypeDef *htim, struct rt_pwm_configuration
|
||||||
{
|
{
|
||||||
rt_uint32_t period, pulse;
|
rt_uint32_t period, pulse;
|
||||||
rt_uint64_t tim_clock, psc;
|
rt_uint64_t tim_clock, psc;
|
||||||
|
rt_uint32_t pclk1_doubler, pclk2_doubler;
|
||||||
/* Converts the channel number to the channel number of Hal library */
|
/* Converts the channel number to the channel number of Hal library */
|
||||||
rt_uint32_t channel = 0x04 * (configuration->channel - 1);
|
rt_uint32_t channel = 0x04 * (configuration->channel - 1);
|
||||||
|
|
||||||
|
pclkx_doubler_get(&pclk1_doubler, &pclk2_doubler);
|
||||||
|
|
||||||
#if defined(SOC_SERIES_STM32F2) || defined(SOC_SERIES_STM32F4) || defined(SOC_SERIES_STM32F7)
|
#if defined(SOC_SERIES_STM32F2) || defined(SOC_SERIES_STM32F4) || defined(SOC_SERIES_STM32F7)
|
||||||
if (htim->Instance == TIM9 || htim->Instance == TIM10 || htim->Instance == TIM11)
|
if (htim->Instance == TIM9 || htim->Instance == TIM10 || htim->Instance == TIM11)
|
||||||
#elif defined(SOC_SERIES_STM32L4) || defined(SOC_SERIES_STM32H7)
|
#elif defined(SOC_SERIES_STM32L4) || defined(SOC_SERIES_STM32H7)
|
||||||
|
@ -259,16 +299,12 @@ static rt_err_t drv_pwm_set(TIM_HandleTypeDef *htim, struct rt_pwm_configuration
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if !defined(SOC_SERIES_STM32F0) && !defined(SOC_SERIES_STM32G0)
|
#if !defined(SOC_SERIES_STM32F0) && !defined(SOC_SERIES_STM32G0)
|
||||||
tim_clock = HAL_RCC_GetPCLK2Freq() * 2;
|
tim_clock = (rt_uint32_t)(HAL_RCC_GetPCLK2Freq() * pclk2_doubler);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#if defined(SOC_SERIES_STM32L4) || defined(SOC_SERIES_STM32F0) || defined(SOC_SERIES_STM32G0) || defined(SOC_SERIES_STM32H7)
|
tim_clock = (rt_uint32_t)(HAL_RCC_GetPCLK1Freq() * pclk1_doubler);
|
||||||
tim_clock = HAL_RCC_GetPCLK1Freq();
|
|
||||||
#else
|
|
||||||
tim_clock = HAL_RCC_GetPCLK1Freq() * 2;
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Convert nanosecond to frequency and duty cycle. 1s = 1 * 1000 * 1000 * 1000 ns */
|
/* Convert nanosecond to frequency and duty cycle. 1s = 1 * 1000 * 1000 * 1000 ns */
|
||||||
|
|
Loading…
Reference in New Issue