2 * da9052 declarations for DA9052 PMICs.
4 * Copyright(c) 2011 Dialog Semiconductor Ltd.
6 * Author: David Dajun Chen <dchen@diasemi.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #ifndef __MFD_DA9052_DA9052_H
25 #define __MFD_DA9052_DA9052_H
27 #include <linux/interrupt.h>
28 #include <linux/regmap.h>
29 #include <linux/slab.h>
30 #include <linux/completion.h>
31 #include <linux/list.h>
32 #include <linux/mfd/core.h>
34 #include <linux/mfd/da9052/reg.h>
36 /* Common - HWMON Channel Definations */
37 #define DA9052_ADC_VDDOUT 0
38 #define DA9052_ADC_ICH 1
39 #define DA9052_ADC_TBAT 2
40 #define DA9052_ADC_VBAT 3
41 #define DA9052_ADC_IN4 4
42 #define DA9052_ADC_IN5 5
43 #define DA9052_ADC_IN6 6
44 #define DA9052_ADC_TSI 7
45 #define DA9052_ADC_TJUNC 8
46 #define DA9052_ADC_VBBAT 9
48 /* TSI channel has its own 4 channel mux */
49 #define DA9052_ADC_TSI_XP 70
50 #define DA9052_ADC_TSI_XN 71
51 #define DA9052_ADC_TSI_YP 72
52 #define DA9052_ADC_TSI_YN 73
54 #define DA9052_IRQ_DCIN 0
55 #define DA9052_IRQ_VBUS 1
56 #define DA9052_IRQ_DCINREM 2
57 #define DA9052_IRQ_VBUSREM 3
58 #define DA9052_IRQ_VDDLOW 4
59 #define DA9052_IRQ_ALARM 5
60 #define DA9052_IRQ_SEQRDY 6
61 #define DA9052_IRQ_COMP1V2 7
62 #define DA9052_IRQ_NONKEY 8
63 #define DA9052_IRQ_IDFLOAT 9
64 #define DA9052_IRQ_IDGND 10
65 #define DA9052_IRQ_CHGEND 11
66 #define DA9052_IRQ_TBAT 12
67 #define DA9052_IRQ_ADC_EOM 13
68 #define DA9052_IRQ_PENDOWN 14
69 #define DA9052_IRQ_TSIREADY 15
70 #define DA9052_IRQ_GPI0 16
71 #define DA9052_IRQ_GPI1 17
72 #define DA9052_IRQ_GPI2 18
73 #define DA9052_IRQ_GPI3 19
74 #define DA9052_IRQ_GPI4 20
75 #define DA9052_IRQ_GPI5 21
76 #define DA9052_IRQ_GPI6 22
77 #define DA9052_IRQ_GPI7 23
78 #define DA9052_IRQ_GPI8 24
79 #define DA9052_IRQ_GPI9 25
80 #define DA9052_IRQ_GPI10 26
81 #define DA9052_IRQ_GPI11 27
82 #define DA9052_IRQ_GPI12 28
83 #define DA9052_IRQ_GPI13 29
84 #define DA9052_IRQ_GPI14 30
85 #define DA9052_IRQ_GPI15 31
99 struct regmap
*regmap
;
101 struct mutex auxadc_lock
;
102 struct completion done
;
105 struct regmap_irq_chip_data
*irq_data
;
110 /* SOC I/O transfer related fixes for DA9052/53 */
111 int (*fix_io
) (struct da9052
*da9052
, unsigned char reg
);
115 int da9052_adc_manual_read(struct da9052
*da9052
, unsigned char channel
);
116 int da9052_adc_read_temp(struct da9052
*da9052
);
119 static inline int da9052_reg_read(struct da9052
*da9052
, unsigned char reg
)
123 ret
= regmap_read(da9052
->regmap
, reg
, &val
);
127 if (da9052
->fix_io
) {
128 ret
= da9052
->fix_io(da9052
, reg
);
136 static inline int da9052_reg_write(struct da9052
*da9052
, unsigned char reg
,
141 ret
= regmap_write(da9052
->regmap
, reg
, val
);
145 if (da9052
->fix_io
) {
146 ret
= da9052
->fix_io(da9052
, reg
);
154 static inline int da9052_group_read(struct da9052
*da9052
, unsigned char reg
,
155 unsigned reg_cnt
, unsigned char *val
)
161 for (i
= 0; i
< reg_cnt
; i
++) {
162 ret
= regmap_read(da9052
->regmap
, reg
+ i
, &tmp
);
163 val
[i
] = (unsigned char)tmp
;
168 if (da9052
->fix_io
) {
169 ret
= da9052
->fix_io(da9052
, reg
);
177 static inline int da9052_group_write(struct da9052
*da9052
, unsigned char reg
,
178 unsigned reg_cnt
, unsigned char *val
)
183 for (i
= 0; i
< reg_cnt
; i
++) {
184 ret
= regmap_write(da9052
->regmap
, reg
+ i
, val
[i
]);
189 if (da9052
->fix_io
) {
190 ret
= da9052
->fix_io(da9052
, reg
);
198 static inline int da9052_reg_update(struct da9052
*da9052
, unsigned char reg
,
199 unsigned char bit_mask
,
200 unsigned char reg_val
)
204 ret
= regmap_update_bits(da9052
->regmap
, reg
, bit_mask
, reg_val
);
208 if (da9052
->fix_io
) {
209 ret
= da9052
->fix_io(da9052
, reg
);
217 int da9052_device_init(struct da9052
*da9052
, u8 chip_id
);
218 void da9052_device_exit(struct da9052
*da9052
);
220 extern const struct regmap_config da9052_regmap_config
;
222 int da9052_irq_init(struct da9052
*da9052
);
223 int da9052_irq_exit(struct da9052
*da9052
);
224 int da9052_request_irq(struct da9052
*da9052
, int irq
, char *name
,
225 irq_handler_t handler
, void *data
);
226 void da9052_free_irq(struct da9052
*da9052
, int irq
, void *data
);
228 int da9052_enable_irq(struct da9052
*da9052
, int irq
);
229 int da9052_disable_irq(struct da9052
*da9052
, int irq
);
230 int da9052_disable_irq_nosync(struct da9052
*da9052
, int irq
);
232 #endif /* __MFD_DA9052_DA9052_H */