core.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. /*
  14. * Qualcomm PMIC 8xxx driver header file
  15. *
  16. */
  17. #ifndef __MFD_PM8XXX_CORE_H
  18. #define __MFD_PM8XXX_CORE_H
  19. #include <linux/mfd/core.h>
  20. struct pm8xxx_drvdata {
  21. int (*pmic_readb) (const struct device *dev, u16 addr, u8 *val);
  22. int (*pmic_writeb) (const struct device *dev, u16 addr, u8 val);
  23. int (*pmic_read_buf) (const struct device *dev, u16 addr, u8 *buf,
  24. int n);
  25. int (*pmic_write_buf) (const struct device *dev, u16 addr, u8 *buf,
  26. int n);
  27. int (*pmic_read_irq_stat) (const struct device *dev, int irq);
  28. void *pm_chip_data;
  29. };
  30. static inline int pm8xxx_readb(const struct device *dev, u16 addr, u8 *val)
  31. {
  32. struct pm8xxx_drvdata *dd = dev_get_drvdata(dev);
  33. if (!dd)
  34. return -EINVAL;
  35. return dd->pmic_readb(dev, addr, val);
  36. }
  37. static inline int pm8xxx_writeb(const struct device *dev, u16 addr, u8 val)
  38. {
  39. struct pm8xxx_drvdata *dd = dev_get_drvdata(dev);
  40. if (!dd)
  41. return -EINVAL;
  42. return dd->pmic_writeb(dev, addr, val);
  43. }
  44. static inline int pm8xxx_read_buf(const struct device *dev, u16 addr, u8 *buf,
  45. int n)
  46. {
  47. struct pm8xxx_drvdata *dd = dev_get_drvdata(dev);
  48. if (!dd)
  49. return -EINVAL;
  50. return dd->pmic_read_buf(dev, addr, buf, n);
  51. }
  52. static inline int pm8xxx_write_buf(const struct device *dev, u16 addr, u8 *buf,
  53. int n)
  54. {
  55. struct pm8xxx_drvdata *dd = dev_get_drvdata(dev);
  56. if (!dd)
  57. return -EINVAL;
  58. return dd->pmic_write_buf(dev, addr, buf, n);
  59. }
  60. static inline int pm8xxx_read_irq_stat(const struct device *dev, int irq)
  61. {
  62. struct pm8xxx_drvdata *dd = dev_get_drvdata(dev);
  63. if (!dd)
  64. return -EINVAL;
  65. return dd->pmic_read_irq_stat(dev, irq);
  66. }
  67. #endif