123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- /*
- * Copyright (c) 2006-2022, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-04-17 WangBing the first version.
- * 2019-04-22 tyustli add imxrt series support
- *
- */
- #include <rtthread.h>
- #ifdef BSP_USING_HWTIMER
- #define LOG_TAG "drv.hwtimer"
- #include <drv_log.h>
- #include <rtdevice.h>
- #include "drv_hwtimer.h"
- #include "fsl_gpt.h"
- #if defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL
- #error "Please don't define 'FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL'!"
- #endif
- /* Select IPG Clock as PERCLK_CLK clock source */
- #define EXAMPLE_GPT_CLOCK_SOURCE_SELECT (0U)
- /* Clock divider for PERCLK_CLK clock source */
- #define EXAMPLE_GPT_CLOCK_DIVIDER_SELECT (5U)
- /* Get source clock for GPT driver (GPT prescaler = 6) */
- #ifdef SOC_IMXRT1170_SERIES
- #undef EXAMPLE_GPT_CLOCK_DIVIDER_SELECT
- #define EXAMPLE_GPT_CLOCK_DIVIDER_SELECT (2U)
- // 1170 use this root directly, we have already divide this clk, can read it directly
- #define EXAMPLE_GPT_CLK_FREQ (CLOCK_GetRootClockFreq(kCLOCK_Root_Gpt1))
- #else
- #define EXAMPLE_GPT_CLK_FREQ (CLOCK_GetFreq(kCLOCK_IpgClk) / (EXAMPLE_GPT_CLOCK_DIVIDER_SELECT + 1U))
- #endif
- static void NVIC_Configuration(void)
- {
- #ifdef BSP_USING_HWTIMER1
- EnableIRQ(GPT1_IRQn);
- #endif
- #ifdef BSP_USING_HWTIMER2
- EnableIRQ(GPT2_IRQn);
- #endif
- }
- static rt_err_t imxrt_hwtimer_control(rt_hwtimer_t *timer, rt_uint32_t cmd, void *args)
- {
- rt_err_t err = RT_EOK;
- GPT_Type *hwtimer_dev;
- hwtimer_dev = (GPT_Type *)timer->parent.user_data;
- RT_ASSERT(timer != RT_NULL);
- switch (cmd)
- {
- case HWTIMER_CTRL_FREQ_SET:
- {
- uint32_t clk;
- uint32_t pre;
- clk = EXAMPLE_GPT_CLK_FREQ;
- pre = clk / *((uint32_t *)args) - 1;
- GPT_SetClockDivider(hwtimer_dev, pre);
- }
- break;
- default:
- err = -RT_ENOSYS;
- break;
- }
- return err;
- }
- static rt_uint32_t imxrt_hwtimer_count_get(rt_hwtimer_t *timer)
- {
- rt_uint32_t CurrentTimer_Count;
- GPT_Type *hwtimer_dev;
- hwtimer_dev = (GPT_Type *)timer->parent.user_data;
- RT_ASSERT(timer != RT_NULL);
- CurrentTimer_Count = GPT_GetCurrentTimerCount(hwtimer_dev);
- return CurrentTimer_Count;
- }
- static void imxrt_hwtimer_init(rt_hwtimer_t *timer, rt_uint32_t state)
- {
- GPT_Type *hwtimer_dev;
- gpt_config_t gptConfig;
- hwtimer_dev = (GPT_Type *)timer->parent.user_data;
- RT_ASSERT(timer != RT_NULL);
- if (state == 1)
- {
- #ifdef SOC_IMXRT1170_SERIES
- #ifdef BSP_USING_HWTIMER1
- /*Clock setting for GPT*/
- CLOCK_SetRootClockMux(kCLOCK_Root_Gpt1, EXAMPLE_GPT_CLOCK_SOURCE_SELECT);
- CLOCK_SetRootClockDiv(kCLOCK_Root_Gpt1, EXAMPLE_GPT_CLOCK_DIVIDER_SELECT);
- #endif
- #ifdef BSP_USING_HWTIMER2
- /*Clock setting for GPT*/
- CLOCK_SetRootClockMux(kCLOCK_Root_Gpt2, EXAMPLE_GPT_CLOCK_SOURCE_SELECT);
- CLOCK_SetRootClockDiv(kCLOCK_Root_Gpt2, EXAMPLE_GPT_CLOCK_DIVIDER_SELECT);
- #endif
- #else
- /*Clock setting for GPT*/
- CLOCK_SetMux(kCLOCK_PerclkMux, EXAMPLE_GPT_CLOCK_SOURCE_SELECT);
- CLOCK_SetDiv(kCLOCK_PerclkDiv, EXAMPLE_GPT_CLOCK_DIVIDER_SELECT);
- #endif
- /* Initialize GPT module by default config */
- GPT_GetDefaultConfig(&gptConfig);
- GPT_Init(hwtimer_dev, &gptConfig);
- }
- }
- static rt_err_t imxrt_hwtimer_start(rt_hwtimer_t *timer, rt_uint32_t cnt, rt_hwtimer_mode_t mode)
- {
- GPT_Type *hwtimer_dev;
- hwtimer_dev = (GPT_Type *)timer->parent.user_data;
- RT_ASSERT(timer != RT_NULL);
- hwtimer_dev->CR |= (mode != HWTIMER_MODE_PERIOD) ? GPT_CR_FRR_MASK : 0U;
- GPT_SetOutputCompareValue(hwtimer_dev, kGPT_OutputCompare_Channel1, cnt);
- GPT_EnableInterrupts(hwtimer_dev, kGPT_OutputCompare1InterruptEnable);
- NVIC_Configuration();
- GPT_StartTimer(hwtimer_dev);
- return RT_EOK;
- }
- static void imxrt_hwtimer_stop(rt_hwtimer_t *timer)
- {
- GPT_Type *hwtimer_dev;
- hwtimer_dev = (GPT_Type *)timer->parent.user_data;
- RT_ASSERT(timer != RT_NULL);
- GPT_StopTimer(hwtimer_dev);
- }
- static const struct rt_hwtimer_ops imxrt_hwtimer_ops =
- {
- .init = imxrt_hwtimer_init,
- .start = imxrt_hwtimer_start,
- .stop = imxrt_hwtimer_stop,
- .count_get = imxrt_hwtimer_count_get,
- .control = imxrt_hwtimer_control,
- };
- static const struct rt_hwtimer_info imxrt_hwtimer_info =
- {
- 25000000, /* the maximum count frequency can be set */
- 6103, /* the minimum count frequency can be set */
- 0xFFFFFFFF,
- HWTIMER_CNTMODE_UP,
- };
- #ifdef BSP_USING_HWTIMER1
- static rt_hwtimer_t GPT_timer1;
- #endif /*BSP_USING_HWTIMER1*/
- #ifdef BSP_USING_HWTIMER2
- static rt_hwtimer_t GPT_timer2;
- #endif
- int rt_hw_hwtimer_init(void)
- {
- int ret = RT_EOK;
- #ifdef BSP_USING_HWTIMER1
- GPT_timer1.info = &imxrt_hwtimer_info;
- GPT_timer1.ops = &imxrt_hwtimer_ops;
- ret = rt_device_hwtimer_register(&GPT_timer1, "gpt1", GPT1);
- if (ret != RT_EOK)
- {
- LOG_E("gpt1 register failed\n");
- }
- #endif
- #ifdef BSP_USING_HWTIMER2
- GPT_timer2.info = &imxrt_hwtimer_info;
- GPT_timer2.ops = &imxrt_hwtimer_ops;
- ret = rt_device_hwtimer_register(&GPT_timer2, "gpt2", GPT2);
- if (ret != RT_EOK)
- {
- LOG_E("gpt1 register failed\n");
- }
- #endif
- return ret;
- }
- #ifdef BSP_USING_HWTIMER1
- void GPT1_IRQHandler(void)
- {
- if (GPT_GetStatusFlags(GPT1, kGPT_OutputCompare1Flag) != 0)
- {
- GPT_ClearStatusFlags(GPT1, kGPT_OutputCompare1Flag);
- rt_device_hwtimer_isr(&GPT_timer1);
- }
- /* Add for ARM errata 838869, affects Cortex-M4, Cortex-M4F, Cortex-M7, Cortex-M7F Store immediate overlapping
- exception return operation might vector to incorrect interrupt */
- #if defined __CORTEX_M && (__CORTEX_M == 4U || __CORTEX_M == 7U)
- __DSB();
- #endif
- }
- #endif /*BSP_USING_HWTIMER1*/
- #ifdef BSP_USING_HWTIMER2
- void GPT2_IRQHandler(void)
- {
- if (GPT_GetStatusFlags(GPT2, kGPT_OutputCompare1Flag) != 0)
- {
- GPT_ClearStatusFlags(GPT2, kGPT_OutputCompare1Flag);
- rt_device_hwtimer_isr(&GPT_timer2);
- }
- /* Add for ARM errata 838869, affects Cortex-M4, Cortex-M4F, Cortex-M7, Cortex-M7F Store immediate overlapping
- exception return operation might vector to incorrect interrupt */
- #if defined __CORTEX_M && (__CORTEX_M == 4U || __CORTEX_M == 7U)
- __DSB();
- #endif
- }
- #endif /*BSP_USING_HWTIMER2*/
- INIT_DEVICE_EXPORT(rt_hw_hwtimer_init);
- #endif /* BSP_USING_HWTIMER */
|