pwm.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2016 Hans de Goede <hdegoede@redhat.com>
  4. */
  5. #ifndef _SUNXI_PWM_H
  6. #define _SUNXI_PWM_H
  7. #define SUNXI_PWM_CTRL_REG (SUNXI_PWM_BASE + 0)
  8. #define SUNXI_PWM_CH0_PERIOD (SUNXI_PWM_BASE + 4)
  9. #define SUNXI_PWM_CTRL_PRESCALE0(x) ((x) & 0xf)
  10. #define SUNXI_PWM_CTRL_PRESCALE0_MASK 0xf
  11. #define SUNXI_PWM_CTRL_ENABLE0 (0x5 << 4)
  12. #define SUNXI_PWM_CTRL_POLARITY0(x) ((x) << 5)
  13. #define SUNXI_PWM_CTRL_CH0_ACT_STA BIT(5)
  14. #define SUNXI_PWM_CTRL_CLK_GATE BIT(6)
  15. #define SUNXI_PWM_CH0_PERIOD_MAX (0xffff)
  16. #define SUNXI_PWM_CH0_PERIOD_PRD(x) ((x & 0xffff) << 16)
  17. #define SUNXI_PWM_CH0_PERIOD_DUTY(x) ((x) & 0xffff)
  18. #define SUNXI_PWM_PERIOD_80PCT 0x04af03c0
  19. #if defined CONFIG_MACH_SUN4I || defined CONFIG_MACH_SUN5I
  20. #define SUNXI_PWM_PIN0 SUNXI_GPB(2)
  21. #define SUNXI_PWM_MUX SUN4I_GPB_PWM
  22. #endif
  23. #if defined CONFIG_MACH_SUN6I
  24. #define SUNXI_PWM_PIN0 SUNXI_GPH(13)
  25. #define SUNXI_PWM_MUX SUN6I_GPH_PWM
  26. #endif
  27. #if defined CONFIG_MACH_SUN8I_A23 || defined CONFIG_MACH_SUN8I_A33
  28. #define SUNXI_PWM_PIN0 SUNXI_GPH(0)
  29. #define SUNXI_PWM_MUX SUN8I_GPH_PWM
  30. #endif
  31. struct sunxi_pwm {
  32. u32 ctrl;
  33. u32 ch0_period;
  34. };
  35. #endif