core.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /*
  2. * include/linux/mfd/wm8994/core.h -- Core interface for WM8994
  3. *
  4. * Copyright 2009 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 it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; either version 2 of the License, or (at your
  11. * option) any later version.
  12. *
  13. */
  14. #ifndef __MFD_WM8994_CORE_H__
  15. #define __MFD_WM8994_CORE_H__
  16. #include <linux/interrupt.h>
  17. enum wm8994_type {
  18. WM8994 = 0,
  19. WM8958 = 1,
  20. };
  21. struct regulator_dev;
  22. struct regulator_bulk_data;
  23. struct regmap;
  24. #define WM8994_NUM_GPIO_REGS 11
  25. #define WM8994_NUM_LDO_REGS 2
  26. #define WM8994_NUM_IRQ_REGS 2
  27. #define WM8994_IRQ_TEMP_SHUT 0
  28. #define WM8994_IRQ_MIC1_DET 1
  29. #define WM8994_IRQ_MIC1_SHRT 2
  30. #define WM8994_IRQ_MIC2_DET 3
  31. #define WM8994_IRQ_MIC2_SHRT 4
  32. #define WM8994_IRQ_FLL1_LOCK 5
  33. #define WM8994_IRQ_FLL2_LOCK 6
  34. #define WM8994_IRQ_SRC1_LOCK 7
  35. #define WM8994_IRQ_SRC2_LOCK 8
  36. #define WM8994_IRQ_AIF1DRC1_SIG_DET 9
  37. #define WM8994_IRQ_AIF1DRC2_SIG_DET 10
  38. #define WM8994_IRQ_AIF2DRC_SIG_DET 11
  39. #define WM8994_IRQ_FIFOS_ERR 12
  40. #define WM8994_IRQ_WSEQ_DONE 13
  41. #define WM8994_IRQ_DCS_DONE 14
  42. #define WM8994_IRQ_TEMP_WARN 15
  43. /* GPIOs in the chip are numbered from 1-11 */
  44. #define WM8994_IRQ_GPIO(x) (x + WM8994_IRQ_TEMP_WARN)
  45. struct wm8994 {
  46. struct mutex irq_lock;
  47. enum wm8994_type type;
  48. struct device *dev;
  49. struct regmap *regmap;
  50. int gpio_base;
  51. int irq_base;
  52. int irq;
  53. u16 irq_masks_cur[WM8994_NUM_IRQ_REGS];
  54. u16 irq_masks_cache[WM8994_NUM_IRQ_REGS];
  55. /* Used over suspend/resume */
  56. bool suspended;
  57. u16 ldo_regs[WM8994_NUM_LDO_REGS];
  58. u16 gpio_regs[WM8994_NUM_GPIO_REGS];
  59. struct regulator_dev *dbvdd;
  60. int num_supplies;
  61. struct regulator_bulk_data *supplies;
  62. };
  63. /* Device I/O API */
  64. int wm8994_reg_read(struct wm8994 *wm8994, unsigned short reg);
  65. int wm8994_reg_write(struct wm8994 *wm8994, unsigned short reg,
  66. unsigned short val);
  67. int wm8994_set_bits(struct wm8994 *wm8994, unsigned short reg,
  68. unsigned short mask, unsigned short val);
  69. int wm8994_bulk_read(struct wm8994 *wm8994, unsigned short reg,
  70. int count, u16 *buf);
  71. int wm8994_bulk_write(struct wm8994 *wm8994, unsigned short reg,
  72. int count, const u16 *buf);
  73. /* Helper to save on boilerplate */
  74. static inline int wm8994_request_irq(struct wm8994 *wm8994, int irq,
  75. irq_handler_t handler, const char *name,
  76. void *data)
  77. {
  78. if (!wm8994->irq_base)
  79. return -EINVAL;
  80. return request_threaded_irq(wm8994->irq_base + irq, NULL, handler,
  81. IRQF_TRIGGER_RISING, name,
  82. data);
  83. }
  84. static inline void wm8994_free_irq(struct wm8994 *wm8994, int irq, void *data)
  85. {
  86. if (!wm8994->irq_base)
  87. return;
  88. free_irq(wm8994->irq_base + irq, data);
  89. }
  90. int wm8994_irq_init(struct wm8994 *wm8994);
  91. void wm8994_irq_exit(struct wm8994 *wm8994);
  92. #endif