pwm-clock.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* linux/arch/arm/mach-s5pv210/include/mach/pwm-clock.h
  2. *
  3. * Copyright 2008 Simtec Electronics
  4. * Ben Dooks <ben@simtec.co.uk>
  5. * http://armlinux.simtec.co.uk/
  6. *
  7. * Copyright (c) 2009 Samsung Electronics Co., Ltd.
  8. * http://www.samsung.com/
  9. *
  10. * Based on arch/arm/plat-s3c24xx/include/mach/pwm-clock.h
  11. *
  12. * S5PV210 - pwm clock and timer support
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. */
  18. #ifndef __ASM_ARCH_PWMCLK_H
  19. #define __ASM_ARCH_PWMCLK_H __FILE__
  20. /**
  21. * pwm_cfg_src_is_tclk() - return whether the given mux config is a tclk
  22. * @cfg: The timer TCFG1 register bits shifted down to 0.
  23. *
  24. * Return true if the given configuration from TCFG1 is a TCLK instead
  25. * any of the TDIV clocks.
  26. */
  27. static inline int pwm_cfg_src_is_tclk(unsigned long tcfg)
  28. {
  29. return tcfg == S3C2410_TCFG1_MUX_TCLK;
  30. }
  31. /**
  32. * tcfg_to_divisor() - convert tcfg1 setting to a divisor
  33. * @tcfg1: The tcfg1 setting, shifted down.
  34. *
  35. * Get the divisor value for the given tcfg1 setting. We assume the
  36. * caller has already checked to see if this is not a TCLK source.
  37. */
  38. static inline unsigned long tcfg_to_divisor(unsigned long tcfg1)
  39. {
  40. return 1 << (1 + tcfg1);
  41. }
  42. /**
  43. * pwm_tdiv_has_div1() - does the tdiv setting have a /1
  44. *
  45. * Return true if we have a /1 in the tdiv setting.
  46. */
  47. static inline unsigned int pwm_tdiv_has_div1(void)
  48. {
  49. return 0;
  50. }
  51. /**
  52. * pwm_tdiv_div_bits() - calculate TCFG1 divisor value.
  53. * @div: The divisor to calculate the bit information for.
  54. *
  55. * Turn a divisor into the necessary bit field for TCFG1.
  56. */
  57. static inline unsigned long pwm_tdiv_div_bits(unsigned int div)
  58. {
  59. return ilog2(div) - 1;
  60. }
  61. #define S3C_TCFG1_MUX_TCLK S3C2410_TCFG1_MUX_TCLK
  62. #endif /* __ASM_ARCH_PWMCLK_H */