pwm.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /* arch/arm/plat-s3c/pwm.c
  2. *
  3. * Copyright (c) 2007 Ben Dooks
  4. * Copyright (c) 2008 Simtec Electronics
  5. * Ben Dooks <ben@simtec.co.uk>, <ben-linux@fluff.org>
  6. *
  7. * S3C series PWM device core
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/err.h>
  17. #include <linux/clk.h>
  18. #include <linux/io.h>
  19. #include <linux/pwm.h>
  20. #include <mach/irqs.h>
  21. #include <mach/map.h>
  22. #include <plat/devs.h>
  23. #include <plat/regs-timer.h>
  24. struct pwm_device {
  25. struct list_head list;
  26. struct platform_device *pdev;
  27. struct clk *clk_div;
  28. struct clk *clk;
  29. const char *label;
  30. unsigned int period_ns;
  31. unsigned int duty_ns;
  32. unsigned char tcon_base;
  33. unsigned char running;
  34. unsigned char use_count;
  35. unsigned char pwm_id;
  36. };
  37. #define pwm_dbg(_pwm, msg...) dev_dbg(&(_pwm)->pdev->dev, msg)
  38. static struct clk *clk_scaler[2];
  39. /* Standard setup for a timer block. */
  40. #define TIMER_RESOURCE_SIZE (1)
  41. #define TIMER_RESOURCE(_tmr, _irq) \
  42. (struct resource [TIMER_RESOURCE_SIZE]) { \
  43. [0] = { \
  44. .start = _irq, \
  45. .end = _irq, \
  46. .flags = IORESOURCE_IRQ \
  47. } \
  48. }
  49. #define DEFINE_S3C_TIMER(_tmr_no, _irq) \
  50. .name = "s3c24xx-pwm", \
  51. .id = _tmr_no, \
  52. .num_resources = TIMER_RESOURCE_SIZE, \
  53. .resource = TIMER_RESOURCE(_tmr_no, _irq), \
  54. /* since we already have an static mapping for the timer, we do not
  55. * bother setting any IO resource for the base.
  56. */
  57. struct platform_device s3c_device_timer[] = {
  58. [0] = { DEFINE_S3C_TIMER(0, IRQ_TIMER0) },
  59. [1] = { DEFINE_S3C_TIMER(1, IRQ_TIMER1) },
  60. [2] = { DEFINE_S3C_TIMER(2, IRQ_TIMER2) },
  61. [3] = { DEFINE_S3C_TIMER(3, IRQ_TIMER3) },
  62. [4] = { DEFINE_S3C_TIMER(4, IRQ_TIMER4) },
  63. };
  64. static inline int pwm_is_tdiv(struct pwm_device *pwm)
  65. {
  66. return clk_get_parent(pwm->clk) == pwm->clk_div;
  67. }
  68. static DEFINE_MUTEX(pwm_lock);
  69. static LIST_HEAD(pwm_list);
  70. struct pwm_device *pwm_request(int pwm_id, const char *label)
  71. {
  72. struct pwm_device *pwm;
  73. int found = 0;
  74. mutex_lock(&pwm_lock);
  75. list_for_each_entry(pwm, &pwm_list, list) {
  76. if (pwm->pwm_id == pwm_id) {
  77. found = 1;
  78. break;
  79. }
  80. }
  81. if (found) {
  82. if (pwm->use_count == 0) {
  83. pwm->use_count = 1;
  84. pwm->label = label;
  85. } else
  86. pwm = ERR_PTR(-EBUSY);
  87. } else
  88. pwm = ERR_PTR(-ENOENT);
  89. mutex_unlock(&pwm_lock);
  90. return pwm;
  91. }
  92. EXPORT_SYMBOL(pwm_request);
  93. void pwm_free(struct pwm_device *pwm)
  94. {
  95. mutex_lock(&pwm_lock);
  96. if (pwm->use_count) {
  97. pwm->use_count--;
  98. pwm->label = NULL;
  99. } else
  100. printk(KERN_ERR "PWM%d device already freed\n", pwm->pwm_id);
  101. mutex_unlock(&pwm_lock);
  102. }
  103. EXPORT_SYMBOL(pwm_free);
  104. #define pwm_tcon_start(pwm) (1 << (pwm->tcon_base + 0))
  105. #define pwm_tcon_invert(pwm) (1 << (pwm->tcon_base + 2))
  106. #define pwm_tcon_autoreload(pwm) (1 << (pwm->tcon_base + 3))
  107. #define pwm_tcon_manulupdate(pwm) (1 << (pwm->tcon_base + 1))
  108. int pwm_enable(struct pwm_device *pwm)
  109. {
  110. unsigned long flags;
  111. unsigned long tcon;
  112. local_irq_save(flags);
  113. tcon = __raw_readl(S3C2410_TCON);
  114. tcon |= pwm_tcon_start(pwm);
  115. __raw_writel(tcon, S3C2410_TCON);
  116. local_irq_restore(flags);
  117. pwm->running = 1;
  118. return 0;
  119. }
  120. EXPORT_SYMBOL(pwm_enable);
  121. void pwm_disable(struct pwm_device *pwm)
  122. {
  123. unsigned long flags;
  124. unsigned long tcon;
  125. local_irq_save(flags);
  126. tcon = __raw_readl(S3C2410_TCON);
  127. tcon &= ~pwm_tcon_start(pwm);
  128. __raw_writel(tcon, S3C2410_TCON);
  129. local_irq_restore(flags);
  130. pwm->running = 0;
  131. }
  132. EXPORT_SYMBOL(pwm_disable);
  133. static unsigned long pwm_calc_tin(struct pwm_device *pwm, unsigned long freq)
  134. {
  135. unsigned long tin_parent_rate;
  136. unsigned int div;
  137. tin_parent_rate = clk_get_rate(clk_get_parent(pwm->clk_div));
  138. pwm_dbg(pwm, "tin parent at %lu\n", tin_parent_rate);
  139. for (div = 2; div <= 16; div *= 2) {
  140. if ((tin_parent_rate / (div << 16)) < freq)
  141. return tin_parent_rate / div;
  142. }
  143. return tin_parent_rate / 16;
  144. }
  145. #define NS_IN_HZ (1000000000UL)
  146. int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns)
  147. {
  148. unsigned long tin_rate;
  149. unsigned long tin_ns;
  150. unsigned long period;
  151. unsigned long flags;
  152. unsigned long tcon;
  153. unsigned long tcnt;
  154. long tcmp;
  155. /* We currently avoid using 64bit arithmetic by using the
  156. * fact that anything faster than 1Hz is easily representable
  157. * by 32bits. */
  158. if (period_ns > NS_IN_HZ || duty_ns > NS_IN_HZ)
  159. return -ERANGE;
  160. if (duty_ns > period_ns)
  161. return -EINVAL;
  162. if (period_ns == pwm->period_ns &&
  163. duty_ns == pwm->duty_ns)
  164. return 0;
  165. /* The TCMP and TCNT can be read without a lock, they're not
  166. * shared between the timers. */
  167. tcmp = __raw_readl(S3C2410_TCMPB(pwm->pwm_id));
  168. tcnt = __raw_readl(S3C2410_TCNTB(pwm->pwm_id));
  169. period = NS_IN_HZ / period_ns;
  170. pwm_dbg(pwm, "duty_ns=%d, period_ns=%d (%lu)\n",
  171. duty_ns, period_ns, period);
  172. /* Check to see if we are changing the clock rate of the PWM */
  173. if (pwm->period_ns != period_ns) {
  174. if (pwm_is_tdiv(pwm)) {
  175. tin_rate = pwm_calc_tin(pwm, period);
  176. clk_set_rate(pwm->clk_div, tin_rate);
  177. } else
  178. tin_rate = clk_get_rate(pwm->clk);
  179. pwm->period_ns = period_ns;
  180. pwm_dbg(pwm, "tin_rate=%lu\n", tin_rate);
  181. tin_ns = NS_IN_HZ / tin_rate;
  182. tcnt = period_ns / tin_ns;
  183. } else
  184. tin_ns = NS_IN_HZ / clk_get_rate(pwm->clk);
  185. /* Note, counters count down */
  186. tcmp = duty_ns / tin_ns;
  187. tcmp = tcnt - tcmp;
  188. pwm_dbg(pwm, "tin_ns=%lu, tcmp=%ld/%lu\n", tin_ns, tcmp, tcnt);
  189. if (tcmp < 0)
  190. tcmp = 0;
  191. /* Update the PWM register block. */
  192. local_irq_save(flags);
  193. __raw_writel(tcmp, S3C2410_TCMPB(pwm->pwm_id));
  194. __raw_writel(tcnt, S3C2410_TCNTB(pwm->pwm_id));
  195. tcon = __raw_readl(S3C2410_TCON);
  196. tcon |= pwm_tcon_manulupdate(pwm);
  197. tcon |= pwm_tcon_autoreload(pwm);
  198. __raw_writel(tcon, S3C2410_TCON);
  199. tcon &= ~pwm_tcon_manulupdate(pwm);
  200. __raw_writel(tcon, S3C2410_TCON);
  201. local_irq_restore(flags);
  202. return 0;
  203. }
  204. EXPORT_SYMBOL(pwm_config);
  205. static int pwm_register(struct pwm_device *pwm)
  206. {
  207. pwm->duty_ns = -1;
  208. pwm->period_ns = -1;
  209. mutex_lock(&pwm_lock);
  210. list_add_tail(&pwm->list, &pwm_list);
  211. mutex_unlock(&pwm_lock);
  212. return 0;
  213. }
  214. static int s3c_pwm_probe(struct platform_device *pdev)
  215. {
  216. struct device *dev = &pdev->dev;
  217. struct pwm_device *pwm;
  218. unsigned long flags;
  219. unsigned long tcon;
  220. unsigned int id = pdev->id;
  221. int ret;
  222. if (id == 4) {
  223. dev_err(dev, "TIMER4 is currently not supported\n");
  224. return -ENXIO;
  225. }
  226. pwm = kzalloc(sizeof(struct pwm_device), GFP_KERNEL);
  227. if (pwm == NULL) {
  228. dev_err(dev, "failed to allocate pwm_device\n");
  229. return -ENOMEM;
  230. }
  231. pwm->pdev = pdev;
  232. pwm->pwm_id = id;
  233. /* calculate base of control bits in TCON */
  234. pwm->tcon_base = id == 0 ? 0 : (id * 4) + 4;
  235. pwm->clk = clk_get(dev, "pwm-tin");
  236. if (IS_ERR(pwm->clk)) {
  237. dev_err(dev, "failed to get pwm tin clk\n");
  238. ret = PTR_ERR(pwm->clk);
  239. goto err_alloc;
  240. }
  241. pwm->clk_div = clk_get(dev, "pwm-tdiv");
  242. if (IS_ERR(pwm->clk_div)) {
  243. dev_err(dev, "failed to get pwm tdiv clk\n");
  244. ret = PTR_ERR(pwm->clk_div);
  245. goto err_clk_tin;
  246. }
  247. local_irq_save(flags);
  248. tcon = __raw_readl(S3C2410_TCON);
  249. tcon |= pwm_tcon_invert(pwm);
  250. __raw_writel(tcon, S3C2410_TCON);
  251. local_irq_restore(flags);
  252. ret = pwm_register(pwm);
  253. if (ret) {
  254. dev_err(dev, "failed to register pwm\n");
  255. goto err_clk_tdiv;
  256. }
  257. pwm_dbg(pwm, "config bits %02x\n",
  258. (__raw_readl(S3C2410_TCON) >> pwm->tcon_base) & 0x0f);
  259. dev_info(dev, "tin at %lu, tdiv at %lu, tin=%sclk, base %d\n",
  260. clk_get_rate(pwm->clk),
  261. clk_get_rate(pwm->clk_div),
  262. pwm_is_tdiv(pwm) ? "div" : "ext", pwm->tcon_base);
  263. platform_set_drvdata(pdev, pwm);
  264. return 0;
  265. err_clk_tdiv:
  266. clk_put(pwm->clk_div);
  267. err_clk_tin:
  268. clk_put(pwm->clk);
  269. err_alloc:
  270. kfree(pwm);
  271. return ret;
  272. }
  273. static int s3c_pwm_remove(struct platform_device *pdev)
  274. {
  275. struct pwm_device *pwm = platform_get_drvdata(pdev);
  276. clk_put(pwm->clk_div);
  277. clk_put(pwm->clk);
  278. kfree(pwm);
  279. return 0;
  280. }
  281. static struct platform_driver s3c_pwm_driver = {
  282. .driver = {
  283. .name = "s3c24xx-pwm",
  284. .owner = THIS_MODULE,
  285. },
  286. .probe = s3c_pwm_probe,
  287. .remove = __devexit_p(s3c_pwm_remove),
  288. };
  289. static int __init pwm_init(void)
  290. {
  291. int ret;
  292. clk_scaler[0] = clk_get(NULL, "pwm-scaler0");
  293. clk_scaler[1] = clk_get(NULL, "pwm-scaler1");
  294. if (IS_ERR(clk_scaler[0]) || IS_ERR(clk_scaler[1])) {
  295. printk(KERN_ERR "%s: failed to get scaler clocks\n", __func__);
  296. return -EINVAL;
  297. }
  298. ret = platform_driver_register(&s3c_pwm_driver);
  299. if (ret)
  300. printk(KERN_ERR "%s: failed to add pwm driver\n", __func__);
  301. return ret;
  302. }
  303. arch_initcall(pwm_init);