pwm-lpss.h 859 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Intel Low Power Subsystem PWM controller driver
  3. *
  4. * Copyright (C) 2014, Intel Corporation
  5. *
  6. * Derived from the original pwm-lpss.c
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef __PWM_LPSS_H
  13. #define __PWM_LPSS_H
  14. #include <linux/device.h>
  15. #include <linux/pwm.h>
  16. struct pwm_lpss_chip;
  17. struct pwm_lpss_boardinfo {
  18. unsigned long clk_rate;
  19. unsigned int npwm;
  20. unsigned long base_unit_bits;
  21. bool bypass;
  22. };
  23. struct pwm_lpss_chip *pwm_lpss_probe(struct device *dev, struct resource *r,
  24. const struct pwm_lpss_boardinfo *info);
  25. int pwm_lpss_remove(struct pwm_lpss_chip *lpwm);
  26. int pwm_lpss_suspend(struct device *dev);
  27. int pwm_lpss_resume(struct device *dev);
  28. #endif /* __PWM_LPSS_H */