arizona.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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/regmap.h>
  15. #include <linux/pm.h>
  16. struct wm_arizona;
  17. extern const struct regmap_config wm5102_i2c_regmap;
  18. extern const struct regmap_config wm5102_spi_regmap;
  19. extern const struct regmap_config wm5110_i2c_regmap;
  20. extern const struct regmap_config wm5110_spi_regmap;
  21. extern const struct dev_pm_ops arizona_pm_ops;
  22. extern const struct regmap_irq_chip wm5102_aod;
  23. extern const struct regmap_irq_chip wm5102_irq;
  24. extern const struct regmap_irq_chip wm5110_aod;
  25. extern const struct regmap_irq_chip wm5110_irq;
  26. int arizona_dev_init(struct arizona *arizona);
  27. int arizona_dev_exit(struct arizona *arizona);
  28. int arizona_irq_init(struct arizona *arizona);
  29. int arizona_irq_exit(struct arizona *arizona);
  30. #endif