drv_pwm.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2022-07-13 Rbb666 first version
  9. */
  10. #include "drv_pwm.h"
  11. #ifdef RT_USING_PWM
  12. #include <drivers/rt_drv_pwm.h>
  13. #include "drv_gpio.h"
  14. //#define DRV_DEBUG
  15. #define LOG_TAG "drv.pwm"
  16. #include <drv_log.h>
  17. struct rt_device_pwm pwm_device;
  18. struct ifx_pwm
  19. {
  20. struct rt_device_pwm pwm_device;
  21. cyhal_pwm_t *pwm_obj;
  22. rt_uint8_t channel;
  23. char *name;
  24. rt_uint8_t gpio;
  25. };
  26. static struct ifx_pwm ifx_pwm_obj[] =
  27. {
  28. #ifdef BSP_USING_PWM0_PORT13
  29. PWM0_CH3_PORT13_CONFIG,
  30. #endif
  31. #ifdef BSP_USING_PWM0_PORT2
  32. PWM0_CH7_PORT2_CONFIG,
  33. #endif
  34. #ifdef BSP_USING_PWM0_PORT5
  35. PWM0_CH7_PORT5_CONFIG,
  36. #endif
  37. #ifdef BSP_USING_PWM0_PORT7
  38. PWM0_CH7_PORT7_CONFIG,
  39. #endif
  40. #ifdef BSP_USING_PWM0_PORT9
  41. PWM0_CH7_PORT9_CONFIG,
  42. #endif
  43. #ifdef BSP_USING_PWM0_PORT10
  44. PWM0_CH7_PORT10_CONFIG,
  45. #endif
  46. #ifdef BSP_USING_PWM0_PORT12
  47. PWM0_CH7_PORT12_CONFIG,
  48. #endif
  49. };
  50. static rt_err_t drv_pwm_enable(cyhal_pwm_t *htim, struct rt_pwm_configuration *configuration, rt_bool_t enable)
  51. {
  52. /* get the value of channel */
  53. rt_uint32_t channel = configuration->channel;
  54. if (!configuration->complementary || configuration->complementary)
  55. {
  56. if (!enable)
  57. {
  58. if (channel == 3)
  59. {
  60. htim->tcpwm.resource.channel_num = channel;
  61. }
  62. else if (channel == 7)
  63. {
  64. htim->tcpwm.resource.channel_num = channel;
  65. }
  66. cyhal_pwm_stop(htim);
  67. }
  68. else
  69. {
  70. if (channel == 3)
  71. {
  72. htim->tcpwm.resource.channel_num = channel;
  73. }
  74. else if (channel == 7)
  75. {
  76. htim->tcpwm.resource.channel_num = channel;
  77. }
  78. cyhal_pwm_start(htim);
  79. }
  80. }
  81. return RT_EOK;
  82. }
  83. static rt_err_t drv_pwm_set(cyhal_pwm_t *htim, struct rt_pwm_configuration *configuration)
  84. {
  85. rt_uint64_t tim_clock;
  86. rt_uint32_t period, pulse;
  87. tim_clock = (rt_uint32_t)(htim->tcpwm.clock_hz);
  88. htim->tcpwm.resource.channel_num = configuration->channel;
  89. period = (unsigned long long)configuration->period / 1000ULL;
  90. pulse = (unsigned long long)configuration->pulse / 1000ULL;
  91. cyhal_pwm_set_period(htim, period, pulse);
  92. return RT_EOK;
  93. }
  94. static rt_err_t drv_pwm_get(cyhal_pwm_t *htim, struct rt_pwm_configuration *configuration)
  95. {
  96. uint32_t Period = Cy_TCPWM_PWM_GetPeriod0(htim->tcpwm.base, _CYHAL_TCPWM_CNT_NUMBER(htim->tcpwm.resource));
  97. uint32_t Compare = Cy_TCPWM_PWM_GetCounter(htim->tcpwm.base, _CYHAL_TCPWM_CNT_NUMBER(htim->tcpwm.resource));
  98. configuration->period = Period;
  99. configuration->pulse = Compare;
  100. return RT_EOK;
  101. }
  102. static rt_err_t drv_pwm_control(struct rt_device_pwm *device, int cmd, void *arg)
  103. {
  104. struct rt_pwm_configuration *configuration = (struct rt_pwm_configuration *)arg;
  105. cyhal_pwm_t *htim = (cyhal_pwm_t *)device->parent.user_data;
  106. switch (cmd)
  107. {
  108. case PWMN_CMD_ENABLE:
  109. configuration->complementary = RT_TRUE;
  110. case PWM_CMD_ENABLE:
  111. return drv_pwm_enable(htim, configuration, RT_TRUE);
  112. case PWMN_CMD_DISABLE:
  113. configuration->complementary = RT_FALSE;
  114. case PWM_CMD_DISABLE:
  115. return drv_pwm_enable(htim, configuration, RT_FALSE);
  116. case PWM_CMD_SET:
  117. return drv_pwm_set(htim, configuration);
  118. case PWM_CMD_GET:
  119. return drv_pwm_get(htim, configuration);
  120. default:
  121. return RT_EINVAL;
  122. }
  123. }
  124. static struct rt_pwm_ops drv_ops = {drv_pwm_control};
  125. static rt_err_t ifx_hw_pwm_init(struct ifx_pwm *device)
  126. {
  127. rt_err_t result = RT_EOK;
  128. RT_ASSERT(device != RT_NULL);
  129. /* config pwm channel */
  130. if (device->channel == 0x03)
  131. {
  132. if (cyhal_pwm_init_adv(device->pwm_obj, device->gpio, NC, CYHAL_PWM_LEFT_ALIGN, true, 0u, false, RT_NULL) != RT_EOK)
  133. {
  134. LOG_E("%s channel3 config failed", device->name);
  135. result = -RT_ERROR;
  136. goto __exit;
  137. }
  138. }
  139. /* config pwm channel */
  140. if (device->channel == 0x07)
  141. {
  142. if (cyhal_pwm_init_adv(device->pwm_obj, device->gpio, NC, CYHAL_PWM_LEFT_ALIGN, true, 0u, false, RT_NULL) != RT_EOK)
  143. {
  144. LOG_E("%s channel7 config failed", device->name);
  145. result = -RT_ERROR;
  146. goto __exit;
  147. }
  148. }
  149. __exit:
  150. return result;
  151. }
  152. static int rt_hw_pwm_init(void)
  153. {
  154. int i;
  155. int result = RT_EOK;
  156. for (i = 0; i < sizeof(ifx_pwm_obj) / sizeof(ifx_pwm_obj[0]); i++)
  157. {
  158. ifx_pwm_obj[i].pwm_obj = rt_malloc(sizeof(cyhal_pwm_t));
  159. RT_ASSERT(ifx_pwm_obj[i].pwm_obj != RT_NULL);
  160. /* pwm init */
  161. if (ifx_hw_pwm_init(&ifx_pwm_obj[i]) != RT_EOK)
  162. {
  163. LOG_E("%s init failed", ifx_pwm_obj[i].name);
  164. result = -RT_ERROR;
  165. goto __exit;
  166. }
  167. else
  168. {
  169. if (rt_device_pwm_register(&ifx_pwm_obj[i].pwm_device, ifx_pwm_obj[i].name, &drv_ops, ifx_pwm_obj[i].pwm_obj) == RT_EOK)
  170. {
  171. LOG_D("%s register success", ifx_pwm_obj[i].name);
  172. }
  173. else
  174. {
  175. LOG_D("%s register failed", ifx_pwm_obj[i].name);
  176. result = -RT_ERROR;
  177. }
  178. }
  179. }
  180. __exit:
  181. return result;
  182. }
  183. INIT_BOARD_EXPORT(rt_hw_pwm_init);
  184. #define PWM_DEV_NAME "pwm0"
  185. #define PWM_DEV_CHANNEL 7
  186. struct rt_device_pwm *pwm_dev;
  187. static int pwm_sample(int argc, char *argv[])
  188. {
  189. rt_uint32_t period, pulse, dir;
  190. period = 1 * 1000 * 1000;
  191. dir = 1;
  192. pulse = 0;
  193. pwm_dev = (struct rt_device_pwm *)rt_device_find(PWM_DEV_NAME);
  194. if (pwm_dev == RT_NULL)
  195. {
  196. rt_kprintf("pwm sample run failed! can't find %s device!\n", PWM_DEV_NAME);
  197. return RT_ERROR;
  198. }
  199. rt_pwm_set(pwm_dev, PWM_DEV_CHANNEL, period, pulse);
  200. rt_pwm_enable(pwm_dev, PWM_DEV_CHANNEL);
  201. rt_kprintf("Now PWM[%s] Channel[%d] Period[%d] Pulse[%d]\n", PWM_DEV_NAME, PWM_DEV_CHANNEL, period, pulse);
  202. while (1)
  203. {
  204. rt_thread_mdelay(50);
  205. if (dir)
  206. {
  207. pulse += 100000;
  208. }
  209. else
  210. {
  211. pulse -= 100000;
  212. }
  213. if (pulse >= period)
  214. {
  215. dir = 0;
  216. }
  217. if (0 == pulse)
  218. {
  219. dir = 1;
  220. }
  221. rt_pwm_set(pwm_dev, PWM_DEV_CHANNEL, period, pulse);
  222. }
  223. }
  224. MSH_CMD_EXPORT(pwm_sample, <pwm0> channel7 sample);
  225. #endif