blob: ee7b1ce7a6f8f42280abcc3d1411f7bcdebb6ac2 [file] [log] [blame]
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001/*
2 * TI Palmas
3 *
Ian Lartey654003e2013-03-22 14:55:12 +00004 * Copyright 2011-2013 Texas Instruments Inc.
Graeme Gregory2945fbc2012-05-15 15:48:56 +09005 *
6 * Author: Graeme Gregory <gg@slimlogic.co.uk>
Ian Lartey654003e2013-03-22 14:55:12 +00007 * Author: Ian Lartey <ian@slimlogic.co.uk>
Graeme Gregory2945fbc2012-05-15 15:48:56 +09008 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or (at your
12 * option) any later version.
13 *
14 */
15
16#ifndef __LINUX_MFD_PALMAS_H
17#define __LINUX_MFD_PALMAS_H
18
19#include <linux/usb/otg.h>
20#include <linux/leds.h>
21#include <linux/regmap.h>
22#include <linux/regulator/driver.h>
Graeme Gregoryb1f254e2013-05-28 10:50:11 +090023#include <linux/extcon.h>
24#include <linux/usb/phy_companion.h>
Graeme Gregory2945fbc2012-05-15 15:48:56 +090025
26#define PALMAS_NUM_CLIENTS 3
27
Ian Lartey654003e2013-03-22 14:55:12 +000028/* The ID_REVISION NUMBERS */
29#define PALMAS_CHIP_OLD_ID 0x0000
30#define PALMAS_CHIP_ID 0xC035
31#define PALMAS_CHIP_CHARGER_ID 0xC036
32
Keerthy027d7c22014-06-18 15:28:54 +053033#define TPS65917_RESERVED -1
34
Ian Lartey654003e2013-03-22 14:55:12 +000035#define is_palmas(a) (((a) == PALMAS_CHIP_OLD_ID) || \
36 ((a) == PALMAS_CHIP_ID))
37#define is_palmas_charger(a) ((a) == PALMAS_CHIP_CHARGER_ID)
38
J Keerthy1ffb0be2013-06-19 11:27:48 +053039/**
40 * Palmas PMIC feature types
41 *
42 * PALMAS_PMIC_FEATURE_SMPS10_BOOST - used when the PMIC provides SMPS10_BOOST
43 * regulator.
44 *
45 * PALMAS_PMIC_HAS(b, f) - macro to check if a bandgap device is capable of a
46 * specific feature (above) or not. Return non-zero, if yes.
47 */
48#define PALMAS_PMIC_FEATURE_SMPS10_BOOST BIT(0)
49#define PALMAS_PMIC_HAS(b, f) \
50 ((b)->features & PALMAS_PMIC_FEATURE_ ## f)
51
Graeme Gregory2945fbc2012-05-15 15:48:56 +090052struct palmas_pmic;
Graeme Gregory190ef1a2012-08-28 13:47:37 +020053struct palmas_gpadc;
54struct palmas_resource;
55struct palmas_usb;
Keerthyfe40b172014-06-18 15:28:58 +053056struct palmas_pmic_driver_data;
57struct palmas_pmic_platform_data;
Graeme Gregory2945fbc2012-05-15 15:48:56 +090058
Graeme Gregoryb1f254e2013-05-28 10:50:11 +090059enum palmas_usb_state {
60 PALMAS_USB_STATE_DISCONNECT,
61 PALMAS_USB_STATE_VBUS,
62 PALMAS_USB_STATE_ID,
63};
64
Graeme Gregory2945fbc2012-05-15 15:48:56 +090065struct palmas {
66 struct device *dev;
67
68 struct i2c_client *i2c_clients[PALMAS_NUM_CLIENTS];
69 struct regmap *regmap[PALMAS_NUM_CLIENTS];
70
71 /* Stored chip id */
72 int id;
73
J Keerthy1ffb0be2013-06-19 11:27:48 +053074 unsigned int features;
Graeme Gregory2945fbc2012-05-15 15:48:56 +090075 /* IRQ Data */
76 int irq;
77 u32 irq_mask;
78 struct mutex irq_lock;
79 struct regmap_irq_chip_data *irq_data;
80
Keerthyfe40b172014-06-18 15:28:58 +053081 struct palmas_pmic_driver_data *pmic_ddata;
82
Graeme Gregory2945fbc2012-05-15 15:48:56 +090083 /* Child Devices */
84 struct palmas_pmic *pmic;
Graeme Gregory190ef1a2012-08-28 13:47:37 +020085 struct palmas_gpadc *gpadc;
86 struct palmas_resource *resource;
87 struct palmas_usb *usb;
Graeme Gregory2945fbc2012-05-15 15:48:56 +090088
89 /* GPIO MUXing */
90 u8 gpio_muxed;
91 u8 led_muxed;
92 u8 pwm_muxed;
93};
94
Keerthy7ec70c72014-06-18 15:28:57 +053095#define PALMAS_EXT_REQ (PALMAS_EXT_CONTROL_ENABLE1 | \
96 PALMAS_EXT_CONTROL_ENABLE2 | \
97 PALMAS_EXT_CONTROL_NSLEEP)
98
99struct palmas_sleep_requestor_info {
100 int id;
101 int reg_offset;
102 int bit_pos;
103};
104
Nishanth Menone7cf34e2014-06-30 10:57:35 -0500105struct palmas_regs_info {
Keerthy9f057dc2014-06-18 15:28:56 +0530106 char *name;
107 char *sname;
108 u8 vsel_addr;
109 u8 ctrl_addr;
110 u8 tstep_addr;
111 int sleep_id;
112};
113
Keerthyfe40b172014-06-18 15:28:58 +0530114struct palmas_pmic_driver_data {
115 int smps_start;
116 int smps_end;
117 int ldo_begin;
118 int ldo_end;
119 int max_reg;
Nishanth Menone7cf34e2014-06-30 10:57:35 -0500120 struct palmas_regs_info *palmas_regs_info;
Keerthyfe40b172014-06-18 15:28:58 +0530121 struct of_regulator_match *palmas_matches;
122 struct palmas_sleep_requestor_info *sleep_req_info;
123 int (*smps_register)(struct palmas_pmic *pmic,
124 struct palmas_pmic_driver_data *ddata,
125 struct palmas_pmic_platform_data *pdata,
126 const char *pdev_name,
127 struct regulator_config config);
128 int (*ldo_register)(struct palmas_pmic *pmic,
129 struct palmas_pmic_driver_data *ddata,
130 struct palmas_pmic_platform_data *pdata,
131 const char *pdev_name,
132 struct regulator_config config);
133};
134
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200135struct palmas_gpadc_platform_data {
136 /* Channel 3 current source is only enabled during conversion */
137 int ch3_current;
138
139 /* Channel 0 current source can be used for battery detection.
140 * If used for battery detection this will cause a permanent current
141 * consumption depending on current level set here.
142 */
143 int ch0_current;
144
145 /* default BAT_REMOVAL_DAT setting on device probe */
146 int bat_removal;
147
148 /* Sets the START_POLARITY bit in the RT_CTRL register */
149 int start_polarity;
150};
151
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900152struct palmas_reg_init {
153 /* warm_rest controls the voltage levels after a warm reset
154 *
155 * 0: reload default values from OTP on warm reset
156 * 1: maintain voltage from VSEL on warm reset
157 */
158 int warm_reset;
159
160 /* roof_floor controls whether the regulator uses the i2c style
161 * of DVS or uses the method where a GPIO or other control method is
162 * attached to the NSLEEP/ENABLE1/ENABLE2 pins
163 *
164 * For SMPS
165 *
166 * 0: i2c selection of voltage
167 * 1: pin selection of voltage.
168 *
169 * For LDO unused
170 */
171 int roof_floor;
172
173 /* sleep_mode is the mode loaded to MODE_SLEEP bits as defined in
174 * the data sheet.
175 *
176 * For SMPS
177 *
178 * 0: Off
179 * 1: AUTO
180 * 2: ECO
181 * 3: Forced PWM
182 *
183 * For LDO
184 *
185 * 0: Off
186 * 1: On
187 */
188 int mode_sleep;
189
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900190 /* voltage_sel is the bitfield loaded onto the SMPSX_VOLTAGE
191 * register. Set this is the default voltage set in OTP needs
192 * to be overridden.
193 */
194 u8 vsel;
195
196};
197
Graeme Gregory7cc4c922012-08-28 13:47:39 +0200198enum palmas_regulators {
199 /* SMPS regulators */
200 PALMAS_REG_SMPS12,
201 PALMAS_REG_SMPS123,
202 PALMAS_REG_SMPS3,
203 PALMAS_REG_SMPS45,
204 PALMAS_REG_SMPS457,
205 PALMAS_REG_SMPS6,
206 PALMAS_REG_SMPS7,
207 PALMAS_REG_SMPS8,
208 PALMAS_REG_SMPS9,
Kishon Vijay Abraham I77409d92013-08-12 14:21:14 +0530209 PALMAS_REG_SMPS10_OUT2,
210 PALMAS_REG_SMPS10_OUT1,
Graeme Gregory7cc4c922012-08-28 13:47:39 +0200211 /* LDO regulators */
212 PALMAS_REG_LDO1,
213 PALMAS_REG_LDO2,
214 PALMAS_REG_LDO3,
215 PALMAS_REG_LDO4,
216 PALMAS_REG_LDO5,
217 PALMAS_REG_LDO6,
218 PALMAS_REG_LDO7,
219 PALMAS_REG_LDO8,
220 PALMAS_REG_LDO9,
221 PALMAS_REG_LDOLN,
222 PALMAS_REG_LDOUSB,
Laxman Dewanganaa07f022013-04-17 15:13:12 +0530223 /* External regulators */
224 PALMAS_REG_REGEN1,
225 PALMAS_REG_REGEN2,
226 PALMAS_REG_REGEN3,
227 PALMAS_REG_SYSEN1,
228 PALMAS_REG_SYSEN2,
Graeme Gregory7cc4c922012-08-28 13:47:39 +0200229 /* Total number of regulators */
230 PALMAS_NUM_REGS,
231};
232
Keerthy027d7c22014-06-18 15:28:54 +0530233enum tps65917_regulators {
234 /* SMPS regulators */
235 TPS65917_REG_SMPS1,
236 TPS65917_REG_SMPS2,
237 TPS65917_REG_SMPS3,
238 TPS65917_REG_SMPS4,
239 TPS65917_REG_SMPS5,
240 /* LDO regulators */
241 TPS65917_REG_LDO1,
242 TPS65917_REG_LDO2,
243 TPS65917_REG_LDO3,
244 TPS65917_REG_LDO4,
245 TPS65917_REG_LDO5,
246 TPS65917_REG_REGEN1,
247 TPS65917_REG_REGEN2,
248 TPS65917_REG_REGEN3,
249
250 /* Total number of regulators */
251 TPS65917_NUM_REGS,
252};
253
Laxman Dewangancc01b462013-08-13 13:23:11 +0530254/* External controll signal name */
255enum {
256 PALMAS_EXT_CONTROL_ENABLE1 = 0x1,
257 PALMAS_EXT_CONTROL_ENABLE2 = 0x2,
258 PALMAS_EXT_CONTROL_NSLEEP = 0x4,
259};
260
261/*
262 * Palmas device resources can be controlled externally for
263 * enabling/disabling it rather than register write through i2c.
264 * Add the external controlled requestor ID for different resources.
265 */
266enum palmas_external_requestor_id {
267 PALMAS_EXTERNAL_REQSTR_ID_REGEN1,
268 PALMAS_EXTERNAL_REQSTR_ID_REGEN2,
269 PALMAS_EXTERNAL_REQSTR_ID_SYSEN1,
270 PALMAS_EXTERNAL_REQSTR_ID_SYSEN2,
271 PALMAS_EXTERNAL_REQSTR_ID_CLK32KG,
272 PALMAS_EXTERNAL_REQSTR_ID_CLK32KGAUDIO,
273 PALMAS_EXTERNAL_REQSTR_ID_REGEN3,
274 PALMAS_EXTERNAL_REQSTR_ID_SMPS12,
275 PALMAS_EXTERNAL_REQSTR_ID_SMPS3,
276 PALMAS_EXTERNAL_REQSTR_ID_SMPS45,
277 PALMAS_EXTERNAL_REQSTR_ID_SMPS6,
278 PALMAS_EXTERNAL_REQSTR_ID_SMPS7,
279 PALMAS_EXTERNAL_REQSTR_ID_SMPS8,
280 PALMAS_EXTERNAL_REQSTR_ID_SMPS9,
281 PALMAS_EXTERNAL_REQSTR_ID_SMPS10,
282 PALMAS_EXTERNAL_REQSTR_ID_LDO1,
283 PALMAS_EXTERNAL_REQSTR_ID_LDO2,
284 PALMAS_EXTERNAL_REQSTR_ID_LDO3,
285 PALMAS_EXTERNAL_REQSTR_ID_LDO4,
286 PALMAS_EXTERNAL_REQSTR_ID_LDO5,
287 PALMAS_EXTERNAL_REQSTR_ID_LDO6,
288 PALMAS_EXTERNAL_REQSTR_ID_LDO7,
289 PALMAS_EXTERNAL_REQSTR_ID_LDO8,
290 PALMAS_EXTERNAL_REQSTR_ID_LDO9,
291 PALMAS_EXTERNAL_REQSTR_ID_LDOLN,
292 PALMAS_EXTERNAL_REQSTR_ID_LDOUSB,
293
294 /* Last entry */
295 PALMAS_EXTERNAL_REQSTR_ID_MAX,
296};
297
Keerthy027d7c22014-06-18 15:28:54 +0530298enum tps65917_external_requestor_id {
299 TPS65917_EXTERNAL_REQSTR_ID_REGEN1,
300 TPS65917_EXTERNAL_REQSTR_ID_REGEN2,
301 TPS65917_EXTERNAL_REQSTR_ID_REGEN3,
302 TPS65917_EXTERNAL_REQSTR_ID_SMPS1,
303 TPS65917_EXTERNAL_REQSTR_ID_SMPS2,
304 TPS65917_EXTERNAL_REQSTR_ID_SMPS3,
305 TPS65917_EXTERNAL_REQSTR_ID_SMPS4,
306 TPS65917_EXTERNAL_REQSTR_ID_SMPS5,
307 TPS65917_EXTERNAL_REQSTR_ID_LDO1,
308 TPS65917_EXTERNAL_REQSTR_ID_LDO2,
309 TPS65917_EXTERNAL_REQSTR_ID_LDO3,
310 TPS65917_EXTERNAL_REQSTR_ID_LDO4,
311 TPS65917_EXTERNAL_REQSTR_ID_LDO5,
312 /* Last entry */
313 TPS65917_EXTERNAL_REQSTR_ID_MAX,
314};
315
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900316struct palmas_pmic_platform_data {
317 /* An array of pointers to regulator init data indexed by regulator
318 * ID
319 */
Graeme Gregory7cc4c922012-08-28 13:47:39 +0200320 struct regulator_init_data *reg_data[PALMAS_NUM_REGS];
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900321
322 /* An array of pointers to structures containing sleep mode and DVS
323 * configuration for regulators indexed by ID
324 */
Graeme Gregory7cc4c922012-08-28 13:47:39 +0200325 struct palmas_reg_init *reg_init[PALMAS_NUM_REGS];
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900326
327 /* use LDO6 for vibrator control */
328 int ldo6_vibrator;
Laxman Dewangan17c11a72013-04-17 15:13:13 +0530329
330 /* Enable tracking mode of LDO8 */
331 bool enable_ldo8_tracking;
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200332};
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900333
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200334struct palmas_usb_platform_data {
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200335 /* Do we enable the wakeup comparator on probe */
336 int wakeup;
337};
338
339struct palmas_resource_platform_data {
340 int regen1_mode_sleep;
341 int regen2_mode_sleep;
342 int sysen1_mode_sleep;
343 int sysen2_mode_sleep;
344
345 /* bitfield to be loaded to NSLEEP_RES_ASSIGN */
346 u8 nsleep_res;
347 /* bitfield to be loaded to NSLEEP_SMPS_ASSIGN */
348 u8 nsleep_smps;
349 /* bitfield to be loaded to NSLEEP_LDO_ASSIGN1 */
350 u8 nsleep_ldo1;
351 /* bitfield to be loaded to NSLEEP_LDO_ASSIGN2 */
352 u8 nsleep_ldo2;
353
354 /* bitfield to be loaded to ENABLE1_RES_ASSIGN */
355 u8 enable1_res;
356 /* bitfield to be loaded to ENABLE1_SMPS_ASSIGN */
357 u8 enable1_smps;
358 /* bitfield to be loaded to ENABLE1_LDO_ASSIGN1 */
359 u8 enable1_ldo1;
360 /* bitfield to be loaded to ENABLE1_LDO_ASSIGN2 */
361 u8 enable1_ldo2;
362
363 /* bitfield to be loaded to ENABLE2_RES_ASSIGN */
364 u8 enable2_res;
365 /* bitfield to be loaded to ENABLE2_SMPS_ASSIGN */
366 u8 enable2_smps;
367 /* bitfield to be loaded to ENABLE2_LDO_ASSIGN1 */
368 u8 enable2_ldo1;
369 /* bitfield to be loaded to ENABLE2_LDO_ASSIGN2 */
370 u8 enable2_ldo2;
371};
372
373struct palmas_clk_platform_data {
374 int clk32kg_mode_sleep;
375 int clk32kgaudio_mode_sleep;
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900376};
377
378struct palmas_platform_data {
Laxman Dewangandf545d12013-03-01 20:13:46 +0530379 int irq_flags;
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900380 int gpio_base;
381
382 /* bit value to be loaded to the POWER_CTRL register */
383 u8 power_ctrl;
384
385 /*
386 * boolean to select if we want to configure muxing here
387 * then the two value to load into the registers if true
388 */
389 int mux_from_pdata;
390 u8 pad1, pad2;
Bill Huangb81eec02013-08-08 04:45:05 -0700391 bool pm_off;
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900392
393 struct palmas_pmic_platform_data *pmic_pdata;
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200394 struct palmas_gpadc_platform_data *gpadc_pdata;
395 struct palmas_usb_platform_data *usb_pdata;
396 struct palmas_resource_platform_data *resource_pdata;
397 struct palmas_clk_platform_data *clk_pdata;
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900398};
399
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200400struct palmas_gpadc_calibration {
401 s32 gain;
402 s32 gain_error;
403 s32 offset_error;
404};
405
406struct palmas_gpadc {
407 struct device *dev;
408 struct palmas *palmas;
409
410 int ch3_current;
411 int ch0_current;
412
413 int gpadc_force;
414
415 int bat_removal;
416
417 struct mutex reading_lock;
418 struct completion irq_complete;
419
420 int eoc_sw_irq;
421
422 struct palmas_gpadc_calibration *palmas_cal_tbl;
423
424 int conv0_channel;
425 int conv1_channel;
426 int rt_channel;
427};
428
429struct palmas_gpadc_result {
430 s32 raw_code;
431 s32 corrected_code;
432 s32 result;
433};
434
435#define PALMAS_MAX_CHANNELS 16
436
Keerthy027d7c22014-06-18 15:28:54 +0530437/* Define the tps65917 IRQ numbers */
438enum tps65917_irqs {
439 /* INT1 registers */
440 TPS65917_RESERVED1,
441 TPS65917_PWRON_IRQ,
442 TPS65917_LONG_PRESS_KEY_IRQ,
443 TPS65917_RESERVED2,
444 TPS65917_PWRDOWN_IRQ,
445 TPS65917_HOTDIE_IRQ,
446 TPS65917_VSYS_MON_IRQ,
447 TPS65917_RESERVED3,
448 /* INT2 registers */
449 TPS65917_RESERVED4,
450 TPS65917_OTP_ERROR_IRQ,
451 TPS65917_WDT_IRQ,
452 TPS65917_RESERVED5,
453 TPS65917_RESET_IN_IRQ,
454 TPS65917_FSD_IRQ,
455 TPS65917_SHORT_IRQ,
456 TPS65917_RESERVED6,
457 /* INT3 registers */
458 TPS65917_GPADC_AUTO_0_IRQ,
459 TPS65917_GPADC_AUTO_1_IRQ,
460 TPS65917_GPADC_EOC_SW_IRQ,
461 TPS65917_RESREVED6,
462 TPS65917_RESERVED7,
463 TPS65917_RESERVED8,
464 TPS65917_RESERVED9,
465 TPS65917_VBUS_IRQ,
466 /* INT4 registers */
467 TPS65917_GPIO_0_IRQ,
468 TPS65917_GPIO_1_IRQ,
469 TPS65917_GPIO_2_IRQ,
470 TPS65917_GPIO_3_IRQ,
471 TPS65917_GPIO_4_IRQ,
472 TPS65917_GPIO_5_IRQ,
473 TPS65917_GPIO_6_IRQ,
474 TPS65917_RESERVED10,
475 /* Total Number IRQs */
476 TPS65917_NUM_IRQ,
477};
478
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900479/* Define the palmas IRQ numbers */
480enum palmas_irqs {
481 /* INT1 registers */
482 PALMAS_CHARG_DET_N_VBUS_OVV_IRQ,
483 PALMAS_PWRON_IRQ,
484 PALMAS_LONG_PRESS_KEY_IRQ,
485 PALMAS_RPWRON_IRQ,
486 PALMAS_PWRDOWN_IRQ,
487 PALMAS_HOTDIE_IRQ,
488 PALMAS_VSYS_MON_IRQ,
489 PALMAS_VBAT_MON_IRQ,
490 /* INT2 registers */
491 PALMAS_RTC_ALARM_IRQ,
492 PALMAS_RTC_TIMER_IRQ,
493 PALMAS_WDT_IRQ,
494 PALMAS_BATREMOVAL_IRQ,
495 PALMAS_RESET_IN_IRQ,
496 PALMAS_FBI_BB_IRQ,
497 PALMAS_SHORT_IRQ,
498 PALMAS_VAC_ACOK_IRQ,
499 /* INT3 registers */
500 PALMAS_GPADC_AUTO_0_IRQ,
501 PALMAS_GPADC_AUTO_1_IRQ,
502 PALMAS_GPADC_EOC_SW_IRQ,
503 PALMAS_GPADC_EOC_RT_IRQ,
504 PALMAS_ID_OTG_IRQ,
505 PALMAS_ID_IRQ,
506 PALMAS_VBUS_OTG_IRQ,
507 PALMAS_VBUS_IRQ,
508 /* INT4 registers */
509 PALMAS_GPIO_0_IRQ,
510 PALMAS_GPIO_1_IRQ,
511 PALMAS_GPIO_2_IRQ,
512 PALMAS_GPIO_3_IRQ,
513 PALMAS_GPIO_4_IRQ,
514 PALMAS_GPIO_5_IRQ,
515 PALMAS_GPIO_6_IRQ,
516 PALMAS_GPIO_7_IRQ,
517 /* Total Number IRQs */
518 PALMAS_NUM_IRQ,
519};
520
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900521struct palmas_pmic {
522 struct palmas *palmas;
523 struct device *dev;
524 struct regulator_desc desc[PALMAS_NUM_REGS];
525 struct regulator_dev *rdev[PALMAS_NUM_REGS];
526 struct mutex mutex;
527
528 int smps123;
529 int smps457;
Keerthy027d7c22014-06-18 15:28:54 +0530530 int smps12;
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900531
Kishon Vijay Abraham I77409d92013-08-12 14:21:14 +0530532 int range[PALMAS_REG_SMPS10_OUT1];
533 unsigned int ramp_delay[PALMAS_REG_SMPS10_OUT1];
534 unsigned int current_reg_mode[PALMAS_REG_SMPS10_OUT1];
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900535};
536
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200537struct palmas_resource {
538 struct palmas *palmas;
539 struct device *dev;
540};
541
542struct palmas_usb {
543 struct palmas *palmas;
544 struct device *dev;
545
Chanwoo Choi3f79a3f2014-04-21 20:44:53 +0900546 struct extcon_dev *edev;
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200547
Graeme Gregoryb1f254e2013-05-28 10:50:11 +0900548 int id_otg_irq;
549 int id_irq;
550 int vbus_otg_irq;
551 int vbus_irq;
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200552
Graeme Gregoryb1f254e2013-05-28 10:50:11 +0900553 enum palmas_usb_state linkstat;
Laxman Dewangan7281e052013-07-10 14:59:06 +0530554 int wakeup;
555 bool enable_vbus_detection;
556 bool enable_id_detection;
Graeme Gregory190ef1a2012-08-28 13:47:37 +0200557};
558
559#define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator)
560
561enum usb_irq_events {
562 /* Wakeup events from INT3 */
563 PALMAS_USB_ID_WAKEPUP,
564 PALMAS_USB_VBUS_WAKEUP,
565
566 /* ID_OTG_EVENTS */
567 PALMAS_USB_ID_GND,
568 N_PALMAS_USB_ID_GND,
569 PALMAS_USB_ID_C,
570 N_PALMAS_USB_ID_C,
571 PALMAS_USB_ID_B,
572 N_PALMAS_USB_ID_B,
573 PALMAS_USB_ID_A,
574 N_PALMAS_USB_ID_A,
575 PALMAS_USB_ID_FLOAT,
576 N_PALMAS_USB_ID_FLOAT,
577
578 /* VBUS_OTG_EVENTS */
579 PALMAS_USB_VB_SESS_END,
580 N_PALMAS_USB_VB_SESS_END,
581 PALMAS_USB_VB_SESS_VLD,
582 N_PALMAS_USB_VB_SESS_VLD,
583 PALMAS_USB_VA_SESS_VLD,
584 N_PALMAS_USB_VA_SESS_VLD,
585 PALMAS_USB_VA_VBUS_VLD,
586 N_PALMAS_USB_VA_VBUS_VLD,
587 PALMAS_USB_VADP_SNS,
588 N_PALMAS_USB_VADP_SNS,
589 PALMAS_USB_VADP_PRB,
590 N_PALMAS_USB_VADP_PRB,
591 PALMAS_USB_VOTG_SESS_VLD,
592 N_PALMAS_USB_VOTG_SESS_VLD,
593};
594
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900595/* defines so we can store the mux settings */
596#define PALMAS_GPIO_0_MUXED (1 << 0)
597#define PALMAS_GPIO_1_MUXED (1 << 1)
598#define PALMAS_GPIO_2_MUXED (1 << 2)
599#define PALMAS_GPIO_3_MUXED (1 << 3)
600#define PALMAS_GPIO_4_MUXED (1 << 4)
601#define PALMAS_GPIO_5_MUXED (1 << 5)
602#define PALMAS_GPIO_6_MUXED (1 << 6)
603#define PALMAS_GPIO_7_MUXED (1 << 7)
604
605#define PALMAS_LED1_MUXED (1 << 0)
606#define PALMAS_LED2_MUXED (1 << 1)
607
608#define PALMAS_PWM1_MUXED (1 << 0)
609#define PALMAS_PWM2_MUXED (1 << 1)
610
611/* helper macro to get correct slave number */
612#define PALMAS_BASE_TO_SLAVE(x) ((x >> 8) - 1)
Keerthy45ac60c2014-05-22 14:48:30 +0530613#define PALMAS_BASE_TO_REG(x, y) ((x & 0xFF) + y)
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900614
615/* Base addresses of IP blocks in Palmas */
Keerthy45ac60c2014-05-22 14:48:30 +0530616#define PALMAS_SMPS_DVS_BASE 0x020
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900617#define PALMAS_RTC_BASE 0x100
618#define PALMAS_VALIDITY_BASE 0x118
619#define PALMAS_SMPS_BASE 0x120
620#define PALMAS_LDO_BASE 0x150
621#define PALMAS_DVFS_BASE 0x180
622#define PALMAS_PMU_CONTROL_BASE 0x1A0
623#define PALMAS_RESOURCE_BASE 0x1D4
Laxman Dewangan0a8d3e22013-08-06 18:42:35 +0530624#define PALMAS_PU_PD_OD_BASE 0x1F0
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900625#define PALMAS_LED_BASE 0x200
626#define PALMAS_INTERRUPT_BASE 0x210
627#define PALMAS_USB_OTG_BASE 0x250
628#define PALMAS_VIBRATOR_BASE 0x270
629#define PALMAS_GPIO_BASE 0x280
630#define PALMAS_USB_BASE 0x290
631#define PALMAS_GPADC_BASE 0x2C0
632#define PALMAS_TRIM_GPADC_BASE 0x3CD
633
634/* Registers for function RTC */
Keerthy45ac60c2014-05-22 14:48:30 +0530635#define PALMAS_SECONDS_REG 0x00
636#define PALMAS_MINUTES_REG 0x01
637#define PALMAS_HOURS_REG 0x02
638#define PALMAS_DAYS_REG 0x03
639#define PALMAS_MONTHS_REG 0x04
640#define PALMAS_YEARS_REG 0x05
641#define PALMAS_WEEKS_REG 0x06
642#define PALMAS_ALARM_SECONDS_REG 0x08
643#define PALMAS_ALARM_MINUTES_REG 0x09
644#define PALMAS_ALARM_HOURS_REG 0x0A
645#define PALMAS_ALARM_DAYS_REG 0x0B
646#define PALMAS_ALARM_MONTHS_REG 0x0C
647#define PALMAS_ALARM_YEARS_REG 0x0D
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900648#define PALMAS_RTC_CTRL_REG 0x10
649#define PALMAS_RTC_STATUS_REG 0x11
650#define PALMAS_RTC_INTERRUPTS_REG 0x12
651#define PALMAS_RTC_COMP_LSB_REG 0x13
652#define PALMAS_RTC_COMP_MSB_REG 0x14
653#define PALMAS_RTC_RES_PROG_REG 0x15
654#define PALMAS_RTC_RESET_STATUS_REG 0x16
655
656/* Bit definitions for SECONDS_REG */
657#define PALMAS_SECONDS_REG_SEC1_MASK 0x70
Keerthy45ac60c2014-05-22 14:48:30 +0530658#define PALMAS_SECONDS_REG_SEC1_SHIFT 0x04
659#define PALMAS_SECONDS_REG_SEC0_MASK 0x0F
660#define PALMAS_SECONDS_REG_SEC0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900661
662/* Bit definitions for MINUTES_REG */
663#define PALMAS_MINUTES_REG_MIN1_MASK 0x70
Keerthy45ac60c2014-05-22 14:48:30 +0530664#define PALMAS_MINUTES_REG_MIN1_SHIFT 0x04
665#define PALMAS_MINUTES_REG_MIN0_MASK 0x0F
666#define PALMAS_MINUTES_REG_MIN0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900667
668/* Bit definitions for HOURS_REG */
669#define PALMAS_HOURS_REG_PM_NAM 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530670#define PALMAS_HOURS_REG_PM_NAM_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900671#define PALMAS_HOURS_REG_HOUR1_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530672#define PALMAS_HOURS_REG_HOUR1_SHIFT 0x04
673#define PALMAS_HOURS_REG_HOUR0_MASK 0x0F
674#define PALMAS_HOURS_REG_HOUR0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900675
676/* Bit definitions for DAYS_REG */
677#define PALMAS_DAYS_REG_DAY1_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530678#define PALMAS_DAYS_REG_DAY1_SHIFT 0x04
679#define PALMAS_DAYS_REG_DAY0_MASK 0x0F
680#define PALMAS_DAYS_REG_DAY0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900681
682/* Bit definitions for MONTHS_REG */
683#define PALMAS_MONTHS_REG_MONTH1 0x10
Keerthy45ac60c2014-05-22 14:48:30 +0530684#define PALMAS_MONTHS_REG_MONTH1_SHIFT 0x04
685#define PALMAS_MONTHS_REG_MONTH0_MASK 0x0F
686#define PALMAS_MONTHS_REG_MONTH0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900687
688/* Bit definitions for YEARS_REG */
689#define PALMAS_YEARS_REG_YEAR1_MASK 0xf0
Keerthy45ac60c2014-05-22 14:48:30 +0530690#define PALMAS_YEARS_REG_YEAR1_SHIFT 0x04
691#define PALMAS_YEARS_REG_YEAR0_MASK 0x0F
692#define PALMAS_YEARS_REG_YEAR0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900693
694/* Bit definitions for WEEKS_REG */
695#define PALMAS_WEEKS_REG_WEEK_MASK 0x07
Keerthy45ac60c2014-05-22 14:48:30 +0530696#define PALMAS_WEEKS_REG_WEEK_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900697
698/* Bit definitions for ALARM_SECONDS_REG */
699#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK 0x70
Keerthy45ac60c2014-05-22 14:48:30 +0530700#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_SHIFT 0x04
701#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_MASK 0x0F
702#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900703
704/* Bit definitions for ALARM_MINUTES_REG */
705#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK 0x70
Keerthy45ac60c2014-05-22 14:48:30 +0530706#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_SHIFT 0x04
707#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_MASK 0x0F
708#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900709
710/* Bit definitions for ALARM_HOURS_REG */
711#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530712#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900713#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530714#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_SHIFT 0x04
715#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_MASK 0x0F
716#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900717
718/* Bit definitions for ALARM_DAYS_REG */
719#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530720#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_SHIFT 0x04
721#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_MASK 0x0F
722#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900723
724/* Bit definitions for ALARM_MONTHS_REG */
725#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1 0x10
Keerthy45ac60c2014-05-22 14:48:30 +0530726#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1_SHIFT 0x04
727#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_MASK 0x0F
728#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900729
730/* Bit definitions for ALARM_YEARS_REG */
731#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK 0xf0
Keerthy45ac60c2014-05-22 14:48:30 +0530732#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_SHIFT 0x04
733#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_MASK 0x0F
734#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900735
736/* Bit definitions for RTC_CTRL_REG */
737#define PALMAS_RTC_CTRL_REG_RTC_V_OPT 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530738#define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900739#define PALMAS_RTC_CTRL_REG_GET_TIME 0x40
Keerthy45ac60c2014-05-22 14:48:30 +0530740#define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900741#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER 0x20
Keerthy45ac60c2014-05-22 14:48:30 +0530742#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900743#define PALMAS_RTC_CTRL_REG_TEST_MODE 0x10
Keerthy45ac60c2014-05-22 14:48:30 +0530744#define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900745#define PALMAS_RTC_CTRL_REG_MODE_12_24 0x08
Keerthy45ac60c2014-05-22 14:48:30 +0530746#define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900747#define PALMAS_RTC_CTRL_REG_AUTO_COMP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +0530748#define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900749#define PALMAS_RTC_CTRL_REG_ROUND_30S 0x02
Keerthy45ac60c2014-05-22 14:48:30 +0530750#define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900751#define PALMAS_RTC_CTRL_REG_STOP_RTC 0x01
Keerthy45ac60c2014-05-22 14:48:30 +0530752#define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900753
754/* Bit definitions for RTC_STATUS_REG */
755#define PALMAS_RTC_STATUS_REG_POWER_UP 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530756#define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900757#define PALMAS_RTC_STATUS_REG_ALARM 0x40
Keerthy45ac60c2014-05-22 14:48:30 +0530758#define PALMAS_RTC_STATUS_REG_ALARM_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900759#define PALMAS_RTC_STATUS_REG_EVENT_1D 0x20
Keerthy45ac60c2014-05-22 14:48:30 +0530760#define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900761#define PALMAS_RTC_STATUS_REG_EVENT_1H 0x10
Keerthy45ac60c2014-05-22 14:48:30 +0530762#define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900763#define PALMAS_RTC_STATUS_REG_EVENT_1M 0x08
Keerthy45ac60c2014-05-22 14:48:30 +0530764#define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900765#define PALMAS_RTC_STATUS_REG_EVENT_1S 0x04
Keerthy45ac60c2014-05-22 14:48:30 +0530766#define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900767#define PALMAS_RTC_STATUS_REG_RUN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +0530768#define PALMAS_RTC_STATUS_REG_RUN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900769
770/* Bit definitions for RTC_INTERRUPTS_REG */
771#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +0530772#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900773#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM 0x08
Keerthy45ac60c2014-05-22 14:48:30 +0530774#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900775#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER 0x04
Keerthy45ac60c2014-05-22 14:48:30 +0530776#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900777#define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530778#define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900779
780/* Bit definitions for RTC_COMP_LSB_REG */
Keerthy45ac60c2014-05-22 14:48:30 +0530781#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_MASK 0xFF
782#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900783
784/* Bit definitions for RTC_COMP_MSB_REG */
Keerthy45ac60c2014-05-22 14:48:30 +0530785#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_MASK 0xFF
786#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900787
788/* Bit definitions for RTC_RES_PROG_REG */
Keerthy45ac60c2014-05-22 14:48:30 +0530789#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_MASK 0x3F
790#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900791
792/* Bit definitions for RTC_RESET_STATUS_REG */
793#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS 0x01
Keerthy45ac60c2014-05-22 14:48:30 +0530794#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900795
796/* Registers for function BACKUP */
Keerthy45ac60c2014-05-22 14:48:30 +0530797#define PALMAS_BACKUP0 0x00
798#define PALMAS_BACKUP1 0x01
799#define PALMAS_BACKUP2 0x02
800#define PALMAS_BACKUP3 0x03
801#define PALMAS_BACKUP4 0x04
802#define PALMAS_BACKUP5 0x05
803#define PALMAS_BACKUP6 0x06
804#define PALMAS_BACKUP7 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900805
806/* Bit definitions for BACKUP0 */
Keerthy45ac60c2014-05-22 14:48:30 +0530807#define PALMAS_BACKUP0_BACKUP_MASK 0xFF
808#define PALMAS_BACKUP0_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900809
810/* Bit definitions for BACKUP1 */
Keerthy45ac60c2014-05-22 14:48:30 +0530811#define PALMAS_BACKUP1_BACKUP_MASK 0xFF
812#define PALMAS_BACKUP1_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900813
814/* Bit definitions for BACKUP2 */
Keerthy45ac60c2014-05-22 14:48:30 +0530815#define PALMAS_BACKUP2_BACKUP_MASK 0xFF
816#define PALMAS_BACKUP2_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900817
818/* Bit definitions for BACKUP3 */
Keerthy45ac60c2014-05-22 14:48:30 +0530819#define PALMAS_BACKUP3_BACKUP_MASK 0xFF
820#define PALMAS_BACKUP3_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900821
822/* Bit definitions for BACKUP4 */
Keerthy45ac60c2014-05-22 14:48:30 +0530823#define PALMAS_BACKUP4_BACKUP_MASK 0xFF
824#define PALMAS_BACKUP4_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900825
826/* Bit definitions for BACKUP5 */
Keerthy45ac60c2014-05-22 14:48:30 +0530827#define PALMAS_BACKUP5_BACKUP_MASK 0xFF
828#define PALMAS_BACKUP5_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900829
830/* Bit definitions for BACKUP6 */
Keerthy45ac60c2014-05-22 14:48:30 +0530831#define PALMAS_BACKUP6_BACKUP_MASK 0xFF
832#define PALMAS_BACKUP6_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900833
834/* Bit definitions for BACKUP7 */
Keerthy45ac60c2014-05-22 14:48:30 +0530835#define PALMAS_BACKUP7_BACKUP_MASK 0xFF
836#define PALMAS_BACKUP7_BACKUP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900837
838/* Registers for function SMPS */
Keerthy45ac60c2014-05-22 14:48:30 +0530839#define PALMAS_SMPS12_CTRL 0x00
840#define PALMAS_SMPS12_TSTEP 0x01
841#define PALMAS_SMPS12_FORCE 0x02
842#define PALMAS_SMPS12_VOLTAGE 0x03
843#define PALMAS_SMPS3_CTRL 0x04
844#define PALMAS_SMPS3_VOLTAGE 0x07
845#define PALMAS_SMPS45_CTRL 0x08
846#define PALMAS_SMPS45_TSTEP 0x09
847#define PALMAS_SMPS45_FORCE 0x0A
848#define PALMAS_SMPS45_VOLTAGE 0x0B
849#define PALMAS_SMPS6_CTRL 0x0C
850#define PALMAS_SMPS6_TSTEP 0x0D
851#define PALMAS_SMPS6_FORCE 0x0E
852#define PALMAS_SMPS6_VOLTAGE 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900853#define PALMAS_SMPS7_CTRL 0x10
854#define PALMAS_SMPS7_VOLTAGE 0x13
855#define PALMAS_SMPS8_CTRL 0x14
856#define PALMAS_SMPS8_TSTEP 0x15
857#define PALMAS_SMPS8_FORCE 0x16
858#define PALMAS_SMPS8_VOLTAGE 0x17
859#define PALMAS_SMPS9_CTRL 0x18
860#define PALMAS_SMPS9_VOLTAGE 0x1B
861#define PALMAS_SMPS10_CTRL 0x1C
862#define PALMAS_SMPS10_STATUS 0x1F
863#define PALMAS_SMPS_CTRL 0x24
864#define PALMAS_SMPS_PD_CTRL 0x25
865#define PALMAS_SMPS_DITHER_EN 0x26
866#define PALMAS_SMPS_THERMAL_EN 0x27
867#define PALMAS_SMPS_THERMAL_STATUS 0x28
868#define PALMAS_SMPS_SHORT_STATUS 0x29
869#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN 0x2A
870#define PALMAS_SMPS_POWERGOOD_MASK1 0x2B
871#define PALMAS_SMPS_POWERGOOD_MASK2 0x2C
872
873/* Bit definitions for SMPS12_CTRL */
874#define PALMAS_SMPS12_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530875#define PALMAS_SMPS12_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900876#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +0530877#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900878#define PALMAS_SMPS12_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530879#define PALMAS_SMPS12_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900880#define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +0530881#define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900882#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530883#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900884
885/* Bit definitions for SMPS12_TSTEP */
886#define PALMAS_SMPS12_TSTEP_TSTEP_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530887#define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900888
889/* Bit definitions for SMPS12_FORCE */
890#define PALMAS_SMPS12_FORCE_CMD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530891#define PALMAS_SMPS12_FORCE_CMD_SHIFT 0x07
892#define PALMAS_SMPS12_FORCE_VSEL_MASK 0x7F
893#define PALMAS_SMPS12_FORCE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900894
895/* Bit definitions for SMPS12_VOLTAGE */
896#define PALMAS_SMPS12_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530897#define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT 0x07
898#define PALMAS_SMPS12_VOLTAGE_VSEL_MASK 0x7F
899#define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900900
901/* Bit definitions for SMPS3_CTRL */
902#define PALMAS_SMPS3_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530903#define PALMAS_SMPS3_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900904#define PALMAS_SMPS3_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530905#define PALMAS_SMPS3_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900906#define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +0530907#define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900908#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530909#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900910
911/* Bit definitions for SMPS3_VOLTAGE */
912#define PALMAS_SMPS3_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530913#define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT 0x07
914#define PALMAS_SMPS3_VOLTAGE_VSEL_MASK 0x7F
915#define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900916
917/* Bit definitions for SMPS45_CTRL */
918#define PALMAS_SMPS45_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530919#define PALMAS_SMPS45_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900920#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +0530921#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900922#define PALMAS_SMPS45_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530923#define PALMAS_SMPS45_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900924#define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +0530925#define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900926#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530927#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900928
929/* Bit definitions for SMPS45_TSTEP */
930#define PALMAS_SMPS45_TSTEP_TSTEP_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530931#define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900932
933/* Bit definitions for SMPS45_FORCE */
934#define PALMAS_SMPS45_FORCE_CMD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530935#define PALMAS_SMPS45_FORCE_CMD_SHIFT 0x07
936#define PALMAS_SMPS45_FORCE_VSEL_MASK 0x7F
937#define PALMAS_SMPS45_FORCE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900938
939/* Bit definitions for SMPS45_VOLTAGE */
940#define PALMAS_SMPS45_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530941#define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT 0x07
942#define PALMAS_SMPS45_VOLTAGE_VSEL_MASK 0x7F
943#define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900944
945/* Bit definitions for SMPS6_CTRL */
946#define PALMAS_SMPS6_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530947#define PALMAS_SMPS6_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900948#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +0530949#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900950#define PALMAS_SMPS6_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530951#define PALMAS_SMPS6_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900952#define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +0530953#define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900954#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530955#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900956
957/* Bit definitions for SMPS6_TSTEP */
958#define PALMAS_SMPS6_TSTEP_TSTEP_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530959#define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900960
961/* Bit definitions for SMPS6_FORCE */
962#define PALMAS_SMPS6_FORCE_CMD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530963#define PALMAS_SMPS6_FORCE_CMD_SHIFT 0x07
964#define PALMAS_SMPS6_FORCE_VSEL_MASK 0x7F
965#define PALMAS_SMPS6_FORCE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900966
967/* Bit definitions for SMPS6_VOLTAGE */
968#define PALMAS_SMPS6_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530969#define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT 0x07
970#define PALMAS_SMPS6_VOLTAGE_VSEL_MASK 0x7F
971#define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900972
973/* Bit definitions for SMPS7_CTRL */
974#define PALMAS_SMPS7_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530975#define PALMAS_SMPS7_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900976#define PALMAS_SMPS7_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530977#define PALMAS_SMPS7_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900978#define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +0530979#define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900980#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530981#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900982
983/* Bit definitions for SMPS7_VOLTAGE */
984#define PALMAS_SMPS7_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530985#define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT 0x07
986#define PALMAS_SMPS7_VOLTAGE_VSEL_MASK 0x7F
987#define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900988
989/* Bit definitions for SMPS8_CTRL */
990#define PALMAS_SMPS8_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +0530991#define PALMAS_SMPS8_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900992#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +0530993#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900994#define PALMAS_SMPS8_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +0530995#define PALMAS_SMPS8_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900996#define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +0530997#define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +0900998#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +0530999#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001000
1001/* Bit definitions for SMPS8_TSTEP */
1002#define PALMAS_SMPS8_TSTEP_TSTEP_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +05301003#define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001004
1005/* Bit definitions for SMPS8_FORCE */
1006#define PALMAS_SMPS8_FORCE_CMD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301007#define PALMAS_SMPS8_FORCE_CMD_SHIFT 0x07
1008#define PALMAS_SMPS8_FORCE_VSEL_MASK 0x7F
1009#define PALMAS_SMPS8_FORCE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001010
1011/* Bit definitions for SMPS8_VOLTAGE */
1012#define PALMAS_SMPS8_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301013#define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT 0x07
1014#define PALMAS_SMPS8_VOLTAGE_VSEL_MASK 0x7F
1015#define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001016
1017/* Bit definitions for SMPS9_CTRL */
1018#define PALMAS_SMPS9_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301019#define PALMAS_SMPS9_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001020#define PALMAS_SMPS9_CTRL_STATUS_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +05301021#define PALMAS_SMPS9_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001022#define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05301023#define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001024#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +05301025#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001026
1027/* Bit definitions for SMPS9_VOLTAGE */
1028#define PALMAS_SMPS9_VOLTAGE_RANGE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301029#define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT 0x07
1030#define PALMAS_SMPS9_VOLTAGE_VSEL_MASK 0x7F
1031#define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001032
1033/* Bit definitions for SMPS10_CTRL */
1034#define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK 0xf0
Keerthy45ac60c2014-05-22 14:48:30 +05301035#define PALMAS_SMPS10_CTRL_MODE_SLEEP_SHIFT 0x04
1036#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_MASK 0x0F
1037#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001038
1039/* Bit definitions for SMPS10_STATUS */
Keerthy45ac60c2014-05-22 14:48:30 +05301040#define PALMAS_SMPS10_STATUS_STATUS_MASK 0x0F
1041#define PALMAS_SMPS10_STATUS_STATUS_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001042
1043/* Bit definitions for SMPS_CTRL */
1044#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301045#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001046#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301047#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001048#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05301049#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001050#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +05301051#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001052
1053/* Bit definitions for SMPS_PD_CTRL */
1054#define PALMAS_SMPS_PD_CTRL_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301055#define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001056#define PALMAS_SMPS_PD_CTRL_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301057#define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001058#define PALMAS_SMPS_PD_CTRL_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301059#define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001060#define PALMAS_SMPS_PD_CTRL_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301061#define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001062#define PALMAS_SMPS_PD_CTRL_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301063#define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001064#define PALMAS_SMPS_PD_CTRL_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301065#define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001066#define PALMAS_SMPS_PD_CTRL_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301067#define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001068
1069/* Bit definitions for SMPS_THERMAL_EN */
1070#define PALMAS_SMPS_THERMAL_EN_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301071#define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001072#define PALMAS_SMPS_THERMAL_EN_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301073#define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001074#define PALMAS_SMPS_THERMAL_EN_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301075#define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001076#define PALMAS_SMPS_THERMAL_EN_SMPS457 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301077#define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001078#define PALMAS_SMPS_THERMAL_EN_SMPS123 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301079#define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001080
1081/* Bit definitions for SMPS_THERMAL_STATUS */
1082#define PALMAS_SMPS_THERMAL_STATUS_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301083#define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001084#define PALMAS_SMPS_THERMAL_STATUS_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301085#define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001086#define PALMAS_SMPS_THERMAL_STATUS_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301087#define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001088#define PALMAS_SMPS_THERMAL_STATUS_SMPS457 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301089#define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001090#define PALMAS_SMPS_THERMAL_STATUS_SMPS123 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301091#define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001092
1093/* Bit definitions for SMPS_SHORT_STATUS */
1094#define PALMAS_SMPS_SHORT_STATUS_SMPS10 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301095#define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001096#define PALMAS_SMPS_SHORT_STATUS_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301097#define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001098#define PALMAS_SMPS_SHORT_STATUS_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301099#define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001100#define PALMAS_SMPS_SHORT_STATUS_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301101#define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001102#define PALMAS_SMPS_SHORT_STATUS_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301103#define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001104#define PALMAS_SMPS_SHORT_STATUS_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301105#define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001106#define PALMAS_SMPS_SHORT_STATUS_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301107#define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001108#define PALMAS_SMPS_SHORT_STATUS_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301109#define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001110
1111/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */
1112#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301113#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001114#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301115#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001116#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301117#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001118#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301119#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001120#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301121#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001122#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301123#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001124#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301125#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001126
1127/* Bit definitions for SMPS_POWERGOOD_MASK1 */
1128#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301129#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001130#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301131#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001132#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301133#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001134#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301135#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001136#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301137#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001138#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301139#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001140#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301141#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001142#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301143#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001144
1145/* Bit definitions for SMPS_POWERGOOD_MASK2 */
1146#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301147#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001148#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301149#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001150#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301151#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001152#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301153#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001154
1155/* Registers for function LDO */
Keerthy45ac60c2014-05-22 14:48:30 +05301156#define PALMAS_LDO1_CTRL 0x00
1157#define PALMAS_LDO1_VOLTAGE 0x01
1158#define PALMAS_LDO2_CTRL 0x02
1159#define PALMAS_LDO2_VOLTAGE 0x03
1160#define PALMAS_LDO3_CTRL 0x04
1161#define PALMAS_LDO3_VOLTAGE 0x05
1162#define PALMAS_LDO4_CTRL 0x06
1163#define PALMAS_LDO4_VOLTAGE 0x07
1164#define PALMAS_LDO5_CTRL 0x08
1165#define PALMAS_LDO5_VOLTAGE 0x09
1166#define PALMAS_LDO6_CTRL 0x0A
1167#define PALMAS_LDO6_VOLTAGE 0x0B
1168#define PALMAS_LDO7_CTRL 0x0C
1169#define PALMAS_LDO7_VOLTAGE 0x0D
1170#define PALMAS_LDO8_CTRL 0x0E
1171#define PALMAS_LDO8_VOLTAGE 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001172#define PALMAS_LDO9_CTRL 0x10
1173#define PALMAS_LDO9_VOLTAGE 0x11
1174#define PALMAS_LDOLN_CTRL 0x12
1175#define PALMAS_LDOLN_VOLTAGE 0x13
1176#define PALMAS_LDOUSB_CTRL 0x14
1177#define PALMAS_LDOUSB_VOLTAGE 0x15
1178#define PALMAS_LDO_CTRL 0x1A
1179#define PALMAS_LDO_PD_CTRL1 0x1B
1180#define PALMAS_LDO_PD_CTRL2 0x1C
1181#define PALMAS_LDO_SHORT_STATUS1 0x1D
1182#define PALMAS_LDO_SHORT_STATUS2 0x1E
1183
1184/* Bit definitions for LDO1_CTRL */
1185#define PALMAS_LDO1_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301186#define PALMAS_LDO1_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001187#define PALMAS_LDO1_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301188#define PALMAS_LDO1_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001189#define PALMAS_LDO1_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301190#define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001191#define PALMAS_LDO1_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301192#define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001193
1194/* Bit definitions for LDO1_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301195#define PALMAS_LDO1_VOLTAGE_VSEL_MASK 0x3F
1196#define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001197
1198/* Bit definitions for LDO2_CTRL */
1199#define PALMAS_LDO2_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301200#define PALMAS_LDO2_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001201#define PALMAS_LDO2_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301202#define PALMAS_LDO2_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001203#define PALMAS_LDO2_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301204#define PALMAS_LDO2_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001205#define PALMAS_LDO2_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301206#define PALMAS_LDO2_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001207
1208/* Bit definitions for LDO2_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301209#define PALMAS_LDO2_VOLTAGE_VSEL_MASK 0x3F
1210#define PALMAS_LDO2_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001211
1212/* Bit definitions for LDO3_CTRL */
1213#define PALMAS_LDO3_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301214#define PALMAS_LDO3_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001215#define PALMAS_LDO3_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301216#define PALMAS_LDO3_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001217#define PALMAS_LDO3_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301218#define PALMAS_LDO3_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001219#define PALMAS_LDO3_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301220#define PALMAS_LDO3_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001221
1222/* Bit definitions for LDO3_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301223#define PALMAS_LDO3_VOLTAGE_VSEL_MASK 0x3F
1224#define PALMAS_LDO3_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001225
1226/* Bit definitions for LDO4_CTRL */
1227#define PALMAS_LDO4_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301228#define PALMAS_LDO4_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001229#define PALMAS_LDO4_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301230#define PALMAS_LDO4_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001231#define PALMAS_LDO4_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301232#define PALMAS_LDO4_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001233#define PALMAS_LDO4_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301234#define PALMAS_LDO4_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001235
1236/* Bit definitions for LDO4_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301237#define PALMAS_LDO4_VOLTAGE_VSEL_MASK 0x3F
1238#define PALMAS_LDO4_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001239
1240/* Bit definitions for LDO5_CTRL */
1241#define PALMAS_LDO5_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301242#define PALMAS_LDO5_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001243#define PALMAS_LDO5_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301244#define PALMAS_LDO5_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001245#define PALMAS_LDO5_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301246#define PALMAS_LDO5_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001247#define PALMAS_LDO5_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301248#define PALMAS_LDO5_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001249
1250/* Bit definitions for LDO5_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301251#define PALMAS_LDO5_VOLTAGE_VSEL_MASK 0x3F
1252#define PALMAS_LDO5_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001253
1254/* Bit definitions for LDO6_CTRL */
1255#define PALMAS_LDO6_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301256#define PALMAS_LDO6_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001257#define PALMAS_LDO6_CTRL_LDO_VIB_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301258#define PALMAS_LDO6_CTRL_LDO_VIB_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001259#define PALMAS_LDO6_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301260#define PALMAS_LDO6_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001261#define PALMAS_LDO6_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301262#define PALMAS_LDO6_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001263#define PALMAS_LDO6_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301264#define PALMAS_LDO6_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001265
1266/* Bit definitions for LDO6_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301267#define PALMAS_LDO6_VOLTAGE_VSEL_MASK 0x3F
1268#define PALMAS_LDO6_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001269
1270/* Bit definitions for LDO7_CTRL */
1271#define PALMAS_LDO7_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301272#define PALMAS_LDO7_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001273#define PALMAS_LDO7_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301274#define PALMAS_LDO7_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001275#define PALMAS_LDO7_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301276#define PALMAS_LDO7_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001277#define PALMAS_LDO7_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301278#define PALMAS_LDO7_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001279
1280/* Bit definitions for LDO7_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301281#define PALMAS_LDO7_VOLTAGE_VSEL_MASK 0x3F
1282#define PALMAS_LDO7_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001283
1284/* Bit definitions for LDO8_CTRL */
1285#define PALMAS_LDO8_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301286#define PALMAS_LDO8_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001287#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301288#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001289#define PALMAS_LDO8_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301290#define PALMAS_LDO8_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001291#define PALMAS_LDO8_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301292#define PALMAS_LDO8_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001293#define PALMAS_LDO8_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301294#define PALMAS_LDO8_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001295
1296/* Bit definitions for LDO8_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301297#define PALMAS_LDO8_VOLTAGE_VSEL_MASK 0x3F
1298#define PALMAS_LDO8_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001299
1300/* Bit definitions for LDO9_CTRL */
1301#define PALMAS_LDO9_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301302#define PALMAS_LDO9_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001303#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301304#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001305#define PALMAS_LDO9_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301306#define PALMAS_LDO9_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001307#define PALMAS_LDO9_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301308#define PALMAS_LDO9_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001309#define PALMAS_LDO9_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301310#define PALMAS_LDO9_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001311
1312/* Bit definitions for LDO9_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301313#define PALMAS_LDO9_VOLTAGE_VSEL_MASK 0x3F
1314#define PALMAS_LDO9_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001315
1316/* Bit definitions for LDOLN_CTRL */
1317#define PALMAS_LDOLN_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301318#define PALMAS_LDOLN_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001319#define PALMAS_LDOLN_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301320#define PALMAS_LDOLN_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001321#define PALMAS_LDOLN_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301322#define PALMAS_LDOLN_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001323#define PALMAS_LDOLN_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301324#define PALMAS_LDOLN_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001325
1326/* Bit definitions for LDOLN_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301327#define PALMAS_LDOLN_VOLTAGE_VSEL_MASK 0x3F
1328#define PALMAS_LDOLN_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001329
1330/* Bit definitions for LDOUSB_CTRL */
1331#define PALMAS_LDOUSB_CTRL_WR_S 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301332#define PALMAS_LDOUSB_CTRL_WR_S_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001333#define PALMAS_LDOUSB_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301334#define PALMAS_LDOUSB_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001335#define PALMAS_LDOUSB_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301336#define PALMAS_LDOUSB_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001337#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301338#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001339
1340/* Bit definitions for LDOUSB_VOLTAGE */
Keerthy45ac60c2014-05-22 14:48:30 +05301341#define PALMAS_LDOUSB_VOLTAGE_VSEL_MASK 0x3F
1342#define PALMAS_LDOUSB_VOLTAGE_VSEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001343
1344/* Bit definitions for LDO_CTRL */
1345#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301346#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001347
1348/* Bit definitions for LDO_PD_CTRL1 */
1349#define PALMAS_LDO_PD_CTRL1_LDO8 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301350#define PALMAS_LDO_PD_CTRL1_LDO8_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001351#define PALMAS_LDO_PD_CTRL1_LDO7 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301352#define PALMAS_LDO_PD_CTRL1_LDO7_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001353#define PALMAS_LDO_PD_CTRL1_LDO6 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301354#define PALMAS_LDO_PD_CTRL1_LDO6_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001355#define PALMAS_LDO_PD_CTRL1_LDO5 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301356#define PALMAS_LDO_PD_CTRL1_LDO5_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001357#define PALMAS_LDO_PD_CTRL1_LDO4 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301358#define PALMAS_LDO_PD_CTRL1_LDO4_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001359#define PALMAS_LDO_PD_CTRL1_LDO3 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301360#define PALMAS_LDO_PD_CTRL1_LDO3_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001361#define PALMAS_LDO_PD_CTRL1_LDO2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301362#define PALMAS_LDO_PD_CTRL1_LDO2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001363#define PALMAS_LDO_PD_CTRL1_LDO1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301364#define PALMAS_LDO_PD_CTRL1_LDO1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001365
1366/* Bit definitions for LDO_PD_CTRL2 */
1367#define PALMAS_LDO_PD_CTRL2_LDOUSB 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301368#define PALMAS_LDO_PD_CTRL2_LDOUSB_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001369#define PALMAS_LDO_PD_CTRL2_LDOLN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301370#define PALMAS_LDO_PD_CTRL2_LDOLN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001371#define PALMAS_LDO_PD_CTRL2_LDO9 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301372#define PALMAS_LDO_PD_CTRL2_LDO9_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001373
1374/* Bit definitions for LDO_SHORT_STATUS1 */
1375#define PALMAS_LDO_SHORT_STATUS1_LDO8 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301376#define PALMAS_LDO_SHORT_STATUS1_LDO8_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001377#define PALMAS_LDO_SHORT_STATUS1_LDO7 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301378#define PALMAS_LDO_SHORT_STATUS1_LDO7_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001379#define PALMAS_LDO_SHORT_STATUS1_LDO6 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301380#define PALMAS_LDO_SHORT_STATUS1_LDO6_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001381#define PALMAS_LDO_SHORT_STATUS1_LDO5 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301382#define PALMAS_LDO_SHORT_STATUS1_LDO5_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001383#define PALMAS_LDO_SHORT_STATUS1_LDO4 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301384#define PALMAS_LDO_SHORT_STATUS1_LDO4_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001385#define PALMAS_LDO_SHORT_STATUS1_LDO3 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301386#define PALMAS_LDO_SHORT_STATUS1_LDO3_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001387#define PALMAS_LDO_SHORT_STATUS1_LDO2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301388#define PALMAS_LDO_SHORT_STATUS1_LDO2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001389#define PALMAS_LDO_SHORT_STATUS1_LDO1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301390#define PALMAS_LDO_SHORT_STATUS1_LDO1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001391
1392/* Bit definitions for LDO_SHORT_STATUS2 */
1393#define PALMAS_LDO_SHORT_STATUS2_LDOVANA 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301394#define PALMAS_LDO_SHORT_STATUS2_LDOVANA_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001395#define PALMAS_LDO_SHORT_STATUS2_LDOUSB 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301396#define PALMAS_LDO_SHORT_STATUS2_LDOUSB_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001397#define PALMAS_LDO_SHORT_STATUS2_LDOLN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301398#define PALMAS_LDO_SHORT_STATUS2_LDOLN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001399#define PALMAS_LDO_SHORT_STATUS2_LDO9 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301400#define PALMAS_LDO_SHORT_STATUS2_LDO9_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001401
1402/* Registers for function PMU_CONTROL */
Keerthy45ac60c2014-05-22 14:48:30 +05301403#define PALMAS_DEV_CTRL 0x00
1404#define PALMAS_POWER_CTRL 0x01
1405#define PALMAS_VSYS_LO 0x02
1406#define PALMAS_VSYS_MON 0x03
1407#define PALMAS_VBAT_MON 0x04
1408#define PALMAS_WATCHDOG 0x05
1409#define PALMAS_BOOT_STATUS 0x06
1410#define PALMAS_BATTERY_BOUNCE 0x07
1411#define PALMAS_BACKUP_BATTERY_CTRL 0x08
1412#define PALMAS_LONG_PRESS_KEY 0x09
1413#define PALMAS_OSC_THERM_CTRL 0x0A
1414#define PALMAS_BATDEBOUNCING 0x0B
1415#define PALMAS_SWOFF_HWRST 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001416#define PALMAS_SWOFF_COLDRST 0x10
1417#define PALMAS_SWOFF_STATUS 0x11
1418#define PALMAS_PMU_CONFIG 0x12
1419#define PALMAS_SPARE 0x14
1420#define PALMAS_PMU_SECONDARY_INT 0x15
1421#define PALMAS_SW_REVISION 0x17
1422#define PALMAS_EXT_CHRG_CTRL 0x18
1423#define PALMAS_PMU_SECONDARY_INT2 0x19
1424
1425/* Bit definitions for DEV_CTRL */
1426#define PALMAS_DEV_CTRL_DEV_STATUS_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05301427#define PALMAS_DEV_CTRL_DEV_STATUS_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001428#define PALMAS_DEV_CTRL_SW_RST 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301429#define PALMAS_DEV_CTRL_SW_RST_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001430#define PALMAS_DEV_CTRL_DEV_ON 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301431#define PALMAS_DEV_CTRL_DEV_ON_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001432
1433/* Bit definitions for POWER_CTRL */
1434#define PALMAS_POWER_CTRL_ENABLE2_MASK 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301435#define PALMAS_POWER_CTRL_ENABLE2_MASK_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001436#define PALMAS_POWER_CTRL_ENABLE1_MASK 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301437#define PALMAS_POWER_CTRL_ENABLE1_MASK_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001438#define PALMAS_POWER_CTRL_NSLEEP_MASK 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301439#define PALMAS_POWER_CTRL_NSLEEP_MASK_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001440
1441/* Bit definitions for VSYS_LO */
Keerthy45ac60c2014-05-22 14:48:30 +05301442#define PALMAS_VSYS_LO_THRESHOLD_MASK 0x1F
1443#define PALMAS_VSYS_LO_THRESHOLD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001444
1445/* Bit definitions for VSYS_MON */
1446#define PALMAS_VSYS_MON_ENABLE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301447#define PALMAS_VSYS_MON_ENABLE_SHIFT 0x07
1448#define PALMAS_VSYS_MON_THRESHOLD_MASK 0x3F
1449#define PALMAS_VSYS_MON_THRESHOLD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001450
1451/* Bit definitions for VBAT_MON */
1452#define PALMAS_VBAT_MON_ENABLE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301453#define PALMAS_VBAT_MON_ENABLE_SHIFT 0x07
1454#define PALMAS_VBAT_MON_THRESHOLD_MASK 0x3F
1455#define PALMAS_VBAT_MON_THRESHOLD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001456
1457/* Bit definitions for WATCHDOG */
1458#define PALMAS_WATCHDOG_LOCK 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301459#define PALMAS_WATCHDOG_LOCK_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001460#define PALMAS_WATCHDOG_ENABLE 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301461#define PALMAS_WATCHDOG_ENABLE_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001462#define PALMAS_WATCHDOG_MODE 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301463#define PALMAS_WATCHDOG_MODE_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001464#define PALMAS_WATCHDOG_TIMER_MASK 0x07
Keerthy45ac60c2014-05-22 14:48:30 +05301465#define PALMAS_WATCHDOG_TIMER_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001466
1467/* Bit definitions for BOOT_STATUS */
1468#define PALMAS_BOOT_STATUS_BOOT1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301469#define PALMAS_BOOT_STATUS_BOOT1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001470#define PALMAS_BOOT_STATUS_BOOT0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301471#define PALMAS_BOOT_STATUS_BOOT0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001472
1473/* Bit definitions for BATTERY_BOUNCE */
Keerthy45ac60c2014-05-22 14:48:30 +05301474#define PALMAS_BATTERY_BOUNCE_BB_DELAY_MASK 0x3F
1475#define PALMAS_BATTERY_BOUNCE_BB_DELAY_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001476
1477/* Bit definitions for BACKUP_BATTERY_CTRL */
1478#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301479#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001480#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301481#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001482#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301483#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001484#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301485#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001486#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301487#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001488#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_MASK 0x06
Keerthy45ac60c2014-05-22 14:48:30 +05301489#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001490#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301491#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001492
1493/* Bit definitions for LONG_PRESS_KEY */
1494#define PALMAS_LONG_PRESS_KEY_LPK_LOCK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301495#define PALMAS_LONG_PRESS_KEY_LPK_LOCK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001496#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301497#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001498#define PALMAS_LONG_PRESS_KEY_LPK_TIME_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05301499#define PALMAS_LONG_PRESS_KEY_LPK_TIME_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001500#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +05301501#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001502
1503/* Bit definitions for OSC_THERM_CTRL */
1504#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301505#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001506#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301507#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001508#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301509#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001510#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301511#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001512#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05301513#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001514#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301515#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001516#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301517#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001518
1519/* Bit definitions for BATDEBOUNCING */
1520#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301521#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001522#define PALMAS_BATDEBOUNCING_BINS_DEB_MASK 0x78
Keerthy45ac60c2014-05-22 14:48:30 +05301523#define PALMAS_BATDEBOUNCING_BINS_DEB_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001524#define PALMAS_BATDEBOUNCING_BEXT_DEB_MASK 0x07
Keerthy45ac60c2014-05-22 14:48:30 +05301525#define PALMAS_BATDEBOUNCING_BEXT_DEB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001526
1527/* Bit definitions for SWOFF_HWRST */
1528#define PALMAS_SWOFF_HWRST_PWRON_LPK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301529#define PALMAS_SWOFF_HWRST_PWRON_LPK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001530#define PALMAS_SWOFF_HWRST_PWRDOWN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301531#define PALMAS_SWOFF_HWRST_PWRDOWN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001532#define PALMAS_SWOFF_HWRST_WTD 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301533#define PALMAS_SWOFF_HWRST_WTD_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001534#define PALMAS_SWOFF_HWRST_TSHUT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301535#define PALMAS_SWOFF_HWRST_TSHUT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001536#define PALMAS_SWOFF_HWRST_RESET_IN 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301537#define PALMAS_SWOFF_HWRST_RESET_IN_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001538#define PALMAS_SWOFF_HWRST_SW_RST 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301539#define PALMAS_SWOFF_HWRST_SW_RST_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001540#define PALMAS_SWOFF_HWRST_VSYS_LO 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301541#define PALMAS_SWOFF_HWRST_VSYS_LO_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001542#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301543#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001544
1545/* Bit definitions for SWOFF_COLDRST */
1546#define PALMAS_SWOFF_COLDRST_PWRON_LPK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301547#define PALMAS_SWOFF_COLDRST_PWRON_LPK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001548#define PALMAS_SWOFF_COLDRST_PWRDOWN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301549#define PALMAS_SWOFF_COLDRST_PWRDOWN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001550#define PALMAS_SWOFF_COLDRST_WTD 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301551#define PALMAS_SWOFF_COLDRST_WTD_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001552#define PALMAS_SWOFF_COLDRST_TSHUT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301553#define PALMAS_SWOFF_COLDRST_TSHUT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001554#define PALMAS_SWOFF_COLDRST_RESET_IN 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301555#define PALMAS_SWOFF_COLDRST_RESET_IN_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001556#define PALMAS_SWOFF_COLDRST_SW_RST 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301557#define PALMAS_SWOFF_COLDRST_SW_RST_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001558#define PALMAS_SWOFF_COLDRST_VSYS_LO 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301559#define PALMAS_SWOFF_COLDRST_VSYS_LO_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001560#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301561#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001562
1563/* Bit definitions for SWOFF_STATUS */
1564#define PALMAS_SWOFF_STATUS_PWRON_LPK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301565#define PALMAS_SWOFF_STATUS_PWRON_LPK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001566#define PALMAS_SWOFF_STATUS_PWRDOWN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301567#define PALMAS_SWOFF_STATUS_PWRDOWN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001568#define PALMAS_SWOFF_STATUS_WTD 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301569#define PALMAS_SWOFF_STATUS_WTD_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001570#define PALMAS_SWOFF_STATUS_TSHUT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301571#define PALMAS_SWOFF_STATUS_TSHUT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001572#define PALMAS_SWOFF_STATUS_RESET_IN 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301573#define PALMAS_SWOFF_STATUS_RESET_IN_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001574#define PALMAS_SWOFF_STATUS_SW_RST 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301575#define PALMAS_SWOFF_STATUS_SW_RST_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001576#define PALMAS_SWOFF_STATUS_VSYS_LO 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301577#define PALMAS_SWOFF_STATUS_VSYS_LO_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001578#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301579#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001580
1581/* Bit definitions for PMU_CONFIG */
1582#define PALMAS_PMU_CONFIG_MULTI_CELL_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301583#define PALMAS_PMU_CONFIG_MULTI_CELL_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001584#define PALMAS_PMU_CONFIG_SPARE_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +05301585#define PALMAS_PMU_CONFIG_SPARE_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001586#define PALMAS_PMU_CONFIG_SWOFF_DLY_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05301587#define PALMAS_PMU_CONFIG_SWOFF_DLY_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001588#define PALMAS_PMU_CONFIG_GATE_RESET_OUT 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301589#define PALMAS_PMU_CONFIG_GATE_RESET_OUT_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001590#define PALMAS_PMU_CONFIG_AUTODEVON 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301591#define PALMAS_PMU_CONFIG_AUTODEVON_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001592
1593/* Bit definitions for SPARE */
1594#define PALMAS_SPARE_SPARE_MASK 0xf8
Keerthy45ac60c2014-05-22 14:48:30 +05301595#define PALMAS_SPARE_SPARE_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001596#define PALMAS_SPARE_REGEN3_OD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301597#define PALMAS_SPARE_REGEN3_OD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001598#define PALMAS_SPARE_REGEN2_OD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301599#define PALMAS_SPARE_REGEN2_OD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001600#define PALMAS_SPARE_REGEN1_OD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301601#define PALMAS_SPARE_REGEN1_OD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001602
1603/* Bit definitions for PMU_SECONDARY_INT */
1604#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301605#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001606#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301607#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001608#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301609#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001610#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301611#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001612#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301613#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001614#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301615#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001616#define PALMAS_PMU_SECONDARY_INT_BB_MASK 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301617#define PALMAS_PMU_SECONDARY_INT_BB_MASK_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001618#define PALMAS_PMU_SECONDARY_INT_FBI_MASK 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301619#define PALMAS_PMU_SECONDARY_INT_FBI_MASK_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001620
1621/* Bit definitions for SW_REVISION */
Keerthy45ac60c2014-05-22 14:48:30 +05301622#define PALMAS_SW_REVISION_SW_REVISION_MASK 0xFF
1623#define PALMAS_SW_REVISION_SW_REVISION_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001624
1625/* Bit definitions for EXT_CHRG_CTRL */
1626#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301627#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001628#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301629#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001630#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301631#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001632#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301633#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001634#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301635#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001636#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301637#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001638
1639/* Bit definitions for PMU_SECONDARY_INT2 */
1640#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301641#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001642#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301643#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001644#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301645#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001646#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301647#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001648
1649/* Registers for function RESOURCE */
Keerthy45ac60c2014-05-22 14:48:30 +05301650#define PALMAS_CLK32KG_CTRL 0x00
1651#define PALMAS_CLK32KGAUDIO_CTRL 0x01
1652#define PALMAS_REGEN1_CTRL 0x02
1653#define PALMAS_REGEN2_CTRL 0x03
1654#define PALMAS_SYSEN1_CTRL 0x04
1655#define PALMAS_SYSEN2_CTRL 0x05
1656#define PALMAS_NSLEEP_RES_ASSIGN 0x06
1657#define PALMAS_NSLEEP_SMPS_ASSIGN 0x07
1658#define PALMAS_NSLEEP_LDO_ASSIGN1 0x08
1659#define PALMAS_NSLEEP_LDO_ASSIGN2 0x09
1660#define PALMAS_ENABLE1_RES_ASSIGN 0x0A
1661#define PALMAS_ENABLE1_SMPS_ASSIGN 0x0B
1662#define PALMAS_ENABLE1_LDO_ASSIGN1 0x0C
1663#define PALMAS_ENABLE1_LDO_ASSIGN2 0x0D
1664#define PALMAS_ENABLE2_RES_ASSIGN 0x0E
1665#define PALMAS_ENABLE2_SMPS_ASSIGN 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001666#define PALMAS_ENABLE2_LDO_ASSIGN1 0x10
1667#define PALMAS_ENABLE2_LDO_ASSIGN2 0x11
1668#define PALMAS_REGEN3_CTRL 0x12
1669
1670/* Bit definitions for CLK32KG_CTRL */
1671#define PALMAS_CLK32KG_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301672#define PALMAS_CLK32KG_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001673#define PALMAS_CLK32KG_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301674#define PALMAS_CLK32KG_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001675#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301676#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001677
1678/* Bit definitions for CLK32KGAUDIO_CTRL */
1679#define PALMAS_CLK32KGAUDIO_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301680#define PALMAS_CLK32KGAUDIO_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001681#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301682#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001683#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301684#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001685#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301686#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001687
1688/* Bit definitions for REGEN1_CTRL */
1689#define PALMAS_REGEN1_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301690#define PALMAS_REGEN1_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001691#define PALMAS_REGEN1_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301692#define PALMAS_REGEN1_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001693#define PALMAS_REGEN1_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301694#define PALMAS_REGEN1_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001695
1696/* Bit definitions for REGEN2_CTRL */
1697#define PALMAS_REGEN2_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301698#define PALMAS_REGEN2_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001699#define PALMAS_REGEN2_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301700#define PALMAS_REGEN2_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001701#define PALMAS_REGEN2_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301702#define PALMAS_REGEN2_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001703
1704/* Bit definitions for SYSEN1_CTRL */
1705#define PALMAS_SYSEN1_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301706#define PALMAS_SYSEN1_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001707#define PALMAS_SYSEN1_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301708#define PALMAS_SYSEN1_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001709#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301710#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001711
1712/* Bit definitions for SYSEN2_CTRL */
1713#define PALMAS_SYSEN2_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301714#define PALMAS_SYSEN2_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001715#define PALMAS_SYSEN2_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301716#define PALMAS_SYSEN2_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001717#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301718#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001719
1720/* Bit definitions for NSLEEP_RES_ASSIGN */
1721#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301722#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001723#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301724#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001725#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301726#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001727#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301728#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001729#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301730#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001731#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301732#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001733#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301734#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001735
1736/* Bit definitions for NSLEEP_SMPS_ASSIGN */
1737#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301738#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001739#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301740#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001741#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301742#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001743#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301744#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001745#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301746#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001747#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301748#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001749#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301750#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001751#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301752#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001753
1754/* Bit definitions for NSLEEP_LDO_ASSIGN1 */
1755#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301756#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001757#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301758#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001759#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301760#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001761#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301762#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001763#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301764#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001765#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301766#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001767#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301768#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001769#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301770#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001771
1772/* Bit definitions for NSLEEP_LDO_ASSIGN2 */
1773#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301774#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001775#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301776#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001777#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301778#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001779
1780/* Bit definitions for ENABLE1_RES_ASSIGN */
1781#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301782#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001783#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301784#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001785#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301786#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001787#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301788#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001789#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301790#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001791#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301792#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001793#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301794#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001795
1796/* Bit definitions for ENABLE1_SMPS_ASSIGN */
1797#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301798#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001799#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301800#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001801#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301802#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001803#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301804#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001805#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301806#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001807#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301808#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001809#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301810#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001811#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301812#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001813
1814/* Bit definitions for ENABLE1_LDO_ASSIGN1 */
1815#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301816#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001817#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301818#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001819#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301820#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001821#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301822#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001823#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301824#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001825#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301826#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001827#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301828#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001829#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301830#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001831
1832/* Bit definitions for ENABLE1_LDO_ASSIGN2 */
1833#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301834#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001835#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301836#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001837#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301838#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001839
1840/* Bit definitions for ENABLE2_RES_ASSIGN */
1841#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301842#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001843#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301844#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001845#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301846#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001847#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301848#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001849#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301850#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001851#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301852#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001853#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301854#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001855
1856/* Bit definitions for ENABLE2_SMPS_ASSIGN */
1857#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301858#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001859#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301860#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001861#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301862#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001863#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301864#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001865#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301866#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001867#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301868#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001869#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301870#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001871#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301872#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001873
1874/* Bit definitions for ENABLE2_LDO_ASSIGN1 */
1875#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301876#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001877#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301878#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001879#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301880#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001881#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301882#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001883#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301884#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001885#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301886#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001887#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301888#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001889#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301890#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001891
1892/* Bit definitions for ENABLE2_LDO_ASSIGN2 */
1893#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301894#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001895#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301896#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001897#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301898#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001899
1900/* Bit definitions for REGEN3_CTRL */
1901#define PALMAS_REGEN3_CTRL_STATUS 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301902#define PALMAS_REGEN3_CTRL_STATUS_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001903#define PALMAS_REGEN3_CTRL_MODE_SLEEP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301904#define PALMAS_REGEN3_CTRL_MODE_SLEEP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001905#define PALMAS_REGEN3_CTRL_MODE_ACTIVE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301906#define PALMAS_REGEN3_CTRL_MODE_ACTIVE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001907
1908/* Registers for function PAD_CONTROL */
Keerthy45ac60c2014-05-22 14:48:30 +05301909#define PALMAS_OD_OUTPUT_CTRL2 0x02
1910#define PALMAS_POLARITY_CTRL2 0x03
1911#define PALMAS_PU_PD_INPUT_CTRL1 0x04
1912#define PALMAS_PU_PD_INPUT_CTRL2 0x05
1913#define PALMAS_PU_PD_INPUT_CTRL3 0x06
1914#define PALMAS_PU_PD_INPUT_CTRL5 0x07
1915#define PALMAS_OD_OUTPUT_CTRL 0x08
1916#define PALMAS_POLARITY_CTRL 0x09
1917#define PALMAS_PRIMARY_SECONDARY_PAD1 0x0A
1918#define PALMAS_PRIMARY_SECONDARY_PAD2 0x0B
1919#define PALMAS_I2C_SPI 0x0C
1920#define PALMAS_PU_PD_INPUT_CTRL4 0x0D
1921#define PALMAS_PRIMARY_SECONDARY_PAD3 0x0E
1922#define PALMAS_PRIMARY_SECONDARY_PAD4 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001923
1924/* Bit definitions for PU_PD_INPUT_CTRL1 */
1925#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301926#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001927#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301928#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001929#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301930#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001931#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301932#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001933#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301934#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001935
1936/* Bit definitions for PU_PD_INPUT_CTRL2 */
1937#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301938#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001939#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301940#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001941#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301942#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001943#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301944#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001945#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301946#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001947#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301948#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001949
1950/* Bit definitions for PU_PD_INPUT_CTRL3 */
1951#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301952#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001953#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301954#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001955#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301956#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001957#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301958#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001959
1960/* Bit definitions for OD_OUTPUT_CTRL */
1961#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301962#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001963#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301964#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001965#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301966#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001967#define PALMAS_OD_OUTPUT_CTRL_INT_OD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301968#define PALMAS_OD_OUTPUT_CTRL_INT_OD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001969
1970/* Bit definitions for POLARITY_CTRL */
1971#define PALMAS_POLARITY_CTRL_INT_POLARITY 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301972#define PALMAS_POLARITY_CTRL_INT_POLARITY_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001973#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05301974#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001975#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05301976#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001977#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05301978#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001979#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05301980#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001981#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301982#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001983#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301984#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001985#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05301986#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001987
1988/* Bit definitions for PRIMARY_SECONDARY_PAD1 */
1989#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05301990#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001991#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_MASK 0x60
Keerthy45ac60c2014-05-22 14:48:30 +05301992#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001993#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_MASK 0x18
Keerthy45ac60c2014-05-22 14:48:30 +05301994#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001995#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05301996#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001997#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05301998#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09001999#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302000#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002001
2002/* Bit definitions for PRIMARY_SECONDARY_PAD2 */
2003#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +05302004#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002005#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302006#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002007#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_MASK 0x06
Keerthy45ac60c2014-05-22 14:48:30 +05302008#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002009#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302010#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002011
2012/* Bit definitions for I2C_SPI */
2013#define PALMAS_I2C_SPI_I2C2OTP_EN 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302014#define PALMAS_I2C_SPI_I2C2OTP_EN_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002015#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302016#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002017#define PALMAS_I2C_SPI_ID_I2C2 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302018#define PALMAS_I2C_SPI_ID_I2C2_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002019#define PALMAS_I2C_SPI_I2C_SPI 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302020#define PALMAS_I2C_SPI_I2C_SPI_SHIFT 0x04
2021#define PALMAS_I2C_SPI_ID_I2C1_MASK 0x0F
2022#define PALMAS_I2C_SPI_ID_I2C1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002023
2024/* Bit definitions for PU_PD_INPUT_CTRL4 */
2025#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302026#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002027#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302028#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002029#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302030#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002031#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302032#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002033
2034/* Bit definitions for PRIMARY_SECONDARY_PAD3 */
2035#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302036#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002037#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302038#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002039
2040/* Registers for function LED_PWM */
Keerthy45ac60c2014-05-22 14:48:30 +05302041#define PALMAS_LED_PERIOD_CTRL 0x00
2042#define PALMAS_LED_CTRL 0x01
2043#define PALMAS_PWM_CTRL1 0x02
2044#define PALMAS_PWM_CTRL2 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002045
2046/* Bit definitions for LED_PERIOD_CTRL */
2047#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_MASK 0x38
Keerthy45ac60c2014-05-22 14:48:30 +05302048#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002049#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_MASK 0x07
Keerthy45ac60c2014-05-22 14:48:30 +05302050#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002051
2052/* Bit definitions for LED_CTRL */
2053#define PALMAS_LED_CTRL_LED_2_SEQ 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302054#define PALMAS_LED_CTRL_LED_2_SEQ_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002055#define PALMAS_LED_CTRL_LED_1_SEQ 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302056#define PALMAS_LED_CTRL_LED_1_SEQ_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002057#define PALMAS_LED_CTRL_LED_2_ON_TIME_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05302058#define PALMAS_LED_CTRL_LED_2_ON_TIME_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002059#define PALMAS_LED_CTRL_LED_1_ON_TIME_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +05302060#define PALMAS_LED_CTRL_LED_1_ON_TIME_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002061
2062/* Bit definitions for PWM_CTRL1 */
2063#define PALMAS_PWM_CTRL1_PWM_FREQ_EN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302064#define PALMAS_PWM_CTRL1_PWM_FREQ_EN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002065#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302066#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002067
2068/* Bit definitions for PWM_CTRL2 */
Keerthy45ac60c2014-05-22 14:48:30 +05302069#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_MASK 0xFF
2070#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002071
2072/* Registers for function INTERRUPT */
Keerthy45ac60c2014-05-22 14:48:30 +05302073#define PALMAS_INT1_STATUS 0x00
2074#define PALMAS_INT1_MASK 0x01
2075#define PALMAS_INT1_LINE_STATE 0x02
2076#define PALMAS_INT1_EDGE_DETECT1_RESERVED 0x03
2077#define PALMAS_INT1_EDGE_DETECT2_RESERVED 0x04
2078#define PALMAS_INT2_STATUS 0x05
2079#define PALMAS_INT2_MASK 0x06
2080#define PALMAS_INT2_LINE_STATE 0x07
2081#define PALMAS_INT2_EDGE_DETECT1_RESERVED 0x08
2082#define PALMAS_INT2_EDGE_DETECT2_RESERVED 0x09
2083#define PALMAS_INT3_STATUS 0x0A
2084#define PALMAS_INT3_MASK 0x0B
2085#define PALMAS_INT3_LINE_STATE 0x0C
2086#define PALMAS_INT3_EDGE_DETECT1_RESERVED 0x0D
2087#define PALMAS_INT3_EDGE_DETECT2_RESERVED 0x0E
2088#define PALMAS_INT4_STATUS 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002089#define PALMAS_INT4_MASK 0x10
2090#define PALMAS_INT4_LINE_STATE 0x11
2091#define PALMAS_INT4_EDGE_DETECT1 0x12
2092#define PALMAS_INT4_EDGE_DETECT2 0x13
2093#define PALMAS_INT_CTRL 0x14
2094
2095/* Bit definitions for INT1_STATUS */
2096#define PALMAS_INT1_STATUS_VBAT_MON 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302097#define PALMAS_INT1_STATUS_VBAT_MON_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002098#define PALMAS_INT1_STATUS_VSYS_MON 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302099#define PALMAS_INT1_STATUS_VSYS_MON_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002100#define PALMAS_INT1_STATUS_HOTDIE 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302101#define PALMAS_INT1_STATUS_HOTDIE_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002102#define PALMAS_INT1_STATUS_PWRDOWN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302103#define PALMAS_INT1_STATUS_PWRDOWN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002104#define PALMAS_INT1_STATUS_RPWRON 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302105#define PALMAS_INT1_STATUS_RPWRON_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002106#define PALMAS_INT1_STATUS_LONG_PRESS_KEY 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302107#define PALMAS_INT1_STATUS_LONG_PRESS_KEY_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002108#define PALMAS_INT1_STATUS_PWRON 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302109#define PALMAS_INT1_STATUS_PWRON_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002110#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302111#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002112
2113/* Bit definitions for INT1_MASK */
2114#define PALMAS_INT1_MASK_VBAT_MON 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302115#define PALMAS_INT1_MASK_VBAT_MON_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002116#define PALMAS_INT1_MASK_VSYS_MON 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302117#define PALMAS_INT1_MASK_VSYS_MON_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002118#define PALMAS_INT1_MASK_HOTDIE 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302119#define PALMAS_INT1_MASK_HOTDIE_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002120#define PALMAS_INT1_MASK_PWRDOWN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302121#define PALMAS_INT1_MASK_PWRDOWN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002122#define PALMAS_INT1_MASK_RPWRON 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302123#define PALMAS_INT1_MASK_RPWRON_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002124#define PALMAS_INT1_MASK_LONG_PRESS_KEY 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302125#define PALMAS_INT1_MASK_LONG_PRESS_KEY_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002126#define PALMAS_INT1_MASK_PWRON 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302127#define PALMAS_INT1_MASK_PWRON_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002128#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302129#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002130
2131/* Bit definitions for INT1_LINE_STATE */
2132#define PALMAS_INT1_LINE_STATE_VBAT_MON 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302133#define PALMAS_INT1_LINE_STATE_VBAT_MON_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002134#define PALMAS_INT1_LINE_STATE_VSYS_MON 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302135#define PALMAS_INT1_LINE_STATE_VSYS_MON_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002136#define PALMAS_INT1_LINE_STATE_HOTDIE 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302137#define PALMAS_INT1_LINE_STATE_HOTDIE_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002138#define PALMAS_INT1_LINE_STATE_PWRDOWN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302139#define PALMAS_INT1_LINE_STATE_PWRDOWN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002140#define PALMAS_INT1_LINE_STATE_RPWRON 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302141#define PALMAS_INT1_LINE_STATE_RPWRON_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002142#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302143#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002144#define PALMAS_INT1_LINE_STATE_PWRON 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302145#define PALMAS_INT1_LINE_STATE_PWRON_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002146#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302147#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002148
2149/* Bit definitions for INT2_STATUS */
2150#define PALMAS_INT2_STATUS_VAC_ACOK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302151#define PALMAS_INT2_STATUS_VAC_ACOK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002152#define PALMAS_INT2_STATUS_SHORT 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302153#define PALMAS_INT2_STATUS_SHORT_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002154#define PALMAS_INT2_STATUS_FBI_BB 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302155#define PALMAS_INT2_STATUS_FBI_BB_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002156#define PALMAS_INT2_STATUS_RESET_IN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302157#define PALMAS_INT2_STATUS_RESET_IN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002158#define PALMAS_INT2_STATUS_BATREMOVAL 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302159#define PALMAS_INT2_STATUS_BATREMOVAL_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002160#define PALMAS_INT2_STATUS_WDT 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302161#define PALMAS_INT2_STATUS_WDT_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002162#define PALMAS_INT2_STATUS_RTC_TIMER 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302163#define PALMAS_INT2_STATUS_RTC_TIMER_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002164#define PALMAS_INT2_STATUS_RTC_ALARM 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302165#define PALMAS_INT2_STATUS_RTC_ALARM_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002166
2167/* Bit definitions for INT2_MASK */
2168#define PALMAS_INT2_MASK_VAC_ACOK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302169#define PALMAS_INT2_MASK_VAC_ACOK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002170#define PALMAS_INT2_MASK_SHORT 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302171#define PALMAS_INT2_MASK_SHORT_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002172#define PALMAS_INT2_MASK_FBI_BB 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302173#define PALMAS_INT2_MASK_FBI_BB_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002174#define PALMAS_INT2_MASK_RESET_IN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302175#define PALMAS_INT2_MASK_RESET_IN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002176#define PALMAS_INT2_MASK_BATREMOVAL 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302177#define PALMAS_INT2_MASK_BATREMOVAL_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002178#define PALMAS_INT2_MASK_WDT 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302179#define PALMAS_INT2_MASK_WDT_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002180#define PALMAS_INT2_MASK_RTC_TIMER 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302181#define PALMAS_INT2_MASK_RTC_TIMER_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002182#define PALMAS_INT2_MASK_RTC_ALARM 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302183#define PALMAS_INT2_MASK_RTC_ALARM_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002184
2185/* Bit definitions for INT2_LINE_STATE */
2186#define PALMAS_INT2_LINE_STATE_VAC_ACOK 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302187#define PALMAS_INT2_LINE_STATE_VAC_ACOK_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002188#define PALMAS_INT2_LINE_STATE_SHORT 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302189#define PALMAS_INT2_LINE_STATE_SHORT_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002190#define PALMAS_INT2_LINE_STATE_FBI_BB 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302191#define PALMAS_INT2_LINE_STATE_FBI_BB_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002192#define PALMAS_INT2_LINE_STATE_RESET_IN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302193#define PALMAS_INT2_LINE_STATE_RESET_IN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002194#define PALMAS_INT2_LINE_STATE_BATREMOVAL 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302195#define PALMAS_INT2_LINE_STATE_BATREMOVAL_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002196#define PALMAS_INT2_LINE_STATE_WDT 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302197#define PALMAS_INT2_LINE_STATE_WDT_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002198#define PALMAS_INT2_LINE_STATE_RTC_TIMER 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302199#define PALMAS_INT2_LINE_STATE_RTC_TIMER_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002200#define PALMAS_INT2_LINE_STATE_RTC_ALARM 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302201#define PALMAS_INT2_LINE_STATE_RTC_ALARM_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002202
2203/* Bit definitions for INT3_STATUS */
2204#define PALMAS_INT3_STATUS_VBUS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302205#define PALMAS_INT3_STATUS_VBUS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002206#define PALMAS_INT3_STATUS_VBUS_OTG 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302207#define PALMAS_INT3_STATUS_VBUS_OTG_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002208#define PALMAS_INT3_STATUS_ID 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302209#define PALMAS_INT3_STATUS_ID_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002210#define PALMAS_INT3_STATUS_ID_OTG 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302211#define PALMAS_INT3_STATUS_ID_OTG_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002212#define PALMAS_INT3_STATUS_GPADC_EOC_RT 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302213#define PALMAS_INT3_STATUS_GPADC_EOC_RT_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002214#define PALMAS_INT3_STATUS_GPADC_EOC_SW 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302215#define PALMAS_INT3_STATUS_GPADC_EOC_SW_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002216#define PALMAS_INT3_STATUS_GPADC_AUTO_1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302217#define PALMAS_INT3_STATUS_GPADC_AUTO_1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002218#define PALMAS_INT3_STATUS_GPADC_AUTO_0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302219#define PALMAS_INT3_STATUS_GPADC_AUTO_0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002220
2221/* Bit definitions for INT3_MASK */
2222#define PALMAS_INT3_MASK_VBUS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302223#define PALMAS_INT3_MASK_VBUS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002224#define PALMAS_INT3_MASK_VBUS_OTG 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302225#define PALMAS_INT3_MASK_VBUS_OTG_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002226#define PALMAS_INT3_MASK_ID 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302227#define PALMAS_INT3_MASK_ID_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002228#define PALMAS_INT3_MASK_ID_OTG 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302229#define PALMAS_INT3_MASK_ID_OTG_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002230#define PALMAS_INT3_MASK_GPADC_EOC_RT 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302231#define PALMAS_INT3_MASK_GPADC_EOC_RT_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002232#define PALMAS_INT3_MASK_GPADC_EOC_SW 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302233#define PALMAS_INT3_MASK_GPADC_EOC_SW_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002234#define PALMAS_INT3_MASK_GPADC_AUTO_1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302235#define PALMAS_INT3_MASK_GPADC_AUTO_1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002236#define PALMAS_INT3_MASK_GPADC_AUTO_0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302237#define PALMAS_INT3_MASK_GPADC_AUTO_0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002238
2239/* Bit definitions for INT3_LINE_STATE */
2240#define PALMAS_INT3_LINE_STATE_VBUS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302241#define PALMAS_INT3_LINE_STATE_VBUS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002242#define PALMAS_INT3_LINE_STATE_VBUS_OTG 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302243#define PALMAS_INT3_LINE_STATE_VBUS_OTG_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002244#define PALMAS_INT3_LINE_STATE_ID 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302245#define PALMAS_INT3_LINE_STATE_ID_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002246#define PALMAS_INT3_LINE_STATE_ID_OTG 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302247#define PALMAS_INT3_LINE_STATE_ID_OTG_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002248#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302249#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002250#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302251#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002252#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302253#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002254#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302255#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002256
2257/* Bit definitions for INT4_STATUS */
2258#define PALMAS_INT4_STATUS_GPIO_7 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302259#define PALMAS_INT4_STATUS_GPIO_7_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002260#define PALMAS_INT4_STATUS_GPIO_6 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302261#define PALMAS_INT4_STATUS_GPIO_6_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002262#define PALMAS_INT4_STATUS_GPIO_5 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302263#define PALMAS_INT4_STATUS_GPIO_5_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002264#define PALMAS_INT4_STATUS_GPIO_4 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302265#define PALMAS_INT4_STATUS_GPIO_4_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002266#define PALMAS_INT4_STATUS_GPIO_3 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302267#define PALMAS_INT4_STATUS_GPIO_3_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002268#define PALMAS_INT4_STATUS_GPIO_2 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302269#define PALMAS_INT4_STATUS_GPIO_2_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002270#define PALMAS_INT4_STATUS_GPIO_1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302271#define PALMAS_INT4_STATUS_GPIO_1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002272#define PALMAS_INT4_STATUS_GPIO_0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302273#define PALMAS_INT4_STATUS_GPIO_0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002274
2275/* Bit definitions for INT4_MASK */
2276#define PALMAS_INT4_MASK_GPIO_7 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302277#define PALMAS_INT4_MASK_GPIO_7_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002278#define PALMAS_INT4_MASK_GPIO_6 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302279#define PALMAS_INT4_MASK_GPIO_6_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002280#define PALMAS_INT4_MASK_GPIO_5 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302281#define PALMAS_INT4_MASK_GPIO_5_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002282#define PALMAS_INT4_MASK_GPIO_4 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302283#define PALMAS_INT4_MASK_GPIO_4_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002284#define PALMAS_INT4_MASK_GPIO_3 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302285#define PALMAS_INT4_MASK_GPIO_3_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002286#define PALMAS_INT4_MASK_GPIO_2 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302287#define PALMAS_INT4_MASK_GPIO_2_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002288#define PALMAS_INT4_MASK_GPIO_1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302289#define PALMAS_INT4_MASK_GPIO_1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002290#define PALMAS_INT4_MASK_GPIO_0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302291#define PALMAS_INT4_MASK_GPIO_0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002292
2293/* Bit definitions for INT4_LINE_STATE */
2294#define PALMAS_INT4_LINE_STATE_GPIO_7 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302295#define PALMAS_INT4_LINE_STATE_GPIO_7_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002296#define PALMAS_INT4_LINE_STATE_GPIO_6 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302297#define PALMAS_INT4_LINE_STATE_GPIO_6_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002298#define PALMAS_INT4_LINE_STATE_GPIO_5 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302299#define PALMAS_INT4_LINE_STATE_GPIO_5_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002300#define PALMAS_INT4_LINE_STATE_GPIO_4 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302301#define PALMAS_INT4_LINE_STATE_GPIO_4_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002302#define PALMAS_INT4_LINE_STATE_GPIO_3 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302303#define PALMAS_INT4_LINE_STATE_GPIO_3_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002304#define PALMAS_INT4_LINE_STATE_GPIO_2 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302305#define PALMAS_INT4_LINE_STATE_GPIO_2_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002306#define PALMAS_INT4_LINE_STATE_GPIO_1 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302307#define PALMAS_INT4_LINE_STATE_GPIO_1_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002308#define PALMAS_INT4_LINE_STATE_GPIO_0 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302309#define PALMAS_INT4_LINE_STATE_GPIO_0_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002310
2311/* Bit definitions for INT4_EDGE_DETECT1 */
2312#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302313#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002314#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302315#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002316#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302317#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002318#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302319#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002320#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302321#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002322#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302323#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002324#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302325#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002326#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302327#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002328
2329/* Bit definitions for INT4_EDGE_DETECT2 */
2330#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302331#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002332#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302333#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002334#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302335#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002336#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302337#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002338#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302339#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002340#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302341#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002342#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302343#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002344#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302345#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002346
2347/* Bit definitions for INT_CTRL */
2348#define PALMAS_INT_CTRL_INT_PENDING 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302349#define PALMAS_INT_CTRL_INT_PENDING_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002350#define PALMAS_INT_CTRL_INT_CLEAR 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302351#define PALMAS_INT_CTRL_INT_CLEAR_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002352
2353/* Registers for function USB_OTG */
Keerthy45ac60c2014-05-22 14:48:30 +05302354#define PALMAS_USB_WAKEUP 0x03
2355#define PALMAS_USB_VBUS_CTRL_SET 0x04
2356#define PALMAS_USB_VBUS_CTRL_CLR 0x05
2357#define PALMAS_USB_ID_CTRL_SET 0x06
2358#define PALMAS_USB_ID_CTRL_CLEAR 0x07
2359#define PALMAS_USB_VBUS_INT_SRC 0x08
2360#define PALMAS_USB_VBUS_INT_LATCH_SET 0x09
2361#define PALMAS_USB_VBUS_INT_LATCH_CLR 0x0A
2362#define PALMAS_USB_VBUS_INT_EN_LO_SET 0x0B
2363#define PALMAS_USB_VBUS_INT_EN_LO_CLR 0x0C
2364#define PALMAS_USB_VBUS_INT_EN_HI_SET 0x0D
2365#define PALMAS_USB_VBUS_INT_EN_HI_CLR 0x0E
2366#define PALMAS_USB_ID_INT_SRC 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002367#define PALMAS_USB_ID_INT_LATCH_SET 0x10
2368#define PALMAS_USB_ID_INT_LATCH_CLR 0x11
2369#define PALMAS_USB_ID_INT_EN_LO_SET 0x12
2370#define PALMAS_USB_ID_INT_EN_LO_CLR 0x13
2371#define PALMAS_USB_ID_INT_EN_HI_SET 0x14
2372#define PALMAS_USB_ID_INT_EN_HI_CLR 0x15
2373#define PALMAS_USB_OTG_ADP_CTRL 0x16
2374#define PALMAS_USB_OTG_ADP_HIGH 0x17
2375#define PALMAS_USB_OTG_ADP_LOW 0x18
2376#define PALMAS_USB_OTG_ADP_RISE 0x19
2377#define PALMAS_USB_OTG_REVISION 0x1A
2378
2379/* Bit definitions for USB_WAKEUP */
2380#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302381#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002382
2383/* Bit definitions for USB_VBUS_CTRL_SET */
2384#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302385#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002386#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302387#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002388#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302389#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002390#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302391#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002392#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302393#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002394
2395/* Bit definitions for USB_VBUS_CTRL_CLR */
2396#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302397#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002398#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302399#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002400#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302401#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002402#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302403#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002404#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302405#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002406
2407/* Bit definitions for USB_ID_CTRL_SET */
2408#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302409#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002410#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302411#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002412#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302413#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002414#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302415#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002416#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302417#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002418#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302419#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002420
2421/* Bit definitions for USB_ID_CTRL_CLEAR */
2422#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302423#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002424#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302425#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002426#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302427#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002428#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302429#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002430#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302431#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002432#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302433#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002434
2435/* Bit definitions for USB_VBUS_INT_SRC */
2436#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302437#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002438#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302439#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002440#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302441#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002442#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302443#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002444#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302445#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002446#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302447#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002448#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302449#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002450
2451/* Bit definitions for USB_VBUS_INT_LATCH_SET */
2452#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302453#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002454#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302455#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002456#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302457#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002458#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302459#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002460#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302461#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002462#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302463#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002464#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302465#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002466#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302467#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002468
2469/* Bit definitions for USB_VBUS_INT_LATCH_CLR */
2470#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302471#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002472#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302473#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002474#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302475#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002476#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302477#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002478#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302479#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002480#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302481#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002482#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302483#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002484#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302485#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002486
2487/* Bit definitions for USB_VBUS_INT_EN_LO_SET */
2488#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302489#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002490#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302491#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002492#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302493#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002494#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302495#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002496#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302497#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002498#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302499#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002500#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302501#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002502
2503/* Bit definitions for USB_VBUS_INT_EN_LO_CLR */
2504#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302505#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002506#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302507#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002508#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302509#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002510#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302511#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002512#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302513#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002514#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302515#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002516#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302517#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002518
2519/* Bit definitions for USB_VBUS_INT_EN_HI_SET */
2520#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302521#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002522#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302523#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002524#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302525#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002526#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302527#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002528#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302529#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002530#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302531#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002532#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302533#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002534#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302535#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002536
2537/* Bit definitions for USB_VBUS_INT_EN_HI_CLR */
2538#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302539#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002540#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302541#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002542#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302543#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002544#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302545#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002546#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302547#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002548#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302549#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002550#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302551#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002552#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302553#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002554
2555/* Bit definitions for USB_ID_INT_SRC */
2556#define PALMAS_USB_ID_INT_SRC_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302557#define PALMAS_USB_ID_INT_SRC_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002558#define PALMAS_USB_ID_INT_SRC_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302559#define PALMAS_USB_ID_INT_SRC_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002560#define PALMAS_USB_ID_INT_SRC_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302561#define PALMAS_USB_ID_INT_SRC_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002562#define PALMAS_USB_ID_INT_SRC_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302563#define PALMAS_USB_ID_INT_SRC_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002564#define PALMAS_USB_ID_INT_SRC_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302565#define PALMAS_USB_ID_INT_SRC_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002566
2567/* Bit definitions for USB_ID_INT_LATCH_SET */
2568#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302569#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002570#define PALMAS_USB_ID_INT_LATCH_SET_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302571#define PALMAS_USB_ID_INT_LATCH_SET_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002572#define PALMAS_USB_ID_INT_LATCH_SET_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302573#define PALMAS_USB_ID_INT_LATCH_SET_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002574#define PALMAS_USB_ID_INT_LATCH_SET_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302575#define PALMAS_USB_ID_INT_LATCH_SET_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002576#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302577#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002578
2579/* Bit definitions for USB_ID_INT_LATCH_CLR */
2580#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302581#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002582#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302583#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002584#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302585#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002586#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302587#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002588#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302589#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002590
2591/* Bit definitions for USB_ID_INT_EN_LO_SET */
2592#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302593#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002594#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302595#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002596#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302597#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002598#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302599#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002600#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302601#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002602
2603/* Bit definitions for USB_ID_INT_EN_LO_CLR */
2604#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302605#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002606#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302607#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002608#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302609#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002610#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302611#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002612#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302613#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002614
2615/* Bit definitions for USB_ID_INT_EN_HI_SET */
2616#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302617#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002618#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302619#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002620#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302621#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002622#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302623#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002624#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302625#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002626
2627/* Bit definitions for USB_ID_INT_EN_HI_CLR */
2628#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302629#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002630#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302631#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002632#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302633#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002634#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302635#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002636#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302637#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002638
2639/* Bit definitions for USB_OTG_ADP_CTRL */
2640#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302641#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002642#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_MASK 0x03
Keerthy45ac60c2014-05-22 14:48:30 +05302643#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002644
2645/* Bit definitions for USB_OTG_ADP_HIGH */
Keerthy45ac60c2014-05-22 14:48:30 +05302646#define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_MASK 0xFF
2647#define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002648
2649/* Bit definitions for USB_OTG_ADP_LOW */
Keerthy45ac60c2014-05-22 14:48:30 +05302650#define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_MASK 0xFF
2651#define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002652
2653/* Bit definitions for USB_OTG_ADP_RISE */
Keerthy45ac60c2014-05-22 14:48:30 +05302654#define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_MASK 0xFF
2655#define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002656
2657/* Bit definitions for USB_OTG_REVISION */
2658#define PALMAS_USB_OTG_REVISION_OTG_REV 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302659#define PALMAS_USB_OTG_REVISION_OTG_REV_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002660
2661/* Registers for function VIBRATOR */
Keerthy45ac60c2014-05-22 14:48:30 +05302662#define PALMAS_VIBRA_CTRL 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002663
2664/* Bit definitions for VIBRA_CTRL */
2665#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_MASK 0x06
Keerthy45ac60c2014-05-22 14:48:30 +05302666#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002667#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302668#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002669
2670/* Registers for function GPIO */
Keerthy45ac60c2014-05-22 14:48:30 +05302671#define PALMAS_GPIO_DATA_IN 0x00
2672#define PALMAS_GPIO_DATA_DIR 0x01
2673#define PALMAS_GPIO_DATA_OUT 0x02
2674#define PALMAS_GPIO_DEBOUNCE_EN 0x03
2675#define PALMAS_GPIO_CLEAR_DATA_OUT 0x04
2676#define PALMAS_GPIO_SET_DATA_OUT 0x05
2677#define PALMAS_PU_PD_GPIO_CTRL1 0x06
2678#define PALMAS_PU_PD_GPIO_CTRL2 0x07
2679#define PALMAS_OD_OUTPUT_GPIO_CTRL 0x08
2680#define PALMAS_GPIO_DATA_IN2 0x09
Laxman Dewangan0a8d3e22013-08-06 18:42:35 +05302681#define PALMAS_GPIO_DATA_DIR2 0x0A
2682#define PALMAS_GPIO_DATA_OUT2 0x0B
2683#define PALMAS_GPIO_DEBOUNCE_EN2 0x0C
2684#define PALMAS_GPIO_CLEAR_DATA_OUT2 0x0D
2685#define PALMAS_GPIO_SET_DATA_OUT2 0x0E
2686#define PALMAS_PU_PD_GPIO_CTRL3 0x0F
2687#define PALMAS_PU_PD_GPIO_CTRL4 0x10
2688#define PALMAS_OD_OUTPUT_GPIO_CTRL2 0x11
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002689
2690/* Bit definitions for GPIO_DATA_IN */
2691#define PALMAS_GPIO_DATA_IN_GPIO_7_IN 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302692#define PALMAS_GPIO_DATA_IN_GPIO_7_IN_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002693#define PALMAS_GPIO_DATA_IN_GPIO_6_IN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302694#define PALMAS_GPIO_DATA_IN_GPIO_6_IN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002695#define PALMAS_GPIO_DATA_IN_GPIO_5_IN 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302696#define PALMAS_GPIO_DATA_IN_GPIO_5_IN_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002697#define PALMAS_GPIO_DATA_IN_GPIO_4_IN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302698#define PALMAS_GPIO_DATA_IN_GPIO_4_IN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002699#define PALMAS_GPIO_DATA_IN_GPIO_3_IN 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302700#define PALMAS_GPIO_DATA_IN_GPIO_3_IN_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002701#define PALMAS_GPIO_DATA_IN_GPIO_2_IN 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302702#define PALMAS_GPIO_DATA_IN_GPIO_2_IN_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002703#define PALMAS_GPIO_DATA_IN_GPIO_1_IN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302704#define PALMAS_GPIO_DATA_IN_GPIO_1_IN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002705#define PALMAS_GPIO_DATA_IN_GPIO_0_IN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302706#define PALMAS_GPIO_DATA_IN_GPIO_0_IN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002707
2708/* Bit definitions for GPIO_DATA_DIR */
2709#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302710#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002711#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302712#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002713#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302714#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002715#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302716#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002717#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302718#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002719#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302720#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002721#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302722#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002723#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302724#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002725
2726/* Bit definitions for GPIO_DATA_OUT */
2727#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302728#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002729#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302730#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002731#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302732#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002733#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302734#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002735#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302736#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002737#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302738#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002739#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302740#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002741#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302742#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002743
2744/* Bit definitions for GPIO_DEBOUNCE_EN */
2745#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302746#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002747#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302748#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002749#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302750#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002751#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302752#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002753#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302754#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002755#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302756#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002757#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302758#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002759#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302760#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002761
2762/* Bit definitions for GPIO_CLEAR_DATA_OUT */
2763#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302764#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002765#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302766#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002767#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302768#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002769#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302770#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002771#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302772#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002773#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302774#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002775#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302776#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002777#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302778#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002779
2780/* Bit definitions for GPIO_SET_DATA_OUT */
2781#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302782#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002783#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302784#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002785#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302786#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002787#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302788#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002789#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302790#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002791#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302792#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002793#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302794#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002795#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302796#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002797
2798/* Bit definitions for PU_PD_GPIO_CTRL1 */
2799#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302800#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002801#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302802#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002803#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302804#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002805#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302806#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002807#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302808#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002809#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302810#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002811
2812/* Bit definitions for PU_PD_GPIO_CTRL2 */
2813#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302814#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002815#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302816#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002817#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302818#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002819#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU 0x08
Keerthy45ac60c2014-05-22 14:48:30 +05302820#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU_SHIFT 0x03
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002821#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302822#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002823#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302824#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002825#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302826#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002827
2828/* Bit definitions for OD_OUTPUT_GPIO_CTRL */
2829#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302830#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002831#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD 0x04
Keerthy45ac60c2014-05-22 14:48:30 +05302832#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002833#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302834#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002835
2836/* Registers for function GPADC */
Keerthy45ac60c2014-05-22 14:48:30 +05302837#define PALMAS_GPADC_CTRL1 0x00
2838#define PALMAS_GPADC_CTRL2 0x01
2839#define PALMAS_GPADC_RT_CTRL 0x02
2840#define PALMAS_GPADC_AUTO_CTRL 0x03
2841#define PALMAS_GPADC_STATUS 0x04
2842#define PALMAS_GPADC_RT_SELECT 0x05
2843#define PALMAS_GPADC_RT_CONV0_LSB 0x06
2844#define PALMAS_GPADC_RT_CONV0_MSB 0x07
2845#define PALMAS_GPADC_AUTO_SELECT 0x08
2846#define PALMAS_GPADC_AUTO_CONV0_LSB 0x09
2847#define PALMAS_GPADC_AUTO_CONV0_MSB 0x0A
2848#define PALMAS_GPADC_AUTO_CONV1_LSB 0x0B
2849#define PALMAS_GPADC_AUTO_CONV1_MSB 0x0C
2850#define PALMAS_GPADC_SW_SELECT 0x0D
2851#define PALMAS_GPADC_SW_CONV0_LSB 0x0E
2852#define PALMAS_GPADC_SW_CONV0_MSB 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002853#define PALMAS_GPADC_THRES_CONV0_LSB 0x10
2854#define PALMAS_GPADC_THRES_CONV0_MSB 0x11
2855#define PALMAS_GPADC_THRES_CONV1_LSB 0x12
2856#define PALMAS_GPADC_THRES_CONV1_MSB 0x13
2857#define PALMAS_GPADC_SMPS_ILMONITOR_EN 0x14
2858#define PALMAS_GPADC_SMPS_VSEL_MONITORING 0x15
2859
2860/* Bit definitions for GPADC_CTRL1 */
2861#define PALMAS_GPADC_CTRL1_RESERVED_MASK 0xc0
Keerthy45ac60c2014-05-22 14:48:30 +05302862#define PALMAS_GPADC_CTRL1_RESERVED_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002863#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_MASK 0x30
Keerthy45ac60c2014-05-22 14:48:30 +05302864#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002865#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_MASK 0x0c
Keerthy45ac60c2014-05-22 14:48:30 +05302866#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_SHIFT 0x02
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002867#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302868#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002869#define PALMAS_GPADC_CTRL1_GPADC_FORCE 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302870#define PALMAS_GPADC_CTRL1_GPADC_FORCE_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002871
2872/* Bit definitions for GPADC_CTRL2 */
2873#define PALMAS_GPADC_CTRL2_RESERVED_MASK 0x06
Keerthy45ac60c2014-05-22 14:48:30 +05302874#define PALMAS_GPADC_CTRL2_RESERVED_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002875
2876/* Bit definitions for GPADC_RT_CTRL */
2877#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY 0x02
Keerthy45ac60c2014-05-22 14:48:30 +05302878#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY_SHIFT 0x01
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002879#define PALMAS_GPADC_RT_CTRL_START_POLARITY 0x01
Keerthy45ac60c2014-05-22 14:48:30 +05302880#define PALMAS_GPADC_RT_CTRL_START_POLARITY_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002881
2882/* Bit definitions for GPADC_AUTO_CTRL */
2883#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302884#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002885#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0 0x40
Keerthy45ac60c2014-05-22 14:48:30 +05302886#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0_SHIFT 0x06
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002887#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302888#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002889#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302890#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN_SHIFT 0x04
2891#define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_MASK 0x0F
2892#define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002893
2894/* Bit definitions for GPADC_STATUS */
2895#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302896#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE_SHIFT 0x04
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002897
2898/* Bit definitions for GPADC_RT_SELECT */
2899#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302900#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN_SHIFT 0x07
2901#define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_MASK 0x0F
2902#define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002903
2904/* Bit definitions for GPADC_RT_CONV0_LSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302905#define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_MASK 0xFF
2906#define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002907
2908/* Bit definitions for GPADC_RT_CONV0_MSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302909#define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_MASK 0x0F
2910#define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002911
2912/* Bit definitions for GPADC_AUTO_SELECT */
Keerthy45ac60c2014-05-22 14:48:30 +05302913#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_MASK 0xF0
2914#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_SHIFT 0x04
2915#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_MASK 0x0F
2916#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002917
2918/* Bit definitions for GPADC_AUTO_CONV0_LSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302919#define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_MASK 0xFF
2920#define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002921
2922/* Bit definitions for GPADC_AUTO_CONV0_MSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302923#define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_MASK 0x0F
2924#define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002925
2926/* Bit definitions for GPADC_AUTO_CONV1_LSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302927#define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_MASK 0xFF
2928#define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002929
2930/* Bit definitions for GPADC_AUTO_CONV1_MSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302931#define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_MASK 0x0F
2932#define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002933
2934/* Bit definitions for GPADC_SW_SELECT */
2935#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302936#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN_SHIFT 0x07
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002937#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302938#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0_SHIFT 0x04
2939#define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_MASK 0x0F
2940#define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002941
2942/* Bit definitions for GPADC_SW_CONV0_LSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302943#define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_MASK 0xFF
2944#define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002945
2946/* Bit definitions for GPADC_SW_CONV0_MSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302947#define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_MASK 0x0F
2948#define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002949
2950/* Bit definitions for GPADC_THRES_CONV0_LSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302951#define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_MASK 0xFF
2952#define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002953
2954/* Bit definitions for GPADC_THRES_CONV0_MSB */
2955#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302956#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL_SHIFT 0x07
2957#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_MASK 0x0F
2958#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002959
2960/* Bit definitions for GPADC_THRES_CONV1_LSB */
Keerthy45ac60c2014-05-22 14:48:30 +05302961#define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_MASK 0xFF
2962#define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002963
2964/* Bit definitions for GPADC_THRES_CONV1_MSB */
2965#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302966#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL_SHIFT 0x07
2967#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_MASK 0x0F
2968#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002969
2970/* Bit definitions for GPADC_SMPS_ILMONITOR_EN */
2971#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN 0x20
Keerthy45ac60c2014-05-22 14:48:30 +05302972#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN_SHIFT 0x05
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002973#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT 0x10
Keerthy45ac60c2014-05-22 14:48:30 +05302974#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT_SHIFT 0x04
2975#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_MASK 0x0F
2976#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002977
2978/* Bit definitions for GPADC_SMPS_VSEL_MONITORING */
2979#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE 0x80
Keerthy45ac60c2014-05-22 14:48:30 +05302980#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE_SHIFT 0x07
2981#define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_MASK 0x7F
2982#define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_SHIFT 0x00
Graeme Gregory2945fbc2012-05-15 15:48:56 +09002983
2984/* Registers for function GPADC */
Keerthy45ac60c2014-05-22 14:48:30 +05302985#define PALMAS_GPADC_TRIM1 0x00
2986#define PALMAS_GPADC_TRIM2 0x01
2987#define PALMAS_GPADC_TRIM3 0x02
2988#define PALMAS_GPADC_TRIM4 0x03
2989#define PALMAS_GPADC_TRIM5 0x04
2990#define PALMAS_GPADC_TRIM6 0x05
2991#define PALMAS_GPADC_TRIM7 0x06
2992#define PALMAS_GPADC_TRIM8 0x07
2993#define PALMAS_GPADC_TRIM9 0x08
2994#define PALMAS_GPADC_TRIM10 0x09
2995#define PALMAS_GPADC_TRIM11 0x0A
2996#define PALMAS_GPADC_TRIM12 0x0B
2997#define PALMAS_GPADC_TRIM13 0x0C
2998#define PALMAS_GPADC_TRIM14 0x0D
2999#define PALMAS_GPADC_TRIM15 0x0E
3000#define PALMAS_GPADC_TRIM16 0x0F
Graeme Gregory2945fbc2012-05-15 15:48:56 +09003001
Keerthye03826d2015-03-17 15:56:04 +05303002/* TPS659038 regen2_ctrl offset iss different from palmas */
3003#define TPS659038_REGEN2_CTRL 0x12
3004
Keerthy027d7c22014-06-18 15:28:54 +05303005/* TPS65917 Interrupt registers */
3006
3007/* Registers for function INTERRUPT */
3008#define TPS65917_INT1_STATUS 0x00
3009#define TPS65917_INT1_MASK 0x01
3010#define TPS65917_INT1_LINE_STATE 0x02
3011#define TPS65917_INT2_STATUS 0x05
3012#define TPS65917_INT2_MASK 0x06
3013#define TPS65917_INT2_LINE_STATE 0x07
3014#define TPS65917_INT3_STATUS 0x0A
3015#define TPS65917_INT3_MASK 0x0B
3016#define TPS65917_INT3_LINE_STATE 0x0C
3017#define TPS65917_INT4_STATUS 0x0F
3018#define TPS65917_INT4_MASK 0x10
3019#define TPS65917_INT4_LINE_STATE 0x11
3020#define TPS65917_INT4_EDGE_DETECT1 0x12
3021#define TPS65917_INT4_EDGE_DETECT2 0x13
3022#define TPS65917_INT_CTRL 0x14
3023
3024/* Bit definitions for INT1_STATUS */
3025#define TPS65917_INT1_STATUS_VSYS_MON 0x40
3026#define TPS65917_INT1_STATUS_VSYS_MON_SHIFT 0x06
3027#define TPS65917_INT1_STATUS_HOTDIE 0x20
3028#define TPS65917_INT1_STATUS_HOTDIE_SHIFT 0x05
3029#define TPS65917_INT1_STATUS_PWRDOWN 0x10
3030#define TPS65917_INT1_STATUS_PWRDOWN_SHIFT 0x04
3031#define TPS65917_INT1_STATUS_LONG_PRESS_KEY 0x04
3032#define TPS65917_INT1_STATUS_LONG_PRESS_KEY_SHIFT 0x02
3033#define TPS65917_INT1_STATUS_PWRON 0x02
3034#define TPS65917_INT1_STATUS_PWRON_SHIFT 0x01
3035
3036/* Bit definitions for INT1_MASK */
3037#define TPS65917_INT1_MASK_VSYS_MON 0x40
3038#define TPS65917_INT1_MASK_VSYS_MON_SHIFT 0x06
3039#define TPS65917_INT1_MASK_HOTDIE 0x20
3040#define TPS65917_INT1_MASK_HOTDIE_SHIFT 0x05
3041#define TPS65917_INT1_MASK_PWRDOWN 0x10
3042#define TPS65917_INT1_MASK_PWRDOWN_SHIFT 0x04
3043#define TPS65917_INT1_MASK_LONG_PRESS_KEY 0x04
3044#define TPS65917_INT1_MASK_LONG_PRESS_KEY_SHIFT 0x02
3045#define TPS65917_INT1_MASK_PWRON 0x02
3046#define TPS65917_INT1_MASK_PWRON_SHIFT 0x01
3047
3048/* Bit definitions for INT1_LINE_STATE */
3049#define TPS65917_INT1_LINE_STATE_VSYS_MON 0x40
3050#define TPS65917_INT1_LINE_STATE_VSYS_MON_SHIFT 0x06
3051#define TPS65917_INT1_LINE_STATE_HOTDIE 0x20
3052#define TPS65917_INT1_LINE_STATE_HOTDIE_SHIFT 0x05
3053#define TPS65917_INT1_LINE_STATE_PWRDOWN 0x10
3054#define TPS65917_INT1_LINE_STATE_PWRDOWN_SHIFT 0x04
3055#define TPS65917_INT1_LINE_STATE_LONG_PRESS_KEY 0x04
3056#define TPS65917_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT 0x02
3057#define TPS65917_INT1_LINE_STATE_PWRON 0x02
3058#define TPS65917_INT1_LINE_STATE_PWRON_SHIFT 0x01
3059
3060/* Bit definitions for INT2_STATUS */
3061#define TPS65917_INT2_STATUS_SHORT 0x40
3062#define TPS65917_INT2_STATUS_SHORT_SHIFT 0x06
3063#define TPS65917_INT2_STATUS_FSD 0x20
3064#define TPS65917_INT2_STATUS_FSD_SHIFT 0x05
3065#define TPS65917_INT2_STATUS_RESET_IN 0x10
3066#define TPS65917_INT2_STATUS_RESET_IN_SHIFT 0x04
3067#define TPS65917_INT2_STATUS_WDT 0x04
3068#define TPS65917_INT2_STATUS_WDT_SHIFT 0x02
3069#define TPS65917_INT2_STATUS_OTP_ERROR 0x02
3070#define TPS65917_INT2_STATUS_OTP_ERROR_SHIFT 0x01
3071
3072/* Bit definitions for INT2_MASK */
3073#define TPS65917_INT2_MASK_SHORT 0x40
3074#define TPS65917_INT2_MASK_SHORT_SHIFT 0x06
3075#define TPS65917_INT2_MASK_FSD 0x20
3076#define TPS65917_INT2_MASK_FSD_SHIFT 0x05
3077#define TPS65917_INT2_MASK_RESET_IN 0x10
3078#define TPS65917_INT2_MASK_RESET_IN_SHIFT 0x04
3079#define TPS65917_INT2_MASK_WDT 0x04
3080#define TPS65917_INT2_MASK_WDT_SHIFT 0x02
3081#define TPS65917_INT2_MASK_OTP_ERROR_TIMER 0x02
3082#define TPS65917_INT2_MASK_OTP_ERROR_SHIFT 0x01
3083
3084/* Bit definitions for INT2_LINE_STATE */
3085#define TPS65917_INT2_LINE_STATE_SHORT 0x40
3086#define TPS65917_INT2_LINE_STATE_SHORT_SHIFT 0x06
3087#define TPS65917_INT2_LINE_STATE_FSD 0x20
3088#define TPS65917_INT2_LINE_STATE_FSD_SHIFT 0x05
3089#define TPS65917_INT2_LINE_STATE_RESET_IN 0x10
3090#define TPS65917_INT2_LINE_STATE_RESET_IN_SHIFT 0x04
3091#define TPS65917_INT2_LINE_STATE_WDT 0x04
3092#define TPS65917_INT2_LINE_STATE_WDT_SHIFT 0x02
3093#define TPS65917_INT2_LINE_STATE_OTP_ERROR 0x02
3094#define TPS65917_INT2_LINE_STATE_OTP_ERROR_SHIFT 0x01
3095
3096/* Bit definitions for INT3_STATUS */
3097#define TPS65917_INT3_STATUS_VBUS 0x80
3098#define TPS65917_INT3_STATUS_VBUS_SHIFT 0x07
3099#define TPS65917_INT3_STATUS_GPADC_EOC_SW 0x04
3100#define TPS65917_INT3_STATUS_GPADC_EOC_SW_SHIFT 0x02
3101#define TPS65917_INT3_STATUS_GPADC_AUTO_1 0x02
3102#define TPS65917_INT3_STATUS_GPADC_AUTO_1_SHIFT 0x01
3103#define TPS65917_INT3_STATUS_GPADC_AUTO_0 0x01
3104#define TPS65917_INT3_STATUS_GPADC_AUTO_0_SHIFT 0x00
3105
3106/* Bit definitions for INT3_MASK */
3107#define TPS65917_INT3_MASK_VBUS 0x80
3108#define TPS65917_INT3_MASK_VBUS_SHIFT 0x07
3109#define TPS65917_INT3_MASK_GPADC_EOC_SW 0x04
3110#define TPS65917_INT3_MASK_GPADC_EOC_SW_SHIFT 0x02
3111#define TPS65917_INT3_MASK_GPADC_AUTO_1 0x02
3112#define TPS65917_INT3_MASK_GPADC_AUTO_1_SHIFT 0x01
3113#define TPS65917_INT3_MASK_GPADC_AUTO_0 0x01
3114#define TPS65917_INT3_MASK_GPADC_AUTO_0_SHIFT 0x00
3115
3116/* Bit definitions for INT3_LINE_STATE */
3117#define TPS65917_INT3_LINE_STATE_VBUS 0x80
3118#define TPS65917_INT3_LINE_STATE_VBUS_SHIFT 0x07
3119#define TPS65917_INT3_LINE_STATE_GPADC_EOC_SW 0x04
3120#define TPS65917_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT 0x02
3121#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_1 0x02
3122#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT 0x01
3123#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_0 0x01
3124#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT 0x00
3125
3126/* Bit definitions for INT4_STATUS */
3127#define TPS65917_INT4_STATUS_GPIO_6 0x40
3128#define TPS65917_INT4_STATUS_GPIO_6_SHIFT 0x06
3129#define TPS65917_INT4_STATUS_GPIO_5 0x20
3130#define TPS65917_INT4_STATUS_GPIO_5_SHIFT 0x05
3131#define TPS65917_INT4_STATUS_GPIO_4 0x10
3132#define TPS65917_INT4_STATUS_GPIO_4_SHIFT 0x04
3133#define TPS65917_INT4_STATUS_GPIO_3 0x08
3134#define TPS65917_INT4_STATUS_GPIO_3_SHIFT 0x03
3135#define TPS65917_INT4_STATUS_GPIO_2 0x04
3136#define TPS65917_INT4_STATUS_GPIO_2_SHIFT 0x02
3137#define TPS65917_INT4_STATUS_GPIO_1 0x02
3138#define TPS65917_INT4_STATUS_GPIO_1_SHIFT 0x01
3139#define TPS65917_INT4_STATUS_GPIO_0 0x01
3140#define TPS65917_INT4_STATUS_GPIO_0_SHIFT 0x00
3141
3142/* Bit definitions for INT4_MASK */
3143#define TPS65917_INT4_MASK_GPIO_6 0x40
3144#define TPS65917_INT4_MASK_GPIO_6_SHIFT 0x06
3145#define TPS65917_INT4_MASK_GPIO_5 0x20
3146#define TPS65917_INT4_MASK_GPIO_5_SHIFT 0x05
3147#define TPS65917_INT4_MASK_GPIO_4 0x10
3148#define TPS65917_INT4_MASK_GPIO_4_SHIFT 0x04
3149#define TPS65917_INT4_MASK_GPIO_3 0x08
3150#define TPS65917_INT4_MASK_GPIO_3_SHIFT 0x03
3151#define TPS65917_INT4_MASK_GPIO_2 0x04
3152#define TPS65917_INT4_MASK_GPIO_2_SHIFT 0x02
3153#define TPS65917_INT4_MASK_GPIO_1 0x02
3154#define TPS65917_INT4_MASK_GPIO_1_SHIFT 0x01
3155#define TPS65917_INT4_MASK_GPIO_0 0x01
3156#define TPS65917_INT4_MASK_GPIO_0_SHIFT 0x00
3157
3158/* Bit definitions for INT4_LINE_STATE */
3159#define TPS65917_INT4_LINE_STATE_GPIO_6 0x40
3160#define TPS65917_INT4_LINE_STATE_GPIO_6_SHIFT 0x06
3161#define TPS65917_INT4_LINE_STATE_GPIO_5 0x20
3162#define TPS65917_INT4_LINE_STATE_GPIO_5_SHIFT 0x05
3163#define TPS65917_INT4_LINE_STATE_GPIO_4 0x10
3164#define TPS65917_INT4_LINE_STATE_GPIO_4_SHIFT 0x04
3165#define TPS65917_INT4_LINE_STATE_GPIO_3 0x08
3166#define TPS65917_INT4_LINE_STATE_GPIO_3_SHIFT 0x03
3167#define TPS65917_INT4_LINE_STATE_GPIO_2 0x04
3168#define TPS65917_INT4_LINE_STATE_GPIO_2_SHIFT 0x02
3169#define TPS65917_INT4_LINE_STATE_GPIO_1 0x02
3170#define TPS65917_INT4_LINE_STATE_GPIO_1_SHIFT 0x01
3171#define TPS65917_INT4_LINE_STATE_GPIO_0 0x01
3172#define TPS65917_INT4_LINE_STATE_GPIO_0_SHIFT 0x00
3173
3174/* Bit definitions for INT4_EDGE_DETECT1 */
3175#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_RISING 0x80
3176#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT 0x07
3177#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_FALLING 0x40
3178#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT 0x06
3179#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_RISING 0x20
3180#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT 0x05
3181#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_FALLING 0x10
3182#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT 0x04
3183#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_RISING 0x08
3184#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT 0x03
3185#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_FALLING 0x04
3186#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT 0x02
3187#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_RISING 0x02
3188#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT 0x01
3189#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_FALLING 0x01
3190#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT 0x00
3191
3192/* Bit definitions for INT4_EDGE_DETECT2 */
3193#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_RISING 0x20
3194#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT 0x05
3195#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_FALLING 0x10
3196#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT 0x04
3197#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_RISING 0x08
3198#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT 0x03
3199#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_FALLING 0x04
3200#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT 0x02
3201#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_RISING 0x02
3202#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT 0x01
3203#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_FALLING 0x01
3204#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT 0x00
3205
3206/* Bit definitions for INT_CTRL */
3207#define TPS65917_INT_CTRL_INT_PENDING 0x04
3208#define TPS65917_INT_CTRL_INT_PENDING_SHIFT 0x02
3209#define TPS65917_INT_CTRL_INT_CLEAR 0x01
3210#define TPS65917_INT_CTRL_INT_CLEAR_SHIFT 0x00
3211
3212/* TPS65917 SMPS Registers */
3213
3214/* Registers for function SMPS */
3215#define TPS65917_SMPS1_CTRL 0x00
3216#define TPS65917_SMPS1_FORCE 0x02
3217#define TPS65917_SMPS1_VOLTAGE 0x03
3218#define TPS65917_SMPS2_CTRL 0x04
3219#define TPS65917_SMPS2_FORCE 0x06
3220#define TPS65917_SMPS2_VOLTAGE 0x07
3221#define TPS65917_SMPS3_CTRL 0x0C
3222#define TPS65917_SMPS3_FORCE 0x0E
3223#define TPS65917_SMPS3_VOLTAGE 0x0F
3224#define TPS65917_SMPS4_CTRL 0x10
3225#define TPS65917_SMPS4_VOLTAGE 0x13
3226#define TPS65917_SMPS5_CTRL 0x18
3227#define TPS65917_SMPS5_VOLTAGE 0x1B
3228#define TPS65917_SMPS_CTRL 0x24
3229#define TPS65917_SMPS_PD_CTRL 0x25
3230#define TPS65917_SMPS_THERMAL_EN 0x27
3231#define TPS65917_SMPS_THERMAL_STATUS 0x28
3232#define TPS65917_SMPS_SHORT_STATUS 0x29
3233#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN 0x2A
3234#define TPS65917_SMPS_POWERGOOD_MASK1 0x2B
3235#define TPS65917_SMPS_POWERGOOD_MASK2 0x2C
3236
3237/* Bit definitions for SMPS1_CTRL */
3238#define TPS65917_SMPS1_CTRL_WR_S 0x80
3239#define TPS65917_SMPS1_CTRL_WR_S_SHIFT 0x07
3240#define TPS65917_SMPS1_CTRL_ROOF_FLOOR_EN 0x40
3241#define TPS65917_SMPS1_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
3242#define TPS65917_SMPS1_CTRL_STATUS_MASK 0x30
3243#define TPS65917_SMPS1_CTRL_STATUS_SHIFT 0x04
3244#define TPS65917_SMPS1_CTRL_MODE_SLEEP_MASK 0x0C
3245#define TPS65917_SMPS1_CTRL_MODE_SLEEP_SHIFT 0x02
3246#define TPS65917_SMPS1_CTRL_MODE_ACTIVE_MASK 0x03
3247#define TPS65917_SMPS1_CTRL_MODE_ACTIVE_SHIFT 0x00
3248
3249/* Bit definitions for SMPS1_FORCE */
3250#define TPS65917_SMPS1_FORCE_CMD 0x80
3251#define TPS65917_SMPS1_FORCE_CMD_SHIFT 0x07
3252#define TPS65917_SMPS1_FORCE_VSEL_MASK 0x7F
3253#define TPS65917_SMPS1_FORCE_VSEL_SHIFT 0x00
3254
3255/* Bit definitions for SMPS1_VOLTAGE */
3256#define TPS65917_SMPS1_VOLTAGE_RANGE 0x80
3257#define TPS65917_SMPS1_VOLTAGE_RANGE_SHIFT 0x07
3258#define TPS65917_SMPS1_VOLTAGE_VSEL_MASK 0x7F
3259#define TPS65917_SMPS1_VOLTAGE_VSEL_SHIFT 0x00
3260
3261/* Bit definitions for SMPS2_CTRL */
3262#define TPS65917_SMPS2_CTRL_WR_S 0x80
3263#define TPS65917_SMPS2_CTRL_WR_S_SHIFT 0x07
3264#define TPS65917_SMPS2_CTRL_ROOF_FLOOR_EN 0x40
3265#define TPS65917_SMPS2_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
3266#define TPS65917_SMPS2_CTRL_STATUS_MASK 0x30
3267#define TPS65917_SMPS2_CTRL_STATUS_SHIFT 0x04
3268#define TPS65917_SMPS2_CTRL_MODE_SLEEP_MASK 0x0C
3269#define TPS65917_SMPS2_CTRL_MODE_SLEEP_SHIFT 0x02
3270#define TPS65917_SMPS2_CTRL_MODE_ACTIVE_MASK 0x03
3271#define TPS65917_SMPS2_CTRL_MODE_ACTIVE_SHIFT 0x00
3272
3273/* Bit definitions for SMPS2_FORCE */
3274#define TPS65917_SMPS2_FORCE_CMD 0x80
3275#define TPS65917_SMPS2_FORCE_CMD_SHIFT 0x07
3276#define TPS65917_SMPS2_FORCE_VSEL_MASK 0x7F
3277#define TPS65917_SMPS2_FORCE_VSEL_SHIFT 0x00
3278
3279/* Bit definitions for SMPS2_VOLTAGE */
3280#define TPS65917_SMPS2_VOLTAGE_RANGE 0x80
3281#define TPS65917_SMPS2_VOLTAGE_RANGE_SHIFT 0x07
3282#define TPS65917_SMPS2_VOLTAGE_VSEL_MASK 0x7F
3283#define TPS65917_SMPS2_VOLTAGE_VSEL_SHIFT 0x00
3284
3285/* Bit definitions for SMPS3_CTRL */
3286#define TPS65917_SMPS3_CTRL_WR_S 0x80
3287#define TPS65917_SMPS3_CTRL_WR_S_SHIFT 0x07
3288#define TPS65917_SMPS3_CTRL_ROOF_FLOOR_EN 0x40
3289#define TPS65917_SMPS3_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
3290#define TPS65917_SMPS3_CTRL_STATUS_MASK 0x30
3291#define TPS65917_SMPS3_CTRL_STATUS_SHIFT 0x04
3292#define TPS65917_SMPS3_CTRL_MODE_SLEEP_MASK 0x0C
3293#define TPS65917_SMPS3_CTRL_MODE_SLEEP_SHIFT 0x02
3294#define TPS65917_SMPS3_CTRL_MODE_ACTIVE_MASK 0x03
3295#define TPS65917_SMPS3_CTRL_MODE_ACTIVE_SHIFT 0x00
3296
3297/* Bit definitions for SMPS3_FORCE */
3298#define TPS65917_SMPS3_FORCE_CMD 0x80
3299#define TPS65917_SMPS3_FORCE_CMD_SHIFT 0x07
3300#define TPS65917_SMPS3_FORCE_VSEL_MASK 0x7F
3301#define TPS65917_SMPS3_FORCE_VSEL_SHIFT 0x00
3302
3303/* Bit definitions for SMPS3_VOLTAGE */
3304#define TPS65917_SMPS3_VOLTAGE_RANGE 0x80
3305#define TPS65917_SMPS3_VOLTAGE_RANGE_SHIFT 0x07
3306#define TPS65917_SMPS3_VOLTAGE_VSEL_MASK 0x7F
3307#define TPS65917_SMPS3_VOLTAGE_VSEL_SHIFT 0x00
3308
3309/* Bit definitions for SMPS4_CTRL */
3310#define TPS65917_SMPS4_CTRL_WR_S 0x80
3311#define TPS65917_SMPS4_CTRL_WR_S_SHIFT 0x07
3312#define TPS65917_SMPS4_CTRL_ROOF_FLOOR_EN 0x40
3313#define TPS65917_SMPS4_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
3314#define TPS65917_SMPS4_CTRL_STATUS_MASK 0x30
3315#define TPS65917_SMPS4_CTRL_STATUS_SHIFT 0x04
3316#define TPS65917_SMPS4_CTRL_MODE_SLEEP_MASK 0x0C
3317#define TPS65917_SMPS4_CTRL_MODE_SLEEP_SHIFT 0x02
3318#define TPS65917_SMPS4_CTRL_MODE_ACTIVE_MASK 0x03
3319#define TPS65917_SMPS4_CTRL_MODE_ACTIVE_SHIFT 0x00
3320
3321/* Bit definitions for SMPS4_VOLTAGE */
3322#define TPS65917_SMPS4_VOLTAGE_RANGE 0x80
3323#define TPS65917_SMPS4_VOLTAGE_RANGE_SHIFT 0x07
3324#define TPS65917_SMPS4_VOLTAGE_VSEL_MASK 0x7F
3325#define TPS65917_SMPS4_VOLTAGE_VSEL_SHIFT 0x00
3326
3327/* Bit definitions for SMPS5_CTRL */
3328#define TPS65917_SMPS5_CTRL_WR_S 0x80
3329#define TPS65917_SMPS5_CTRL_WR_S_SHIFT 0x07
3330#define TPS65917_SMPS5_CTRL_ROOF_FLOOR_EN 0x40
3331#define TPS65917_SMPS5_CTRL_ROOF_FLOOR_EN_SHIFT 0x06
3332#define TPS65917_SMPS5_CTRL_STATUS_MASK 0x30
3333#define TPS65917_SMPS5_CTRL_STATUS_SHIFT 0x04
3334#define TPS65917_SMPS5_CTRL_MODE_SLEEP_MASK 0x0C
3335#define TPS65917_SMPS5_CTRL_MODE_SLEEP_SHIFT 0x02
3336#define TPS65917_SMPS5_CTRL_MODE_ACTIVE_MASK 0x03
3337#define TPS65917_SMPS5_CTRL_MODE_ACTIVE_SHIFT 0x00
3338
3339/* Bit definitions for SMPS5_VOLTAGE */
3340#define TPS65917_SMPS5_VOLTAGE_RANGE 0x80
3341#define TPS65917_SMPS5_VOLTAGE_RANGE_SHIFT 0x07
3342#define TPS65917_SMPS5_VOLTAGE_VSEL_MASK 0x7F
3343#define TPS65917_SMPS5_VOLTAGE_VSEL_SHIFT 0x00
3344
3345/* Bit definitions for SMPS_CTRL */
3346#define TPS65917_SMPS_CTRL_SMPS1_SMPS12_EN 0x10
3347#define TPS65917_SMPS_CTRL_SMPS1_SMPS12_EN_SHIFT 0x04
3348#define TPS65917_SMPS_CTRL_SMPS12_PHASE_CTRL 0x03
3349#define TPS65917_SMPS_CTRL_SMPS12_PHASE_CTRL_SHIFT 0x00
3350
3351/* Bit definitions for SMPS_PD_CTRL */
3352#define TPS65917_SMPS_PD_CTRL_SMPS5 0x40
3353#define TPS65917_SMPS_PD_CTRL_SMPS5_SHIFT 0x06
3354#define TPS65917_SMPS_PD_CTRL_SMPS4 0x10
3355#define TPS65917_SMPS_PD_CTRL_SMPS4_SHIFT 0x04
3356#define TPS65917_SMPS_PD_CTRL_SMPS3 0x08
3357#define TPS65917_SMPS_PD_CTRL_SMPS3_SHIFT 0x03
3358#define TPS65917_SMPS_PD_CTRL_SMPS2 0x02
3359#define TPS65917_SMPS_PD_CTRL_SMPS2_SHIFT 0x01
3360#define TPS65917_SMPS_PD_CTRL_SMPS1 0x01
3361#define TPS65917_SMPS_PD_CTRL_SMPS1_SHIFT 0x00
3362
3363/* Bit definitions for SMPS_THERMAL_EN */
3364#define TPS65917_SMPS_THERMAL_EN_SMPS5 0x40
3365#define TPS65917_SMPS_THERMAL_EN_SMPS5_SHIFT 0x06
3366#define TPS65917_SMPS_THERMAL_EN_SMPS3 0x08
3367#define TPS65917_SMPS_THERMAL_EN_SMPS3_SHIFT 0x03
3368#define TPS65917_SMPS_THERMAL_EN_SMPS12 0x01
3369#define TPS65917_SMPS_THERMAL_EN_SMPS12_SHIFT 0x00
3370
3371/* Bit definitions for SMPS_THERMAL_STATUS */
3372#define TPS65917_SMPS_THERMAL_STATUS_SMPS5 0x40
3373#define TPS65917_SMPS_THERMAL_STATUS_SMPS5_SHIFT 0x06
3374#define TPS65917_SMPS_THERMAL_STATUS_SMPS3 0x08
3375#define TPS65917_SMPS_THERMAL_STATUS_SMPS3_SHIFT 0x03
3376#define TPS65917_SMPS_THERMAL_STATUS_SMPS12 0x01
3377#define TPS65917_SMPS_THERMAL_STATUS_SMPS12_SHIFT 0x00
3378
3379/* Bit definitions for SMPS_SHORT_STATUS */
3380#define TPS65917_SMPS_SHORT_STATUS_SMPS5 0x40
3381#define TPS65917_SMPS_SHORT_STATUS_SMPS5_SHIFT 0x06
3382#define TPS65917_SMPS_SHORT_STATUS_SMPS4 0x10
3383#define TPS65917_SMPS_SHORT_STATUS_SMPS4_SHIFT 0x04
3384#define TPS65917_SMPS_SHORT_STATUS_SMPS3 0x08
3385#define TPS65917_SMPS_SHORT_STATUS_SMPS3_SHIFT 0x03
3386#define TPS65917_SMPS_SHORT_STATUS_SMPS2 0x02
3387#define TPS65917_SMPS_SHORT_STATUS_SMPS2_SHIFT 0x01
3388#define TPS65917_SMPS_SHORT_STATUS_SMPS1 0x01
3389#define TPS65917_SMPS_SHORT_STATUS_SMPS1_SHIFT 0x00
3390
3391/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */
3392#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS5 0x40
3393#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS5_SHIFT 0x06
3394#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS4 0x10
3395#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS4_SHIFT 0x04
3396#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3 0x08
3397#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT 0x03
3398#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS2 0x02
3399#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS2_SHIFT 0x01
3400#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS1 0x01
3401#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS1_SHIFT 0x00
3402
3403/* Bit definitions for SMPS_POWERGOOD_MASK1 */
3404#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS5 0x40
3405#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS5_SHIFT 0x06
3406#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS4 0x10
3407#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS4_SHIFT 0x04
3408#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS3 0x08
3409#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT 0x03
3410#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS2 0x02
3411#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS2_SHIFT 0x01
3412#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS1 0x01
3413#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS1_SHIFT 0x00
3414
3415/* Bit definitions for SMPS_POWERGOOD_MASK2 */
3416#define TPS65917_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT 0x80
3417#define TPS65917_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT 0x07
3418#define TPS65917_SMPS_POWERGOOD_MASK2_OVC_ALARM_SHIFT 0x10
3419#define TPS65917_SMPS_POWERGOOD_MASK2_OVC_ALARM 0x04
3420
3421/* Bit definitions for SMPS_PLL_CTRL */
3422
3423#define TPS65917_SMPS_PLL_CTRL_PLL_EN_PLL_BYPASS_SHIFT 0x08
3424#define TPS65917_SMPS_PLL_CTRL_PLL_PLL_EN_BYPASS 0x03
3425#define TPS65917_SMPS_PLL_CTRL_PLL_PLL_BYPASS_CLK_SHIFT 0x04
3426#define TPS65917_SMPS_PLL_CTRL_PLL_PLL_BYPASS_CLK 0x02
3427
3428/* Registers for function LDO */
3429#define TPS65917_LDO1_CTRL 0x00
3430#define TPS65917_LDO1_VOLTAGE 0x01
3431#define TPS65917_LDO2_CTRL 0x02
3432#define TPS65917_LDO2_VOLTAGE 0x03
3433#define TPS65917_LDO3_CTRL 0x04
3434#define TPS65917_LDO3_VOLTAGE 0x05
3435#define TPS65917_LDO4_CTRL 0x0E
3436#define TPS65917_LDO4_VOLTAGE 0x0F
3437#define TPS65917_LDO5_CTRL 0x12
3438#define TPS65917_LDO5_VOLTAGE 0x13
3439#define TPS65917_LDO_PD_CTRL1 0x1B
3440#define TPS65917_LDO_PD_CTRL2 0x1C
3441#define TPS65917_LDO_SHORT_STATUS1 0x1D
3442#define TPS65917_LDO_SHORT_STATUS2 0x1E
3443#define TPS65917_LDO_PD_CTRL3 0x2D
3444#define TPS65917_LDO_SHORT_STATUS3 0x2E
3445
3446/* Bit definitions for LDO1_CTRL */
3447#define TPS65917_LDO1_CTRL_WR_S 0x80
3448#define TPS65917_LDO1_CTRL_WR_S_SHIFT 0x07
3449#define TPS65917_LDO1_CTRL_BYPASS_EN 0x40
3450#define TPS65917_LDO1_CTRL_BYPASS_EN_SHIFT 0x06
3451#define TPS65917_LDO1_CTRL_STATUS 0x10
3452#define TPS65917_LDO1_CTRL_STATUS_SHIFT 0x04
3453#define TPS65917_LDO1_CTRL_MODE_SLEEP 0x04
3454#define TPS65917_LDO1_CTRL_MODE_SLEEP_SHIFT 0x02
3455#define TPS65917_LDO1_CTRL_MODE_ACTIVE 0x01
3456#define TPS65917_LDO1_CTRL_MODE_ACTIVE_SHIFT 0x00
3457
3458/* Bit definitions for LDO1_VOLTAGE */
3459#define TPS65917_LDO1_VOLTAGE_VSEL_MASK 0x2F
3460#define TPS65917_LDO1_VOLTAGE_VSEL_SHIFT 0x00
3461
3462/* Bit definitions for LDO2_CTRL */
3463#define TPS65917_LDO2_CTRL_WR_S 0x80
3464#define TPS65917_LDO2_CTRL_WR_S_SHIFT 0x07
3465#define TPS65917_LDO2_CTRL_BYPASS_EN 0x40
3466#define TPS65917_LDO2_CTRL_BYPASS_EN_SHIFT 0x06
3467#define TPS65917_LDO2_CTRL_STATUS 0x10
3468#define TPS65917_LDO2_CTRL_STATUS_SHIFT 0x04
3469#define TPS65917_LDO2_CTRL_MODE_SLEEP 0x04
3470#define TPS65917_LDO2_CTRL_MODE_SLEEP_SHIFT 0x02
3471#define TPS65917_LDO2_CTRL_MODE_ACTIVE 0x01
3472#define TPS65917_LDO2_CTRL_MODE_ACTIVE_SHIFT 0x00
3473
3474/* Bit definitions for LDO2_VOLTAGE */
3475#define TPS65917_LDO2_VOLTAGE_VSEL_MASK 0x2F
3476#define TPS65917_LDO2_VOLTAGE_VSEL_SHIFT 0x00
3477
3478/* Bit definitions for LDO3_CTRL */
3479#define TPS65917_LDO3_CTRL_WR_S 0x80
3480#define TPS65917_LDO3_CTRL_WR_S_SHIFT 0x07
3481#define TPS65917_LDO3_CTRL_STATUS 0x10
3482#define TPS65917_LDO3_CTRL_STATUS_SHIFT 0x04
3483#define TPS65917_LDO3_CTRL_MODE_SLEEP 0x04
3484#define TPS65917_LDO3_CTRL_MODE_SLEEP_SHIFT 0x02
3485#define TPS65917_LDO3_CTRL_MODE_ACTIVE 0x01
3486#define TPS65917_LDO3_CTRL_MODE_ACTIVE_SHIFT 0x00
3487
3488/* Bit definitions for LDO3_VOLTAGE */
3489#define TPS65917_LDO3_VOLTAGE_VSEL_MASK 0x2F
3490#define TPS65917_LDO3_VOLTAGE_VSEL_SHIFT 0x00
3491
3492/* Bit definitions for LDO4_CTRL */
3493#define TPS65917_LDO4_CTRL_WR_S 0x80
3494#define TPS65917_LDO4_CTRL_WR_S_SHIFT 0x07
3495#define TPS65917_LDO4_CTRL_STATUS 0x10
3496#define TPS65917_LDO4_CTRL_STATUS_SHIFT 0x04
3497#define TPS65917_LDO4_CTRL_MODE_SLEEP 0x04
3498#define TPS65917_LDO4_CTRL_MODE_SLEEP_SHIFT 0x02
3499#define TPS65917_LDO4_CTRL_MODE_ACTIVE 0x01
3500#define TPS65917_LDO4_CTRL_MODE_ACTIVE_SHIFT 0x00
3501
3502/* Bit definitions for LDO4_VOLTAGE */
3503#define TPS65917_LDO4_VOLTAGE_VSEL_MASK 0x2F
3504#define TPS65917_LDO4_VOLTAGE_VSEL_SHIFT 0x00
3505
3506/* Bit definitions for LDO5_CTRL */
3507#define TPS65917_LDO5_CTRL_WR_S 0x80
3508#define TPS65917_LDO5_CTRL_WR_S_SHIFT 0x07
3509#define TPS65917_LDO5_CTRL_STATUS 0x10
3510#define TPS65917_LDO5_CTRL_STATUS_SHIFT 0x04
3511#define TPS65917_LDO5_CTRL_MODE_SLEEP 0x04
3512#define TPS65917_LDO5_CTRL_MODE_SLEEP_SHIFT 0x02
3513#define TPS65917_LDO5_CTRL_MODE_ACTIVE 0x01
3514#define TPS65917_LDO5_CTRL_MODE_ACTIVE_SHIFT 0x00
3515
3516/* Bit definitions for LDO5_VOLTAGE */
3517#define TPS65917_LDO5_VOLTAGE_VSEL_MASK 0x2F
3518#define TPS65917_LDO5_VOLTAGE_VSEL_SHIFT 0x00
3519
3520/* Bit definitions for LDO_PD_CTRL1 */
3521#define TPS65917_LDO_PD_CTRL1_LDO4 0x80
3522#define TPS65917_LDO_PD_CTRL1_LDO4_SHIFT 0x07
3523#define TPS65917_LDO_PD_CTRL1_LDO2 0x02
3524#define TPS65917_LDO_PD_CTRL1_LDO2_SHIFT 0x01
3525#define TPS65917_LDO_PD_CTRL1_LDO1 0x01
3526#define TPS65917_LDO_PD_CTRL1_LDO1_SHIFT 0x00
3527
3528/* Bit definitions for LDO_PD_CTRL2 */
3529#define TPS65917_LDO_PD_CTRL2_LDO3 0x04
3530#define TPS65917_LDO_PD_CTRL2_LDO3_SHIFT 0x02
3531#define TPS65917_LDO_PD_CTRL2_LDO5 0x02
3532#define TPS65917_LDO_PD_CTRL2_LDO5_SHIFT 0x01
3533
3534/* Bit definitions for LDO_PD_CTRL3 */
3535#define TPS65917_LDO_PD_CTRL2_LDOVANA 0x80
3536#define TPS65917_LDO_PD_CTRL2_LDOVANA_SHIFT 0x07
3537
3538/* Bit definitions for LDO_SHORT_STATUS1 */
3539#define TPS65917_LDO_SHORT_STATUS1_LDO4 0x80
3540#define TPS65917_LDO_SHORT_STATUS1_LDO4_SHIFT 0x07
3541#define TPS65917_LDO_SHORT_STATUS1_LDO2 0x02
3542#define TPS65917_LDO_SHORT_STATUS1_LDO2_SHIFT 0x01
3543#define TPS65917_LDO_SHORT_STATUS1_LDO1 0x01
3544#define TPS65917_LDO_SHORT_STATUS1_LDO1_SHIFT 0x00
3545
3546/* Bit definitions for LDO_SHORT_STATUS2 */
3547#define TPS65917_LDO_SHORT_STATUS2_LDO3 0x04
3548#define TPS65917_LDO_SHORT_STATUS2_LDO3_SHIFT 0x02
3549#define TPS65917_LDO_SHORT_STATUS2_LDO5 0x02
3550#define TPS65917_LDO_SHORT_STATUS2_LDO5_SHIFT 0x01
3551
3552/* Bit definitions for LDO_SHORT_STATUS2 */
3553#define TPS65917_LDO_SHORT_STATUS2_LDOVANA 0x80
3554#define TPS65917_LDO_SHORT_STATUS2_LDOVANA_SHIFT 0x07
3555
3556/* Bit definitions for REGEN1_CTRL */
3557#define TPS65917_REGEN1_CTRL_STATUS 0x10
3558#define TPS65917_REGEN1_CTRL_STATUS_SHIFT 0x04
3559#define TPS65917_REGEN1_CTRL_MODE_SLEEP 0x04
3560#define TPS65917_REGEN1_CTRL_MODE_SLEEP_SHIFT 0x02
3561#define TPS65917_REGEN1_CTRL_MODE_ACTIVE 0x01
3562#define TPS65917_REGEN1_CTRL_MODE_ACTIVE_SHIFT 0x00
3563
3564/* Bit definitions for PLLEN_CTRL */
3565#define TPS65917_PLLEN_CTRL_STATUS 0x10
3566#define TPS65917_PLLEN_CTRL_STATUS_SHIFT 0x04
3567#define TPS65917_PLLEN_CTRL_MODE_SLEEP 0x04
3568#define TPS65917_PLLEN_CTRL_MODE_SLEEP_SHIFT 0x02
3569#define TPS65917_PLLEN_CTRL_MODE_ACTIVE 0x01
3570#define TPS65917_PLLEN_CTRL_MODE_ACTIVE_SHIFT 0x00
3571
3572/* Bit definitions for REGEN2_CTRL */
3573#define TPS65917_REGEN2_CTRL_STATUS 0x10
3574#define TPS65917_REGEN2_CTRL_STATUS_SHIFT 0x04
3575#define TPS65917_REGEN2_CTRL_MODE_SLEEP 0x04
3576#define TPS65917_REGEN2_CTRL_MODE_SLEEP_SHIFT 0x02
3577#define TPS65917_REGEN2_CTRL_MODE_ACTIVE 0x01
3578#define TPS65917_REGEN2_CTRL_MODE_ACTIVE_SHIFT 0x00
3579
3580/* Bit definitions for NSLEEP_RES_ASSIGN */
3581#define TPS65917_NSLEEP_RES_ASSIGN_PLL_EN 0x08
3582#define TPS65917_NSLEEP_RES_ASSIGN_PLL_EN_SHIFT 0x03
3583#define TPS65917_NSLEEP_RES_ASSIGN_REGEN3 0x04
3584#define TPS65917_NSLEEP_RES_ASSIGN_REGEN3_SHIFT 0x02
3585#define TPS65917_NSLEEP_RES_ASSIGN_REGEN2 0x02
3586#define TPS65917_NSLEEP_RES_ASSIGN_REGEN2_SHIFT 0x01
3587#define TPS65917_NSLEEP_RES_ASSIGN_REGEN1 0x01
3588#define TPS65917_NSLEEP_RES_ASSIGN_REGEN1_SHIFT 0x00
3589
3590/* Bit definitions for NSLEEP_SMPS_ASSIGN */
3591#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS5 0x40
3592#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS5_SHIFT 0x06
3593#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS4 0x10
3594#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS4_SHIFT 0x04
3595#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS3 0x08
3596#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT 0x03
3597#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS2 0x02
3598#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS2_SHIFT 0x01
3599#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS1 0x01
3600#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS1_SHIFT 0x00
3601
3602/* Bit definitions for NSLEEP_LDO_ASSIGN1 */
3603#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO4 0x80
3604#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT 0x07
3605#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO2 0x02
3606#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT 0x01
3607#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO1 0x01
3608#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT 0x00
3609
3610/* Bit definitions for NSLEEP_LDO_ASSIGN2 */
3611#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO3 0x04
3612#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO3_SHIFT 0x02
3613#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO5 0x02
3614#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO5_SHIFT 0x01
3615
3616/* Bit definitions for ENABLE1_RES_ASSIGN */
3617#define TPS65917_ENABLE1_RES_ASSIGN_PLLEN 0x08
3618#define TPS65917_ENABLE1_RES_ASSIGN_PLLEN_SHIFT 0x03
3619#define TPS65917_ENABLE1_RES_ASSIGN_REGEN3 0x04
3620#define TPS65917_ENABLE1_RES_ASSIGN_REGEN3_SHIFT 0x02
3621#define TPS65917_ENABLE1_RES_ASSIGN_REGEN2 0x02
3622#define TPS65917_ENABLE1_RES_ASSIGN_REGEN2_SHIFT 0x01
3623#define TPS65917_ENABLE1_RES_ASSIGN_REGEN1 0x01
3624#define TPS65917_ENABLE1_RES_ASSIGN_REGEN1_SHIFT 0x00
3625
3626/* Bit definitions for ENABLE1_SMPS_ASSIGN */
3627#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS5 0x40
3628#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS5_SHIFT 0x06
3629#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS4 0x10
3630#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS4_SHIFT 0x04
3631#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS3 0x08
3632#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT 0x03
3633#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS2 0x02
3634#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS2_SHIFT 0x01
3635#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS1 0x01
3636#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS1_SHIFT 0x00
3637
3638/* Bit definitions for ENABLE1_LDO_ASSIGN1 */
3639#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO4 0x80
3640#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT 0x07
3641#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO2 0x02
3642#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT 0x01
3643#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO1 0x01
3644#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT 0x00
3645
3646/* Bit definitions for ENABLE1_LDO_ASSIGN2 */
3647#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO3 0x04
3648#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO3_SHIFT 0x02
3649#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO5 0x02
3650#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO5_SHIFT 0x01
3651
3652/* Bit definitions for ENABLE2_RES_ASSIGN */
3653#define TPS65917_ENABLE2_RES_ASSIGN_PLLEN 0x08
3654#define TPS65917_ENABLE2_RES_ASSIGN_PLLEN_SHIFT 0x03
3655#define TPS65917_ENABLE2_RES_ASSIGN_REGEN3 0x04
3656#define TPS65917_ENABLE2_RES_ASSIGN_REGEN3_SHIFT 0x02
3657#define TPS65917_ENABLE2_RES_ASSIGN_REGEN2 0x02
3658#define TPS65917_ENABLE2_RES_ASSIGN_REGEN2_SHIFT 0x01
3659#define TPS65917_ENABLE2_RES_ASSIGN_REGEN1 0x01
3660#define TPS65917_ENABLE2_RES_ASSIGN_REGEN1_SHIFT 0x00
3661
3662/* Bit definitions for ENABLE2_SMPS_ASSIGN */
3663#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS5 0x40
3664#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS5_SHIFT 0x06
3665#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS4 0x10
3666#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS4_SHIFT 0x04
3667#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS3 0x08
3668#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT 0x03
3669#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS2 0x02
3670#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS2_SHIFT 0x01
3671#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS1 0x01
3672#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS1_SHIFT 0x00
3673
3674/* Bit definitions for ENABLE2_LDO_ASSIGN1 */
3675#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO4 0x80
3676#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT 0x07
3677#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO2 0x02
3678#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT 0x01
3679#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO1 0x01
3680#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT 0x00
3681
3682/* Bit definitions for ENABLE2_LDO_ASSIGN2 */
3683#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO3 0x04
3684#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO3_SHIFT 0x02
3685#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO5 0x02
3686#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO5_SHIFT 0x01
3687
3688/* Bit definitions for REGEN3_CTRL */
3689#define TPS65917_REGEN3_CTRL_STATUS 0x10
3690#define TPS65917_REGEN3_CTRL_STATUS_SHIFT 0x04
3691#define TPS65917_REGEN3_CTRL_MODE_SLEEP 0x04
3692#define TPS65917_REGEN3_CTRL_MODE_SLEEP_SHIFT 0x02
3693#define TPS65917_REGEN3_CTRL_MODE_ACTIVE 0x01
3694#define TPS65917_REGEN3_CTRL_MODE_ACTIVE_SHIFT 0x00
3695
3696/* Registers for function RESOURCE */
3697#define TPS65917_REGEN1_CTRL 0x2
3698#define TPS65917_PLLEN_CTRL 0x3
3699#define TPS65917_NSLEEP_RES_ASSIGN 0x6
3700#define TPS65917_NSLEEP_SMPS_ASSIGN 0x7
3701#define TPS65917_NSLEEP_LDO_ASSIGN1 0x8
3702#define TPS65917_NSLEEP_LDO_ASSIGN2 0x9
3703#define TPS65917_ENABLE1_RES_ASSIGN 0xA
3704#define TPS65917_ENABLE1_SMPS_ASSIGN 0xB
3705#define TPS65917_ENABLE1_LDO_ASSIGN1 0xC
3706#define TPS65917_ENABLE1_LDO_ASSIGN2 0xD
3707#define TPS65917_ENABLE2_RES_ASSIGN 0xE
3708#define TPS65917_ENABLE2_SMPS_ASSIGN 0xF
3709#define TPS65917_ENABLE2_LDO_ASSIGN1 0x10
3710#define TPS65917_ENABLE2_LDO_ASSIGN2 0x11
3711#define TPS65917_REGEN2_CTRL 0x12
3712#define TPS65917_REGEN3_CTRL 0x13
3713
Laxman Dewangan60c185f2013-01-03 16:16:58 +05303714static inline int palmas_read(struct palmas *palmas, unsigned int base,
3715 unsigned int reg, unsigned int *val)
3716{
Keerthy45ac60c2014-05-22 14:48:30 +05303717 unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
Laxman Dewangan60c185f2013-01-03 16:16:58 +05303718 int slave_id = PALMAS_BASE_TO_SLAVE(base);
3719
3720 return regmap_read(palmas->regmap[slave_id], addr, val);
3721}
3722
3723static inline int palmas_write(struct palmas *palmas, unsigned int base,
3724 unsigned int reg, unsigned int value)
3725{
3726 unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
3727 int slave_id = PALMAS_BASE_TO_SLAVE(base);
3728
3729 return regmap_write(palmas->regmap[slave_id], addr, value);
3730}
3731
3732static inline int palmas_bulk_write(struct palmas *palmas, unsigned int base,
3733 unsigned int reg, const void *val, size_t val_count)
3734{
3735 unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
3736 int slave_id = PALMAS_BASE_TO_SLAVE(base);
3737
3738 return regmap_bulk_write(palmas->regmap[slave_id], addr,
3739 val, val_count);
3740}
3741
3742static inline int palmas_bulk_read(struct palmas *palmas, unsigned int base,
3743 unsigned int reg, void *val, size_t val_count)
3744{
3745 unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
3746 int slave_id = PALMAS_BASE_TO_SLAVE(base);
3747
3748 return regmap_bulk_read(palmas->regmap[slave_id], addr,
3749 val, val_count);
3750}
3751
3752static inline int palmas_update_bits(struct palmas *palmas, unsigned int base,
3753 unsigned int reg, unsigned int mask, unsigned int val)
3754{
3755 unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
3756 int slave_id = PALMAS_BASE_TO_SLAVE(base);
3757
3758 return regmap_update_bits(palmas->regmap[slave_id], addr, mask, val);
3759}
3760
3761static inline int palmas_irq_get_virq(struct palmas *palmas, int irq)
3762{
3763 return regmap_irq_get_virq(palmas->irq_data, irq);
3764}
3765
Laxman Dewangancc01b462013-08-13 13:23:11 +05303766
3767int palmas_ext_control_req_config(struct palmas *palmas,
3768 enum palmas_external_requestor_id ext_control_req_id,
3769 int ext_ctrl, bool enable);
3770
Graeme Gregory2945fbc2012-05-15 15:48:56 +09003771#endif /* __LINUX_MFD_PALMAS_H */