2 * max8998.h - Voltage regulator driver for the Maxim 8998
4 * Copyright (C) 2009-2010 Samsung Electrnoics
5 * Kyungmin Park <kyungmin.park@samsung.com>
6 * Marek Szyprowski <m.szyprowski@samsung.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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifndef __LINUX_MFD_MAX8998_PRIV_H
24 #define __LINUX_MFD_MAX8998_PRIV_H
26 #define MAX8998_NUM_IRQ_REGS 4
28 /* MAX 8998 registers */
44 MAX8998_REG_LDO_ACTIVE_DISCHARGE1
,
45 MAX8998_REG_LDO_ACTIVE_DISCHARGE2
,
46 MAX8998_REG_BUCK_ACTIVE_DISCHARGE3
,
51 MAX8998_REG_BUCK1_VOLTAGE1
,
52 MAX8998_REG_BUCK1_VOLTAGE2
,
53 MAX8998_REG_BUCK1_VOLTAGE3
,
54 MAX8998_REG_BUCK1_VOLTAGE4
,
55 MAX8998_REG_BUCK2_VOLTAGE1
,
56 MAX8998_REG_BUCK2_VOLTAGE2
,
59 MAX8998_REG_LDO2_LDO3
,
64 MAX8998_REG_LDO8_LDO9
,
65 MAX8998_REG_LDO10_LDO11
,
104 /* MAX8998 various variants */
106 TYPE_MAX8998
= 0, /* Default */
107 TYPE_LP3974
, /* National version of MAX8998 */
108 TYPE_LP3979
, /* Added AVS */
111 #define MAX8998_IRQ_DCINF_MASK (1 << 2)
112 #define MAX8998_IRQ_DCINR_MASK (1 << 3)
113 #define MAX8998_IRQ_JIGF_MASK (1 << 4)
114 #define MAX8998_IRQ_JIGR_MASK (1 << 5)
115 #define MAX8998_IRQ_PWRONF_MASK (1 << 6)
116 #define MAX8998_IRQ_PWRONR_MASK (1 << 7)
118 #define MAX8998_IRQ_WTSREVNT_MASK (1 << 0)
119 #define MAX8998_IRQ_SMPLEVNT_MASK (1 << 1)
120 #define MAX8998_IRQ_ALARM1_MASK (1 << 2)
121 #define MAX8998_IRQ_ALARM0_MASK (1 << 3)
123 #define MAX8998_IRQ_ONKEY1S_MASK (1 << 0)
124 #define MAX8998_IRQ_TOPOFFR_MASK (1 << 2)
125 #define MAX8998_IRQ_DCINOVPR_MASK (1 << 3)
126 #define MAX8998_IRQ_CHGRSTF_MASK (1 << 4)
127 #define MAX8998_IRQ_DONER_MASK (1 << 5)
128 #define MAX8998_IRQ_CHGFAULT_MASK (1 << 7)
130 #define MAX8998_IRQ_LOBAT1_MASK (1 << 0)
131 #define MAX8998_IRQ_LOBAT2_MASK (1 << 1)
133 #define MAX8998_ENRAMP (1 << 4)
136 * struct max8998_dev - max8998 master device for sub-drivers
137 * @dev: master device of the chip (can be used to access platform data)
138 * @i2c: i2c client private data for regulator
139 * @rtc: i2c client private data for rtc
140 * @iolock: mutex for serializing io access
141 * @irqlock: mutex for buslock
142 * @irq_base: base IRQ number for max8998, required for IRQs
143 * @irq: generic IRQ number for max8998
144 * @ono: power onoff IRQ number for max8998
145 * @irq_masks_cur: currently active value
146 * @irq_masks_cache: cached hardware value
147 * @type: indicate which max8998 "variant" is used
151 struct i2c_client
*i2c
;
152 struct i2c_client
*rtc
;
154 struct mutex irqlock
;
159 u8 irq_masks_cur
[MAX8998_NUM_IRQ_REGS
];
160 u8 irq_masks_cache
[MAX8998_NUM_IRQ_REGS
];
165 int max8998_irq_init(struct max8998_dev
*max8998
);
166 void max8998_irq_exit(struct max8998_dev
*max8998
);
167 int max8998_irq_resume(struct max8998_dev
*max8998
);
169 extern int max8998_read_reg(struct i2c_client
*i2c
, u8 reg
, u8
*dest
);
170 extern int max8998_bulk_read(struct i2c_client
*i2c
, u8 reg
, int count
,
172 extern int max8998_write_reg(struct i2c_client
*i2c
, u8 reg
, u8 value
);
173 extern int max8998_bulk_write(struct i2c_client
*i2c
, u8 reg
, int count
,
175 extern int max8998_update_reg(struct i2c_client
*i2c
, u8 reg
, u8 val
, u8 mask
);
177 #endif /* __LINUX_MFD_MAX8998_PRIV_H */