ledc_hal.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * SPDX-FileCopyrightText: 2019-2023 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. // The HAL layer for LEDC (common part)
  7. #include "hal/ledc_hal.h"
  8. #include "esp_rom_sys.h"
  9. void ledc_hal_init(ledc_hal_context_t *hal, ledc_mode_t speed_mode)
  10. {
  11. //Get hardware instance.
  12. hal->dev = LEDC_LL_GET_HW();
  13. hal->speed_mode = speed_mode;
  14. }
  15. void ledc_hal_get_clk_cfg(ledc_hal_context_t *hal, ledc_timer_t timer_sel, ledc_clk_cfg_t *clk_cfg)
  16. {
  17. /* Use the following variable to retrieve the clock source used by the LEDC
  18. * hardware controller. */
  19. ledc_clk_src_t clk_src;
  20. /* Clock configuration to return to the driver. */
  21. ledc_clk_cfg_t driver_clk = LEDC_AUTO_CLK;
  22. /* Get the timer-specific mux value. */
  23. ledc_hal_get_clock_source(hal, timer_sel, &clk_src);
  24. #if SOC_LEDC_SUPPORT_REF_TICK
  25. if (clk_src == LEDC_REF_TICK) {
  26. driver_clk = LEDC_USE_REF_TICK;
  27. } else
  28. #endif
  29. {
  30. /* If the timer-specific mux is not set to REF_TICK, it either means that:
  31. * - The controler is in fast mode, and thus using APB clock (driver_clk
  32. * variable's default value)
  33. * - The controler is in slow mode and so, using a global clock,
  34. * so we have to retrieve that clock here.
  35. */
  36. if (hal->speed_mode == LEDC_LOW_SPEED_MODE) {
  37. /* If the source clock used by LEDC hardware is not REF_TICK, it is
  38. * necessary to retrieve the global clock source used. */
  39. ledc_slow_clk_sel_t slow_clk;
  40. ledc_hal_get_slow_clk_sel(hal, &slow_clk);
  41. driver_clk = (ledc_clk_cfg_t)slow_clk;
  42. }
  43. #if SOC_LEDC_SUPPORT_HS_MODE
  44. else {
  45. driver_clk = LEDC_USE_APB_CLK;
  46. }
  47. #endif
  48. }
  49. *clk_cfg = driver_clk;
  50. }
  51. #if SOC_LEDC_GAMMA_CURVE_FADE_SUPPORTED
  52. void ledc_hal_get_fade_param(ledc_hal_context_t *hal, ledc_channel_t channel_num, uint32_t range, uint32_t *dir, uint32_t *cycle, uint32_t *scale, uint32_t *step)
  53. {
  54. ledc_ll_get_fade_param_range(hal->dev, hal->speed_mode, channel_num, range, dir, cycle, scale, step);
  55. }
  56. #endif