blob: 8f66685584ade4691917261b429e57d6c4d78da4 [file] [log] [blame]
Abhijeet Dharmapurikarcbdb53e2011-04-05 14:40:52 -07001/*
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 8921 driver header file
15 *
16 */
17
18#ifndef __MFD_PM8921_H
19#define __MFD_PM8921_H
20
21#include <linux/device.h>
Abhijeet Dharmapurikarc013f0a2011-04-05 14:40:53 -070022#include <linux/mfd/pm8xxx/irq.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070023#include <linux/mfd/pm8xxx/gpio.h>
24#include <linux/mfd/pm8xxx/mpp.h>
25#include <linux/mfd/pm8xxx/rtc.h>
26#include <linux/mfd/pm8xxx/pwm.h>
27#include <linux/mfd/pm8xxx/misc.h>
28#include <linux/mfd/pm8xxx/tm.h>
29#include <linux/mfd/pm8xxx/batt-alarm.h>
30#include <linux/input/pmic8xxx-pwrkey.h>
31#include <linux/input/pmic8xxx-keypad.h>
32#include <linux/regulator/pm8921-regulator.h>
33#include <linux/mfd/pm8xxx/pm8921-charger.h>
34#include <linux/mfd/pm8921-adc.h>
35#include <linux/mfd/pm8xxx/pm8921-bms.h>
36#include <linux/leds.h>
Anirudh Ghayal6804c742011-07-27 11:47:53 +053037#include <linux/mfd/pm8xxx/vibrator.h>
Abhijeet Dharmapurikarc013f0a2011-04-05 14:40:53 -070038
39#define PM8921_NR_IRQS 256
Abhijeet Dharmapurikarcbdb53e2011-04-05 14:40:52 -070040
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070041#define PM8921_NR_GPIOS 44
42
43#define PM8921_NR_MPPS 12
44
45#define PM8921_GPIO_BLOCK_START 24
46#define PM8921_MPP_BLOCK_START 16
47#define PM8921_IRQ_BLOCK_BIT(block, bit) ((block) * 8 + (bit))
48
49/* GPIOs and MPPs [1,N] */
50#define PM8921_GPIO_IRQ(base, gpio) ((base) + \
51 PM8921_IRQ_BLOCK_BIT(PM8921_GPIO_BLOCK_START, (gpio)-1))
52#define PM8921_MPP_IRQ(base, mpp) ((base) + \
53 PM8921_IRQ_BLOCK_BIT(PM8921_MPP_BLOCK_START, (mpp)-1))
54
55/* PMIC Interrupts */
56#define PM8921_RTC_ALARM_IRQ PM8921_IRQ_BLOCK_BIT(4, 7)
57#define PM8921_BATT_ALARM_IRQ PM8921_IRQ_BLOCK_BIT(5, 6)
58#define PM8921_PWRKEY_REL_IRQ PM8921_IRQ_BLOCK_BIT(6, 2)
59#define PM8921_PWRKEY_PRESS_IRQ PM8921_IRQ_BLOCK_BIT(6, 3)
60#define PM8921_KEYPAD_IRQ PM8921_IRQ_BLOCK_BIT(9, 2)
61#define PM8921_KEYSTUCK_IRQ PM8921_IRQ_BLOCK_BIT(9, 3)
62#define PM8921_ADC_EOC_USR_IRQ PM8921_IRQ_BLOCK_BIT(9, 6)
63#define PM8921_ADC_BATT_TEMP_WARM_IRQ PM8921_IRQ_BLOCK_BIT(9, 1)
64#define PM8921_ADC_BATT_TEMP_COLD_IRQ PM8921_IRQ_BLOCK_BIT(9, 0)
65#define PM8921_USB_ID_IN_IRQ(base) (base + PM8921_IRQ_BLOCK_BIT(6, 1))
66
67#define PM8921_USBIN_VALID_IRQ PM8921_IRQ_BLOCK_BIT(1, 7)
68#define PM8921_USBIN_OV_IRQ PM8921_IRQ_BLOCK_BIT(1, 6)
69#define PM8921_BATT_INSERTED_IRQ PM8921_IRQ_BLOCK_BIT(1, 5)
70#define PM8921_VBATDET_LOW_IRQ PM8921_IRQ_BLOCK_BIT(1, 4)
71#define PM8921_USBIN_UV_IRQ PM8921_IRQ_BLOCK_BIT(1, 3)
72#define PM8921_VBAT_OV_IRQ PM8921_IRQ_BLOCK_BIT(1, 2)
73#define PM8921_CHGWDOG_IRQ PM8921_IRQ_BLOCK_BIT(1, 1)
74#define PM8921_VCP_IRQ PM8921_IRQ_BLOCK_BIT(1, 0)
75#define PM8921_ATCDONE_IRQ PM8921_IRQ_BLOCK_BIT(2, 7)
76#define PM8921_ATCFAIL_IRQ PM8921_IRQ_BLOCK_BIT(2, 6)
77#define PM8921_CHGDONE_IRQ PM8921_IRQ_BLOCK_BIT(2, 5)
78#define PM8921_CHGFAIL_IRQ PM8921_IRQ_BLOCK_BIT(2, 4)
79#define PM8921_CHGSTATE_IRQ PM8921_IRQ_BLOCK_BIT(2, 3)
80#define PM8921_LOOP_CHANGE_IRQ PM8921_IRQ_BLOCK_BIT(2, 2)
81#define PM8921_FASTCHG_IRQ PM8921_IRQ_BLOCK_BIT(2, 1)
82#define PM8921_TRKLCHG_IRQ PM8921_IRQ_BLOCK_BIT(2, 0)
83#define PM8921_BATT_REMOVED_IRQ PM8921_IRQ_BLOCK_BIT(3, 7)
84#define PM8921_BATTTEMP_HOT_IRQ PM8921_IRQ_BLOCK_BIT(3, 6)
85#define PM8921_CHGHOT_IRQ PM8921_IRQ_BLOCK_BIT(3, 5)
86#define PM8921_BATTTEMP_COLD_IRQ PM8921_IRQ_BLOCK_BIT(3, 4)
87#define PM8921_CHG_GONE_IRQ PM8921_IRQ_BLOCK_BIT(3, 3)
88#define PM8921_BAT_TEMP_OK_IRQ PM8921_IRQ_BLOCK_BIT(3, 2)
89#define PM8921_COARSE_DET_LOW_IRQ PM8921_IRQ_BLOCK_BIT(3, 1)
90#define PM8921_VDD_LOOP_IRQ PM8921_IRQ_BLOCK_BIT(3, 0)
91#define PM8921_VREG_OV_IRQ PM8921_IRQ_BLOCK_BIT(5, 7)
92#define PM8921_VBATDET_IRQ PM8921_IRQ_BLOCK_BIT(5, 5)
93#define PM8921_BATFET_IRQ PM8921_IRQ_BLOCK_BIT(5, 4)
94#define PM8921_PSI_IRQ PM8921_IRQ_BLOCK_BIT(5, 3)
95#define PM8921_DCIN_VALID_IRQ PM8921_IRQ_BLOCK_BIT(5, 2)
96#define PM8921_DCIN_OV_IRQ PM8921_IRQ_BLOCK_BIT(5, 1)
97#define PM8921_DCIN_UV_IRQ PM8921_IRQ_BLOCK_BIT(5, 0)
98
99#define PM8921_BMS_SBI_WRITE_OK PM8921_IRQ_BLOCK_BIT(15, 7)
100#define PM8921_BMS_CC_THR PM8921_IRQ_BLOCK_BIT(15, 6)
101#define PM8921_BMS_VSENSE_THR PM8921_IRQ_BLOCK_BIT(15, 5)
102#define PM8921_BMS_VSENSE_FOR_R PM8921_IRQ_BLOCK_BIT(15, 4)
103#define PM8921_BMS_OCV_FOR_R PM8921_IRQ_BLOCK_BIT(15, 3)
104#define PM8921_BMS_GOOD_OCV PM8921_IRQ_BLOCK_BIT(15, 2)
105#define PM8921_BMS_VSENSE_AVG PM8921_IRQ_BLOCK_BIT(15, 1)
106#define PM8921_BMS_CCADC_EOC PM8921_IRQ_BLOCK_BIT(15, 0)
107
108#define PM8921_OVERTEMP_IRQ PM8921_IRQ_BLOCK_BIT(4, 2)
109#define PM8921_TEMPSTAT_IRQ PM8921_IRQ_BLOCK_BIT(6, 7)
110
111/* PMIC I/O Resources */
112#define PM8921_RTC_BASE 0x11D
113
Abhijeet Dharmapurikarcbdb53e2011-04-05 14:40:52 -0700114struct pm8921_platform_data {
115 int irq_base;
Abhijeet Dharmapurikarc013f0a2011-04-05 14:40:53 -0700116 struct pm8xxx_irq_platform_data *irq_pdata;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700117 struct pm8xxx_gpio_platform_data *gpio_pdata;
118 struct pm8xxx_mpp_platform_data *mpp_pdata;
119 struct pm8xxx_rtc_platform_data *rtc_pdata;
120 struct pm8xxx_pwrkey_platform_data *pwrkey_pdata;
121 struct pm8xxx_keypad_platform_data *keypad_pdata;
122 struct pm8921_charger_platform_data *charger_pdata;
123 struct pm8921_bms_platform_data *bms_pdata;
124 struct pm8xxx_misc_platform_data *misc_pdata;
125 struct pm8921_regulator_platform_data *regulator_pdatas;
126 int num_regulators;
127 struct pm8921_adc_platform_data *adc_pdata;
128 struct led_platform_data *leds_pdata;
Anirudh Ghayal6804c742011-07-27 11:47:53 +0530129 struct pm8xxx_vibrator_platform_data *vibrator_pdata;
Abhijeet Dharmapurikarcbdb53e2011-04-05 14:40:52 -0700130};
131
132#endif