arizona.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * wm5102.h -- WM5102 MFD internals
  3. *
  4. * Copyright 2012 Wolfson Microelectronics plc
  5. *
  6. * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
  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 _WM5102_H
  13. #define _WM5102_H
  14. #include <linux/of.h>
  15. #include <linux/regmap.h>
  16. #include <linux/pm.h>
  17. struct wm_arizona;
  18. extern const struct regmap_config wm5102_i2c_regmap;
  19. extern const struct regmap_config wm5102_spi_regmap;
  20. extern const struct regmap_config wm5110_i2c_regmap;
  21. extern const struct regmap_config wm5110_spi_regmap;
  22. extern const struct regmap_config cs47l24_spi_regmap;
  23. extern const struct regmap_config wm8997_i2c_regmap;
  24. extern const struct regmap_config wm8998_i2c_regmap;
  25. extern const struct dev_pm_ops arizona_pm_ops;
  26. extern const struct of_device_id arizona_of_match[];
  27. extern const struct regmap_irq_chip wm5102_aod;
  28. extern const struct regmap_irq_chip wm5102_irq;
  29. extern const struct regmap_irq_chip wm5110_aod;
  30. extern const struct regmap_irq_chip wm5110_irq;
  31. extern const struct regmap_irq_chip wm5110_revd_irq;
  32. extern const struct regmap_irq_chip cs47l24_irq;
  33. extern const struct regmap_irq_chip wm8997_aod;
  34. extern const struct regmap_irq_chip wm8997_irq;
  35. extern struct regmap_irq_chip wm8998_aod;
  36. extern struct regmap_irq_chip wm8998_irq;
  37. int arizona_dev_init(struct arizona *arizona);
  38. int arizona_dev_exit(struct arizona *arizona);
  39. int arizona_irq_init(struct arizona *arizona);
  40. int arizona_irq_exit(struct arizona *arizona);
  41. #ifdef CONFIG_OF
  42. unsigned long arizona_of_get_type(struct device *dev);
  43. #else
  44. static inline unsigned long arizona_of_get_type(struct device *dev)
  45. {
  46. return 0;
  47. }
  48. #endif
  49. #endif