pwm-tipwmss.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. static const struct of_device_id pwmss_of_match[] = {
  24. { .compatible = "ti,am33xx-pwmss" },
  25. {},
  26. };
  27. MODULE_DEVICE_TABLE(of, pwmss_of_match);
  28. static int pwmss_probe(struct platform_device *pdev)
  29. {
  30. int ret;
  31. struct device_node *node = pdev->dev.of_node;
  32. pm_runtime_enable(&pdev->dev);
  33. /* Populate all the child nodes here... */
  34. ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
  35. if (ret)
  36. dev_err(&pdev->dev, "no child node found\n");
  37. return ret;
  38. }
  39. static int pwmss_remove(struct platform_device *pdev)
  40. {
  41. pm_runtime_disable(&pdev->dev);
  42. return 0;
  43. }
  44. static struct platform_driver pwmss_driver = {
  45. .driver = {
  46. .name = "pwmss",
  47. .of_match_table = pwmss_of_match,
  48. },
  49. .probe = pwmss_probe,
  50. .remove = pwmss_remove,
  51. };
  52. module_platform_driver(pwmss_driver);
  53. MODULE_DESCRIPTION("PWM Subsystem driver");
  54. MODULE_AUTHOR("Texas Instruments");
  55. MODULE_LICENSE("GPL");