pwm-tipwmss.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * TI PWM Subsystem driver
  3. *
  4. * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. */
  17. #include <linux/module.h>
  18. #include <linux/platform_device.h>
  19. #include <linux/io.h>
  20. #include <linux/err.h>
  21. #include <linux/pm_runtime.h>
  22. #include <linux/of_device.h>
  23. #include "pwm-tipwmss.h"
  24. #define PWMSS_CLKCONFIG 0x8 /* Clock gating reg */
  25. #define PWMSS_CLKSTATUS 0xc /* Clock gating status reg */
  26. struct pwmss_info {
  27. void __iomem *mmio_base;
  28. struct mutex pwmss_lock;
  29. u16 pwmss_clkconfig;
  30. };
  31. u16 pwmss_submodule_state_change(struct device *dev, int set)
  32. {
  33. struct pwmss_info *info = dev_get_drvdata(dev);
  34. u16 val;
  35. mutex_lock(&info->pwmss_lock);
  36. val = readw(info->mmio_base + PWMSS_CLKCONFIG);
  37. val |= set;
  38. writew(val , info->mmio_base + PWMSS_CLKCONFIG);
  39. mutex_unlock(&info->pwmss_lock);
  40. return readw(info->mmio_base + PWMSS_CLKSTATUS);
  41. }
  42. EXPORT_SYMBOL(pwmss_submodule_state_change);
  43. static const struct of_device_id pwmss_of_match[] = {
  44. { .compatible = "ti,am33xx-pwmss" },
  45. {},
  46. };
  47. MODULE_DEVICE_TABLE(of, pwmss_of_match);
  48. static int pwmss_probe(struct platform_device *pdev)
  49. {
  50. int ret;
  51. struct resource *r;
  52. struct pwmss_info *info;
  53. struct device_node *node = pdev->dev.of_node;
  54. info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
  55. if (!info)
  56. return -ENOMEM;
  57. mutex_init(&info->pwmss_lock);
  58. r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  59. info->mmio_base = devm_ioremap_resource(&pdev->dev, r);
  60. if (IS_ERR(info->mmio_base))
  61. return PTR_ERR(info->mmio_base);
  62. pm_runtime_enable(&pdev->dev);
  63. pm_runtime_get_sync(&pdev->dev);
  64. platform_set_drvdata(pdev, info);
  65. /* Populate all the child nodes here... */
  66. ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
  67. if (ret)
  68. dev_err(&pdev->dev, "no child node found\n");
  69. return ret;
  70. }
  71. static int pwmss_remove(struct platform_device *pdev)
  72. {
  73. struct pwmss_info *info = platform_get_drvdata(pdev);
  74. pm_runtime_put_sync(&pdev->dev);
  75. pm_runtime_disable(&pdev->dev);
  76. mutex_destroy(&info->pwmss_lock);
  77. return 0;
  78. }
  79. #ifdef CONFIG_PM_SLEEP
  80. static int pwmss_suspend(struct device *dev)
  81. {
  82. struct pwmss_info *info = dev_get_drvdata(dev);
  83. info->pwmss_clkconfig = readw(info->mmio_base + PWMSS_CLKCONFIG);
  84. pm_runtime_put_sync(dev);
  85. return 0;
  86. }
  87. static int pwmss_resume(struct device *dev)
  88. {
  89. struct pwmss_info *info = dev_get_drvdata(dev);
  90. pm_runtime_get_sync(dev);
  91. writew(info->pwmss_clkconfig, info->mmio_base + PWMSS_CLKCONFIG);
  92. return 0;
  93. }
  94. #endif
  95. static SIMPLE_DEV_PM_OPS(pwmss_pm_ops, pwmss_suspend, pwmss_resume);
  96. static struct platform_driver pwmss_driver = {
  97. .driver = {
  98. .name = "pwmss",
  99. .pm = &pwmss_pm_ops,
  100. .of_match_table = pwmss_of_match,
  101. },
  102. .probe = pwmss_probe,
  103. .remove = pwmss_remove,
  104. };
  105. module_platform_driver(pwmss_driver);
  106. MODULE_DESCRIPTION("PWM Subsystem driver");
  107. MODULE_AUTHOR("Texas Instruments");
  108. MODULE_LICENSE("GPL");