/include/linux/mfd/pm8xxx/pm8921.h

https://github.com/airy09/android_kernel_sony_apq8064 · C Header · 160 lines · 125 code · 15 blank · 20 comment · 0 complexity · 7106a13ddd0c572fd8e3992c7720ef2d MD5 · raw file

  1. /*
  2. * Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
  3. * Copyright (C) 2013 Sony Mobile Communications AB.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 and
  7. * only version 2 as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. /*
  15. * Qualcomm PMIC 8921 driver header file
  16. *
  17. */
  18. #ifndef __MFD_PM8921_H
  19. #define __MFD_PM8921_H
  20. #include <linux/mfd/pm8xxx/irq.h>
  21. #include <linux/mfd/pm8xxx/gpio.h>
  22. #include <linux/mfd/pm8xxx/mpp.h>
  23. #include <linux/mfd/pm8xxx/rtc.h>
  24. #include <linux/mfd/pm8xxx/pwm.h>
  25. #include <linux/mfd/pm8xxx/misc.h>
  26. #include <linux/mfd/pm8xxx/tm.h>
  27. #include <linux/mfd/pm8xxx/batt-alarm.h>
  28. #include <linux/input/pmic8xxx-pwrkey.h>
  29. #include <linux/input/pmic8xxx-keypad.h>
  30. #include <linux/regulator/pm8xxx-regulator.h>
  31. #ifndef CONFIG_PM8921_SONY_BMS_CHARGER
  32. #include <linux/mfd/pm8xxx/pm8921-charger.h>
  33. #else
  34. #include <linux/mfd/pm8xxx/pm8921-charger-sony.h>
  35. #endif
  36. #include <linux/mfd/pm8xxx/pm8xxx-adc.h>
  37. #ifndef CONFIG_PM8921_SONY_BMS_CHARGER
  38. #include <linux/mfd/pm8xxx/pm8921-bms.h>
  39. #else
  40. #include <linux/mfd/pm8xxx/pm8921-bms-sony.h>
  41. #endif
  42. #include <linux/leds-pm8xxx.h>
  43. #include <linux/mfd/pm8xxx/vibrator.h>
  44. #ifndef CONFIG_PM8921_SONY_BMS_CHARGER
  45. #include <linux/mfd/pm8xxx/ccadc.h>
  46. #else
  47. #include <linux/mfd/pm8xxx/ccadc-sony.h>
  48. #endif
  49. #define PM8921_NR_IRQS 256
  50. #define PM8921_NR_GPIOS 44
  51. #define PM8917_NR_GPIOS 38
  52. #define PM8921_NR_MPPS 12
  53. #define PM8917_NR_MPPS 10
  54. #define PM8921_GPIO_BLOCK_START 24
  55. #define PM8921_MPP_BLOCK_START 16
  56. #define PM8921_IRQ_BLOCK_BIT(block, bit) ((block) * 8 + (bit))
  57. /* GPIOs and MPPs [1,N] */
  58. #define PM8921_GPIO_IRQ(base, gpio) ((base) + \
  59. PM8921_IRQ_BLOCK_BIT(PM8921_GPIO_BLOCK_START, (gpio)-1))
  60. #define PM8921_MPP_IRQ(base, mpp) ((base) + \
  61. PM8921_IRQ_BLOCK_BIT(PM8921_MPP_BLOCK_START, (mpp)-1))
  62. /* PMIC Interrupts */
  63. #define PM8921_RTC_ALARM_IRQ PM8921_IRQ_BLOCK_BIT(4, 7)
  64. #define PM8921_BATT_ALARM_IRQ PM8921_IRQ_BLOCK_BIT(5, 6)
  65. #define PM8921_PWRKEY_REL_IRQ PM8921_IRQ_BLOCK_BIT(6, 2)
  66. #define PM8921_PWRKEY_PRESS_IRQ PM8921_IRQ_BLOCK_BIT(6, 3)
  67. #define PM8921_KEYPAD_IRQ PM8921_IRQ_BLOCK_BIT(9, 2)
  68. #define PM8921_KEYSTUCK_IRQ PM8921_IRQ_BLOCK_BIT(9, 3)
  69. #define PM8921_ADC_EOC_USR_IRQ PM8921_IRQ_BLOCK_BIT(9, 6)
  70. #define PM8921_ADC_BATT_TEMP_WARM_IRQ PM8921_IRQ_BLOCK_BIT(9, 1)
  71. #define PM8921_ADC_BATT_TEMP_COLD_IRQ PM8921_IRQ_BLOCK_BIT(9, 0)
  72. #define PM8921_USB_ID_IN_IRQ(base) (base + PM8921_IRQ_BLOCK_BIT(6, 1))
  73. #define PM8921_USBIN_VALID_IRQ PM8921_IRQ_BLOCK_BIT(1, 7)
  74. #define PM8921_USBIN_OV_IRQ PM8921_IRQ_BLOCK_BIT(1, 6)
  75. #define PM8921_BATT_INSERTED_IRQ PM8921_IRQ_BLOCK_BIT(1, 5)
  76. #define PM8921_VBATDET_LOW_IRQ PM8921_IRQ_BLOCK_BIT(1, 4)
  77. #define PM8921_USBIN_UV_IRQ PM8921_IRQ_BLOCK_BIT(1, 3)
  78. #define PM8921_VBAT_OV_IRQ PM8921_IRQ_BLOCK_BIT(1, 2)
  79. #define PM8921_CHGWDOG_IRQ PM8921_IRQ_BLOCK_BIT(1, 1)
  80. #define PM8921_VCP_IRQ PM8921_IRQ_BLOCK_BIT(1, 0)
  81. #define PM8921_ATCDONE_IRQ PM8921_IRQ_BLOCK_BIT(2, 7)
  82. #define PM8921_ATCFAIL_IRQ PM8921_IRQ_BLOCK_BIT(2, 6)
  83. #define PM8921_CHGDONE_IRQ PM8921_IRQ_BLOCK_BIT(2, 5)
  84. #define PM8921_CHGFAIL_IRQ PM8921_IRQ_BLOCK_BIT(2, 4)
  85. #define PM8921_CHGSTATE_IRQ PM8921_IRQ_BLOCK_BIT(2, 3)
  86. #define PM8921_LOOP_CHANGE_IRQ PM8921_IRQ_BLOCK_BIT(2, 2)
  87. #define PM8921_FASTCHG_IRQ PM8921_IRQ_BLOCK_BIT(2, 1)
  88. #define PM8921_TRKLCHG_IRQ PM8921_IRQ_BLOCK_BIT(2, 0)
  89. #define PM8921_BATT_REMOVED_IRQ PM8921_IRQ_BLOCK_BIT(3, 7)
  90. #define PM8921_BATTTEMP_HOT_IRQ PM8921_IRQ_BLOCK_BIT(3, 6)
  91. #define PM8921_CHGHOT_IRQ PM8921_IRQ_BLOCK_BIT(3, 5)
  92. #define PM8921_BATTTEMP_COLD_IRQ PM8921_IRQ_BLOCK_BIT(3, 4)
  93. #define PM8921_CHG_GONE_IRQ PM8921_IRQ_BLOCK_BIT(3, 3)
  94. #define PM8921_BAT_TEMP_OK_IRQ PM8921_IRQ_BLOCK_BIT(3, 2)
  95. #define PM8921_COARSE_DET_LOW_IRQ PM8921_IRQ_BLOCK_BIT(3, 1)
  96. #define PM8921_VDD_LOOP_IRQ PM8921_IRQ_BLOCK_BIT(3, 0)
  97. #define PM8921_VREG_OV_IRQ PM8921_IRQ_BLOCK_BIT(5, 7)
  98. #define PM8921_VBATDET_IRQ PM8921_IRQ_BLOCK_BIT(5, 5)
  99. #define PM8921_BATFET_IRQ PM8921_IRQ_BLOCK_BIT(5, 4)
  100. #define PM8921_PSI_IRQ PM8921_IRQ_BLOCK_BIT(5, 3)
  101. #define PM8921_DCIN_VALID_IRQ PM8921_IRQ_BLOCK_BIT(5, 2)
  102. #define PM8921_DCIN_OV_IRQ PM8921_IRQ_BLOCK_BIT(5, 1)
  103. #define PM8921_DCIN_UV_IRQ PM8921_IRQ_BLOCK_BIT(5, 0)
  104. #define PM8921_BMS_SBI_WRITE_OK PM8921_IRQ_BLOCK_BIT(15, 7)
  105. #define PM8921_BMS_CC_THR PM8921_IRQ_BLOCK_BIT(15, 6)
  106. #define PM8921_BMS_VSENSE_THR PM8921_IRQ_BLOCK_BIT(15, 5)
  107. #define PM8921_BMS_VSENSE_FOR_R PM8921_IRQ_BLOCK_BIT(15, 4)
  108. #define PM8921_BMS_OCV_FOR_R PM8921_IRQ_BLOCK_BIT(15, 3)
  109. #define PM8921_BMS_GOOD_OCV PM8921_IRQ_BLOCK_BIT(15, 2)
  110. #define PM8921_BMS_VSENSE_AVG PM8921_IRQ_BLOCK_BIT(15, 1)
  111. #define PM8921_BMS_CCADC_EOC PM8921_IRQ_BLOCK_BIT(15, 0)
  112. #define PM8921_OVERTEMP_IRQ PM8921_IRQ_BLOCK_BIT(4, 2)
  113. #define PM8921_TEMPSTAT_IRQ PM8921_IRQ_BLOCK_BIT(6, 7)
  114. #define PM8921_RESOUT_IRQ PM8921_IRQ_BLOCK_BIT(6, 4)
  115. #define PM8921_USB_OTG_OCP_IRQ PM8921_IRQ_BLOCK_BIT(6, 0)
  116. #define PM8921_LVS7_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 7)
  117. #define PM8921_LVS6_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 6)
  118. #define PM8921_LVS5_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 5)
  119. #define PM8921_LVS4_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 4)
  120. #define PM8921_LVS3_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 3)
  121. #define PM8921_LVS2_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 2)
  122. #define PM8921_LVS1_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 1)
  123. #define PM8921_HDMI_MVS_OCP_IRQ PM8921_IRQ_BLOCK_BIT(13, 0)
  124. /* PMIC I/O Resources */
  125. #define PM8921_RTC_BASE 0x11D
  126. struct pm8921_platform_data {
  127. int irq_base;
  128. struct pm8xxx_irq_platform_data *irq_pdata;
  129. struct pm8xxx_gpio_platform_data *gpio_pdata;
  130. struct pm8xxx_mpp_platform_data *mpp_pdata;
  131. struct pm8xxx_rtc_platform_data *rtc_pdata;
  132. struct pm8xxx_pwrkey_platform_data *pwrkey_pdata;
  133. struct pm8xxx_keypad_platform_data *keypad_pdata;
  134. struct pm8921_charger_platform_data *charger_pdata;
  135. struct pm8921_bms_platform_data *bms_pdata;
  136. struct pm8xxx_misc_platform_data *misc_pdata;
  137. struct pm8xxx_regulator_platform_data *regulator_pdatas;
  138. int num_regulators;
  139. struct pm8xxx_adc_platform_data *adc_pdata;
  140. struct pm8xxx_led_platform_data *leds_pdata;
  141. struct pm8xxx_vibrator_platform_data *vibrator_pdata;
  142. struct pm8xxx_ccadc_platform_data *ccadc_pdata;
  143. struct pm8xxx_pwm_platform_data *pwm_pdata;
  144. };
  145. #endif