palmas.h 146.7 KB
Newer Older
G
Graeme Gregory 已提交
1 2 3
/*
 * TI Palmas
 *
4
 * Copyright 2011-2013 Texas Instruments Inc.
G
Graeme Gregory 已提交
5 6
 *
 * Author: Graeme Gregory <gg@slimlogic.co.uk>
7
 * Author: Ian Lartey <ian@slimlogic.co.uk>
G
Graeme Gregory 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under  the terms of the GNU General  Public License as published by the
 *  Free Software Foundation;  either version 2 of the License, or (at your
 *  option) any later version.
 *
 */

#ifndef __LINUX_MFD_PALMAS_H
#define __LINUX_MFD_PALMAS_H

#include <linux/usb/otg.h>
#include <linux/leds.h>
#include <linux/regmap.h>
#include <linux/regulator/driver.h>
G
Graeme Gregory 已提交
23 24
#include <linux/extcon.h>
#include <linux/usb/phy_companion.h>
G
Graeme Gregory 已提交
25 26 27

#define PALMAS_NUM_CLIENTS		3

28 29 30 31 32
/* The ID_REVISION NUMBERS */
#define PALMAS_CHIP_OLD_ID		0x0000
#define PALMAS_CHIP_ID			0xC035
#define PALMAS_CHIP_CHARGER_ID		0xC036

33 34
#define TPS65917_RESERVED		-1

35 36 37 38
#define is_palmas(a)	(((a) == PALMAS_CHIP_OLD_ID) || \
			((a) == PALMAS_CHIP_ID))
#define is_palmas_charger(a) ((a) == PALMAS_CHIP_CHARGER_ID)

39 40 41 42 43 44 45 46 47 48 49 50 51
/**
 * Palmas PMIC feature types
 *
 * PALMAS_PMIC_FEATURE_SMPS10_BOOST - used when the PMIC provides SMPS10_BOOST
 *	regulator.
 *
 * PALMAS_PMIC_HAS(b, f) - macro to check if a bandgap device is capable of a
 *	specific feature (above) or not. Return non-zero, if yes.
 */
#define PALMAS_PMIC_FEATURE_SMPS10_BOOST	BIT(0)
#define PALMAS_PMIC_HAS(b, f)			\
			((b)->features & PALMAS_PMIC_FEATURE_ ## f)

G
Graeme Gregory 已提交
52
struct palmas_pmic;
53 54 55
struct palmas_gpadc;
struct palmas_resource;
struct palmas_usb;
G
Graeme Gregory 已提交
56

G
Graeme Gregory 已提交
57 58 59 60 61 62
enum palmas_usb_state {
	PALMAS_USB_STATE_DISCONNECT,
	PALMAS_USB_STATE_VBUS,
	PALMAS_USB_STATE_ID,
};

G
Graeme Gregory 已提交
63 64 65 66 67 68 69 70 71
struct palmas {
	struct device *dev;

	struct i2c_client *i2c_clients[PALMAS_NUM_CLIENTS];
	struct regmap *regmap[PALMAS_NUM_CLIENTS];

	/* Stored chip id */
	int id;

72
	unsigned int features;
G
Graeme Gregory 已提交
73 74 75 76 77 78 79 80
	/* IRQ Data */
	int irq;
	u32 irq_mask;
	struct mutex irq_lock;
	struct regmap_irq_chip_data *irq_data;

	/* Child Devices */
	struct palmas_pmic *pmic;
81 82 83
	struct palmas_gpadc *gpadc;
	struct palmas_resource *resource;
	struct palmas_usb *usb;
G
Graeme Gregory 已提交
84 85 86 87 88 89 90

	/* GPIO MUXing */
	u8 gpio_muxed;
	u8 led_muxed;
	u8 pwm_muxed;
};

91 92 93 94 95 96 97 98 99
struct regs_info {
	char	*name;
	char	*sname;
	u8	vsel_addr;
	u8	ctrl_addr;
	u8	tstep_addr;
	int	sleep_id;
};

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
struct palmas_gpadc_platform_data {
	/* Channel 3 current source is only enabled during conversion */
	int ch3_current;

	/* Channel 0 current source can be used for battery detection.
	 * If used for battery detection this will cause a permanent current
	 * consumption depending on current level set here.
	 */
	int ch0_current;

	/* default BAT_REMOVAL_DAT setting on device probe */
	int bat_removal;

	/* Sets the START_POLARITY bit in the RT_CTRL register */
	int start_polarity;
};

G
Graeme Gregory 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
struct palmas_reg_init {
	/* warm_rest controls the voltage levels after a warm reset
	 *
	 * 0: reload default values from OTP on warm reset
	 * 1: maintain voltage from VSEL on warm reset
	 */
	int warm_reset;

	/* roof_floor controls whether the regulator uses the i2c style
	 * of DVS or uses the method where a GPIO or other control method is
	 * attached to the NSLEEP/ENABLE1/ENABLE2 pins
	 *
	 * For SMPS
	 *
	 * 0: i2c selection of voltage
	 * 1: pin selection of voltage.
	 *
	 * For LDO unused
	 */
	int roof_floor;

	/* sleep_mode is the mode loaded to MODE_SLEEP bits as defined in
	 * the data sheet.
	 *
	 * For SMPS
	 *
	 * 0: Off
	 * 1: AUTO
	 * 2: ECO
	 * 3: Forced PWM
	 *
	 * For LDO
	 *
	 * 0: Off
	 * 1: On
	 */
	int mode_sleep;

	/* voltage_sel is the bitfield loaded onto the SMPSX_VOLTAGE
	 * register. Set this is the default voltage set in OTP needs
	 * to be overridden.
	 */
	u8 vsel;

};

163 164 165 166 167 168 169 170 171 172 173
enum palmas_regulators {
	/* SMPS regulators */
	PALMAS_REG_SMPS12,
	PALMAS_REG_SMPS123,
	PALMAS_REG_SMPS3,
	PALMAS_REG_SMPS45,
	PALMAS_REG_SMPS457,
	PALMAS_REG_SMPS6,
	PALMAS_REG_SMPS7,
	PALMAS_REG_SMPS8,
	PALMAS_REG_SMPS9,
174 175
	PALMAS_REG_SMPS10_OUT2,
	PALMAS_REG_SMPS10_OUT1,
176 177 178 179 180 181 182 183 184 185 186 187
	/* LDO regulators */
	PALMAS_REG_LDO1,
	PALMAS_REG_LDO2,
	PALMAS_REG_LDO3,
	PALMAS_REG_LDO4,
	PALMAS_REG_LDO5,
	PALMAS_REG_LDO6,
	PALMAS_REG_LDO7,
	PALMAS_REG_LDO8,
	PALMAS_REG_LDO9,
	PALMAS_REG_LDOLN,
	PALMAS_REG_LDOUSB,
188 189 190 191 192 193
	/* External regulators */
	PALMAS_REG_REGEN1,
	PALMAS_REG_REGEN2,
	PALMAS_REG_REGEN3,
	PALMAS_REG_SYSEN1,
	PALMAS_REG_SYSEN2,
194 195 196 197
	/* Total number of regulators */
	PALMAS_NUM_REGS,
};

198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
enum tps65917_regulators {
	/* SMPS regulators */
	TPS65917_REG_SMPS1,
	TPS65917_REG_SMPS2,
	TPS65917_REG_SMPS3,
	TPS65917_REG_SMPS4,
	TPS65917_REG_SMPS5,
	/* LDO regulators */
	TPS65917_REG_LDO1,
	TPS65917_REG_LDO2,
	TPS65917_REG_LDO3,
	TPS65917_REG_LDO4,
	TPS65917_REG_LDO5,
	TPS65917_REG_REGEN1,
	TPS65917_REG_REGEN2,
	TPS65917_REG_REGEN3,

	/* Total number of regulators */
	TPS65917_NUM_REGS,
};

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
/* External controll signal name */
enum {
	PALMAS_EXT_CONTROL_ENABLE1      = 0x1,
	PALMAS_EXT_CONTROL_ENABLE2      = 0x2,
	PALMAS_EXT_CONTROL_NSLEEP       = 0x4,
};

/*
 * Palmas device resources can be controlled externally for
 * enabling/disabling it rather than register write through i2c.
 * Add the external controlled requestor ID for different resources.
 */
enum palmas_external_requestor_id {
	PALMAS_EXTERNAL_REQSTR_ID_REGEN1,
	PALMAS_EXTERNAL_REQSTR_ID_REGEN2,
	PALMAS_EXTERNAL_REQSTR_ID_SYSEN1,
	PALMAS_EXTERNAL_REQSTR_ID_SYSEN2,
	PALMAS_EXTERNAL_REQSTR_ID_CLK32KG,
	PALMAS_EXTERNAL_REQSTR_ID_CLK32KGAUDIO,
	PALMAS_EXTERNAL_REQSTR_ID_REGEN3,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS12,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS3,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS45,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS6,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS7,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS8,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS9,
	PALMAS_EXTERNAL_REQSTR_ID_SMPS10,
	PALMAS_EXTERNAL_REQSTR_ID_LDO1,
	PALMAS_EXTERNAL_REQSTR_ID_LDO2,
	PALMAS_EXTERNAL_REQSTR_ID_LDO3,
	PALMAS_EXTERNAL_REQSTR_ID_LDO4,
	PALMAS_EXTERNAL_REQSTR_ID_LDO5,
	PALMAS_EXTERNAL_REQSTR_ID_LDO6,
	PALMAS_EXTERNAL_REQSTR_ID_LDO7,
	PALMAS_EXTERNAL_REQSTR_ID_LDO8,
	PALMAS_EXTERNAL_REQSTR_ID_LDO9,
	PALMAS_EXTERNAL_REQSTR_ID_LDOLN,
	PALMAS_EXTERNAL_REQSTR_ID_LDOUSB,

	/* Last entry */
	PALMAS_EXTERNAL_REQSTR_ID_MAX,
};

263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
enum tps65917_external_requestor_id {
	TPS65917_EXTERNAL_REQSTR_ID_REGEN1,
	TPS65917_EXTERNAL_REQSTR_ID_REGEN2,
	TPS65917_EXTERNAL_REQSTR_ID_REGEN3,
	TPS65917_EXTERNAL_REQSTR_ID_SMPS1,
	TPS65917_EXTERNAL_REQSTR_ID_SMPS2,
	TPS65917_EXTERNAL_REQSTR_ID_SMPS3,
	TPS65917_EXTERNAL_REQSTR_ID_SMPS4,
	TPS65917_EXTERNAL_REQSTR_ID_SMPS5,
	TPS65917_EXTERNAL_REQSTR_ID_LDO1,
	TPS65917_EXTERNAL_REQSTR_ID_LDO2,
	TPS65917_EXTERNAL_REQSTR_ID_LDO3,
	TPS65917_EXTERNAL_REQSTR_ID_LDO4,
	TPS65917_EXTERNAL_REQSTR_ID_LDO5,
	/* Last entry */
	TPS65917_EXTERNAL_REQSTR_ID_MAX,
};

G
Graeme Gregory 已提交
281 282 283 284
struct palmas_pmic_platform_data {
	/* An array of pointers to regulator init data indexed by regulator
	 * ID
	 */
285
	struct regulator_init_data *reg_data[PALMAS_NUM_REGS];
G
Graeme Gregory 已提交
286 287 288 289

	/* An array of pointers to structures containing sleep mode and DVS
	 * configuration for regulators indexed by ID
	 */
290
	struct palmas_reg_init *reg_init[PALMAS_NUM_REGS];
G
Graeme Gregory 已提交
291 292 293

	/* use LDO6 for vibrator control */
	int ldo6_vibrator;
294 295 296

	/* Enable tracking mode of LDO8 */
	bool enable_ldo8_tracking;
297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
};

struct palmas_usb_platform_data {
	/* Do we enable the wakeup comparator on probe */
	int wakeup;
};

struct palmas_resource_platform_data {
	int regen1_mode_sleep;
	int regen2_mode_sleep;
	int sysen1_mode_sleep;
	int sysen2_mode_sleep;

	/* bitfield to be loaded to NSLEEP_RES_ASSIGN */
	u8 nsleep_res;
	/* bitfield to be loaded to NSLEEP_SMPS_ASSIGN */
	u8 nsleep_smps;
	/* bitfield to be loaded to NSLEEP_LDO_ASSIGN1 */
	u8 nsleep_ldo1;
	/* bitfield to be loaded to NSLEEP_LDO_ASSIGN2 */
	u8 nsleep_ldo2;

	/* bitfield to be loaded to ENABLE1_RES_ASSIGN */
	u8 enable1_res;
	/* bitfield to be loaded to ENABLE1_SMPS_ASSIGN */
	u8 enable1_smps;
	/* bitfield to be loaded to ENABLE1_LDO_ASSIGN1 */
	u8 enable1_ldo1;
	/* bitfield to be loaded to ENABLE1_LDO_ASSIGN2 */
	u8 enable1_ldo2;

	/* bitfield to be loaded to ENABLE2_RES_ASSIGN */
	u8 enable2_res;
	/* bitfield to be loaded to ENABLE2_SMPS_ASSIGN */
	u8 enable2_smps;
	/* bitfield to be loaded to ENABLE2_LDO_ASSIGN1 */
	u8 enable2_ldo1;
	/* bitfield to be loaded to ENABLE2_LDO_ASSIGN2 */
	u8 enable2_ldo2;
};
G
Graeme Gregory 已提交
337

338 339 340
struct palmas_clk_platform_data {
	int clk32kg_mode_sleep;
	int clk32kgaudio_mode_sleep;
G
Graeme Gregory 已提交
341 342 343
};

struct palmas_platform_data {
344
	int irq_flags;
G
Graeme Gregory 已提交
345 346 347 348 349 350 351 352 353 354 355
	int gpio_base;

	/* bit value to be loaded to the POWER_CTRL register */
	u8 power_ctrl;

	/*
	 * boolean to select if we want to configure muxing here
	 * then the two value to load into the registers if true
	 */
	int mux_from_pdata;
	u8 pad1, pad2;
B
Bill Huang 已提交
356
	bool pm_off;
G
Graeme Gregory 已提交
357 358

	struct palmas_pmic_platform_data *pmic_pdata;
359 360 361 362
	struct palmas_gpadc_platform_data *gpadc_pdata;
	struct palmas_usb_platform_data *usb_pdata;
	struct palmas_resource_platform_data *resource_pdata;
	struct palmas_clk_platform_data *clk_pdata;
G
Graeme Gregory 已提交
363 364
};

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
struct palmas_gpadc_calibration {
	s32 gain;
	s32 gain_error;
	s32 offset_error;
};

struct palmas_gpadc {
	struct device *dev;
	struct palmas *palmas;

	int ch3_current;
	int ch0_current;

	int gpadc_force;

	int bat_removal;

	struct mutex reading_lock;
	struct completion irq_complete;

	int eoc_sw_irq;

	struct palmas_gpadc_calibration *palmas_cal_tbl;

	int conv0_channel;
	int conv1_channel;
	int rt_channel;
};

struct palmas_gpadc_result {
	s32 raw_code;
	s32 corrected_code;
	s32 result;
};

#define PALMAS_MAX_CHANNELS 16

402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
/* Define the tps65917 IRQ numbers */
enum tps65917_irqs {
	/* INT1 registers */
	TPS65917_RESERVED1,
	TPS65917_PWRON_IRQ,
	TPS65917_LONG_PRESS_KEY_IRQ,
	TPS65917_RESERVED2,
	TPS65917_PWRDOWN_IRQ,
	TPS65917_HOTDIE_IRQ,
	TPS65917_VSYS_MON_IRQ,
	TPS65917_RESERVED3,
	/* INT2 registers */
	TPS65917_RESERVED4,
	TPS65917_OTP_ERROR_IRQ,
	TPS65917_WDT_IRQ,
	TPS65917_RESERVED5,
	TPS65917_RESET_IN_IRQ,
	TPS65917_FSD_IRQ,
	TPS65917_SHORT_IRQ,
	TPS65917_RESERVED6,
	/* INT3 registers */
	TPS65917_GPADC_AUTO_0_IRQ,
	TPS65917_GPADC_AUTO_1_IRQ,
	TPS65917_GPADC_EOC_SW_IRQ,
	TPS65917_RESREVED6,
	TPS65917_RESERVED7,
	TPS65917_RESERVED8,
	TPS65917_RESERVED9,
	TPS65917_VBUS_IRQ,
	/* INT4 registers */
	TPS65917_GPIO_0_IRQ,
	TPS65917_GPIO_1_IRQ,
	TPS65917_GPIO_2_IRQ,
	TPS65917_GPIO_3_IRQ,
	TPS65917_GPIO_4_IRQ,
	TPS65917_GPIO_5_IRQ,
	TPS65917_GPIO_6_IRQ,
	TPS65917_RESERVED10,
	/* Total Number IRQs */
	TPS65917_NUM_IRQ,
};

G
Graeme Gregory 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494
/* Define the palmas IRQ numbers */
enum palmas_irqs {
	/* INT1 registers */
	PALMAS_CHARG_DET_N_VBUS_OVV_IRQ,
	PALMAS_PWRON_IRQ,
	PALMAS_LONG_PRESS_KEY_IRQ,
	PALMAS_RPWRON_IRQ,
	PALMAS_PWRDOWN_IRQ,
	PALMAS_HOTDIE_IRQ,
	PALMAS_VSYS_MON_IRQ,
	PALMAS_VBAT_MON_IRQ,
	/* INT2 registers */
	PALMAS_RTC_ALARM_IRQ,
	PALMAS_RTC_TIMER_IRQ,
	PALMAS_WDT_IRQ,
	PALMAS_BATREMOVAL_IRQ,
	PALMAS_RESET_IN_IRQ,
	PALMAS_FBI_BB_IRQ,
	PALMAS_SHORT_IRQ,
	PALMAS_VAC_ACOK_IRQ,
	/* INT3 registers */
	PALMAS_GPADC_AUTO_0_IRQ,
	PALMAS_GPADC_AUTO_1_IRQ,
	PALMAS_GPADC_EOC_SW_IRQ,
	PALMAS_GPADC_EOC_RT_IRQ,
	PALMAS_ID_OTG_IRQ,
	PALMAS_ID_IRQ,
	PALMAS_VBUS_OTG_IRQ,
	PALMAS_VBUS_IRQ,
	/* INT4 registers */
	PALMAS_GPIO_0_IRQ,
	PALMAS_GPIO_1_IRQ,
	PALMAS_GPIO_2_IRQ,
	PALMAS_GPIO_3_IRQ,
	PALMAS_GPIO_4_IRQ,
	PALMAS_GPIO_5_IRQ,
	PALMAS_GPIO_6_IRQ,
	PALMAS_GPIO_7_IRQ,
	/* Total Number IRQs */
	PALMAS_NUM_IRQ,
};

struct palmas_pmic {
	struct palmas *palmas;
	struct device *dev;
	struct regulator_desc desc[PALMAS_NUM_REGS];
	struct regulator_dev *rdev[PALMAS_NUM_REGS];
	struct mutex mutex;

	int smps123;
	int smps457;
495
	int smps12;
G
Graeme Gregory 已提交
496

497 498 499
	int range[PALMAS_REG_SMPS10_OUT1];
	unsigned int ramp_delay[PALMAS_REG_SMPS10_OUT1];
	unsigned int current_reg_mode[PALMAS_REG_SMPS10_OUT1];
G
Graeme Gregory 已提交
500 501
};

502 503 504 505 506 507 508 509 510
struct palmas_resource {
	struct palmas *palmas;
	struct device *dev;
};

struct palmas_usb {
	struct palmas *palmas;
	struct device *dev;

511
	struct extcon_dev *edev;
512

G
Graeme Gregory 已提交
513 514 515 516
	int id_otg_irq;
	int id_irq;
	int vbus_otg_irq;
	int vbus_irq;
517

G
Graeme Gregory 已提交
518
	enum palmas_usb_state linkstat;
519 520 521
	int wakeup;
	bool enable_vbus_detection;
	bool enable_id_detection;
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
};

#define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator)

enum usb_irq_events {
	/* Wakeup events from INT3 */
	PALMAS_USB_ID_WAKEPUP,
	PALMAS_USB_VBUS_WAKEUP,

	/* ID_OTG_EVENTS */
	PALMAS_USB_ID_GND,
	N_PALMAS_USB_ID_GND,
	PALMAS_USB_ID_C,
	N_PALMAS_USB_ID_C,
	PALMAS_USB_ID_B,
	N_PALMAS_USB_ID_B,
	PALMAS_USB_ID_A,
	N_PALMAS_USB_ID_A,
	PALMAS_USB_ID_FLOAT,
	N_PALMAS_USB_ID_FLOAT,

	/* VBUS_OTG_EVENTS */
	PALMAS_USB_VB_SESS_END,
	N_PALMAS_USB_VB_SESS_END,
	PALMAS_USB_VB_SESS_VLD,
	N_PALMAS_USB_VB_SESS_VLD,
	PALMAS_USB_VA_SESS_VLD,
	N_PALMAS_USB_VA_SESS_VLD,
	PALMAS_USB_VA_VBUS_VLD,
	N_PALMAS_USB_VA_VBUS_VLD,
	PALMAS_USB_VADP_SNS,
	N_PALMAS_USB_VADP_SNS,
	PALMAS_USB_VADP_PRB,
	N_PALMAS_USB_VADP_PRB,
	PALMAS_USB_VOTG_SESS_VLD,
	N_PALMAS_USB_VOTG_SESS_VLD,
};

G
Graeme Gregory 已提交
560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
/* defines so we can store the mux settings */
#define PALMAS_GPIO_0_MUXED					(1 << 0)
#define PALMAS_GPIO_1_MUXED					(1 << 1)
#define PALMAS_GPIO_2_MUXED					(1 << 2)
#define PALMAS_GPIO_3_MUXED					(1 << 3)
#define PALMAS_GPIO_4_MUXED					(1 << 4)
#define PALMAS_GPIO_5_MUXED					(1 << 5)
#define PALMAS_GPIO_6_MUXED					(1 << 6)
#define PALMAS_GPIO_7_MUXED					(1 << 7)

#define PALMAS_LED1_MUXED					(1 << 0)
#define PALMAS_LED2_MUXED					(1 << 1)

#define PALMAS_PWM1_MUXED					(1 << 0)
#define PALMAS_PWM2_MUXED					(1 << 1)

/* helper macro to get correct slave number */
#define PALMAS_BASE_TO_SLAVE(x)		((x >> 8) - 1)
K
Keerthy 已提交
578
#define PALMAS_BASE_TO_REG(x, y)	((x & 0xFF) + y)
G
Graeme Gregory 已提交
579 580

/* Base addresses of IP blocks in Palmas */
K
Keerthy 已提交
581
#define PALMAS_SMPS_DVS_BASE					0x020
G
Graeme Gregory 已提交
582 583 584 585 586 587 588
#define PALMAS_RTC_BASE						0x100
#define PALMAS_VALIDITY_BASE					0x118
#define PALMAS_SMPS_BASE					0x120
#define PALMAS_LDO_BASE						0x150
#define PALMAS_DVFS_BASE					0x180
#define PALMAS_PMU_CONTROL_BASE					0x1A0
#define PALMAS_RESOURCE_BASE					0x1D4
589
#define PALMAS_PU_PD_OD_BASE					0x1F0
G
Graeme Gregory 已提交
590 591 592 593 594 595 596 597 598 599
#define PALMAS_LED_BASE						0x200
#define PALMAS_INTERRUPT_BASE					0x210
#define PALMAS_USB_OTG_BASE					0x250
#define PALMAS_VIBRATOR_BASE					0x270
#define PALMAS_GPIO_BASE					0x280
#define PALMAS_USB_BASE						0x290
#define PALMAS_GPADC_BASE					0x2C0
#define PALMAS_TRIM_GPADC_BASE					0x3CD

/* Registers for function RTC */
K
Keerthy 已提交
600 601 602 603 604 605 606 607 608 609 610 611 612
#define PALMAS_SECONDS_REG					0x00
#define PALMAS_MINUTES_REG					0x01
#define PALMAS_HOURS_REG					0x02
#define PALMAS_DAYS_REG						0x03
#define PALMAS_MONTHS_REG					0x04
#define PALMAS_YEARS_REG					0x05
#define PALMAS_WEEKS_REG					0x06
#define PALMAS_ALARM_SECONDS_REG				0x08
#define PALMAS_ALARM_MINUTES_REG				0x09
#define PALMAS_ALARM_HOURS_REG					0x0A
#define PALMAS_ALARM_DAYS_REG					0x0B
#define PALMAS_ALARM_MONTHS_REG					0x0C
#define PALMAS_ALARM_YEARS_REG					0x0D
G
Graeme Gregory 已提交
613 614 615 616 617 618 619 620 621 622
#define PALMAS_RTC_CTRL_REG					0x10
#define PALMAS_RTC_STATUS_REG					0x11
#define PALMAS_RTC_INTERRUPTS_REG				0x12
#define PALMAS_RTC_COMP_LSB_REG					0x13
#define PALMAS_RTC_COMP_MSB_REG					0x14
#define PALMAS_RTC_RES_PROG_REG					0x15
#define PALMAS_RTC_RESET_STATUS_REG				0x16

/* Bit definitions for SECONDS_REG */
#define PALMAS_SECONDS_REG_SEC1_MASK				0x70
K
Keerthy 已提交
623 624 625
#define PALMAS_SECONDS_REG_SEC1_SHIFT				0x04
#define PALMAS_SECONDS_REG_SEC0_MASK				0x0F
#define PALMAS_SECONDS_REG_SEC0_SHIFT				0x00
G
Graeme Gregory 已提交
626 627 628

/* Bit definitions for MINUTES_REG */
#define PALMAS_MINUTES_REG_MIN1_MASK				0x70
K
Keerthy 已提交
629 630 631
#define PALMAS_MINUTES_REG_MIN1_SHIFT				0x04
#define PALMAS_MINUTES_REG_MIN0_MASK				0x0F
#define PALMAS_MINUTES_REG_MIN0_SHIFT				0x00
G
Graeme Gregory 已提交
632 633 634

/* Bit definitions for HOURS_REG */
#define PALMAS_HOURS_REG_PM_NAM					0x80
K
Keerthy 已提交
635
#define PALMAS_HOURS_REG_PM_NAM_SHIFT				0x07
G
Graeme Gregory 已提交
636
#define PALMAS_HOURS_REG_HOUR1_MASK				0x30
K
Keerthy 已提交
637 638 639
#define PALMAS_HOURS_REG_HOUR1_SHIFT				0x04
#define PALMAS_HOURS_REG_HOUR0_MASK				0x0F
#define PALMAS_HOURS_REG_HOUR0_SHIFT				0x00
G
Graeme Gregory 已提交
640 641 642

/* Bit definitions for DAYS_REG */
#define PALMAS_DAYS_REG_DAY1_MASK				0x30
K
Keerthy 已提交
643 644 645
#define PALMAS_DAYS_REG_DAY1_SHIFT				0x04
#define PALMAS_DAYS_REG_DAY0_MASK				0x0F
#define PALMAS_DAYS_REG_DAY0_SHIFT				0x00
G
Graeme Gregory 已提交
646 647 648

/* Bit definitions for MONTHS_REG */
#define PALMAS_MONTHS_REG_MONTH1				0x10
K
Keerthy 已提交
649 650 651
#define PALMAS_MONTHS_REG_MONTH1_SHIFT				0x04
#define PALMAS_MONTHS_REG_MONTH0_MASK				0x0F
#define PALMAS_MONTHS_REG_MONTH0_SHIFT				0x00
G
Graeme Gregory 已提交
652 653 654

/* Bit definitions for YEARS_REG */
#define PALMAS_YEARS_REG_YEAR1_MASK				0xf0
K
Keerthy 已提交
655 656 657
#define PALMAS_YEARS_REG_YEAR1_SHIFT				0x04
#define PALMAS_YEARS_REG_YEAR0_MASK				0x0F
#define PALMAS_YEARS_REG_YEAR0_SHIFT				0x00
G
Graeme Gregory 已提交
658 659 660

/* Bit definitions for WEEKS_REG */
#define PALMAS_WEEKS_REG_WEEK_MASK				0x07
K
Keerthy 已提交
661
#define PALMAS_WEEKS_REG_WEEK_SHIFT				0x00
G
Graeme Gregory 已提交
662 663 664

/* Bit definitions for ALARM_SECONDS_REG */
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK		0x70
K
Keerthy 已提交
665 666 667
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_SHIFT		0x04
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_MASK		0x0F
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_SHIFT		0x00
G
Graeme Gregory 已提交
668 669 670

/* Bit definitions for ALARM_MINUTES_REG */
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK		0x70
K
Keerthy 已提交
671 672 673
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_SHIFT		0x04
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_MASK		0x0F
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_SHIFT		0x00
G
Graeme Gregory 已提交
674 675 676

/* Bit definitions for ALARM_HOURS_REG */
#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM			0x80
K
Keerthy 已提交
677
#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT		0x07
G
Graeme Gregory 已提交
678
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK			0x30
K
Keerthy 已提交
679 680 681
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_SHIFT		0x04
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_MASK			0x0F
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_SHIFT		0x00
G
Graeme Gregory 已提交
682 683 684

/* Bit definitions for ALARM_DAYS_REG */
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK			0x30
K
Keerthy 已提交
685 686 687
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_SHIFT			0x04
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_MASK			0x0F
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_SHIFT			0x00
G
Graeme Gregory 已提交
688 689 690

/* Bit definitions for ALARM_MONTHS_REG */
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1			0x10
K
Keerthy 已提交
691 692 693
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1_SHIFT		0x04
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_MASK		0x0F
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_SHIFT		0x00
G
Graeme Gregory 已提交
694 695 696

/* Bit definitions for ALARM_YEARS_REG */
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK			0xf0
K
Keerthy 已提交
697 698 699
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_SHIFT		0x04
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_MASK			0x0F
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_SHIFT		0x00
G
Graeme Gregory 已提交
700 701 702

/* Bit definitions for RTC_CTRL_REG */
#define PALMAS_RTC_CTRL_REG_RTC_V_OPT				0x80
K
Keerthy 已提交
703
#define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT			0x07
G
Graeme Gregory 已提交
704
#define PALMAS_RTC_CTRL_REG_GET_TIME				0x40
K
Keerthy 已提交
705
#define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT			0x06
G
Graeme Gregory 已提交
706
#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER			0x20
K
Keerthy 已提交
707
#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT		0x05
G
Graeme Gregory 已提交
708
#define PALMAS_RTC_CTRL_REG_TEST_MODE				0x10
K
Keerthy 已提交
709
#define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT			0x04
G
Graeme Gregory 已提交
710
#define PALMAS_RTC_CTRL_REG_MODE_12_24				0x08
K
Keerthy 已提交
711
#define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT			0x03
G
Graeme Gregory 已提交
712
#define PALMAS_RTC_CTRL_REG_AUTO_COMP				0x04
K
Keerthy 已提交
713
#define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT			0x02
G
Graeme Gregory 已提交
714
#define PALMAS_RTC_CTRL_REG_ROUND_30S				0x02
K
Keerthy 已提交
715
#define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT			0x01
G
Graeme Gregory 已提交
716
#define PALMAS_RTC_CTRL_REG_STOP_RTC				0x01
K
Keerthy 已提交
717
#define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT			0x00
G
Graeme Gregory 已提交
718 719 720

/* Bit definitions for RTC_STATUS_REG */
#define PALMAS_RTC_STATUS_REG_POWER_UP				0x80
K
Keerthy 已提交
721
#define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT			0x07
G
Graeme Gregory 已提交
722
#define PALMAS_RTC_STATUS_REG_ALARM				0x40
K
Keerthy 已提交
723
#define PALMAS_RTC_STATUS_REG_ALARM_SHIFT			0x06
G
Graeme Gregory 已提交
724
#define PALMAS_RTC_STATUS_REG_EVENT_1D				0x20
K
Keerthy 已提交
725
#define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT			0x05
G
Graeme Gregory 已提交
726
#define PALMAS_RTC_STATUS_REG_EVENT_1H				0x10
K
Keerthy 已提交
727
#define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT			0x04
G
Graeme Gregory 已提交
728
#define PALMAS_RTC_STATUS_REG_EVENT_1M				0x08
K
Keerthy 已提交
729
#define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT			0x03
G
Graeme Gregory 已提交
730
#define PALMAS_RTC_STATUS_REG_EVENT_1S				0x04
K
Keerthy 已提交
731
#define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT			0x02
G
Graeme Gregory 已提交
732
#define PALMAS_RTC_STATUS_REG_RUN				0x02
K
Keerthy 已提交
733
#define PALMAS_RTC_STATUS_REG_RUN_SHIFT				0x01
G
Graeme Gregory 已提交
734 735 736

/* Bit definitions for RTC_INTERRUPTS_REG */
#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN		0x10
K
Keerthy 已提交
737
#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT	0x04
G
Graeme Gregory 已提交
738
#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM			0x08
K
Keerthy 已提交
739
#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT		0x03
G
Graeme Gregory 已提交
740
#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER			0x04
K
Keerthy 已提交
741
#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT		0x02
G
Graeme Gregory 已提交
742
#define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK			0x03
K
Keerthy 已提交
743
#define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT			0x00
G
Graeme Gregory 已提交
744 745

/* Bit definitions for RTC_COMP_LSB_REG */
K
Keerthy 已提交
746 747
#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_MASK		0xFF
#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_SHIFT		0x00
G
Graeme Gregory 已提交
748 749

/* Bit definitions for RTC_COMP_MSB_REG */
K
Keerthy 已提交
750 751
#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_MASK		0xFF
#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_SHIFT		0x00
G
Graeme Gregory 已提交
752 753

/* Bit definitions for RTC_RES_PROG_REG */
K
Keerthy 已提交
754 755
#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_MASK		0x3F
#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_SHIFT		0x00
G
Graeme Gregory 已提交
756 757 758

/* Bit definitions for RTC_RESET_STATUS_REG */
#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS		0x01
K
Keerthy 已提交
759
#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT		0x00
G
Graeme Gregory 已提交
760 761

/* Registers for function BACKUP */
K
Keerthy 已提交
762 763 764 765 766 767 768 769
#define PALMAS_BACKUP0						0x00
#define PALMAS_BACKUP1						0x01
#define PALMAS_BACKUP2						0x02
#define PALMAS_BACKUP3						0x03
#define PALMAS_BACKUP4						0x04
#define PALMAS_BACKUP5						0x05
#define PALMAS_BACKUP6						0x06
#define PALMAS_BACKUP7						0x07
G
Graeme Gregory 已提交
770 771

/* Bit definitions for BACKUP0 */
K
Keerthy 已提交
772 773
#define PALMAS_BACKUP0_BACKUP_MASK				0xFF
#define PALMAS_BACKUP0_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
774 775

/* Bit definitions for BACKUP1 */
K
Keerthy 已提交
776 777
#define PALMAS_BACKUP1_BACKUP_MASK				0xFF
#define PALMAS_BACKUP1_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
778 779

/* Bit definitions for BACKUP2 */
K
Keerthy 已提交
780 781
#define PALMAS_BACKUP2_BACKUP_MASK				0xFF
#define PALMAS_BACKUP2_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
782 783

/* Bit definitions for BACKUP3 */
K
Keerthy 已提交
784 785
#define PALMAS_BACKUP3_BACKUP_MASK				0xFF
#define PALMAS_BACKUP3_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
786 787

/* Bit definitions for BACKUP4 */
K
Keerthy 已提交
788 789
#define PALMAS_BACKUP4_BACKUP_MASK				0xFF
#define PALMAS_BACKUP4_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
790 791

/* Bit definitions for BACKUP5 */
K
Keerthy 已提交
792 793
#define PALMAS_BACKUP5_BACKUP_MASK				0xFF
#define PALMAS_BACKUP5_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
794 795

/* Bit definitions for BACKUP6 */
K
Keerthy 已提交
796 797
#define PALMAS_BACKUP6_BACKUP_MASK				0xFF
#define PALMAS_BACKUP6_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
798 799

/* Bit definitions for BACKUP7 */
K
Keerthy 已提交
800 801
#define PALMAS_BACKUP7_BACKUP_MASK				0xFF
#define PALMAS_BACKUP7_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
802 803

/* Registers for function SMPS */
K
Keerthy 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817
#define PALMAS_SMPS12_CTRL					0x00
#define PALMAS_SMPS12_TSTEP					0x01
#define PALMAS_SMPS12_FORCE					0x02
#define PALMAS_SMPS12_VOLTAGE					0x03
#define PALMAS_SMPS3_CTRL					0x04
#define PALMAS_SMPS3_VOLTAGE					0x07
#define PALMAS_SMPS45_CTRL					0x08
#define PALMAS_SMPS45_TSTEP					0x09
#define PALMAS_SMPS45_FORCE					0x0A
#define PALMAS_SMPS45_VOLTAGE					0x0B
#define PALMAS_SMPS6_CTRL					0x0C
#define PALMAS_SMPS6_TSTEP					0x0D
#define PALMAS_SMPS6_FORCE					0x0E
#define PALMAS_SMPS6_VOLTAGE					0x0F
G
Graeme Gregory 已提交
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
#define PALMAS_SMPS7_CTRL					0x10
#define PALMAS_SMPS7_VOLTAGE					0x13
#define PALMAS_SMPS8_CTRL					0x14
#define PALMAS_SMPS8_TSTEP					0x15
#define PALMAS_SMPS8_FORCE					0x16
#define PALMAS_SMPS8_VOLTAGE					0x17
#define PALMAS_SMPS9_CTRL					0x18
#define PALMAS_SMPS9_VOLTAGE					0x1B
#define PALMAS_SMPS10_CTRL					0x1C
#define PALMAS_SMPS10_STATUS					0x1F
#define PALMAS_SMPS_CTRL					0x24
#define PALMAS_SMPS_PD_CTRL					0x25
#define PALMAS_SMPS_DITHER_EN					0x26
#define PALMAS_SMPS_THERMAL_EN					0x27
#define PALMAS_SMPS_THERMAL_STATUS				0x28
#define PALMAS_SMPS_SHORT_STATUS				0x29
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN			0x2A
#define PALMAS_SMPS_POWERGOOD_MASK1				0x2B
#define PALMAS_SMPS_POWERGOOD_MASK2				0x2C

/* Bit definitions for SMPS12_CTRL */
#define PALMAS_SMPS12_CTRL_WR_S					0x80
K
Keerthy 已提交
840
#define PALMAS_SMPS12_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
841
#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN			0x40
K
Keerthy 已提交
842
#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
843
#define PALMAS_SMPS12_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
844
#define PALMAS_SMPS12_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
845
#define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
846
#define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
847
#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
848
#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
849 850 851

/* Bit definitions for SMPS12_TSTEP */
#define PALMAS_SMPS12_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
852
#define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
853 854 855

/* Bit definitions for SMPS12_FORCE */
#define PALMAS_SMPS12_FORCE_CMD					0x80
K
Keerthy 已提交
856 857 858
#define PALMAS_SMPS12_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS12_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS12_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
859 860 861

/* Bit definitions for SMPS12_VOLTAGE */
#define PALMAS_SMPS12_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
862 863 864
#define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS12_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT			0x00
G
Graeme Gregory 已提交
865 866 867

/* Bit definitions for SMPS3_CTRL */
#define PALMAS_SMPS3_CTRL_WR_S					0x80
K
Keerthy 已提交
868
#define PALMAS_SMPS3_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
869
#define PALMAS_SMPS3_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
870
#define PALMAS_SMPS3_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
871
#define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
872
#define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
873
#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
874
#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
875 876 877

/* Bit definitions for SMPS3_VOLTAGE */
#define PALMAS_SMPS3_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
878 879 880
#define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS3_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
881 882 883

/* Bit definitions for SMPS45_CTRL */
#define PALMAS_SMPS45_CTRL_WR_S					0x80
K
Keerthy 已提交
884
#define PALMAS_SMPS45_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
885
#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN			0x40
K
Keerthy 已提交
886
#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
887
#define PALMAS_SMPS45_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
888
#define PALMAS_SMPS45_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
889
#define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
890
#define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
891
#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
892
#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
893 894 895

/* Bit definitions for SMPS45_TSTEP */
#define PALMAS_SMPS45_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
896
#define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
897 898 899

/* Bit definitions for SMPS45_FORCE */
#define PALMAS_SMPS45_FORCE_CMD					0x80
K
Keerthy 已提交
900 901 902
#define PALMAS_SMPS45_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS45_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS45_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
903 904 905

/* Bit definitions for SMPS45_VOLTAGE */
#define PALMAS_SMPS45_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
906 907 908
#define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS45_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT			0x00
G
Graeme Gregory 已提交
909 910 911

/* Bit definitions for SMPS6_CTRL */
#define PALMAS_SMPS6_CTRL_WR_S					0x80
K
Keerthy 已提交
912
#define PALMAS_SMPS6_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
913
#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN				0x40
K
Keerthy 已提交
914
#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
915
#define PALMAS_SMPS6_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
916
#define PALMAS_SMPS6_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
917
#define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
918
#define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
919
#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
920
#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
921 922 923

/* Bit definitions for SMPS6_TSTEP */
#define PALMAS_SMPS6_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
924
#define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
925 926 927

/* Bit definitions for SMPS6_FORCE */
#define PALMAS_SMPS6_FORCE_CMD					0x80
K
Keerthy 已提交
928 929 930
#define PALMAS_SMPS6_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS6_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS6_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
931 932 933

/* Bit definitions for SMPS6_VOLTAGE */
#define PALMAS_SMPS6_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
934 935 936
#define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS6_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
937 938 939

/* Bit definitions for SMPS7_CTRL */
#define PALMAS_SMPS7_CTRL_WR_S					0x80
K
Keerthy 已提交
940
#define PALMAS_SMPS7_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
941
#define PALMAS_SMPS7_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
942
#define PALMAS_SMPS7_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
943
#define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
944
#define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
945
#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
946
#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
947 948 949

/* Bit definitions for SMPS7_VOLTAGE */
#define PALMAS_SMPS7_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
950 951 952
#define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS7_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
953 954 955

/* Bit definitions for SMPS8_CTRL */
#define PALMAS_SMPS8_CTRL_WR_S					0x80
K
Keerthy 已提交
956
#define PALMAS_SMPS8_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
957
#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN				0x40
K
Keerthy 已提交
958
#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
959
#define PALMAS_SMPS8_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
960
#define PALMAS_SMPS8_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
961
#define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
962
#define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
963
#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
964
#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
965 966 967

/* Bit definitions for SMPS8_TSTEP */
#define PALMAS_SMPS8_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
968
#define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
969 970 971

/* Bit definitions for SMPS8_FORCE */
#define PALMAS_SMPS8_FORCE_CMD					0x80
K
Keerthy 已提交
972 973 974
#define PALMAS_SMPS8_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS8_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS8_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
975 976 977

/* Bit definitions for SMPS8_VOLTAGE */
#define PALMAS_SMPS8_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
978 979 980
#define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS8_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
981 982 983

/* Bit definitions for SMPS9_CTRL */
#define PALMAS_SMPS9_CTRL_WR_S					0x80
K
Keerthy 已提交
984
#define PALMAS_SMPS9_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
985
#define PALMAS_SMPS9_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
986
#define PALMAS_SMPS9_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
987
#define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
988
#define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
989
#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
990
#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
991 992 993

/* Bit definitions for SMPS9_VOLTAGE */
#define PALMAS_SMPS9_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
994 995 996
#define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS9_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
997 998 999

/* Bit definitions for SMPS10_CTRL */
#define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK			0xf0
K
Keerthy 已提交
1000 1001 1002
#define PALMAS_SMPS10_CTRL_MODE_SLEEP_SHIFT			0x04
#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_MASK			0x0F
#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1003 1004

/* Bit definitions for SMPS10_STATUS */
K
Keerthy 已提交
1005 1006
#define PALMAS_SMPS10_STATUS_STATUS_MASK			0x0F
#define PALMAS_SMPS10_STATUS_STATUS_SHIFT			0x00
G
Graeme Gregory 已提交
1007 1008 1009

/* Bit definitions for SMPS_CTRL */
#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN			0x20
K
Keerthy 已提交
1010
#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT		0x05
G
Graeme Gregory 已提交
1011
#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN			0x10
K
Keerthy 已提交
1012
#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT		0x04
G
Graeme Gregory 已提交
1013
#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK			0x0c
K
Keerthy 已提交
1014
#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT		0x02
G
Graeme Gregory 已提交
1015
#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK		0x03
K
Keerthy 已提交
1016
#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT		0x00
G
Graeme Gregory 已提交
1017 1018 1019

/* Bit definitions for SMPS_PD_CTRL */
#define PALMAS_SMPS_PD_CTRL_SMPS9				0x40
K
Keerthy 已提交
1020
#define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT				0x06
G
Graeme Gregory 已提交
1021
#define PALMAS_SMPS_PD_CTRL_SMPS8				0x20
K
Keerthy 已提交
1022
#define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT				0x05
G
Graeme Gregory 已提交
1023
#define PALMAS_SMPS_PD_CTRL_SMPS7				0x10
K
Keerthy 已提交
1024
#define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT				0x04
G
Graeme Gregory 已提交
1025
#define PALMAS_SMPS_PD_CTRL_SMPS6				0x08
K
Keerthy 已提交
1026
#define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT				0x03
G
Graeme Gregory 已提交
1027
#define PALMAS_SMPS_PD_CTRL_SMPS45				0x04
K
Keerthy 已提交
1028
#define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1029
#define PALMAS_SMPS_PD_CTRL_SMPS3				0x02
K
Keerthy 已提交
1030
#define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT				0x01
G
Graeme Gregory 已提交
1031
#define PALMAS_SMPS_PD_CTRL_SMPS12				0x01
K
Keerthy 已提交
1032
#define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1033 1034 1035

/* Bit definitions for SMPS_THERMAL_EN */
#define PALMAS_SMPS_THERMAL_EN_SMPS9				0x40
K
Keerthy 已提交
1036
#define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1037
#define PALMAS_SMPS_THERMAL_EN_SMPS8				0x20
K
Keerthy 已提交
1038
#define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1039
#define PALMAS_SMPS_THERMAL_EN_SMPS6				0x08
K
Keerthy 已提交
1040
#define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1041
#define PALMAS_SMPS_THERMAL_EN_SMPS457				0x04
K
Keerthy 已提交
1042
#define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT			0x02
G
Graeme Gregory 已提交
1043
#define PALMAS_SMPS_THERMAL_EN_SMPS123				0x01
K
Keerthy 已提交
1044
#define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT			0x00
G
Graeme Gregory 已提交
1045 1046 1047

/* Bit definitions for SMPS_THERMAL_STATUS */
#define PALMAS_SMPS_THERMAL_STATUS_SMPS9			0x40
K
Keerthy 已提交
1048
#define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1049
#define PALMAS_SMPS_THERMAL_STATUS_SMPS8			0x20
K
Keerthy 已提交
1050
#define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1051
#define PALMAS_SMPS_THERMAL_STATUS_SMPS6			0x08
K
Keerthy 已提交
1052
#define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1053
#define PALMAS_SMPS_THERMAL_STATUS_SMPS457			0x04
K
Keerthy 已提交
1054
#define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT		0x02
G
Graeme Gregory 已提交
1055
#define PALMAS_SMPS_THERMAL_STATUS_SMPS123			0x01
K
Keerthy 已提交
1056
#define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT		0x00
G
Graeme Gregory 已提交
1057 1058 1059

/* Bit definitions for SMPS_SHORT_STATUS */
#define PALMAS_SMPS_SHORT_STATUS_SMPS10				0x80
K
Keerthy 已提交
1060
#define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1061
#define PALMAS_SMPS_SHORT_STATUS_SMPS9				0x40
K
Keerthy 已提交
1062
#define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1063
#define PALMAS_SMPS_SHORT_STATUS_SMPS8				0x20
K
Keerthy 已提交
1064
#define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1065
#define PALMAS_SMPS_SHORT_STATUS_SMPS7				0x10
K
Keerthy 已提交
1066
#define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1067
#define PALMAS_SMPS_SHORT_STATUS_SMPS6				0x08
K
Keerthy 已提交
1068
#define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1069
#define PALMAS_SMPS_SHORT_STATUS_SMPS45				0x04
K
Keerthy 已提交
1070
#define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1071
#define PALMAS_SMPS_SHORT_STATUS_SMPS3				0x02
K
Keerthy 已提交
1072
#define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1073
#define PALMAS_SMPS_SHORT_STATUS_SMPS12				0x01
K
Keerthy 已提交
1074
#define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1075 1076 1077

/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9		0x40
K
Keerthy 已提交
1078
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT	0x06
G
Graeme Gregory 已提交
1079
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8		0x20
K
Keerthy 已提交
1080
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT	0x05
G
Graeme Gregory 已提交
1081
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7		0x10
K
Keerthy 已提交
1082
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT	0x04
G
Graeme Gregory 已提交
1083
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6		0x08
K
Keerthy 已提交
1084
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT	0x03
G
Graeme Gregory 已提交
1085
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45		0x04
K
Keerthy 已提交
1086
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT	0x02
G
Graeme Gregory 已提交
1087
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3		0x02
K
Keerthy 已提交
1088
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT	0x01
G
Graeme Gregory 已提交
1089
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12		0x01
K
Keerthy 已提交
1090
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT	0x00
G
Graeme Gregory 已提交
1091 1092 1093

/* Bit definitions for SMPS_POWERGOOD_MASK1 */
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10			0x80
K
Keerthy 已提交
1094
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT		0x07
G
Graeme Gregory 已提交
1095
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9			0x40
K
Keerthy 已提交
1096
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1097
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8			0x20
K
Keerthy 已提交
1098
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1099
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7			0x10
K
Keerthy 已提交
1100
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1101
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6			0x08
K
Keerthy 已提交
1102
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1103
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45			0x04
K
Keerthy 已提交
1104
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT		0x02
G
Graeme Gregory 已提交
1105
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3			0x02
K
Keerthy 已提交
1106
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1107
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12			0x01
K
Keerthy 已提交
1108
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT		0x00
G
Graeme Gregory 已提交
1109 1110 1111

/* Bit definitions for SMPS_POWERGOOD_MASK2 */
#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT	0x80
K
Keerthy 已提交
1112
#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT	0x07
G
Graeme Gregory 已提交
1113
#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7			0x04
K
Keerthy 已提交
1114
#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT		0x02
G
Graeme Gregory 已提交
1115
#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS			0x02
K
Keerthy 已提交
1116
#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT			0x01
G
Graeme Gregory 已提交
1117
#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK			0x01
K
Keerthy 已提交
1118
#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT			0x00
G
Graeme Gregory 已提交
1119 1120

/* Registers for function LDO */
K
Keerthy 已提交
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136
#define PALMAS_LDO1_CTRL					0x00
#define PALMAS_LDO1_VOLTAGE					0x01
#define PALMAS_LDO2_CTRL					0x02
#define PALMAS_LDO2_VOLTAGE					0x03
#define PALMAS_LDO3_CTRL					0x04
#define PALMAS_LDO3_VOLTAGE					0x05
#define PALMAS_LDO4_CTRL					0x06
#define PALMAS_LDO4_VOLTAGE					0x07
#define PALMAS_LDO5_CTRL					0x08
#define PALMAS_LDO5_VOLTAGE					0x09
#define PALMAS_LDO6_CTRL					0x0A
#define PALMAS_LDO6_VOLTAGE					0x0B
#define PALMAS_LDO7_CTRL					0x0C
#define PALMAS_LDO7_VOLTAGE					0x0D
#define PALMAS_LDO8_CTRL					0x0E
#define PALMAS_LDO8_VOLTAGE					0x0F
G
Graeme Gregory 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
#define PALMAS_LDO9_CTRL					0x10
#define PALMAS_LDO9_VOLTAGE					0x11
#define PALMAS_LDOLN_CTRL					0x12
#define PALMAS_LDOLN_VOLTAGE					0x13
#define PALMAS_LDOUSB_CTRL					0x14
#define PALMAS_LDOUSB_VOLTAGE					0x15
#define PALMAS_LDO_CTRL						0x1A
#define PALMAS_LDO_PD_CTRL1					0x1B
#define PALMAS_LDO_PD_CTRL2					0x1C
#define PALMAS_LDO_SHORT_STATUS1				0x1D
#define PALMAS_LDO_SHORT_STATUS2				0x1E

/* Bit definitions for LDO1_CTRL */
#define PALMAS_LDO1_CTRL_WR_S					0x80
K
Keerthy 已提交
1151
#define PALMAS_LDO1_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1152
#define PALMAS_LDO1_CTRL_STATUS					0x10
K
Keerthy 已提交
1153
#define PALMAS_LDO1_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1154
#define PALMAS_LDO1_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1155
#define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1156
#define PALMAS_LDO1_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1157
#define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1158 1159

/* Bit definitions for LDO1_VOLTAGE */
K
Keerthy 已提交
1160 1161
#define PALMAS_LDO1_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1162 1163 1164

/* Bit definitions for LDO2_CTRL */
#define PALMAS_LDO2_CTRL_WR_S					0x80
K
Keerthy 已提交
1165
#define PALMAS_LDO2_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1166
#define PALMAS_LDO2_CTRL_STATUS					0x10
K
Keerthy 已提交
1167
#define PALMAS_LDO2_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1168
#define PALMAS_LDO2_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1169
#define PALMAS_LDO2_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1170
#define PALMAS_LDO2_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1171
#define PALMAS_LDO2_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1172 1173

/* Bit definitions for LDO2_VOLTAGE */
K
Keerthy 已提交
1174 1175
#define PALMAS_LDO2_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO2_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1176 1177 1178

/* Bit definitions for LDO3_CTRL */
#define PALMAS_LDO3_CTRL_WR_S					0x80
K
Keerthy 已提交
1179
#define PALMAS_LDO3_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1180
#define PALMAS_LDO3_CTRL_STATUS					0x10
K
Keerthy 已提交
1181
#define PALMAS_LDO3_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1182
#define PALMAS_LDO3_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1183
#define PALMAS_LDO3_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1184
#define PALMAS_LDO3_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1185
#define PALMAS_LDO3_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1186 1187

/* Bit definitions for LDO3_VOLTAGE */
K
Keerthy 已提交
1188 1189
#define PALMAS_LDO3_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO3_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1190 1191 1192

/* Bit definitions for LDO4_CTRL */
#define PALMAS_LDO4_CTRL_WR_S					0x80
K
Keerthy 已提交
1193
#define PALMAS_LDO4_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1194
#define PALMAS_LDO4_CTRL_STATUS					0x10
K
Keerthy 已提交
1195
#define PALMAS_LDO4_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1196
#define PALMAS_LDO4_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1197
#define PALMAS_LDO4_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1198
#define PALMAS_LDO4_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1199
#define PALMAS_LDO4_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1200 1201

/* Bit definitions for LDO4_VOLTAGE */
K
Keerthy 已提交
1202 1203
#define PALMAS_LDO4_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO4_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1204 1205 1206

/* Bit definitions for LDO5_CTRL */
#define PALMAS_LDO5_CTRL_WR_S					0x80
K
Keerthy 已提交
1207
#define PALMAS_LDO5_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1208
#define PALMAS_LDO5_CTRL_STATUS					0x10
K
Keerthy 已提交
1209
#define PALMAS_LDO5_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1210
#define PALMAS_LDO5_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1211
#define PALMAS_LDO5_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1212
#define PALMAS_LDO5_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1213
#define PALMAS_LDO5_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1214 1215

/* Bit definitions for LDO5_VOLTAGE */
K
Keerthy 已提交
1216 1217
#define PALMAS_LDO5_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO5_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1218 1219 1220

/* Bit definitions for LDO6_CTRL */
#define PALMAS_LDO6_CTRL_WR_S					0x80
K
Keerthy 已提交
1221
#define PALMAS_LDO6_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1222
#define PALMAS_LDO6_CTRL_LDO_VIB_EN				0x40
K
Keerthy 已提交
1223
#define PALMAS_LDO6_CTRL_LDO_VIB_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1224
#define PALMAS_LDO6_CTRL_STATUS					0x10
K
Keerthy 已提交
1225
#define PALMAS_LDO6_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1226
#define PALMAS_LDO6_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1227
#define PALMAS_LDO6_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1228
#define PALMAS_LDO6_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1229
#define PALMAS_LDO6_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1230 1231

/* Bit definitions for LDO6_VOLTAGE */
K
Keerthy 已提交
1232 1233
#define PALMAS_LDO6_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO6_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1234 1235 1236

/* Bit definitions for LDO7_CTRL */
#define PALMAS_LDO7_CTRL_WR_S					0x80
K
Keerthy 已提交
1237
#define PALMAS_LDO7_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1238
#define PALMAS_LDO7_CTRL_STATUS					0x10
K
Keerthy 已提交
1239
#define PALMAS_LDO7_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1240
#define PALMAS_LDO7_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1241
#define PALMAS_LDO7_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1242
#define PALMAS_LDO7_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1243
#define PALMAS_LDO7_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1244 1245

/* Bit definitions for LDO7_VOLTAGE */
K
Keerthy 已提交
1246 1247
#define PALMAS_LDO7_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO7_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1248 1249 1250

/* Bit definitions for LDO8_CTRL */
#define PALMAS_LDO8_CTRL_WR_S					0x80
K
Keerthy 已提交
1251
#define PALMAS_LDO8_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1252
#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN			0x40
K
Keerthy 已提交
1253
#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1254
#define PALMAS_LDO8_CTRL_STATUS					0x10
K
Keerthy 已提交
1255
#define PALMAS_LDO8_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1256
#define PALMAS_LDO8_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1257
#define PALMAS_LDO8_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1258
#define PALMAS_LDO8_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1259
#define PALMAS_LDO8_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1260 1261

/* Bit definitions for LDO8_VOLTAGE */
K
Keerthy 已提交
1262 1263
#define PALMAS_LDO8_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO8_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1264 1265 1266

/* Bit definitions for LDO9_CTRL */
#define PALMAS_LDO9_CTRL_WR_S					0x80
K
Keerthy 已提交
1267
#define PALMAS_LDO9_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1268
#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN				0x40
K
Keerthy 已提交
1269
#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1270
#define PALMAS_LDO9_CTRL_STATUS					0x10
K
Keerthy 已提交
1271
#define PALMAS_LDO9_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1272
#define PALMAS_LDO9_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1273
#define PALMAS_LDO9_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1274
#define PALMAS_LDO9_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1275
#define PALMAS_LDO9_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1276 1277

/* Bit definitions for LDO9_VOLTAGE */
K
Keerthy 已提交
1278 1279
#define PALMAS_LDO9_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO9_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1280 1281 1282

/* Bit definitions for LDOLN_CTRL */
#define PALMAS_LDOLN_CTRL_WR_S					0x80
K
Keerthy 已提交
1283
#define PALMAS_LDOLN_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1284
#define PALMAS_LDOLN_CTRL_STATUS				0x10
K
Keerthy 已提交
1285
#define PALMAS_LDOLN_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1286
#define PALMAS_LDOLN_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1287
#define PALMAS_LDOLN_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1288
#define PALMAS_LDOLN_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1289
#define PALMAS_LDOLN_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1290 1291

/* Bit definitions for LDOLN_VOLTAGE */
K
Keerthy 已提交
1292 1293
#define PALMAS_LDOLN_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDOLN_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1294 1295 1296

/* Bit definitions for LDOUSB_CTRL */
#define PALMAS_LDOUSB_CTRL_WR_S					0x80
K
Keerthy 已提交
1297
#define PALMAS_LDOUSB_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1298
#define PALMAS_LDOUSB_CTRL_STATUS				0x10
K
Keerthy 已提交
1299
#define PALMAS_LDOUSB_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1300
#define PALMAS_LDOUSB_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1301
#define PALMAS_LDOUSB_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1302
#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1303
#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1304 1305

/* Bit definitions for LDOUSB_VOLTAGE */
K
Keerthy 已提交
1306 1307
#define PALMAS_LDOUSB_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDOUSB_VOLTAGE_VSEL_SHIFT			0x00
G
Graeme Gregory 已提交
1308 1309 1310

/* Bit definitions for LDO_CTRL */
#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS			0x01
K
Keerthy 已提交
1311
#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS_SHIFT		0x00
G
Graeme Gregory 已提交
1312 1313 1314

/* Bit definitions for LDO_PD_CTRL1 */
#define PALMAS_LDO_PD_CTRL1_LDO8				0x80
K
Keerthy 已提交
1315
#define PALMAS_LDO_PD_CTRL1_LDO8_SHIFT				0x07
G
Graeme Gregory 已提交
1316
#define PALMAS_LDO_PD_CTRL1_LDO7				0x40
K
Keerthy 已提交
1317
#define PALMAS_LDO_PD_CTRL1_LDO7_SHIFT				0x06
G
Graeme Gregory 已提交
1318
#define PALMAS_LDO_PD_CTRL1_LDO6				0x20
K
Keerthy 已提交
1319
#define PALMAS_LDO_PD_CTRL1_LDO6_SHIFT				0x05
G
Graeme Gregory 已提交
1320
#define PALMAS_LDO_PD_CTRL1_LDO5				0x10
K
Keerthy 已提交
1321
#define PALMAS_LDO_PD_CTRL1_LDO5_SHIFT				0x04
G
Graeme Gregory 已提交
1322
#define PALMAS_LDO_PD_CTRL1_LDO4				0x08
K
Keerthy 已提交
1323
#define PALMAS_LDO_PD_CTRL1_LDO4_SHIFT				0x03
G
Graeme Gregory 已提交
1324
#define PALMAS_LDO_PD_CTRL1_LDO3				0x04
K
Keerthy 已提交
1325
#define PALMAS_LDO_PD_CTRL1_LDO3_SHIFT				0x02
G
Graeme Gregory 已提交
1326
#define PALMAS_LDO_PD_CTRL1_LDO2				0x02
K
Keerthy 已提交
1327
#define PALMAS_LDO_PD_CTRL1_LDO2_SHIFT				0x01
G
Graeme Gregory 已提交
1328
#define PALMAS_LDO_PD_CTRL1_LDO1				0x01
K
Keerthy 已提交
1329
#define PALMAS_LDO_PD_CTRL1_LDO1_SHIFT				0x00
G
Graeme Gregory 已提交
1330 1331 1332

/* Bit definitions for LDO_PD_CTRL2 */
#define PALMAS_LDO_PD_CTRL2_LDOUSB				0x04
K
Keerthy 已提交
1333
#define PALMAS_LDO_PD_CTRL2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1334
#define PALMAS_LDO_PD_CTRL2_LDOLN				0x02
K
Keerthy 已提交
1335
#define PALMAS_LDO_PD_CTRL2_LDOLN_SHIFT				0x01
G
Graeme Gregory 已提交
1336
#define PALMAS_LDO_PD_CTRL2_LDO9				0x01
K
Keerthy 已提交
1337
#define PALMAS_LDO_PD_CTRL2_LDO9_SHIFT				0x00
G
Graeme Gregory 已提交
1338 1339 1340

/* Bit definitions for LDO_SHORT_STATUS1 */
#define PALMAS_LDO_SHORT_STATUS1_LDO8				0x80
K
Keerthy 已提交
1341
#define PALMAS_LDO_SHORT_STATUS1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1342
#define PALMAS_LDO_SHORT_STATUS1_LDO7				0x40
K
Keerthy 已提交
1343
#define PALMAS_LDO_SHORT_STATUS1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1344
#define PALMAS_LDO_SHORT_STATUS1_LDO6				0x20
K
Keerthy 已提交
1345
#define PALMAS_LDO_SHORT_STATUS1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1346
#define PALMAS_LDO_SHORT_STATUS1_LDO5				0x10
K
Keerthy 已提交
1347
#define PALMAS_LDO_SHORT_STATUS1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1348
#define PALMAS_LDO_SHORT_STATUS1_LDO4				0x08
K
Keerthy 已提交
1349
#define PALMAS_LDO_SHORT_STATUS1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1350
#define PALMAS_LDO_SHORT_STATUS1_LDO3				0x04
K
Keerthy 已提交
1351
#define PALMAS_LDO_SHORT_STATUS1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1352
#define PALMAS_LDO_SHORT_STATUS1_LDO2				0x02
K
Keerthy 已提交
1353
#define PALMAS_LDO_SHORT_STATUS1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1354
#define PALMAS_LDO_SHORT_STATUS1_LDO1				0x01
K
Keerthy 已提交
1355
#define PALMAS_LDO_SHORT_STATUS1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1356 1357 1358

/* Bit definitions for LDO_SHORT_STATUS2 */
#define PALMAS_LDO_SHORT_STATUS2_LDOVANA			0x08
K
Keerthy 已提交
1359
#define PALMAS_LDO_SHORT_STATUS2_LDOVANA_SHIFT			0x03
G
Graeme Gregory 已提交
1360
#define PALMAS_LDO_SHORT_STATUS2_LDOUSB				0x04
K
Keerthy 已提交
1361
#define PALMAS_LDO_SHORT_STATUS2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1362
#define PALMAS_LDO_SHORT_STATUS2_LDOLN				0x02
K
Keerthy 已提交
1363
#define PALMAS_LDO_SHORT_STATUS2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1364
#define PALMAS_LDO_SHORT_STATUS2_LDO9				0x01
K
Keerthy 已提交
1365
#define PALMAS_LDO_SHORT_STATUS2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1366 1367

/* Registers for function PMU_CONTROL */
K
Keerthy 已提交
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
#define PALMAS_DEV_CTRL						0x00
#define PALMAS_POWER_CTRL					0x01
#define PALMAS_VSYS_LO						0x02
#define PALMAS_VSYS_MON						0x03
#define PALMAS_VBAT_MON						0x04
#define PALMAS_WATCHDOG						0x05
#define PALMAS_BOOT_STATUS					0x06
#define PALMAS_BATTERY_BOUNCE					0x07
#define PALMAS_BACKUP_BATTERY_CTRL				0x08
#define PALMAS_LONG_PRESS_KEY					0x09
#define PALMAS_OSC_THERM_CTRL					0x0A
#define PALMAS_BATDEBOUNCING					0x0B
#define PALMAS_SWOFF_HWRST					0x0F
G
Graeme Gregory 已提交
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
#define PALMAS_SWOFF_COLDRST					0x10
#define PALMAS_SWOFF_STATUS					0x11
#define PALMAS_PMU_CONFIG					0x12
#define PALMAS_SPARE						0x14
#define PALMAS_PMU_SECONDARY_INT				0x15
#define PALMAS_SW_REVISION					0x17
#define PALMAS_EXT_CHRG_CTRL					0x18
#define PALMAS_PMU_SECONDARY_INT2				0x19

/* Bit definitions for DEV_CTRL */
#define PALMAS_DEV_CTRL_DEV_STATUS_MASK				0x0c
K
Keerthy 已提交
1392
#define PALMAS_DEV_CTRL_DEV_STATUS_SHIFT			0x02
G
Graeme Gregory 已提交
1393
#define PALMAS_DEV_CTRL_SW_RST					0x02
K
Keerthy 已提交
1394
#define PALMAS_DEV_CTRL_SW_RST_SHIFT				0x01
G
Graeme Gregory 已提交
1395
#define PALMAS_DEV_CTRL_DEV_ON					0x01
K
Keerthy 已提交
1396
#define PALMAS_DEV_CTRL_DEV_ON_SHIFT				0x00
G
Graeme Gregory 已提交
1397 1398 1399

/* Bit definitions for POWER_CTRL */
#define PALMAS_POWER_CTRL_ENABLE2_MASK				0x04
K
Keerthy 已提交
1400
#define PALMAS_POWER_CTRL_ENABLE2_MASK_SHIFT			0x02
G
Graeme Gregory 已提交
1401
#define PALMAS_POWER_CTRL_ENABLE1_MASK				0x02
K
Keerthy 已提交
1402
#define PALMAS_POWER_CTRL_ENABLE1_MASK_SHIFT			0x01
G
Graeme Gregory 已提交
1403
#define PALMAS_POWER_CTRL_NSLEEP_MASK				0x01
K
Keerthy 已提交
1404
#define PALMAS_POWER_CTRL_NSLEEP_MASK_SHIFT			0x00
G
Graeme Gregory 已提交
1405 1406

/* Bit definitions for VSYS_LO */
K
Keerthy 已提交
1407 1408
#define PALMAS_VSYS_LO_THRESHOLD_MASK				0x1F
#define PALMAS_VSYS_LO_THRESHOLD_SHIFT				0x00
G
Graeme Gregory 已提交
1409 1410 1411

/* Bit definitions for VSYS_MON */
#define PALMAS_VSYS_MON_ENABLE					0x80
K
Keerthy 已提交
1412 1413 1414
#define PALMAS_VSYS_MON_ENABLE_SHIFT				0x07
#define PALMAS_VSYS_MON_THRESHOLD_MASK				0x3F
#define PALMAS_VSYS_MON_THRESHOLD_SHIFT				0x00
G
Graeme Gregory 已提交
1415 1416 1417

/* Bit definitions for VBAT_MON */
#define PALMAS_VBAT_MON_ENABLE					0x80
K
Keerthy 已提交
1418 1419 1420
#define PALMAS_VBAT_MON_ENABLE_SHIFT				0x07
#define PALMAS_VBAT_MON_THRESHOLD_MASK				0x3F
#define PALMAS_VBAT_MON_THRESHOLD_SHIFT				0x00
G
Graeme Gregory 已提交
1421 1422 1423

/* Bit definitions for WATCHDOG */
#define PALMAS_WATCHDOG_LOCK					0x20
K
Keerthy 已提交
1424
#define PALMAS_WATCHDOG_LOCK_SHIFT				0x05
G
Graeme Gregory 已提交
1425
#define PALMAS_WATCHDOG_ENABLE					0x10
K
Keerthy 已提交
1426
#define PALMAS_WATCHDOG_ENABLE_SHIFT				0x04
G
Graeme Gregory 已提交
1427
#define PALMAS_WATCHDOG_MODE					0x08
K
Keerthy 已提交
1428
#define PALMAS_WATCHDOG_MODE_SHIFT				0x03
G
Graeme Gregory 已提交
1429
#define PALMAS_WATCHDOG_TIMER_MASK				0x07
K
Keerthy 已提交
1430
#define PALMAS_WATCHDOG_TIMER_SHIFT				0x00
G
Graeme Gregory 已提交
1431 1432 1433

/* Bit definitions for BOOT_STATUS */
#define PALMAS_BOOT_STATUS_BOOT1				0x02
K
Keerthy 已提交
1434
#define PALMAS_BOOT_STATUS_BOOT1_SHIFT				0x01
G
Graeme Gregory 已提交
1435
#define PALMAS_BOOT_STATUS_BOOT0				0x01
K
Keerthy 已提交
1436
#define PALMAS_BOOT_STATUS_BOOT0_SHIFT				0x00
G
Graeme Gregory 已提交
1437 1438

/* Bit definitions for BATTERY_BOUNCE */
K
Keerthy 已提交
1439 1440
#define PALMAS_BATTERY_BOUNCE_BB_DELAY_MASK			0x3F
#define PALMAS_BATTERY_BOUNCE_BB_DELAY_SHIFT			0x00
G
Graeme Gregory 已提交
1441 1442 1443

/* Bit definitions for BACKUP_BATTERY_CTRL */
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15			0x80
K
Keerthy 已提交
1444
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15_SHIFT		0x07
G
Graeme Gregory 已提交
1445
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP			0x40
K
Keerthy 已提交
1446
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP_SHIFT		0x06
G
Graeme Gregory 已提交
1447
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF			0x20
K
Keerthy 已提交
1448
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF_SHIFT		0x05
G
Graeme Gregory 已提交
1449
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN			0x10
K
Keerthy 已提交
1450
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN_SHIFT		0x04
G
Graeme Gregory 已提交
1451
#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG		0x08
K
Keerthy 已提交
1452
#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG_SHIFT	0x03
G
Graeme Gregory 已提交
1453
#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_MASK			0x06
K
Keerthy 已提交
1454
#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_SHIFT			0x01
G
Graeme Gregory 已提交
1455
#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN			0x01
K
Keerthy 已提交
1456
#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN_SHIFT		0x00
G
Graeme Gregory 已提交
1457 1458 1459

/* Bit definitions for LONG_PRESS_KEY */
#define PALMAS_LONG_PRESS_KEY_LPK_LOCK				0x80
K
Keerthy 已提交
1460
#define PALMAS_LONG_PRESS_KEY_LPK_LOCK_SHIFT			0x07
G
Graeme Gregory 已提交
1461
#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR			0x10
K
Keerthy 已提交
1462
#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR_SHIFT			0x04
G
Graeme Gregory 已提交
1463
#define PALMAS_LONG_PRESS_KEY_LPK_TIME_MASK			0x0c
K
Keerthy 已提交
1464
#define PALMAS_LONG_PRESS_KEY_LPK_TIME_SHIFT			0x02
G
Graeme Gregory 已提交
1465
#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_MASK		0x03
K
Keerthy 已提交
1466
#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_SHIFT		0x00
G
Graeme Gregory 已提交
1467 1468 1469

/* Bit definitions for OSC_THERM_CTRL */
#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP			0x80
K
Keerthy 已提交
1470
#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP_SHIFT		0x07
G
Graeme Gregory 已提交
1471
#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP			0x40
K
Keerthy 已提交
1472
#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP_SHIFT		0x06
G
Graeme Gregory 已提交
1473
#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP		0x20
K
Keerthy 已提交
1474
#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP_SHIFT		0x05
G
Graeme Gregory 已提交
1475
#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP		0x10
K
Keerthy 已提交
1476
#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP_SHIFT		0x04
G
Graeme Gregory 已提交
1477
#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_MASK			0x0c
K
Keerthy 已提交
1478
#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_SHIFT		0x02
G
Graeme Gregory 已提交
1479
#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS			0x02
K
Keerthy 已提交
1480
#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS_SHIFT			0x01
G
Graeme Gregory 已提交
1481
#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE			0x01
K
Keerthy 已提交
1482
#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE_SHIFT			0x00
G
Graeme Gregory 已提交
1483 1484 1485

/* Bit definitions for BATDEBOUNCING */
#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS			0x80
K
Keerthy 已提交
1486
#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS_SHIFT		0x07
G
Graeme Gregory 已提交
1487
#define PALMAS_BATDEBOUNCING_BINS_DEB_MASK			0x78
K
Keerthy 已提交
1488
#define PALMAS_BATDEBOUNCING_BINS_DEB_SHIFT			0x03
G
Graeme Gregory 已提交
1489
#define PALMAS_BATDEBOUNCING_BEXT_DEB_MASK			0x07
K
Keerthy 已提交
1490
#define PALMAS_BATDEBOUNCING_BEXT_DEB_SHIFT			0x00
G
Graeme Gregory 已提交
1491 1492 1493

/* Bit definitions for SWOFF_HWRST */
#define PALMAS_SWOFF_HWRST_PWRON_LPK				0x80
K
Keerthy 已提交
1494
#define PALMAS_SWOFF_HWRST_PWRON_LPK_SHIFT			0x07
G
Graeme Gregory 已提交
1495
#define PALMAS_SWOFF_HWRST_PWRDOWN				0x40
K
Keerthy 已提交
1496
#define PALMAS_SWOFF_HWRST_PWRDOWN_SHIFT			0x06
G
Graeme Gregory 已提交
1497
#define PALMAS_SWOFF_HWRST_WTD					0x20
K
Keerthy 已提交
1498
#define PALMAS_SWOFF_HWRST_WTD_SHIFT				0x05
G
Graeme Gregory 已提交
1499
#define PALMAS_SWOFF_HWRST_TSHUT				0x10
K
Keerthy 已提交
1500
#define PALMAS_SWOFF_HWRST_TSHUT_SHIFT				0x04
G
Graeme Gregory 已提交
1501
#define PALMAS_SWOFF_HWRST_RESET_IN				0x08
K
Keerthy 已提交
1502
#define PALMAS_SWOFF_HWRST_RESET_IN_SHIFT			0x03
G
Graeme Gregory 已提交
1503
#define PALMAS_SWOFF_HWRST_SW_RST				0x04
K
Keerthy 已提交
1504
#define PALMAS_SWOFF_HWRST_SW_RST_SHIFT				0x02
G
Graeme Gregory 已提交
1505
#define PALMAS_SWOFF_HWRST_VSYS_LO				0x02
K
Keerthy 已提交
1506
#define PALMAS_SWOFF_HWRST_VSYS_LO_SHIFT			0x01
G
Graeme Gregory 已提交
1507
#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN			0x01
K
Keerthy 已提交
1508
#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN_SHIFT			0x00
G
Graeme Gregory 已提交
1509 1510 1511

/* Bit definitions for SWOFF_COLDRST */
#define PALMAS_SWOFF_COLDRST_PWRON_LPK				0x80
K
Keerthy 已提交
1512
#define PALMAS_SWOFF_COLDRST_PWRON_LPK_SHIFT			0x07
G
Graeme Gregory 已提交
1513
#define PALMAS_SWOFF_COLDRST_PWRDOWN				0x40
K
Keerthy 已提交
1514
#define PALMAS_SWOFF_COLDRST_PWRDOWN_SHIFT			0x06
G
Graeme Gregory 已提交
1515
#define PALMAS_SWOFF_COLDRST_WTD				0x20
K
Keerthy 已提交
1516
#define PALMAS_SWOFF_COLDRST_WTD_SHIFT				0x05
G
Graeme Gregory 已提交
1517
#define PALMAS_SWOFF_COLDRST_TSHUT				0x10
K
Keerthy 已提交
1518
#define PALMAS_SWOFF_COLDRST_TSHUT_SHIFT			0x04
G
Graeme Gregory 已提交
1519
#define PALMAS_SWOFF_COLDRST_RESET_IN				0x08
K
Keerthy 已提交
1520
#define PALMAS_SWOFF_COLDRST_RESET_IN_SHIFT			0x03
G
Graeme Gregory 已提交
1521
#define PALMAS_SWOFF_COLDRST_SW_RST				0x04
K
Keerthy 已提交
1522
#define PALMAS_SWOFF_COLDRST_SW_RST_SHIFT			0x02
G
Graeme Gregory 已提交
1523
#define PALMAS_SWOFF_COLDRST_VSYS_LO				0x02
K
Keerthy 已提交
1524
#define PALMAS_SWOFF_COLDRST_VSYS_LO_SHIFT			0x01
G
Graeme Gregory 已提交
1525
#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN			0x01
K
Keerthy 已提交
1526
#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN_SHIFT		0x00
G
Graeme Gregory 已提交
1527 1528 1529

/* Bit definitions for SWOFF_STATUS */
#define PALMAS_SWOFF_STATUS_PWRON_LPK				0x80
K
Keerthy 已提交
1530
#define PALMAS_SWOFF_STATUS_PWRON_LPK_SHIFT			0x07
G
Graeme Gregory 已提交
1531
#define PALMAS_SWOFF_STATUS_PWRDOWN				0x40
K
Keerthy 已提交
1532
#define PALMAS_SWOFF_STATUS_PWRDOWN_SHIFT			0x06
G
Graeme Gregory 已提交
1533
#define PALMAS_SWOFF_STATUS_WTD					0x20
K
Keerthy 已提交
1534
#define PALMAS_SWOFF_STATUS_WTD_SHIFT				0x05
G
Graeme Gregory 已提交
1535
#define PALMAS_SWOFF_STATUS_TSHUT				0x10
K
Keerthy 已提交
1536
#define PALMAS_SWOFF_STATUS_TSHUT_SHIFT				0x04
G
Graeme Gregory 已提交
1537
#define PALMAS_SWOFF_STATUS_RESET_IN				0x08
K
Keerthy 已提交
1538
#define PALMAS_SWOFF_STATUS_RESET_IN_SHIFT			0x03
G
Graeme Gregory 已提交
1539
#define PALMAS_SWOFF_STATUS_SW_RST				0x04
K
Keerthy 已提交
1540
#define PALMAS_SWOFF_STATUS_SW_RST_SHIFT			0x02
G
Graeme Gregory 已提交
1541
#define PALMAS_SWOFF_STATUS_VSYS_LO				0x02
K
Keerthy 已提交
1542
#define PALMAS_SWOFF_STATUS_VSYS_LO_SHIFT			0x01
G
Graeme Gregory 已提交
1543
#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN			0x01
K
Keerthy 已提交
1544
#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN_SHIFT		0x00
G
Graeme Gregory 已提交
1545 1546 1547

/* Bit definitions for PMU_CONFIG */
#define PALMAS_PMU_CONFIG_MULTI_CELL_EN				0x40
K
Keerthy 已提交
1548
#define PALMAS_PMU_CONFIG_MULTI_CELL_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1549
#define PALMAS_PMU_CONFIG_SPARE_MASK				0x30
K
Keerthy 已提交
1550
#define PALMAS_PMU_CONFIG_SPARE_SHIFT				0x04
G
Graeme Gregory 已提交
1551
#define PALMAS_PMU_CONFIG_SWOFF_DLY_MASK			0x0c
K
Keerthy 已提交
1552
#define PALMAS_PMU_CONFIG_SWOFF_DLY_SHIFT			0x02
G
Graeme Gregory 已提交
1553
#define PALMAS_PMU_CONFIG_GATE_RESET_OUT			0x02
K
Keerthy 已提交
1554
#define PALMAS_PMU_CONFIG_GATE_RESET_OUT_SHIFT			0x01
G
Graeme Gregory 已提交
1555
#define PALMAS_PMU_CONFIG_AUTODEVON				0x01
K
Keerthy 已提交
1556
#define PALMAS_PMU_CONFIG_AUTODEVON_SHIFT			0x00
G
Graeme Gregory 已提交
1557 1558 1559

/* Bit definitions for SPARE */
#define PALMAS_SPARE_SPARE_MASK					0xf8
K
Keerthy 已提交
1560
#define PALMAS_SPARE_SPARE_SHIFT				0x03
G
Graeme Gregory 已提交
1561
#define PALMAS_SPARE_REGEN3_OD					0x04
K
Keerthy 已提交
1562
#define PALMAS_SPARE_REGEN3_OD_SHIFT				0x02
G
Graeme Gregory 已提交
1563
#define PALMAS_SPARE_REGEN2_OD					0x02
K
Keerthy 已提交
1564
#define PALMAS_SPARE_REGEN2_OD_SHIFT				0x01
G
Graeme Gregory 已提交
1565
#define PALMAS_SPARE_REGEN1_OD					0x01
K
Keerthy 已提交
1566
#define PALMAS_SPARE_REGEN1_OD_SHIFT				0x00
G
Graeme Gregory 已提交
1567 1568 1569

/* Bit definitions for PMU_SECONDARY_INT */
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC		0x80
K
Keerthy 已提交
1570
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC_SHIFT		0x07
G
Graeme Gregory 已提交
1571
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC		0x40
K
Keerthy 已提交
1572
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC_SHIFT	0x06
G
Graeme Gregory 已提交
1573
#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC			0x20
K
Keerthy 已提交
1574
#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC_SHIFT		0x05
G
Graeme Gregory 已提交
1575
#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC			0x10
K
Keerthy 已提交
1576
#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
1577
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK			0x08
K
Keerthy 已提交
1578
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK_SHIFT		0x03
G
Graeme Gregory 已提交
1579
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK		0x04
K
Keerthy 已提交
1580
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK_SHIFT		0x02
G
Graeme Gregory 已提交
1581
#define PALMAS_PMU_SECONDARY_INT_BB_MASK			0x02
K
Keerthy 已提交
1582
#define PALMAS_PMU_SECONDARY_INT_BB_MASK_SHIFT			0x01
G
Graeme Gregory 已提交
1583
#define PALMAS_PMU_SECONDARY_INT_FBI_MASK			0x01
K
Keerthy 已提交
1584
#define PALMAS_PMU_SECONDARY_INT_FBI_MASK_SHIFT			0x00
G
Graeme Gregory 已提交
1585 1586

/* Bit definitions for SW_REVISION */
K
Keerthy 已提交
1587 1588
#define PALMAS_SW_REVISION_SW_REVISION_MASK			0xFF
#define PALMAS_SW_REVISION_SW_REVISION_SHIFT			0x00
G
Graeme Gregory 已提交
1589 1590 1591

/* Bit definitions for EXT_CHRG_CTRL */
#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS			0x80
K
Keerthy 已提交
1592
#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS_SHIFT		0x07
G
Graeme Gregory 已提交
1593
#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS			0x40
K
Keerthy 已提交
1594
#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS_SHIFT		0x06
G
Graeme Gregory 已提交
1595
#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY		0x08
K
Keerthy 已提交
1596
#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY_SHIFT		0x03
G
Graeme Gregory 已提交
1597
#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N				0x04
K
Keerthy 已提交
1598
#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N_SHIFT			0x02
G
Graeme Gregory 已提交
1599
#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN			0x02
K
Keerthy 已提交
1600
#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN_SHIFT			0x01
G
Graeme Gregory 已提交
1601
#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN			0x01
K
Keerthy 已提交
1602
#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN_SHIFT		0x00
G
Graeme Gregory 已提交
1603 1604 1605

/* Bit definitions for PMU_SECONDARY_INT2 */
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC			0x20
K
Keerthy 已提交
1606
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC_SHIFT		0x05
G
Graeme Gregory 已提交
1607
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC			0x10
K
Keerthy 已提交
1608
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
1609
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK			0x02
K
Keerthy 已提交
1610
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK_SHIFT		0x01
G
Graeme Gregory 已提交
1611
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK			0x01
K
Keerthy 已提交
1612
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK_SHIFT		0x00
G
Graeme Gregory 已提交
1613 1614

/* Registers for function RESOURCE */
K
Keerthy 已提交
1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
#define PALMAS_CLK32KG_CTRL					0x00
#define PALMAS_CLK32KGAUDIO_CTRL				0x01
#define PALMAS_REGEN1_CTRL					0x02
#define PALMAS_REGEN2_CTRL					0x03
#define PALMAS_SYSEN1_CTRL					0x04
#define PALMAS_SYSEN2_CTRL					0x05
#define PALMAS_NSLEEP_RES_ASSIGN				0x06
#define PALMAS_NSLEEP_SMPS_ASSIGN				0x07
#define PALMAS_NSLEEP_LDO_ASSIGN1				0x08
#define PALMAS_NSLEEP_LDO_ASSIGN2				0x09
#define PALMAS_ENABLE1_RES_ASSIGN				0x0A
#define PALMAS_ENABLE1_SMPS_ASSIGN				0x0B
#define PALMAS_ENABLE1_LDO_ASSIGN1				0x0C
#define PALMAS_ENABLE1_LDO_ASSIGN2				0x0D
#define PALMAS_ENABLE2_RES_ASSIGN				0x0E
#define PALMAS_ENABLE2_SMPS_ASSIGN				0x0F
G
Graeme Gregory 已提交
1631 1632 1633 1634 1635 1636
#define PALMAS_ENABLE2_LDO_ASSIGN1				0x10
#define PALMAS_ENABLE2_LDO_ASSIGN2				0x11
#define PALMAS_REGEN3_CTRL					0x12

/* Bit definitions for CLK32KG_CTRL */
#define PALMAS_CLK32KG_CTRL_STATUS				0x10
K
Keerthy 已提交
1637
#define PALMAS_CLK32KG_CTRL_STATUS_SHIFT			0x04
G
Graeme Gregory 已提交
1638
#define PALMAS_CLK32KG_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1639
#define PALMAS_CLK32KG_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1640
#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1641
#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1642 1643 1644

/* Bit definitions for CLK32KGAUDIO_CTRL */
#define PALMAS_CLK32KGAUDIO_CTRL_STATUS				0x10
K
Keerthy 已提交
1645
#define PALMAS_CLK32KGAUDIO_CTRL_STATUS_SHIFT			0x04
G
Graeme Gregory 已提交
1646
#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3			0x08
K
Keerthy 已提交
1647
#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3_SHIFT		0x03
G
Graeme Gregory 已提交
1648
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP			0x04
K
Keerthy 已提交
1649
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP_SHIFT		0x02
G
Graeme Gregory 已提交
1650
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE			0x01
K
Keerthy 已提交
1651
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE_SHIFT		0x00
G
Graeme Gregory 已提交
1652 1653 1654

/* Bit definitions for REGEN1_CTRL */
#define PALMAS_REGEN1_CTRL_STATUS				0x10
K
Keerthy 已提交
1655
#define PALMAS_REGEN1_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1656
#define PALMAS_REGEN1_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1657
#define PALMAS_REGEN1_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1658
#define PALMAS_REGEN1_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1659
#define PALMAS_REGEN1_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1660 1661 1662

/* Bit definitions for REGEN2_CTRL */
#define PALMAS_REGEN2_CTRL_STATUS				0x10
K
Keerthy 已提交
1663
#define PALMAS_REGEN2_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1664
#define PALMAS_REGEN2_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1665
#define PALMAS_REGEN2_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1666
#define PALMAS_REGEN2_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1667
#define PALMAS_REGEN2_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1668 1669 1670

/* Bit definitions for SYSEN1_CTRL */
#define PALMAS_SYSEN1_CTRL_STATUS				0x10
K
Keerthy 已提交
1671
#define PALMAS_SYSEN1_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1672
#define PALMAS_SYSEN1_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1673
#define PALMAS_SYSEN1_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1674
#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1675
#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1676 1677 1678

/* Bit definitions for SYSEN2_CTRL */
#define PALMAS_SYSEN2_CTRL_STATUS				0x10
K
Keerthy 已提交
1679
#define PALMAS_SYSEN2_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1680
#define PALMAS_SYSEN2_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1681
#define PALMAS_SYSEN2_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1682
#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1683
#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1684 1685 1686

/* Bit definitions for NSLEEP_RES_ASSIGN */
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3				0x40
K
Keerthy 已提交
1687
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3_SHIFT			0x06
G
Graeme Gregory 已提交
1688
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO			0x20
K
Keerthy 已提交
1689
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO_SHIFT		0x05
G
Graeme Gregory 已提交
1690
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG			0x10
K
Keerthy 已提交
1691
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG_SHIFT			0x04
G
Graeme Gregory 已提交
1692
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2				0x08
K
Keerthy 已提交
1693
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2_SHIFT			0x03
G
Graeme Gregory 已提交
1694
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1				0x04
K
Keerthy 已提交
1695
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1_SHIFT			0x02
G
Graeme Gregory 已提交
1696
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2				0x02
K
Keerthy 已提交
1697
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2_SHIFT			0x01
G
Graeme Gregory 已提交
1698
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1				0x01
K
Keerthy 已提交
1699
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1_SHIFT			0x00
G
Graeme Gregory 已提交
1700 1701 1702

/* Bit definitions for NSLEEP_SMPS_ASSIGN */
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10			0x80
K
Keerthy 已提交
1703
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1704
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9				0x40
K
Keerthy 已提交
1705
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1706
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8				0x20
K
Keerthy 已提交
1707
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1708
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7				0x10
K
Keerthy 已提交
1709
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1710
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6				0x08
K
Keerthy 已提交
1711
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1712
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45			0x04
K
Keerthy 已提交
1713
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1714
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3				0x02
K
Keerthy 已提交
1715
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1716
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12			0x01
K
Keerthy 已提交
1717
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1718 1719 1720

/* Bit definitions for NSLEEP_LDO_ASSIGN1 */
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8				0x80
K
Keerthy 已提交
1721
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1722
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7				0x40
K
Keerthy 已提交
1723
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1724
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6				0x20
K
Keerthy 已提交
1725
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1726
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5				0x10
K
Keerthy 已提交
1727
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1728
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4				0x08
K
Keerthy 已提交
1729
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1730
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3				0x04
K
Keerthy 已提交
1731
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1732
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2				0x02
K
Keerthy 已提交
1733
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1734
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1				0x01
K
Keerthy 已提交
1735
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1736 1737 1738

/* Bit definitions for NSLEEP_LDO_ASSIGN2 */
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB			0x04
K
Keerthy 已提交
1739
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1740
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN				0x02
K
Keerthy 已提交
1741
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1742
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9				0x01
K
Keerthy 已提交
1743
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1744 1745 1746

/* Bit definitions for ENABLE1_RES_ASSIGN */
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3			0x40
K
Keerthy 已提交
1747
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3_SHIFT			0x06
G
Graeme Gregory 已提交
1748
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO			0x20
K
Keerthy 已提交
1749
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO_SHIFT		0x05
G
Graeme Gregory 已提交
1750
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG			0x10
K
Keerthy 已提交
1751
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG_SHIFT			0x04
G
Graeme Gregory 已提交
1752
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2			0x08
K
Keerthy 已提交
1753
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2_SHIFT			0x03
G
Graeme Gregory 已提交
1754
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1			0x04
K
Keerthy 已提交
1755
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1_SHIFT			0x02
G
Graeme Gregory 已提交
1756
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2			0x02
K
Keerthy 已提交
1757
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2_SHIFT			0x01
G
Graeme Gregory 已提交
1758
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1			0x01
K
Keerthy 已提交
1759
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1_SHIFT			0x00
G
Graeme Gregory 已提交
1760 1761 1762

/* Bit definitions for ENABLE1_SMPS_ASSIGN */
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10			0x80
K
Keerthy 已提交
1763
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1764
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9			0x40
K
Keerthy 已提交
1765
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1766
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8			0x20
K
Keerthy 已提交
1767
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1768
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7			0x10
K
Keerthy 已提交
1769
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1770
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6			0x08
K
Keerthy 已提交
1771
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1772
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45			0x04
K
Keerthy 已提交
1773
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1774
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3			0x02
K
Keerthy 已提交
1775
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1776
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12			0x01
K
Keerthy 已提交
1777
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1778 1779 1780

/* Bit definitions for ENABLE1_LDO_ASSIGN1 */
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8				0x80
K
Keerthy 已提交
1781
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1782
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7				0x40
K
Keerthy 已提交
1783
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1784
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6				0x20
K
Keerthy 已提交
1785
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1786
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5				0x10
K
Keerthy 已提交
1787
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1788
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4				0x08
K
Keerthy 已提交
1789
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1790
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3				0x04
K
Keerthy 已提交
1791
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1792
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2				0x02
K
Keerthy 已提交
1793
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1794
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1				0x01
K
Keerthy 已提交
1795
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1796 1797 1798

/* Bit definitions for ENABLE1_LDO_ASSIGN2 */
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB			0x04
K
Keerthy 已提交
1799
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1800
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN			0x02
K
Keerthy 已提交
1801
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1802
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9				0x01
K
Keerthy 已提交
1803
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1804 1805 1806

/* Bit definitions for ENABLE2_RES_ASSIGN */
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3			0x40
K
Keerthy 已提交
1807
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3_SHIFT			0x06
G
Graeme Gregory 已提交
1808
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO			0x20
K
Keerthy 已提交
1809
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO_SHIFT		0x05
G
Graeme Gregory 已提交
1810
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG			0x10
K
Keerthy 已提交
1811
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG_SHIFT			0x04
G
Graeme Gregory 已提交
1812
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2			0x08
K
Keerthy 已提交
1813
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2_SHIFT			0x03
G
Graeme Gregory 已提交
1814
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1			0x04
K
Keerthy 已提交
1815
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1_SHIFT			0x02
G
Graeme Gregory 已提交
1816
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2			0x02
K
Keerthy 已提交
1817
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2_SHIFT			0x01
G
Graeme Gregory 已提交
1818
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1			0x01
K
Keerthy 已提交
1819
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1_SHIFT			0x00
G
Graeme Gregory 已提交
1820 1821 1822

/* Bit definitions for ENABLE2_SMPS_ASSIGN */
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10			0x80
K
Keerthy 已提交
1823
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1824
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9			0x40
K
Keerthy 已提交
1825
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1826
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8			0x20
K
Keerthy 已提交
1827
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1828
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7			0x10
K
Keerthy 已提交
1829
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1830
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6			0x08
K
Keerthy 已提交
1831
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1832
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45			0x04
K
Keerthy 已提交
1833
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1834
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3			0x02
K
Keerthy 已提交
1835
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1836
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12			0x01
K
Keerthy 已提交
1837
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1838 1839 1840

/* Bit definitions for ENABLE2_LDO_ASSIGN1 */
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8				0x80
K
Keerthy 已提交
1841
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1842
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7				0x40
K
Keerthy 已提交
1843
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1844
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6				0x20
K
Keerthy 已提交
1845
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1846
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5				0x10
K
Keerthy 已提交
1847
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1848
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4				0x08
K
Keerthy 已提交
1849
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1850
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3				0x04
K
Keerthy 已提交
1851
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1852
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2				0x02
K
Keerthy 已提交
1853
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1854
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1				0x01
K
Keerthy 已提交
1855
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1856 1857 1858

/* Bit definitions for ENABLE2_LDO_ASSIGN2 */
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB			0x04
K
Keerthy 已提交
1859
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1860
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN			0x02
K
Keerthy 已提交
1861
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1862
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9				0x01
K
Keerthy 已提交
1863
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1864 1865 1866

/* Bit definitions for REGEN3_CTRL */
#define PALMAS_REGEN3_CTRL_STATUS				0x10
K
Keerthy 已提交
1867
#define PALMAS_REGEN3_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1868
#define PALMAS_REGEN3_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1869
#define PALMAS_REGEN3_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1870
#define PALMAS_REGEN3_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1871
#define PALMAS_REGEN3_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1872 1873

/* Registers for function PAD_CONTROL */
K
Keerthy 已提交
1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887
#define PALMAS_OD_OUTPUT_CTRL2					0x02
#define PALMAS_POLARITY_CTRL2					0x03
#define PALMAS_PU_PD_INPUT_CTRL1				0x04
#define PALMAS_PU_PD_INPUT_CTRL2				0x05
#define PALMAS_PU_PD_INPUT_CTRL3				0x06
#define PALMAS_PU_PD_INPUT_CTRL5				0x07
#define PALMAS_OD_OUTPUT_CTRL					0x08
#define PALMAS_POLARITY_CTRL					0x09
#define PALMAS_PRIMARY_SECONDARY_PAD1				0x0A
#define PALMAS_PRIMARY_SECONDARY_PAD2				0x0B
#define PALMAS_I2C_SPI						0x0C
#define PALMAS_PU_PD_INPUT_CTRL4				0x0D
#define PALMAS_PRIMARY_SECONDARY_PAD3				0x0E
#define PALMAS_PRIMARY_SECONDARY_PAD4				0x0F
G
Graeme Gregory 已提交
1888 1889 1890

/* Bit definitions for PU_PD_INPUT_CTRL1 */
#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD			0x40
K
Keerthy 已提交
1891
#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD_SHIFT		0x06
G
Graeme Gregory 已提交
1892
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU			0x20
K
Keerthy 已提交
1893
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU_SHIFT		0x05
G
Graeme Gregory 已提交
1894
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD			0x10
K
Keerthy 已提交
1895
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1896
#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD			0x04
K
Keerthy 已提交
1897
#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1898
#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU			0x02
K
Keerthy 已提交
1899
#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU_SHIFT		0x01
G
Graeme Gregory 已提交
1900 1901 1902

/* Bit definitions for PU_PD_INPUT_CTRL2 */
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU			0x20
K
Keerthy 已提交
1903
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU_SHIFT		0x05
G
Graeme Gregory 已提交
1904
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD			0x10
K
Keerthy 已提交
1905
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1906
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU			0x08
K
Keerthy 已提交
1907
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU_SHIFT		0x03
G
Graeme Gregory 已提交
1908
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD			0x04
K
Keerthy 已提交
1909
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1910
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU			0x02
K
Keerthy 已提交
1911
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU_SHIFT		0x01
G
Graeme Gregory 已提交
1912
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD			0x01
K
Keerthy 已提交
1913
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD_SHIFT		0x00
G
Graeme Gregory 已提交
1914 1915 1916

/* Bit definitions for PU_PD_INPUT_CTRL3 */
#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD			0x40
K
Keerthy 已提交
1917
#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD_SHIFT			0x06
G
Graeme Gregory 已提交
1918
#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD			0x10
K
Keerthy 已提交
1919
#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1920
#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD			0x04
K
Keerthy 已提交
1921
#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1922
#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD			0x01
K
Keerthy 已提交
1923
#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD_SHIFT		0x00
G
Graeme Gregory 已提交
1924 1925 1926

/* Bit definitions for OD_OUTPUT_CTRL */
#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD				0x80
K
Keerthy 已提交
1927
#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD_SHIFT			0x07
G
Graeme Gregory 已提交
1928
#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD			0x40
K
Keerthy 已提交
1929
#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD_SHIFT			0x06
G
Graeme Gregory 已提交
1930
#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD				0x20
K
Keerthy 已提交
1931
#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD_SHIFT			0x05
G
Graeme Gregory 已提交
1932
#define PALMAS_OD_OUTPUT_CTRL_INT_OD				0x08
K
Keerthy 已提交
1933
#define PALMAS_OD_OUTPUT_CTRL_INT_OD_SHIFT			0x03
G
Graeme Gregory 已提交
1934 1935 1936

/* Bit definitions for POLARITY_CTRL */
#define PALMAS_POLARITY_CTRL_INT_POLARITY			0x80
K
Keerthy 已提交
1937
#define PALMAS_POLARITY_CTRL_INT_POLARITY_SHIFT			0x07
G
Graeme Gregory 已提交
1938
#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY			0x40
K
Keerthy 已提交
1939
#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY_SHIFT		0x06
G
Graeme Gregory 已提交
1940
#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY			0x20
K
Keerthy 已提交
1941
#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY_SHIFT		0x05
G
Graeme Gregory 已提交
1942
#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY			0x10
K
Keerthy 已提交
1943
#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY_SHIFT		0x04
G
Graeme Gregory 已提交
1944
#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY			0x08
K
Keerthy 已提交
1945
#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY_SHIFT		0x03
G
Graeme Gregory 已提交
1946
#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY		0x04
K
Keerthy 已提交
1947
#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY_SHIFT	0x02
G
Graeme Gregory 已提交
1948
#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY	0x02
K
Keerthy 已提交
1949
#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY_SHIFT	0x01
G
Graeme Gregory 已提交
1950
#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY			0x01
K
Keerthy 已提交
1951
#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY_SHIFT		0x00
G
Graeme Gregory 已提交
1952 1953 1954

/* Bit definitions for PRIMARY_SECONDARY_PAD1 */
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3			0x80
K
Keerthy 已提交
1955
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3_SHIFT		0x07
G
Graeme Gregory 已提交
1956
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_MASK		0x60
K
Keerthy 已提交
1957
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_SHIFT		0x05
G
Graeme Gregory 已提交
1958
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_MASK		0x18
K
Keerthy 已提交
1959
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_SHIFT		0x03
G
Graeme Gregory 已提交
1960
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0			0x04
K
Keerthy 已提交
1961
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0_SHIFT		0x02
G
Graeme Gregory 已提交
1962
#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC			0x02
K
Keerthy 已提交
1963
#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC_SHIFT			0x01
G
Graeme Gregory 已提交
1964
#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD			0x01
K
Keerthy 已提交
1965
#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD_SHIFT		0x00
G
Graeme Gregory 已提交
1966 1967 1968

/* Bit definitions for PRIMARY_SECONDARY_PAD2 */
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_MASK		0x30
K
Keerthy 已提交
1969
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_SHIFT		0x04
G
Graeme Gregory 已提交
1970
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6			0x08
K
Keerthy 已提交
1971
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6_SHIFT		0x03
G
Graeme Gregory 已提交
1972
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_MASK		0x06
K
Keerthy 已提交
1973
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_SHIFT		0x01
G
Graeme Gregory 已提交
1974
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4			0x01
K
Keerthy 已提交
1975
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4_SHIFT		0x00
G
Graeme Gregory 已提交
1976 1977 1978

/* Bit definitions for I2C_SPI */
#define PALMAS_I2C_SPI_I2C2OTP_EN				0x80
K
Keerthy 已提交
1979
#define PALMAS_I2C_SPI_I2C2OTP_EN_SHIFT				0x07
G
Graeme Gregory 已提交
1980
#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL				0x40
K
Keerthy 已提交
1981
#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL_SHIFT			0x06
G
Graeme Gregory 已提交
1982
#define PALMAS_I2C_SPI_ID_I2C2					0x20
K
Keerthy 已提交
1983
#define PALMAS_I2C_SPI_ID_I2C2_SHIFT				0x05
G
Graeme Gregory 已提交
1984
#define PALMAS_I2C_SPI_I2C_SPI					0x10
K
Keerthy 已提交
1985 1986 1987
#define PALMAS_I2C_SPI_I2C_SPI_SHIFT				0x04
#define PALMAS_I2C_SPI_ID_I2C1_MASK				0x0F
#define PALMAS_I2C_SPI_ID_I2C1_SHIFT				0x00
G
Graeme Gregory 已提交
1988 1989 1990

/* Bit definitions for PU_PD_INPUT_CTRL4 */
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD			0x40
K
Keerthy 已提交
1991
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD_SHIFT		0x06
G
Graeme Gregory 已提交
1992
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD			0x10
K
Keerthy 已提交
1993
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1994
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD			0x04
K
Keerthy 已提交
1995
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1996
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD			0x01
K
Keerthy 已提交
1997
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD_SHIFT		0x00
G
Graeme Gregory 已提交
1998 1999 2000

/* Bit definitions for PRIMARY_SECONDARY_PAD3 */
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2			0x02
K
Keerthy 已提交
2001
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2_SHIFT		0x01
G
Graeme Gregory 已提交
2002
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1			0x01
K
Keerthy 已提交
2003
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1_SHIFT		0x00
G
Graeme Gregory 已提交
2004 2005

/* Registers for function LED_PWM */
K
Keerthy 已提交
2006 2007 2008 2009
#define PALMAS_LED_PERIOD_CTRL					0x00
#define PALMAS_LED_CTRL						0x01
#define PALMAS_PWM_CTRL1					0x02
#define PALMAS_PWM_CTRL2					0x03
G
Graeme Gregory 已提交
2010 2011 2012

/* Bit definitions for LED_PERIOD_CTRL */
#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_MASK		0x38
K
Keerthy 已提交
2013
#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_SHIFT		0x03
G
Graeme Gregory 已提交
2014
#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_MASK		0x07
K
Keerthy 已提交
2015
#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_SHIFT		0x00
G
Graeme Gregory 已提交
2016 2017 2018

/* Bit definitions for LED_CTRL */
#define PALMAS_LED_CTRL_LED_2_SEQ				0x20
K
Keerthy 已提交
2019
#define PALMAS_LED_CTRL_LED_2_SEQ_SHIFT				0x05
G
Graeme Gregory 已提交
2020
#define PALMAS_LED_CTRL_LED_1_SEQ				0x10
K
Keerthy 已提交
2021
#define PALMAS_LED_CTRL_LED_1_SEQ_SHIFT				0x04
G
Graeme Gregory 已提交
2022
#define PALMAS_LED_CTRL_LED_2_ON_TIME_MASK			0x0c
K
Keerthy 已提交
2023
#define PALMAS_LED_CTRL_LED_2_ON_TIME_SHIFT			0x02
G
Graeme Gregory 已提交
2024
#define PALMAS_LED_CTRL_LED_1_ON_TIME_MASK			0x03
K
Keerthy 已提交
2025
#define PALMAS_LED_CTRL_LED_1_ON_TIME_SHIFT			0x00
G
Graeme Gregory 已提交
2026 2027 2028

/* Bit definitions for PWM_CTRL1 */
#define PALMAS_PWM_CTRL1_PWM_FREQ_EN				0x02
K
Keerthy 已提交
2029
#define PALMAS_PWM_CTRL1_PWM_FREQ_EN_SHIFT			0x01
G
Graeme Gregory 已提交
2030
#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL				0x01
K
Keerthy 已提交
2031
#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL_SHIFT			0x00
G
Graeme Gregory 已提交
2032 2033

/* Bit definitions for PWM_CTRL2 */
K
Keerthy 已提交
2034 2035
#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_MASK			0xFF
#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_SHIFT			0x00
G
Graeme Gregory 已提交
2036 2037

/* Registers for function INTERRUPT */
K
Keerthy 已提交
2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
#define PALMAS_INT1_STATUS					0x00
#define PALMAS_INT1_MASK					0x01
#define PALMAS_INT1_LINE_STATE					0x02
#define PALMAS_INT1_EDGE_DETECT1_RESERVED			0x03
#define PALMAS_INT1_EDGE_DETECT2_RESERVED			0x04
#define PALMAS_INT2_STATUS					0x05
#define PALMAS_INT2_MASK					0x06
#define PALMAS_INT2_LINE_STATE					0x07
#define PALMAS_INT2_EDGE_DETECT1_RESERVED			0x08
#define PALMAS_INT2_EDGE_DETECT2_RESERVED			0x09
#define PALMAS_INT3_STATUS					0x0A
#define PALMAS_INT3_MASK					0x0B
#define PALMAS_INT3_LINE_STATE					0x0C
#define PALMAS_INT3_EDGE_DETECT1_RESERVED			0x0D
#define PALMAS_INT3_EDGE_DETECT2_RESERVED			0x0E
#define PALMAS_INT4_STATUS					0x0F
G
Graeme Gregory 已提交
2054 2055 2056 2057 2058 2059 2060 2061
#define PALMAS_INT4_MASK					0x10
#define PALMAS_INT4_LINE_STATE					0x11
#define PALMAS_INT4_EDGE_DETECT1				0x12
#define PALMAS_INT4_EDGE_DETECT2				0x13
#define PALMAS_INT_CTRL						0x14

/* Bit definitions for INT1_STATUS */
#define PALMAS_INT1_STATUS_VBAT_MON				0x80
K
Keerthy 已提交
2062
#define PALMAS_INT1_STATUS_VBAT_MON_SHIFT			0x07
G
Graeme Gregory 已提交
2063
#define PALMAS_INT1_STATUS_VSYS_MON				0x40
K
Keerthy 已提交
2064
#define PALMAS_INT1_STATUS_VSYS_MON_SHIFT			0x06
G
Graeme Gregory 已提交
2065
#define PALMAS_INT1_STATUS_HOTDIE				0x20
K
Keerthy 已提交
2066
#define PALMAS_INT1_STATUS_HOTDIE_SHIFT				0x05
G
Graeme Gregory 已提交
2067
#define PALMAS_INT1_STATUS_PWRDOWN				0x10
K
Keerthy 已提交
2068
#define PALMAS_INT1_STATUS_PWRDOWN_SHIFT			0x04
G
Graeme Gregory 已提交
2069
#define PALMAS_INT1_STATUS_RPWRON				0x08
K
Keerthy 已提交
2070
#define PALMAS_INT1_STATUS_RPWRON_SHIFT				0x03
G
Graeme Gregory 已提交
2071
#define PALMAS_INT1_STATUS_LONG_PRESS_KEY			0x04
K
Keerthy 已提交
2072
#define PALMAS_INT1_STATUS_LONG_PRESS_KEY_SHIFT			0x02
G
Graeme Gregory 已提交
2073
#define PALMAS_INT1_STATUS_PWRON				0x02
K
Keerthy 已提交
2074
#define PALMAS_INT1_STATUS_PWRON_SHIFT				0x01
G
Graeme Gregory 已提交
2075
#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV			0x01
K
Keerthy 已提交
2076
#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV_SHIFT		0x00
G
Graeme Gregory 已提交
2077 2078 2079

/* Bit definitions for INT1_MASK */
#define PALMAS_INT1_MASK_VBAT_MON				0x80
K
Keerthy 已提交
2080
#define PALMAS_INT1_MASK_VBAT_MON_SHIFT				0x07
G
Graeme Gregory 已提交
2081
#define PALMAS_INT1_MASK_VSYS_MON				0x40
K
Keerthy 已提交
2082
#define PALMAS_INT1_MASK_VSYS_MON_SHIFT				0x06
G
Graeme Gregory 已提交
2083
#define PALMAS_INT1_MASK_HOTDIE					0x20
K
Keerthy 已提交
2084
#define PALMAS_INT1_MASK_HOTDIE_SHIFT				0x05
G
Graeme Gregory 已提交
2085
#define PALMAS_INT1_MASK_PWRDOWN				0x10
K
Keerthy 已提交
2086
#define PALMAS_INT1_MASK_PWRDOWN_SHIFT				0x04
G
Graeme Gregory 已提交
2087
#define PALMAS_INT1_MASK_RPWRON					0x08
K
Keerthy 已提交
2088
#define PALMAS_INT1_MASK_RPWRON_SHIFT				0x03
G
Graeme Gregory 已提交
2089
#define PALMAS_INT1_MASK_LONG_PRESS_KEY				0x04
K
Keerthy 已提交
2090
#define PALMAS_INT1_MASK_LONG_PRESS_KEY_SHIFT			0x02
G
Graeme Gregory 已提交
2091
#define PALMAS_INT1_MASK_PWRON					0x02
K
Keerthy 已提交
2092
#define PALMAS_INT1_MASK_PWRON_SHIFT				0x01
G
Graeme Gregory 已提交
2093
#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV			0x01
K
Keerthy 已提交
2094
#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV_SHIFT		0x00
G
Graeme Gregory 已提交
2095 2096 2097

/* Bit definitions for INT1_LINE_STATE */
#define PALMAS_INT1_LINE_STATE_VBAT_MON				0x80
K
Keerthy 已提交
2098
#define PALMAS_INT1_LINE_STATE_VBAT_MON_SHIFT			0x07
G
Graeme Gregory 已提交
2099
#define PALMAS_INT1_LINE_STATE_VSYS_MON				0x40
K
Keerthy 已提交
2100
#define PALMAS_INT1_LINE_STATE_VSYS_MON_SHIFT			0x06
G
Graeme Gregory 已提交
2101
#define PALMAS_INT1_LINE_STATE_HOTDIE				0x20
K
Keerthy 已提交
2102
#define PALMAS_INT1_LINE_STATE_HOTDIE_SHIFT			0x05
G
Graeme Gregory 已提交
2103
#define PALMAS_INT1_LINE_STATE_PWRDOWN				0x10
K
Keerthy 已提交
2104
#define PALMAS_INT1_LINE_STATE_PWRDOWN_SHIFT			0x04
G
Graeme Gregory 已提交
2105
#define PALMAS_INT1_LINE_STATE_RPWRON				0x08
K
Keerthy 已提交
2106
#define PALMAS_INT1_LINE_STATE_RPWRON_SHIFT			0x03
G
Graeme Gregory 已提交
2107
#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY			0x04
K
Keerthy 已提交
2108
#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT		0x02
G
Graeme Gregory 已提交
2109
#define PALMAS_INT1_LINE_STATE_PWRON				0x02
K
Keerthy 已提交
2110
#define PALMAS_INT1_LINE_STATE_PWRON_SHIFT			0x01
G
Graeme Gregory 已提交
2111
#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV		0x01
K
Keerthy 已提交
2112
#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV_SHIFT	0x00
G
Graeme Gregory 已提交
2113 2114 2115

/* Bit definitions for INT2_STATUS */
#define PALMAS_INT2_STATUS_VAC_ACOK				0x80
K
Keerthy 已提交
2116
#define PALMAS_INT2_STATUS_VAC_ACOK_SHIFT			0x07
G
Graeme Gregory 已提交
2117
#define PALMAS_INT2_STATUS_SHORT				0x40
K
Keerthy 已提交
2118
#define PALMAS_INT2_STATUS_SHORT_SHIFT				0x06
G
Graeme Gregory 已提交
2119
#define PALMAS_INT2_STATUS_FBI_BB				0x20
K
Keerthy 已提交
2120
#define PALMAS_INT2_STATUS_FBI_BB_SHIFT				0x05
G
Graeme Gregory 已提交
2121
#define PALMAS_INT2_STATUS_RESET_IN				0x10
K
Keerthy 已提交
2122
#define PALMAS_INT2_STATUS_RESET_IN_SHIFT			0x04
G
Graeme Gregory 已提交
2123
#define PALMAS_INT2_STATUS_BATREMOVAL				0x08
K
Keerthy 已提交
2124
#define PALMAS_INT2_STATUS_BATREMOVAL_SHIFT			0x03
G
Graeme Gregory 已提交
2125
#define PALMAS_INT2_STATUS_WDT					0x04
K
Keerthy 已提交
2126
#define PALMAS_INT2_STATUS_WDT_SHIFT				0x02
G
Graeme Gregory 已提交
2127
#define PALMAS_INT2_STATUS_RTC_TIMER				0x02
K
Keerthy 已提交
2128
#define PALMAS_INT2_STATUS_RTC_TIMER_SHIFT			0x01
G
Graeme Gregory 已提交
2129
#define PALMAS_INT2_STATUS_RTC_ALARM				0x01
K
Keerthy 已提交
2130
#define PALMAS_INT2_STATUS_RTC_ALARM_SHIFT			0x00
G
Graeme Gregory 已提交
2131 2132 2133

/* Bit definitions for INT2_MASK */
#define PALMAS_INT2_MASK_VAC_ACOK				0x80
K
Keerthy 已提交
2134
#define PALMAS_INT2_MASK_VAC_ACOK_SHIFT				0x07
G
Graeme Gregory 已提交
2135
#define PALMAS_INT2_MASK_SHORT					0x40
K
Keerthy 已提交
2136
#define PALMAS_INT2_MASK_SHORT_SHIFT				0x06
G
Graeme Gregory 已提交
2137
#define PALMAS_INT2_MASK_FBI_BB					0x20
K
Keerthy 已提交
2138
#define PALMAS_INT2_MASK_FBI_BB_SHIFT				0x05
G
Graeme Gregory 已提交
2139
#define PALMAS_INT2_MASK_RESET_IN				0x10
K
Keerthy 已提交
2140
#define PALMAS_INT2_MASK_RESET_IN_SHIFT				0x04
G
Graeme Gregory 已提交
2141
#define PALMAS_INT2_MASK_BATREMOVAL				0x08
K
Keerthy 已提交
2142
#define PALMAS_INT2_MASK_BATREMOVAL_SHIFT			0x03
G
Graeme Gregory 已提交
2143
#define PALMAS_INT2_MASK_WDT					0x04
K
Keerthy 已提交
2144
#define PALMAS_INT2_MASK_WDT_SHIFT				0x02
G
Graeme Gregory 已提交
2145
#define PALMAS_INT2_MASK_RTC_TIMER				0x02
K
Keerthy 已提交
2146
#define PALMAS_INT2_MASK_RTC_TIMER_SHIFT			0x01
G
Graeme Gregory 已提交
2147
#define PALMAS_INT2_MASK_RTC_ALARM				0x01
K
Keerthy 已提交
2148
#define PALMAS_INT2_MASK_RTC_ALARM_SHIFT			0x00
G
Graeme Gregory 已提交
2149 2150 2151

/* Bit definitions for INT2_LINE_STATE */
#define PALMAS_INT2_LINE_STATE_VAC_ACOK				0x80
K
Keerthy 已提交
2152
#define PALMAS_INT2_LINE_STATE_VAC_ACOK_SHIFT			0x07
G
Graeme Gregory 已提交
2153
#define PALMAS_INT2_LINE_STATE_SHORT				0x40
K
Keerthy 已提交
2154
#define PALMAS_INT2_LINE_STATE_SHORT_SHIFT			0x06
G
Graeme Gregory 已提交
2155
#define PALMAS_INT2_LINE_STATE_FBI_BB				0x20
K
Keerthy 已提交
2156
#define PALMAS_INT2_LINE_STATE_FBI_BB_SHIFT			0x05
G
Graeme Gregory 已提交
2157
#define PALMAS_INT2_LINE_STATE_RESET_IN				0x10
K
Keerthy 已提交
2158
#define PALMAS_INT2_LINE_STATE_RESET_IN_SHIFT			0x04
G
Graeme Gregory 已提交
2159
#define PALMAS_INT2_LINE_STATE_BATREMOVAL			0x08
K
Keerthy 已提交
2160
#define PALMAS_INT2_LINE_STATE_BATREMOVAL_SHIFT			0x03
G
Graeme Gregory 已提交
2161
#define PALMAS_INT2_LINE_STATE_WDT				0x04
K
Keerthy 已提交
2162
#define PALMAS_INT2_LINE_STATE_WDT_SHIFT			0x02
G
Graeme Gregory 已提交
2163
#define PALMAS_INT2_LINE_STATE_RTC_TIMER			0x02
K
Keerthy 已提交
2164
#define PALMAS_INT2_LINE_STATE_RTC_TIMER_SHIFT			0x01
G
Graeme Gregory 已提交
2165
#define PALMAS_INT2_LINE_STATE_RTC_ALARM			0x01
K
Keerthy 已提交
2166
#define PALMAS_INT2_LINE_STATE_RTC_ALARM_SHIFT			0x00
G
Graeme Gregory 已提交
2167 2168 2169

/* Bit definitions for INT3_STATUS */
#define PALMAS_INT3_STATUS_VBUS					0x80
K
Keerthy 已提交
2170
#define PALMAS_INT3_STATUS_VBUS_SHIFT				0x07
G
Graeme Gregory 已提交
2171
#define PALMAS_INT3_STATUS_VBUS_OTG				0x40
K
Keerthy 已提交
2172
#define PALMAS_INT3_STATUS_VBUS_OTG_SHIFT			0x06
G
Graeme Gregory 已提交
2173
#define PALMAS_INT3_STATUS_ID					0x20
K
Keerthy 已提交
2174
#define PALMAS_INT3_STATUS_ID_SHIFT				0x05
G
Graeme Gregory 已提交
2175
#define PALMAS_INT3_STATUS_ID_OTG				0x10
K
Keerthy 已提交
2176
#define PALMAS_INT3_STATUS_ID_OTG_SHIFT				0x04
G
Graeme Gregory 已提交
2177
#define PALMAS_INT3_STATUS_GPADC_EOC_RT				0x08
K
Keerthy 已提交
2178
#define PALMAS_INT3_STATUS_GPADC_EOC_RT_SHIFT			0x03
G
Graeme Gregory 已提交
2179
#define PALMAS_INT3_STATUS_GPADC_EOC_SW				0x04
K
Keerthy 已提交
2180
#define PALMAS_INT3_STATUS_GPADC_EOC_SW_SHIFT			0x02
G
Graeme Gregory 已提交
2181
#define PALMAS_INT3_STATUS_GPADC_AUTO_1				0x02
K
Keerthy 已提交
2182
#define PALMAS_INT3_STATUS_GPADC_AUTO_1_SHIFT			0x01
G
Graeme Gregory 已提交
2183
#define PALMAS_INT3_STATUS_GPADC_AUTO_0				0x01
K
Keerthy 已提交
2184
#define PALMAS_INT3_STATUS_GPADC_AUTO_0_SHIFT			0x00
G
Graeme Gregory 已提交
2185 2186 2187

/* Bit definitions for INT3_MASK */
#define PALMAS_INT3_MASK_VBUS					0x80
K
Keerthy 已提交
2188
#define PALMAS_INT3_MASK_VBUS_SHIFT				0x07
G
Graeme Gregory 已提交
2189
#define PALMAS_INT3_MASK_VBUS_OTG				0x40
K
Keerthy 已提交
2190
#define PALMAS_INT3_MASK_VBUS_OTG_SHIFT				0x06
G
Graeme Gregory 已提交
2191
#define PALMAS_INT3_MASK_ID					0x20
K
Keerthy 已提交
2192
#define PALMAS_INT3_MASK_ID_SHIFT				0x05
G
Graeme Gregory 已提交
2193
#define PALMAS_INT3_MASK_ID_OTG					0x10
K
Keerthy 已提交
2194
#define PALMAS_INT3_MASK_ID_OTG_SHIFT				0x04
G
Graeme Gregory 已提交
2195
#define PALMAS_INT3_MASK_GPADC_EOC_RT				0x08
K
Keerthy 已提交
2196
#define PALMAS_INT3_MASK_GPADC_EOC_RT_SHIFT			0x03
G
Graeme Gregory 已提交
2197
#define PALMAS_INT3_MASK_GPADC_EOC_SW				0x04
K
Keerthy 已提交
2198
#define PALMAS_INT3_MASK_GPADC_EOC_SW_SHIFT			0x02
G
Graeme Gregory 已提交
2199
#define PALMAS_INT3_MASK_GPADC_AUTO_1				0x02
K
Keerthy 已提交
2200
#define PALMAS_INT3_MASK_GPADC_AUTO_1_SHIFT			0x01
G
Graeme Gregory 已提交
2201
#define PALMAS_INT3_MASK_GPADC_AUTO_0				0x01
K
Keerthy 已提交
2202
#define PALMAS_INT3_MASK_GPADC_AUTO_0_SHIFT			0x00
G
Graeme Gregory 已提交
2203 2204 2205

/* Bit definitions for INT3_LINE_STATE */
#define PALMAS_INT3_LINE_STATE_VBUS				0x80
K
Keerthy 已提交
2206
#define PALMAS_INT3_LINE_STATE_VBUS_SHIFT			0x07
G
Graeme Gregory 已提交
2207
#define PALMAS_INT3_LINE_STATE_VBUS_OTG				0x40
K
Keerthy 已提交
2208
#define PALMAS_INT3_LINE_STATE_VBUS_OTG_SHIFT			0x06
G
Graeme Gregory 已提交
2209
#define PALMAS_INT3_LINE_STATE_ID				0x20
K
Keerthy 已提交
2210
#define PALMAS_INT3_LINE_STATE_ID_SHIFT				0x05
G
Graeme Gregory 已提交
2211
#define PALMAS_INT3_LINE_STATE_ID_OTG				0x10
K
Keerthy 已提交
2212
#define PALMAS_INT3_LINE_STATE_ID_OTG_SHIFT			0x04
G
Graeme Gregory 已提交
2213
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT			0x08
K
Keerthy 已提交
2214
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT_SHIFT		0x03
G
Graeme Gregory 已提交
2215
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW			0x04
K
Keerthy 已提交
2216
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT		0x02
G
Graeme Gregory 已提交
2217
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1			0x02
K
Keerthy 已提交
2218
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT		0x01
G
Graeme Gregory 已提交
2219
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0			0x01
K
Keerthy 已提交
2220
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT		0x00
G
Graeme Gregory 已提交
2221 2222 2223

/* Bit definitions for INT4_STATUS */
#define PALMAS_INT4_STATUS_GPIO_7				0x80
K
Keerthy 已提交
2224
#define PALMAS_INT4_STATUS_GPIO_7_SHIFT				0x07
G
Graeme Gregory 已提交
2225
#define PALMAS_INT4_STATUS_GPIO_6				0x40
K
Keerthy 已提交
2226
#define PALMAS_INT4_STATUS_GPIO_6_SHIFT				0x06
G
Graeme Gregory 已提交
2227
#define PALMAS_INT4_STATUS_GPIO_5				0x20
K
Keerthy 已提交
2228
#define PALMAS_INT4_STATUS_GPIO_5_SHIFT				0x05
G
Graeme Gregory 已提交
2229
#define PALMAS_INT4_STATUS_GPIO_4				0x10
K
Keerthy 已提交
2230
#define PALMAS_INT4_STATUS_GPIO_4_SHIFT				0x04
G
Graeme Gregory 已提交
2231
#define PALMAS_INT4_STATUS_GPIO_3				0x08
K
Keerthy 已提交
2232
#define PALMAS_INT4_STATUS_GPIO_3_SHIFT				0x03
G
Graeme Gregory 已提交
2233
#define PALMAS_INT4_STATUS_GPIO_2				0x04
K
Keerthy 已提交
2234
#define PALMAS_INT4_STATUS_GPIO_2_SHIFT				0x02
G
Graeme Gregory 已提交
2235
#define PALMAS_INT4_STATUS_GPIO_1				0x02
K
Keerthy 已提交
2236
#define PALMAS_INT4_STATUS_GPIO_1_SHIFT				0x01
G
Graeme Gregory 已提交
2237
#define PALMAS_INT4_STATUS_GPIO_0				0x01
K
Keerthy 已提交
2238
#define PALMAS_INT4_STATUS_GPIO_0_SHIFT				0x00
G
Graeme Gregory 已提交
2239 2240 2241

/* Bit definitions for INT4_MASK */
#define PALMAS_INT4_MASK_GPIO_7					0x80
K
Keerthy 已提交
2242
#define PALMAS_INT4_MASK_GPIO_7_SHIFT				0x07
G
Graeme Gregory 已提交
2243
#define PALMAS_INT4_MASK_GPIO_6					0x40
K
Keerthy 已提交
2244
#define PALMAS_INT4_MASK_GPIO_6_SHIFT				0x06
G
Graeme Gregory 已提交
2245
#define PALMAS_INT4_MASK_GPIO_5					0x20
K
Keerthy 已提交
2246
#define PALMAS_INT4_MASK_GPIO_5_SHIFT				0x05
G
Graeme Gregory 已提交
2247
#define PALMAS_INT4_MASK_GPIO_4					0x10
K
Keerthy 已提交
2248
#define PALMAS_INT4_MASK_GPIO_4_SHIFT				0x04
G
Graeme Gregory 已提交
2249
#define PALMAS_INT4_MASK_GPIO_3					0x08
K
Keerthy 已提交
2250
#define PALMAS_INT4_MASK_GPIO_3_SHIFT				0x03
G
Graeme Gregory 已提交
2251
#define PALMAS_INT4_MASK_GPIO_2					0x04
K
Keerthy 已提交
2252
#define PALMAS_INT4_MASK_GPIO_2_SHIFT				0x02
G
Graeme Gregory 已提交
2253
#define PALMAS_INT4_MASK_GPIO_1					0x02
K
Keerthy 已提交
2254
#define PALMAS_INT4_MASK_GPIO_1_SHIFT				0x01
G
Graeme Gregory 已提交
2255
#define PALMAS_INT4_MASK_GPIO_0					0x01
K
Keerthy 已提交
2256
#define PALMAS_INT4_MASK_GPIO_0_SHIFT				0x00
G
Graeme Gregory 已提交
2257 2258 2259

/* Bit definitions for INT4_LINE_STATE */
#define PALMAS_INT4_LINE_STATE_GPIO_7				0x80
K
Keerthy 已提交
2260
#define PALMAS_INT4_LINE_STATE_GPIO_7_SHIFT			0x07
G
Graeme Gregory 已提交
2261
#define PALMAS_INT4_LINE_STATE_GPIO_6				0x40
K
Keerthy 已提交
2262
#define PALMAS_INT4_LINE_STATE_GPIO_6_SHIFT			0x06
G
Graeme Gregory 已提交
2263
#define PALMAS_INT4_LINE_STATE_GPIO_5				0x20
K
Keerthy 已提交
2264
#define PALMAS_INT4_LINE_STATE_GPIO_5_SHIFT			0x05
G
Graeme Gregory 已提交
2265
#define PALMAS_INT4_LINE_STATE_GPIO_4				0x10
K
Keerthy 已提交
2266
#define PALMAS_INT4_LINE_STATE_GPIO_4_SHIFT			0x04
G
Graeme Gregory 已提交
2267
#define PALMAS_INT4_LINE_STATE_GPIO_3				0x08
K
Keerthy 已提交
2268
#define PALMAS_INT4_LINE_STATE_GPIO_3_SHIFT			0x03
G
Graeme Gregory 已提交
2269
#define PALMAS_INT4_LINE_STATE_GPIO_2				0x04
K
Keerthy 已提交
2270
#define PALMAS_INT4_LINE_STATE_GPIO_2_SHIFT			0x02
G
Graeme Gregory 已提交
2271
#define PALMAS_INT4_LINE_STATE_GPIO_1				0x02
K
Keerthy 已提交
2272
#define PALMAS_INT4_LINE_STATE_GPIO_1_SHIFT			0x01
G
Graeme Gregory 已提交
2273
#define PALMAS_INT4_LINE_STATE_GPIO_0				0x01
K
Keerthy 已提交
2274
#define PALMAS_INT4_LINE_STATE_GPIO_0_SHIFT			0x00
G
Graeme Gregory 已提交
2275 2276 2277

/* Bit definitions for INT4_EDGE_DETECT1 */
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING			0x80
K
Keerthy 已提交
2278
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT		0x07
G
Graeme Gregory 已提交
2279
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING			0x40
K
Keerthy 已提交
2280
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT		0x06
G
Graeme Gregory 已提交
2281
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING			0x20
K
Keerthy 已提交
2282
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT		0x05
G
Graeme Gregory 已提交
2283
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING			0x10
K
Keerthy 已提交
2284
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT		0x04
G
Graeme Gregory 已提交
2285
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING			0x08
K
Keerthy 已提交
2286
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT		0x03
G
Graeme Gregory 已提交
2287
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING			0x04
K
Keerthy 已提交
2288
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT		0x02
G
Graeme Gregory 已提交
2289
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING			0x02
K
Keerthy 已提交
2290
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT		0x01
G
Graeme Gregory 已提交
2291
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING			0x01
K
Keerthy 已提交
2292
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT		0x00
G
Graeme Gregory 已提交
2293 2294 2295

/* Bit definitions for INT4_EDGE_DETECT2 */
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING			0x80
K
Keerthy 已提交
2296
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING_SHIFT		0x07
G
Graeme Gregory 已提交
2297
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING			0x40
K
Keerthy 已提交
2298
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING_SHIFT		0x06
G
Graeme Gregory 已提交
2299
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING			0x20
K
Keerthy 已提交
2300
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT		0x05
G
Graeme Gregory 已提交
2301
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING			0x10
K
Keerthy 已提交
2302
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT		0x04
G
Graeme Gregory 已提交
2303
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING			0x08
K
Keerthy 已提交
2304
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT		0x03
G
Graeme Gregory 已提交
2305
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING			0x04
K
Keerthy 已提交
2306
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT		0x02
G
Graeme Gregory 已提交
2307
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING			0x02
K
Keerthy 已提交
2308
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT		0x01
G
Graeme Gregory 已提交
2309
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING			0x01
K
Keerthy 已提交
2310
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT		0x00
G
Graeme Gregory 已提交
2311 2312 2313

/* Bit definitions for INT_CTRL */
#define PALMAS_INT_CTRL_INT_PENDING				0x04
K
Keerthy 已提交
2314
#define PALMAS_INT_CTRL_INT_PENDING_SHIFT			0x02
G
Graeme Gregory 已提交
2315
#define PALMAS_INT_CTRL_INT_CLEAR				0x01
K
Keerthy 已提交
2316
#define PALMAS_INT_CTRL_INT_CLEAR_SHIFT				0x00
G
Graeme Gregory 已提交
2317 2318

/* Registers for function USB_OTG */
K
Keerthy 已提交
2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331
#define PALMAS_USB_WAKEUP					0x03
#define PALMAS_USB_VBUS_CTRL_SET				0x04
#define PALMAS_USB_VBUS_CTRL_CLR				0x05
#define PALMAS_USB_ID_CTRL_SET					0x06
#define PALMAS_USB_ID_CTRL_CLEAR				0x07
#define PALMAS_USB_VBUS_INT_SRC					0x08
#define PALMAS_USB_VBUS_INT_LATCH_SET				0x09
#define PALMAS_USB_VBUS_INT_LATCH_CLR				0x0A
#define PALMAS_USB_VBUS_INT_EN_LO_SET				0x0B
#define PALMAS_USB_VBUS_INT_EN_LO_CLR				0x0C
#define PALMAS_USB_VBUS_INT_EN_HI_SET				0x0D
#define PALMAS_USB_VBUS_INT_EN_HI_CLR				0x0E
#define PALMAS_USB_ID_INT_SRC					0x0F
G
Graeme Gregory 已提交
2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
#define PALMAS_USB_ID_INT_LATCH_SET				0x10
#define PALMAS_USB_ID_INT_LATCH_CLR				0x11
#define PALMAS_USB_ID_INT_EN_LO_SET				0x12
#define PALMAS_USB_ID_INT_EN_LO_CLR				0x13
#define PALMAS_USB_ID_INT_EN_HI_SET				0x14
#define PALMAS_USB_ID_INT_EN_HI_CLR				0x15
#define PALMAS_USB_OTG_ADP_CTRL					0x16
#define PALMAS_USB_OTG_ADP_HIGH					0x17
#define PALMAS_USB_OTG_ADP_LOW					0x18
#define PALMAS_USB_OTG_ADP_RISE					0x19
#define PALMAS_USB_OTG_REVISION					0x1A

/* Bit definitions for USB_WAKEUP */
#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP				0x01
K
Keerthy 已提交
2346
#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP_SHIFT			0x00
G
Graeme Gregory 已提交
2347 2348 2349

/* Bit definitions for USB_VBUS_CTRL_SET */
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS			0x80
K
Keerthy 已提交
2350
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS_SHIFT		0x07
G
Graeme Gregory 已提交
2351
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG			0x20
K
Keerthy 已提交
2352
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG_SHIFT		0x05
G
Graeme Gregory 已提交
2353
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC			0x10
K
Keerthy 已提交
2354
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
2355
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK			0x08
K
Keerthy 已提交
2356
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK_SHIFT		0x03
G
Graeme Gregory 已提交
2357
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP			0x04
K
Keerthy 已提交
2358
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2359 2360 2361

/* Bit definitions for USB_VBUS_CTRL_CLR */
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS			0x80
K
Keerthy 已提交
2362
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS_SHIFT		0x07
G
Graeme Gregory 已提交
2363
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG			0x20
K
Keerthy 已提交
2364
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG_SHIFT		0x05
G
Graeme Gregory 已提交
2365
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC			0x10
K
Keerthy 已提交
2366
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
2367
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK			0x08
K
Keerthy 已提交
2368
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK_SHIFT		0x03
G
Graeme Gregory 已提交
2369
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP			0x04
K
Keerthy 已提交
2370
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2371 2372 2373

/* Bit definitions for USB_ID_CTRL_SET */
#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K			0x80
K
Keerthy 已提交
2374
#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K_SHIFT			0x07
G
Graeme Gregory 已提交
2375
#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K			0x40
K
Keerthy 已提交
2376
#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K_SHIFT			0x06
G
Graeme Gregory 已提交
2377
#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV			0x20
K
Keerthy 已提交
2378
#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV_SHIFT			0x05
G
Graeme Gregory 已提交
2379
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U			0x10
K
Keerthy 已提交
2380
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U_SHIFT			0x04
G
Graeme Gregory 已提交
2381
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U			0x08
K
Keerthy 已提交
2382
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U_SHIFT			0x03
G
Graeme Gregory 已提交
2383
#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP			0x04
K
Keerthy 已提交
2384
#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2385 2386 2387

/* Bit definitions for USB_ID_CTRL_CLEAR */
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K			0x80
K
Keerthy 已提交
2388
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K_SHIFT		0x07
G
Graeme Gregory 已提交
2389
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K			0x40
K
Keerthy 已提交
2390
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K_SHIFT		0x06
G
Graeme Gregory 已提交
2391
#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV			0x20
K
Keerthy 已提交
2392
#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV_SHIFT		0x05
G
Graeme Gregory 已提交
2393
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U			0x10
K
Keerthy 已提交
2394
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U_SHIFT		0x04
G
Graeme Gregory 已提交
2395
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U			0x08
K
Keerthy 已提交
2396
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U_SHIFT		0x03
G
Graeme Gregory 已提交
2397
#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP			0x04
K
Keerthy 已提交
2398
#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2399 2400 2401

/* Bit definitions for USB_VBUS_INT_SRC */
#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD			0x80
K
Keerthy 已提交
2402
#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD_SHIFT		0x07
G
Graeme Gregory 已提交
2403
#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB			0x40
K
Keerthy 已提交
2404
#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB_SHIFT			0x06
G
Graeme Gregory 已提交
2405
#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS			0x20
K
Keerthy 已提交
2406
#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS_SHIFT			0x05
G
Graeme Gregory 已提交
2407
#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD			0x08
K
Keerthy 已提交
2408
#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2409
#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD			0x04
K
Keerthy 已提交
2410
#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2411
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD			0x02
K
Keerthy 已提交
2412
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2413
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END			0x01
K
Keerthy 已提交
2414
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2415 2416 2417

/* Bit definitions for USB_VBUS_INT_LATCH_SET */
#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2418
#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2419
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB			0x40
K
Keerthy 已提交
2420
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2421
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS			0x20
K
Keerthy 已提交
2422
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2423
#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP			0x10
K
Keerthy 已提交
2424
#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2425
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2426
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2427
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD		0x04
K
Keerthy 已提交
2428
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2429
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD		0x02
K
Keerthy 已提交
2430
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2431
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END		0x01
K
Keerthy 已提交
2432
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2433 2434 2435

/* Bit definitions for USB_VBUS_INT_LATCH_CLR */
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2436
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2437
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB			0x40
K
Keerthy 已提交
2438
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2439
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS			0x20
K
Keerthy 已提交
2440
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2441
#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP			0x10
K
Keerthy 已提交
2442
#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2443
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2444
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2445
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD		0x04
K
Keerthy 已提交
2446
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2447
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD		0x02
K
Keerthy 已提交
2448
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2449
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END		0x01
K
Keerthy 已提交
2450
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2451 2452 2453

/* Bit definitions for USB_VBUS_INT_EN_LO_SET */
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2454
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2455
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB			0x40
K
Keerthy 已提交
2456
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2457
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS			0x20
K
Keerthy 已提交
2458
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2459
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2460
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2461
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD		0x04
K
Keerthy 已提交
2462
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2463
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD		0x02
K
Keerthy 已提交
2464
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2465
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END		0x01
K
Keerthy 已提交
2466
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2467 2468 2469

/* Bit definitions for USB_VBUS_INT_EN_LO_CLR */
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2470
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2471
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB			0x40
K
Keerthy 已提交
2472
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2473
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS			0x20
K
Keerthy 已提交
2474
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2475
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2476
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2477
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD		0x04
K
Keerthy 已提交
2478
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2479
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD		0x02
K
Keerthy 已提交
2480
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2481
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END		0x01
K
Keerthy 已提交
2482
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2483 2484 2485

/* Bit definitions for USB_VBUS_INT_EN_HI_SET */
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2486
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2487
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB			0x40
K
Keerthy 已提交
2488
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2489
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS			0x20
K
Keerthy 已提交
2490
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2491
#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP			0x10
K
Keerthy 已提交
2492
#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2493
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2494
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2495
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD		0x04
K
Keerthy 已提交
2496
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2497
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD		0x02
K
Keerthy 已提交
2498
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2499
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END		0x01
K
Keerthy 已提交
2500
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2501 2502 2503

/* Bit definitions for USB_VBUS_INT_EN_HI_CLR */
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2504
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2505
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB			0x40
K
Keerthy 已提交
2506
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2507
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS			0x20
K
Keerthy 已提交
2508
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2509
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP			0x10
K
Keerthy 已提交
2510
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2511
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2512
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2513
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD		0x04
K
Keerthy 已提交
2514
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2515
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD		0x02
K
Keerthy 已提交
2516
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2517
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END		0x01
K
Keerthy 已提交
2518
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2519 2520 2521

/* Bit definitions for USB_ID_INT_SRC */
#define PALMAS_USB_ID_INT_SRC_ID_FLOAT				0x10
K
Keerthy 已提交
2522
#define PALMAS_USB_ID_INT_SRC_ID_FLOAT_SHIFT			0x04
G
Graeme Gregory 已提交
2523
#define PALMAS_USB_ID_INT_SRC_ID_A				0x08
K
Keerthy 已提交
2524
#define PALMAS_USB_ID_INT_SRC_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2525
#define PALMAS_USB_ID_INT_SRC_ID_B				0x04
K
Keerthy 已提交
2526
#define PALMAS_USB_ID_INT_SRC_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2527
#define PALMAS_USB_ID_INT_SRC_ID_C				0x02
K
Keerthy 已提交
2528
#define PALMAS_USB_ID_INT_SRC_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2529
#define PALMAS_USB_ID_INT_SRC_ID_GND				0x01
K
Keerthy 已提交
2530
#define PALMAS_USB_ID_INT_SRC_ID_GND_SHIFT			0x00
G
Graeme Gregory 已提交
2531 2532 2533

/* Bit definitions for USB_ID_INT_LATCH_SET */
#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT			0x10
K
Keerthy 已提交
2534
#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2535
#define PALMAS_USB_ID_INT_LATCH_SET_ID_A			0x08
K
Keerthy 已提交
2536
#define PALMAS_USB_ID_INT_LATCH_SET_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2537
#define PALMAS_USB_ID_INT_LATCH_SET_ID_B			0x04
K
Keerthy 已提交
2538
#define PALMAS_USB_ID_INT_LATCH_SET_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2539
#define PALMAS_USB_ID_INT_LATCH_SET_ID_C			0x02
K
Keerthy 已提交
2540
#define PALMAS_USB_ID_INT_LATCH_SET_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2541
#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND			0x01
K
Keerthy 已提交
2542
#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2543 2544 2545

/* Bit definitions for USB_ID_INT_LATCH_CLR */
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT			0x10
K
Keerthy 已提交
2546
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2547
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A			0x08
K
Keerthy 已提交
2548
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2549
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B			0x04
K
Keerthy 已提交
2550
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2551
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C			0x02
K
Keerthy 已提交
2552
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2553
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND			0x01
K
Keerthy 已提交
2554
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2555 2556 2557

/* Bit definitions for USB_ID_INT_EN_LO_SET */
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT			0x10
K
Keerthy 已提交
2558
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2559
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A			0x08
K
Keerthy 已提交
2560
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2561
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B			0x04
K
Keerthy 已提交
2562
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2563
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C			0x02
K
Keerthy 已提交
2564
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2565
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND			0x01
K
Keerthy 已提交
2566
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2567 2568 2569

/* Bit definitions for USB_ID_INT_EN_LO_CLR */
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT			0x10
K
Keerthy 已提交
2570
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2571
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A			0x08
K
Keerthy 已提交
2572
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2573
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B			0x04
K
Keerthy 已提交
2574
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2575
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C			0x02
K
Keerthy 已提交
2576
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2577
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND			0x01
K
Keerthy 已提交
2578
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2579 2580 2581

/* Bit definitions for USB_ID_INT_EN_HI_SET */
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT			0x10
K
Keerthy 已提交
2582
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2583
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A			0x08
K
Keerthy 已提交
2584
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2585
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B			0x04
K
Keerthy 已提交
2586
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2587
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C			0x02
K
Keerthy 已提交
2588
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2589
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND			0x01
K
Keerthy 已提交
2590
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2591 2592 2593

/* Bit definitions for USB_ID_INT_EN_HI_CLR */
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT			0x10
K
Keerthy 已提交
2594
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2595
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A			0x08
K
Keerthy 已提交
2596
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2597
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B			0x04
K
Keerthy 已提交
2598
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2599
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C			0x02
K
Keerthy 已提交
2600
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2601
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND			0x01
K
Keerthy 已提交
2602
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2603 2604 2605

/* Bit definitions for USB_OTG_ADP_CTRL */
#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN				0x04
K
Keerthy 已提交
2606
#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN_SHIFT			0x02
G
Graeme Gregory 已提交
2607
#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_MASK			0x03
K
Keerthy 已提交
2608
#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_SHIFT			0x00
G
Graeme Gregory 已提交
2609 2610

/* Bit definitions for USB_OTG_ADP_HIGH */
K
Keerthy 已提交
2611 2612
#define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_MASK			0xFF
#define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_SHIFT		0x00
G
Graeme Gregory 已提交
2613 2614

/* Bit definitions for USB_OTG_ADP_LOW */
K
Keerthy 已提交
2615 2616
#define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_MASK			0xFF
#define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_SHIFT			0x00
G
Graeme Gregory 已提交
2617 2618

/* Bit definitions for USB_OTG_ADP_RISE */
K
Keerthy 已提交
2619 2620
#define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_MASK			0xFF
#define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_SHIFT		0x00
G
Graeme Gregory 已提交
2621 2622 2623

/* Bit definitions for USB_OTG_REVISION */
#define PALMAS_USB_OTG_REVISION_OTG_REV				0x01
K
Keerthy 已提交
2624
#define PALMAS_USB_OTG_REVISION_OTG_REV_SHIFT			0x00
G
Graeme Gregory 已提交
2625 2626

/* Registers for function VIBRATOR */
K
Keerthy 已提交
2627
#define PALMAS_VIBRA_CTRL					0x00
G
Graeme Gregory 已提交
2628 2629 2630

/* Bit definitions for VIBRA_CTRL */
#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_MASK			0x06
K
Keerthy 已提交
2631
#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_SHIFT			0x01
G
Graeme Gregory 已提交
2632
#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL				0x01
K
Keerthy 已提交
2633
#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL_SHIFT			0x00
G
Graeme Gregory 已提交
2634 2635

/* Registers for function GPIO */
K
Keerthy 已提交
2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
#define PALMAS_GPIO_DATA_IN					0x00
#define PALMAS_GPIO_DATA_DIR					0x01
#define PALMAS_GPIO_DATA_OUT					0x02
#define PALMAS_GPIO_DEBOUNCE_EN					0x03
#define PALMAS_GPIO_CLEAR_DATA_OUT				0x04
#define PALMAS_GPIO_SET_DATA_OUT				0x05
#define PALMAS_PU_PD_GPIO_CTRL1					0x06
#define PALMAS_PU_PD_GPIO_CTRL2					0x07
#define PALMAS_OD_OUTPUT_GPIO_CTRL				0x08
#define PALMAS_GPIO_DATA_IN2					0x09
2646 2647 2648 2649 2650 2651 2652 2653
#define PALMAS_GPIO_DATA_DIR2					0x0A
#define PALMAS_GPIO_DATA_OUT2					0x0B
#define PALMAS_GPIO_DEBOUNCE_EN2				0x0C
#define PALMAS_GPIO_CLEAR_DATA_OUT2				0x0D
#define PALMAS_GPIO_SET_DATA_OUT2				0x0E
#define PALMAS_PU_PD_GPIO_CTRL3					0x0F
#define PALMAS_PU_PD_GPIO_CTRL4					0x10
#define PALMAS_OD_OUTPUT_GPIO_CTRL2				0x11
G
Graeme Gregory 已提交
2654 2655 2656

/* Bit definitions for GPIO_DATA_IN */
#define PALMAS_GPIO_DATA_IN_GPIO_7_IN				0x80
K
Keerthy 已提交
2657
#define PALMAS_GPIO_DATA_IN_GPIO_7_IN_SHIFT			0x07
G
Graeme Gregory 已提交
2658
#define PALMAS_GPIO_DATA_IN_GPIO_6_IN				0x40
K
Keerthy 已提交
2659
#define PALMAS_GPIO_DATA_IN_GPIO_6_IN_SHIFT			0x06
G
Graeme Gregory 已提交
2660
#define PALMAS_GPIO_DATA_IN_GPIO_5_IN				0x20
K
Keerthy 已提交
2661
#define PALMAS_GPIO_DATA_IN_GPIO_5_IN_SHIFT			0x05
G
Graeme Gregory 已提交
2662
#define PALMAS_GPIO_DATA_IN_GPIO_4_IN				0x10
K
Keerthy 已提交
2663
#define PALMAS_GPIO_DATA_IN_GPIO_4_IN_SHIFT			0x04
G
Graeme Gregory 已提交
2664
#define PALMAS_GPIO_DATA_IN_GPIO_3_IN				0x08
K
Keerthy 已提交
2665
#define PALMAS_GPIO_DATA_IN_GPIO_3_IN_SHIFT			0x03
G
Graeme Gregory 已提交
2666
#define PALMAS_GPIO_DATA_IN_GPIO_2_IN				0x04
K
Keerthy 已提交
2667
#define PALMAS_GPIO_DATA_IN_GPIO_2_IN_SHIFT			0x02
G
Graeme Gregory 已提交
2668
#define PALMAS_GPIO_DATA_IN_GPIO_1_IN				0x02
K
Keerthy 已提交
2669
#define PALMAS_GPIO_DATA_IN_GPIO_1_IN_SHIFT			0x01
G
Graeme Gregory 已提交
2670
#define PALMAS_GPIO_DATA_IN_GPIO_0_IN				0x01
K
Keerthy 已提交
2671
#define PALMAS_GPIO_DATA_IN_GPIO_0_IN_SHIFT			0x00
G
Graeme Gregory 已提交
2672 2673 2674

/* Bit definitions for GPIO_DATA_DIR */
#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR				0x80
K
Keerthy 已提交
2675
#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR_SHIFT			0x07
G
Graeme Gregory 已提交
2676
#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR				0x40
K
Keerthy 已提交
2677
#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR_SHIFT			0x06
G
Graeme Gregory 已提交
2678
#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR				0x20
K
Keerthy 已提交
2679
#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR_SHIFT			0x05
G
Graeme Gregory 已提交
2680
#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR				0x10
K
Keerthy 已提交
2681
#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR_SHIFT			0x04
G
Graeme Gregory 已提交
2682
#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR				0x08
K
Keerthy 已提交
2683
#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR_SHIFT			0x03
G
Graeme Gregory 已提交
2684
#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR				0x04
K
Keerthy 已提交
2685
#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR_SHIFT			0x02
G
Graeme Gregory 已提交
2686
#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR				0x02
K
Keerthy 已提交
2687
#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR_SHIFT			0x01
G
Graeme Gregory 已提交
2688
#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR				0x01
K
Keerthy 已提交
2689
#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR_SHIFT			0x00
G
Graeme Gregory 已提交
2690 2691 2692

/* Bit definitions for GPIO_DATA_OUT */
#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT				0x80
K
Keerthy 已提交
2693
#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT_SHIFT			0x07
G
Graeme Gregory 已提交
2694
#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT				0x40
K
Keerthy 已提交
2695
#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT_SHIFT			0x06
G
Graeme Gregory 已提交
2696
#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT				0x20
K
Keerthy 已提交
2697
#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT_SHIFT			0x05
G
Graeme Gregory 已提交
2698
#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT				0x10
K
Keerthy 已提交
2699
#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT_SHIFT			0x04
G
Graeme Gregory 已提交
2700
#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT				0x08
K
Keerthy 已提交
2701
#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT_SHIFT			0x03
G
Graeme Gregory 已提交
2702
#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT				0x04
K
Keerthy 已提交
2703
#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT_SHIFT			0x02
G
Graeme Gregory 已提交
2704
#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT				0x02
K
Keerthy 已提交
2705
#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT_SHIFT			0x01
G
Graeme Gregory 已提交
2706
#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT				0x01
K
Keerthy 已提交
2707
#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT_SHIFT			0x00
G
Graeme Gregory 已提交
2708 2709 2710

/* Bit definitions for GPIO_DEBOUNCE_EN */
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN		0x80
K
Keerthy 已提交
2711
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN_SHIFT	0x07
G
Graeme Gregory 已提交
2712
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN		0x40
K
Keerthy 已提交
2713
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN_SHIFT	0x06
G
Graeme Gregory 已提交
2714
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN		0x20
K
Keerthy 已提交
2715
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN_SHIFT	0x05
G
Graeme Gregory 已提交
2716
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN		0x10
K
Keerthy 已提交
2717
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN_SHIFT	0x04
G
Graeme Gregory 已提交
2718
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN		0x08
K
Keerthy 已提交
2719
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN_SHIFT	0x03
G
Graeme Gregory 已提交
2720
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN		0x04
K
Keerthy 已提交
2721
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN_SHIFT	0x02
G
Graeme Gregory 已提交
2722
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN		0x02
K
Keerthy 已提交
2723
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN_SHIFT	0x01
G
Graeme Gregory 已提交
2724
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN		0x01
K
Keerthy 已提交
2725
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN_SHIFT	0x00
G
Graeme Gregory 已提交
2726 2727 2728

/* Bit definitions for GPIO_CLEAR_DATA_OUT */
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT	0x80
K
Keerthy 已提交
2729
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT_SHIFT	0x07
G
Graeme Gregory 已提交
2730
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT	0x40
K
Keerthy 已提交
2731
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT_SHIFT	0x06
G
Graeme Gregory 已提交
2732
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT	0x20
K
Keerthy 已提交
2733
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT_SHIFT	0x05
G
Graeme Gregory 已提交
2734
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT	0x10
K
Keerthy 已提交
2735
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT_SHIFT	0x04
G
Graeme Gregory 已提交
2736
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT	0x08
K
Keerthy 已提交
2737
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT_SHIFT	0x03
G
Graeme Gregory 已提交
2738
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT	0x04
K
Keerthy 已提交
2739
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT_SHIFT	0x02
G
Graeme Gregory 已提交
2740
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT	0x02
K
Keerthy 已提交
2741
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT_SHIFT	0x01
G
Graeme Gregory 已提交
2742
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT	0x01
K
Keerthy 已提交
2743
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT_SHIFT	0x00
G
Graeme Gregory 已提交
2744 2745 2746

/* Bit definitions for GPIO_SET_DATA_OUT */
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT		0x80
K
Keerthy 已提交
2747
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT_SHIFT	0x07
G
Graeme Gregory 已提交
2748
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT		0x40
K
Keerthy 已提交
2749
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT_SHIFT	0x06
G
Graeme Gregory 已提交
2750
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT		0x20
K
Keerthy 已提交
2751
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT_SHIFT	0x05
G
Graeme Gregory 已提交
2752
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT		0x10
K
Keerthy 已提交
2753
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT_SHIFT	0x04
G
Graeme Gregory 已提交
2754
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT		0x08
K
Keerthy 已提交
2755
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT_SHIFT	0x03
G
Graeme Gregory 已提交
2756
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT		0x04
K
Keerthy 已提交
2757
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT_SHIFT	0x02
G
Graeme Gregory 已提交
2758
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT		0x02
K
Keerthy 已提交
2759
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT_SHIFT	0x01
G
Graeme Gregory 已提交
2760
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT		0x01
K
Keerthy 已提交
2761
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT_SHIFT	0x00
G
Graeme Gregory 已提交
2762 2763 2764

/* Bit definitions for PU_PD_GPIO_CTRL1 */
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD			0x40
K
Keerthy 已提交
2765
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD_SHIFT			0x06
G
Graeme Gregory 已提交
2766
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU			0x20
K
Keerthy 已提交
2767
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU_SHIFT			0x05
G
Graeme Gregory 已提交
2768
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD			0x10
K
Keerthy 已提交
2769
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD_SHIFT			0x04
G
Graeme Gregory 已提交
2770
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU			0x08
K
Keerthy 已提交
2771
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU_SHIFT			0x03
G
Graeme Gregory 已提交
2772
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD			0x04
K
Keerthy 已提交
2773
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD_SHIFT			0x02
G
Graeme Gregory 已提交
2774
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD			0x01
K
Keerthy 已提交
2775
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD_SHIFT			0x00
G
Graeme Gregory 已提交
2776 2777 2778

/* Bit definitions for PU_PD_GPIO_CTRL2 */
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD			0x40
K
Keerthy 已提交
2779
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD_SHIFT			0x06
G
Graeme Gregory 已提交
2780
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU			0x20
K
Keerthy 已提交
2781
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU_SHIFT			0x05
G
Graeme Gregory 已提交
2782
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD			0x10
K
Keerthy 已提交
2783
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD_SHIFT			0x04
G
Graeme Gregory 已提交
2784
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU			0x08
K
Keerthy 已提交
2785
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU_SHIFT			0x03
G
Graeme Gregory 已提交
2786
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD			0x04
K
Keerthy 已提交
2787
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD_SHIFT			0x02
G
Graeme Gregory 已提交
2788
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU			0x02
K
Keerthy 已提交
2789
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU_SHIFT			0x01
G
Graeme Gregory 已提交
2790
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD			0x01
K
Keerthy 已提交
2791
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD_SHIFT			0x00
G
Graeme Gregory 已提交
2792 2793 2794

/* Bit definitions for OD_OUTPUT_GPIO_CTRL */
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD			0x20
K
Keerthy 已提交
2795
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD_SHIFT		0x05
G
Graeme Gregory 已提交
2796
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD			0x04
K
Keerthy 已提交
2797
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD_SHIFT		0x02
G
Graeme Gregory 已提交
2798
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD			0x02
K
Keerthy 已提交
2799
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD_SHIFT		0x01
G
Graeme Gregory 已提交
2800 2801

/* Registers for function GPADC */
K
Keerthy 已提交
2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817
#define PALMAS_GPADC_CTRL1					0x00
#define PALMAS_GPADC_CTRL2					0x01
#define PALMAS_GPADC_RT_CTRL					0x02
#define PALMAS_GPADC_AUTO_CTRL					0x03
#define PALMAS_GPADC_STATUS					0x04
#define PALMAS_GPADC_RT_SELECT					0x05
#define PALMAS_GPADC_RT_CONV0_LSB				0x06
#define PALMAS_GPADC_RT_CONV0_MSB				0x07
#define PALMAS_GPADC_AUTO_SELECT				0x08
#define PALMAS_GPADC_AUTO_CONV0_LSB				0x09
#define PALMAS_GPADC_AUTO_CONV0_MSB				0x0A
#define PALMAS_GPADC_AUTO_CONV1_LSB				0x0B
#define PALMAS_GPADC_AUTO_CONV1_MSB				0x0C
#define PALMAS_GPADC_SW_SELECT					0x0D
#define PALMAS_GPADC_SW_CONV0_LSB				0x0E
#define PALMAS_GPADC_SW_CONV0_MSB				0x0F
G
Graeme Gregory 已提交
2818 2819 2820 2821 2822 2823 2824 2825 2826
#define PALMAS_GPADC_THRES_CONV0_LSB				0x10
#define PALMAS_GPADC_THRES_CONV0_MSB				0x11
#define PALMAS_GPADC_THRES_CONV1_LSB				0x12
#define PALMAS_GPADC_THRES_CONV1_MSB				0x13
#define PALMAS_GPADC_SMPS_ILMONITOR_EN				0x14
#define PALMAS_GPADC_SMPS_VSEL_MONITORING			0x15

/* Bit definitions for GPADC_CTRL1 */
#define PALMAS_GPADC_CTRL1_RESERVED_MASK			0xc0
K
Keerthy 已提交
2827
#define PALMAS_GPADC_CTRL1_RESERVED_SHIFT			0x06
G
Graeme Gregory 已提交
2828
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_MASK			0x30
K
Keerthy 已提交
2829
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_SHIFT		0x04
G
Graeme Gregory 已提交
2830
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_MASK			0x0c
K
Keerthy 已提交
2831
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_SHIFT		0x02
G
Graeme Gregory 已提交
2832
#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET			0x02
K
Keerthy 已提交
2833
#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET_SHIFT		0x01
G
Graeme Gregory 已提交
2834
#define PALMAS_GPADC_CTRL1_GPADC_FORCE				0x01
K
Keerthy 已提交
2835
#define PALMAS_GPADC_CTRL1_GPADC_FORCE_SHIFT			0x00
G
Graeme Gregory 已提交
2836 2837 2838

/* Bit definitions for GPADC_CTRL2 */
#define PALMAS_GPADC_CTRL2_RESERVED_MASK			0x06
K
Keerthy 已提交
2839
#define PALMAS_GPADC_CTRL2_RESERVED_SHIFT			0x01
G
Graeme Gregory 已提交
2840 2841 2842

/* Bit definitions for GPADC_RT_CTRL */
#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY			0x02
K
Keerthy 已提交
2843
#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY_SHIFT			0x01
G
Graeme Gregory 已提交
2844
#define PALMAS_GPADC_RT_CTRL_START_POLARITY			0x01
K
Keerthy 已提交
2845
#define PALMAS_GPADC_RT_CTRL_START_POLARITY_SHIFT		0x00
G
Graeme Gregory 已提交
2846 2847 2848

/* Bit definitions for GPADC_AUTO_CTRL */
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1			0x80
K
Keerthy 已提交
2849
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1_SHIFT		0x07
G
Graeme Gregory 已提交
2850
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0			0x40
K
Keerthy 已提交
2851
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0_SHIFT		0x06
G
Graeme Gregory 已提交
2852
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN			0x20
K
Keerthy 已提交
2853
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN_SHIFT		0x05
G
Graeme Gregory 已提交
2854
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN			0x10
K
Keerthy 已提交
2855 2856 2857
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN_SHIFT		0x04
#define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_MASK		0x0F
#define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_SHIFT		0x00
G
Graeme Gregory 已提交
2858 2859 2860

/* Bit definitions for GPADC_STATUS */
#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE			0x10
K
Keerthy 已提交
2861
#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE_SHIFT		0x04
G
Graeme Gregory 已提交
2862 2863 2864

/* Bit definitions for GPADC_RT_SELECT */
#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN			0x80
K
Keerthy 已提交
2865 2866 2867
#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN_SHIFT			0x07
#define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_MASK		0x0F
#define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_SHIFT		0x00
G
Graeme Gregory 已提交
2868 2869

/* Bit definitions for GPADC_RT_CONV0_LSB */
K
Keerthy 已提交
2870 2871
#define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_MASK		0xFF
#define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_SHIFT		0x00
G
Graeme Gregory 已提交
2872 2873

/* Bit definitions for GPADC_RT_CONV0_MSB */
K
Keerthy 已提交
2874 2875
#define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_MASK		0x0F
#define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_SHIFT		0x00
G
Graeme Gregory 已提交
2876 2877

/* Bit definitions for GPADC_AUTO_SELECT */
K
Keerthy 已提交
2878 2879 2880 2881
#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_MASK		0xF0
#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_SHIFT		0x04
#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_MASK		0x0F
#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_SHIFT		0x00
G
Graeme Gregory 已提交
2882 2883

/* Bit definitions for GPADC_AUTO_CONV0_LSB */
K
Keerthy 已提交
2884 2885
#define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_MASK		0xFF
#define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_SHIFT	0x00
G
Graeme Gregory 已提交
2886 2887

/* Bit definitions for GPADC_AUTO_CONV0_MSB */
K
Keerthy 已提交
2888 2889
#define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_MASK		0x0F
#define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_SHIFT	0x00
G
Graeme Gregory 已提交
2890 2891

/* Bit definitions for GPADC_AUTO_CONV1_LSB */
K
Keerthy 已提交
2892 2893
#define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_MASK		0xFF
#define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_SHIFT	0x00
G
Graeme Gregory 已提交
2894 2895

/* Bit definitions for GPADC_AUTO_CONV1_MSB */
K
Keerthy 已提交
2896 2897
#define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_MASK		0x0F
#define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_SHIFT	0x00
G
Graeme Gregory 已提交
2898 2899 2900

/* Bit definitions for GPADC_SW_SELECT */
#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN			0x80
K
Keerthy 已提交
2901
#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN_SHIFT			0x07
G
Graeme Gregory 已提交
2902
#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0			0x10
K
Keerthy 已提交
2903 2904 2905
#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0_SHIFT		0x04
#define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_MASK		0x0F
#define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_SHIFT		0x00
G
Graeme Gregory 已提交
2906 2907

/* Bit definitions for GPADC_SW_CONV0_LSB */
K
Keerthy 已提交
2908 2909
#define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_MASK		0xFF
#define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_SHIFT		0x00
G
Graeme Gregory 已提交
2910 2911

/* Bit definitions for GPADC_SW_CONV0_MSB */
K
Keerthy 已提交
2912 2913
#define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_MASK		0x0F
#define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_SHIFT		0x00
G
Graeme Gregory 已提交
2914 2915

/* Bit definitions for GPADC_THRES_CONV0_LSB */
K
Keerthy 已提交
2916 2917
#define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_MASK	0xFF
#define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_SHIFT	0x00
G
Graeme Gregory 已提交
2918 2919 2920

/* Bit definitions for GPADC_THRES_CONV0_MSB */
#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL		0x80
K
Keerthy 已提交
2921 2922 2923
#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL_SHIFT	0x07
#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_MASK	0x0F
#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_SHIFT	0x00
G
Graeme Gregory 已提交
2924 2925

/* Bit definitions for GPADC_THRES_CONV1_LSB */
K
Keerthy 已提交
2926 2927
#define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_MASK	0xFF
#define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_SHIFT	0x00
G
Graeme Gregory 已提交
2928 2929 2930

/* Bit definitions for GPADC_THRES_CONV1_MSB */
#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL		0x80
K
Keerthy 已提交
2931 2932 2933
#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL_SHIFT	0x07
#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_MASK	0x0F
#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_SHIFT	0x00
G
Graeme Gregory 已提交
2934 2935 2936

/* Bit definitions for GPADC_SMPS_ILMONITOR_EN */
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN		0x20
K
Keerthy 已提交
2937
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN_SHIFT	0x05
G
Graeme Gregory 已提交
2938
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT		0x10
K
Keerthy 已提交
2939 2940 2941
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT_SHIFT	0x04
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_MASK	0x0F
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_SHIFT	0x00
G
Graeme Gregory 已提交
2942 2943 2944

/* Bit definitions for GPADC_SMPS_VSEL_MONITORING */
#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE		0x80
K
Keerthy 已提交
2945 2946 2947
#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE_SHIFT	0x07
#define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_MASK	0x7F
#define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_SHIFT	0x00
G
Graeme Gregory 已提交
2948 2949

/* Registers for function GPADC */
K
Keerthy 已提交
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965
#define PALMAS_GPADC_TRIM1					0x00
#define PALMAS_GPADC_TRIM2					0x01
#define PALMAS_GPADC_TRIM3					0x02
#define PALMAS_GPADC_TRIM4					0x03
#define PALMAS_GPADC_TRIM5					0x04
#define PALMAS_GPADC_TRIM6					0x05
#define PALMAS_GPADC_TRIM7					0x06
#define PALMAS_GPADC_TRIM8					0x07
#define PALMAS_GPADC_TRIM9					0x08
#define PALMAS_GPADC_TRIM10					0x09
#define PALMAS_GPADC_TRIM11					0x0A
#define PALMAS_GPADC_TRIM12					0x0B
#define PALMAS_GPADC_TRIM13					0x0C
#define PALMAS_GPADC_TRIM14					0x0D
#define PALMAS_GPADC_TRIM15					0x0E
#define PALMAS_GPADC_TRIM16					0x0F
G
Graeme Gregory 已提交
2966

2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675
/* TPS65917 Interrupt registers */

/* Registers for function INTERRUPT */
#define TPS65917_INT1_STATUS					0x00
#define TPS65917_INT1_MASK					0x01
#define TPS65917_INT1_LINE_STATE				0x02
#define TPS65917_INT2_STATUS					0x05
#define TPS65917_INT2_MASK					0x06
#define TPS65917_INT2_LINE_STATE				0x07
#define TPS65917_INT3_STATUS					0x0A
#define TPS65917_INT3_MASK					0x0B
#define TPS65917_INT3_LINE_STATE				0x0C
#define TPS65917_INT4_STATUS					0x0F
#define TPS65917_INT4_MASK					0x10
#define TPS65917_INT4_LINE_STATE				0x11
#define TPS65917_INT4_EDGE_DETECT1				0x12
#define TPS65917_INT4_EDGE_DETECT2				0x13
#define TPS65917_INT_CTRL					0x14

/* Bit definitions for INT1_STATUS */
#define TPS65917_INT1_STATUS_VSYS_MON				0x40
#define TPS65917_INT1_STATUS_VSYS_MON_SHIFT			0x06
#define TPS65917_INT1_STATUS_HOTDIE				0x20
#define TPS65917_INT1_STATUS_HOTDIE_SHIFT			0x05
#define TPS65917_INT1_STATUS_PWRDOWN				0x10
#define TPS65917_INT1_STATUS_PWRDOWN_SHIFT			0x04
#define TPS65917_INT1_STATUS_LONG_PRESS_KEY			0x04
#define TPS65917_INT1_STATUS_LONG_PRESS_KEY_SHIFT		0x02
#define TPS65917_INT1_STATUS_PWRON				0x02
#define TPS65917_INT1_STATUS_PWRON_SHIFT			0x01

/* Bit definitions for INT1_MASK */
#define TPS65917_INT1_MASK_VSYS_MON				0x40
#define TPS65917_INT1_MASK_VSYS_MON_SHIFT			0x06
#define TPS65917_INT1_MASK_HOTDIE				0x20
#define TPS65917_INT1_MASK_HOTDIE_SHIFT			0x05
#define TPS65917_INT1_MASK_PWRDOWN				0x10
#define TPS65917_INT1_MASK_PWRDOWN_SHIFT			0x04
#define TPS65917_INT1_MASK_LONG_PRESS_KEY			0x04
#define TPS65917_INT1_MASK_LONG_PRESS_KEY_SHIFT		0x02
#define TPS65917_INT1_MASK_PWRON				0x02
#define TPS65917_INT1_MASK_PWRON_SHIFT				0x01

/* Bit definitions for INT1_LINE_STATE */
#define TPS65917_INT1_LINE_STATE_VSYS_MON			0x40
#define TPS65917_INT1_LINE_STATE_VSYS_MON_SHIFT		0x06
#define TPS65917_INT1_LINE_STATE_HOTDIE			0x20
#define TPS65917_INT1_LINE_STATE_HOTDIE_SHIFT			0x05
#define TPS65917_INT1_LINE_STATE_PWRDOWN			0x10
#define TPS65917_INT1_LINE_STATE_PWRDOWN_SHIFT			0x04
#define TPS65917_INT1_LINE_STATE_LONG_PRESS_KEY		0x04
#define TPS65917_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT		0x02
#define TPS65917_INT1_LINE_STATE_PWRON				0x02
#define TPS65917_INT1_LINE_STATE_PWRON_SHIFT			0x01

/* Bit definitions for INT2_STATUS */
#define TPS65917_INT2_STATUS_SHORT				0x40
#define TPS65917_INT2_STATUS_SHORT_SHIFT			0x06
#define TPS65917_INT2_STATUS_FSD				0x20
#define TPS65917_INT2_STATUS_FSD_SHIFT				0x05
#define TPS65917_INT2_STATUS_RESET_IN				0x10
#define TPS65917_INT2_STATUS_RESET_IN_SHIFT			0x04
#define TPS65917_INT2_STATUS_WDT				0x04
#define TPS65917_INT2_STATUS_WDT_SHIFT				0x02
#define TPS65917_INT2_STATUS_OTP_ERROR				0x02
#define TPS65917_INT2_STATUS_OTP_ERROR_SHIFT			0x01

/* Bit definitions for INT2_MASK */
#define TPS65917_INT2_MASK_SHORT				0x40
#define TPS65917_INT2_MASK_SHORT_SHIFT				0x06
#define TPS65917_INT2_MASK_FSD					0x20
#define TPS65917_INT2_MASK_FSD_SHIFT				0x05
#define TPS65917_INT2_MASK_RESET_IN				0x10
#define TPS65917_INT2_MASK_RESET_IN_SHIFT			0x04
#define TPS65917_INT2_MASK_WDT					0x04
#define TPS65917_INT2_MASK_WDT_SHIFT				0x02
#define TPS65917_INT2_MASK_OTP_ERROR_TIMER			0x02
#define TPS65917_INT2_MASK_OTP_ERROR_SHIFT			0x01

/* Bit definitions for INT2_LINE_STATE */
#define TPS65917_INT2_LINE_STATE_SHORT				0x40
#define TPS65917_INT2_LINE_STATE_SHORT_SHIFT			0x06
#define TPS65917_INT2_LINE_STATE_FSD				0x20
#define TPS65917_INT2_LINE_STATE_FSD_SHIFT			0x05
#define TPS65917_INT2_LINE_STATE_RESET_IN			0x10
#define TPS65917_INT2_LINE_STATE_RESET_IN_SHIFT		0x04
#define TPS65917_INT2_LINE_STATE_WDT				0x04
#define TPS65917_INT2_LINE_STATE_WDT_SHIFT			0x02
#define TPS65917_INT2_LINE_STATE_OTP_ERROR			0x02
#define TPS65917_INT2_LINE_STATE_OTP_ERROR_SHIFT		0x01

/* Bit definitions for INT3_STATUS */
#define TPS65917_INT3_STATUS_VBUS				0x80
#define TPS65917_INT3_STATUS_VBUS_SHIFT			0x07
#define TPS65917_INT3_STATUS_GPADC_EOC_SW			0x04
#define TPS65917_INT3_STATUS_GPADC_EOC_SW_SHIFT		0x02
#define TPS65917_INT3_STATUS_GPADC_AUTO_1			0x02
#define TPS65917_INT3_STATUS_GPADC_AUTO_1_SHIFT		0x01
#define TPS65917_INT3_STATUS_GPADC_AUTO_0			0x01
#define TPS65917_INT3_STATUS_GPADC_AUTO_0_SHIFT		0x00

/* Bit definitions for INT3_MASK */
#define TPS65917_INT3_MASK_VBUS				0x80
#define TPS65917_INT3_MASK_VBUS_SHIFT				0x07
#define TPS65917_INT3_MASK_GPADC_EOC_SW			0x04
#define TPS65917_INT3_MASK_GPADC_EOC_SW_SHIFT			0x02
#define TPS65917_INT3_MASK_GPADC_AUTO_1			0x02
#define TPS65917_INT3_MASK_GPADC_AUTO_1_SHIFT			0x01
#define TPS65917_INT3_MASK_GPADC_AUTO_0			0x01
#define TPS65917_INT3_MASK_GPADC_AUTO_0_SHIFT			0x00

/* Bit definitions for INT3_LINE_STATE */
#define TPS65917_INT3_LINE_STATE_VBUS				0x80
#define TPS65917_INT3_LINE_STATE_VBUS_SHIFT			0x07
#define TPS65917_INT3_LINE_STATE_GPADC_EOC_SW			0x04
#define TPS65917_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT		0x02
#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_1			0x02
#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT		0x01
#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_0			0x01
#define TPS65917_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT		0x00

/* Bit definitions for INT4_STATUS */
#define TPS65917_INT4_STATUS_GPIO_6				0x40
#define TPS65917_INT4_STATUS_GPIO_6_SHIFT			0x06
#define TPS65917_INT4_STATUS_GPIO_5				0x20
#define TPS65917_INT4_STATUS_GPIO_5_SHIFT			0x05
#define TPS65917_INT4_STATUS_GPIO_4				0x10
#define TPS65917_INT4_STATUS_GPIO_4_SHIFT			0x04
#define TPS65917_INT4_STATUS_GPIO_3				0x08
#define TPS65917_INT4_STATUS_GPIO_3_SHIFT			0x03
#define TPS65917_INT4_STATUS_GPIO_2				0x04
#define TPS65917_INT4_STATUS_GPIO_2_SHIFT			0x02
#define TPS65917_INT4_STATUS_GPIO_1				0x02
#define TPS65917_INT4_STATUS_GPIO_1_SHIFT			0x01
#define TPS65917_INT4_STATUS_GPIO_0				0x01
#define TPS65917_INT4_STATUS_GPIO_0_SHIFT			0x00

/* Bit definitions for INT4_MASK */
#define TPS65917_INT4_MASK_GPIO_6				0x40
#define TPS65917_INT4_MASK_GPIO_6_SHIFT			0x06
#define TPS65917_INT4_MASK_GPIO_5				0x20
#define TPS65917_INT4_MASK_GPIO_5_SHIFT			0x05
#define TPS65917_INT4_MASK_GPIO_4				0x10
#define TPS65917_INT4_MASK_GPIO_4_SHIFT			0x04
#define TPS65917_INT4_MASK_GPIO_3				0x08
#define TPS65917_INT4_MASK_GPIO_3_SHIFT			0x03
#define TPS65917_INT4_MASK_GPIO_2				0x04
#define TPS65917_INT4_MASK_GPIO_2_SHIFT			0x02
#define TPS65917_INT4_MASK_GPIO_1				0x02
#define TPS65917_INT4_MASK_GPIO_1_SHIFT			0x01
#define TPS65917_INT4_MASK_GPIO_0				0x01
#define TPS65917_INT4_MASK_GPIO_0_SHIFT			0x00

/* Bit definitions for INT4_LINE_STATE */
#define TPS65917_INT4_LINE_STATE_GPIO_6			0x40
#define TPS65917_INT4_LINE_STATE_GPIO_6_SHIFT			0x06
#define TPS65917_INT4_LINE_STATE_GPIO_5			0x20
#define TPS65917_INT4_LINE_STATE_GPIO_5_SHIFT			0x05
#define TPS65917_INT4_LINE_STATE_GPIO_4			0x10
#define TPS65917_INT4_LINE_STATE_GPIO_4_SHIFT			0x04
#define TPS65917_INT4_LINE_STATE_GPIO_3			0x08
#define TPS65917_INT4_LINE_STATE_GPIO_3_SHIFT			0x03
#define TPS65917_INT4_LINE_STATE_GPIO_2			0x04
#define TPS65917_INT4_LINE_STATE_GPIO_2_SHIFT			0x02
#define TPS65917_INT4_LINE_STATE_GPIO_1			0x02
#define TPS65917_INT4_LINE_STATE_GPIO_1_SHIFT			0x01
#define TPS65917_INT4_LINE_STATE_GPIO_0			0x01
#define TPS65917_INT4_LINE_STATE_GPIO_0_SHIFT			0x00

/* Bit definitions for INT4_EDGE_DETECT1 */
#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_RISING		0x80
#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT		0x07
#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_FALLING		0x40
#define TPS65917_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT	0x06
#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_RISING		0x20
#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT		0x05
#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_FALLING		0x10
#define TPS65917_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT	0x04
#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_RISING		0x08
#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT		0x03
#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_FALLING		0x04
#define TPS65917_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT	0x02
#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_RISING		0x02
#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT		0x01
#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_FALLING		0x01
#define TPS65917_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT	0x00

/* Bit definitions for INT4_EDGE_DETECT2 */
#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_RISING		0x20
#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT		0x05
#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_FALLING		0x10
#define TPS65917_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT	0x04
#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_RISING		0x08
#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT		0x03
#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_FALLING		0x04
#define TPS65917_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT	0x02
#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_RISING		0x02
#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT		0x01
#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_FALLING		0x01
#define TPS65917_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT	0x00

/* Bit definitions for INT_CTRL */
#define TPS65917_INT_CTRL_INT_PENDING				0x04
#define TPS65917_INT_CTRL_INT_PENDING_SHIFT			0x02
#define TPS65917_INT_CTRL_INT_CLEAR				0x01
#define TPS65917_INT_CTRL_INT_CLEAR_SHIFT			0x00

/* TPS65917 SMPS Registers */

/* Registers for function SMPS */
#define TPS65917_SMPS1_CTRL					0x00
#define TPS65917_SMPS1_FORCE					0x02
#define TPS65917_SMPS1_VOLTAGE					0x03
#define TPS65917_SMPS2_CTRL					0x04
#define TPS65917_SMPS2_FORCE					0x06
#define TPS65917_SMPS2_VOLTAGE					0x07
#define TPS65917_SMPS3_CTRL					0x0C
#define TPS65917_SMPS3_FORCE					0x0E
#define TPS65917_SMPS3_VOLTAGE					0x0F
#define TPS65917_SMPS4_CTRL					0x10
#define TPS65917_SMPS4_VOLTAGE					0x13
#define TPS65917_SMPS5_CTRL					0x18
#define TPS65917_SMPS5_VOLTAGE					0x1B
#define TPS65917_SMPS_CTRL					0x24
#define TPS65917_SMPS_PD_CTRL					0x25
#define TPS65917_SMPS_THERMAL_EN				0x27
#define TPS65917_SMPS_THERMAL_STATUS				0x28
#define TPS65917_SMPS_SHORT_STATUS				0x29
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN		0x2A
#define TPS65917_SMPS_POWERGOOD_MASK1				0x2B
#define TPS65917_SMPS_POWERGOOD_MASK2				0x2C

/* Bit definitions for SMPS1_CTRL */
#define TPS65917_SMPS1_CTRL_WR_S				0x80
#define TPS65917_SMPS1_CTRL_WR_S_SHIFT				0x07
#define TPS65917_SMPS1_CTRL_ROOF_FLOOR_EN			0x40
#define TPS65917_SMPS1_CTRL_ROOF_FLOOR_EN_SHIFT		0x06
#define TPS65917_SMPS1_CTRL_STATUS_MASK			0x30
#define TPS65917_SMPS1_CTRL_STATUS_SHIFT			0x04
#define TPS65917_SMPS1_CTRL_MODE_SLEEP_MASK			0x0C
#define TPS65917_SMPS1_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_SMPS1_CTRL_MODE_ACTIVE_MASK			0x03
#define TPS65917_SMPS1_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for SMPS1_FORCE */
#define TPS65917_SMPS1_FORCE_CMD				0x80
#define TPS65917_SMPS1_FORCE_CMD_SHIFT				0x07
#define TPS65917_SMPS1_FORCE_VSEL_MASK				0x7F
#define TPS65917_SMPS1_FORCE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS1_VOLTAGE */
#define TPS65917_SMPS1_VOLTAGE_RANGE				0x80
#define TPS65917_SMPS1_VOLTAGE_RANGE_SHIFT			0x07
#define TPS65917_SMPS1_VOLTAGE_VSEL_MASK			0x7F
#define TPS65917_SMPS1_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS2_CTRL */
#define TPS65917_SMPS2_CTRL_WR_S				0x80
#define TPS65917_SMPS2_CTRL_WR_S_SHIFT				0x07
#define TPS65917_SMPS2_CTRL_ROOF_FLOOR_EN			0x40
#define TPS65917_SMPS2_CTRL_ROOF_FLOOR_EN_SHIFT		0x06
#define TPS65917_SMPS2_CTRL_STATUS_MASK			0x30
#define TPS65917_SMPS2_CTRL_STATUS_SHIFT			0x04
#define TPS65917_SMPS2_CTRL_MODE_SLEEP_MASK			0x0C
#define TPS65917_SMPS2_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_SMPS2_CTRL_MODE_ACTIVE_MASK			0x03
#define TPS65917_SMPS2_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for SMPS2_FORCE */
#define TPS65917_SMPS2_FORCE_CMD				0x80
#define TPS65917_SMPS2_FORCE_CMD_SHIFT				0x07
#define TPS65917_SMPS2_FORCE_VSEL_MASK				0x7F
#define TPS65917_SMPS2_FORCE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS2_VOLTAGE */
#define TPS65917_SMPS2_VOLTAGE_RANGE				0x80
#define TPS65917_SMPS2_VOLTAGE_RANGE_SHIFT			0x07
#define TPS65917_SMPS2_VOLTAGE_VSEL_MASK			0x7F
#define TPS65917_SMPS2_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS3_CTRL */
#define TPS65917_SMPS3_CTRL_WR_S				0x80
#define TPS65917_SMPS3_CTRL_WR_S_SHIFT				0x07
#define TPS65917_SMPS3_CTRL_ROOF_FLOOR_EN			0x40
#define TPS65917_SMPS3_CTRL_ROOF_FLOOR_EN_SHIFT		0x06
#define TPS65917_SMPS3_CTRL_STATUS_MASK			0x30
#define TPS65917_SMPS3_CTRL_STATUS_SHIFT			0x04
#define TPS65917_SMPS3_CTRL_MODE_SLEEP_MASK			0x0C
#define TPS65917_SMPS3_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_SMPS3_CTRL_MODE_ACTIVE_MASK			0x03
#define TPS65917_SMPS3_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for SMPS3_FORCE */
#define TPS65917_SMPS3_FORCE_CMD				0x80
#define TPS65917_SMPS3_FORCE_CMD_SHIFT				0x07
#define TPS65917_SMPS3_FORCE_VSEL_MASK				0x7F
#define TPS65917_SMPS3_FORCE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS3_VOLTAGE */
#define TPS65917_SMPS3_VOLTAGE_RANGE				0x80
#define TPS65917_SMPS3_VOLTAGE_RANGE_SHIFT			0x07
#define TPS65917_SMPS3_VOLTAGE_VSEL_MASK			0x7F
#define TPS65917_SMPS3_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS4_CTRL */
#define TPS65917_SMPS4_CTRL_WR_S				0x80
#define TPS65917_SMPS4_CTRL_WR_S_SHIFT				0x07
#define TPS65917_SMPS4_CTRL_ROOF_FLOOR_EN			0x40
#define TPS65917_SMPS4_CTRL_ROOF_FLOOR_EN_SHIFT		0x06
#define TPS65917_SMPS4_CTRL_STATUS_MASK			0x30
#define TPS65917_SMPS4_CTRL_STATUS_SHIFT			0x04
#define TPS65917_SMPS4_CTRL_MODE_SLEEP_MASK			0x0C
#define TPS65917_SMPS4_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_SMPS4_CTRL_MODE_ACTIVE_MASK			0x03
#define TPS65917_SMPS4_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for SMPS4_VOLTAGE */
#define TPS65917_SMPS4_VOLTAGE_RANGE				0x80
#define TPS65917_SMPS4_VOLTAGE_RANGE_SHIFT			0x07
#define TPS65917_SMPS4_VOLTAGE_VSEL_MASK			0x7F
#define TPS65917_SMPS4_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS5_CTRL */
#define TPS65917_SMPS5_CTRL_WR_S				0x80
#define TPS65917_SMPS5_CTRL_WR_S_SHIFT				0x07
#define TPS65917_SMPS5_CTRL_ROOF_FLOOR_EN			0x40
#define TPS65917_SMPS5_CTRL_ROOF_FLOOR_EN_SHIFT		0x06
#define TPS65917_SMPS5_CTRL_STATUS_MASK			0x30
#define TPS65917_SMPS5_CTRL_STATUS_SHIFT			0x04
#define TPS65917_SMPS5_CTRL_MODE_SLEEP_MASK			0x0C
#define TPS65917_SMPS5_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_SMPS5_CTRL_MODE_ACTIVE_MASK			0x03
#define TPS65917_SMPS5_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for SMPS5_VOLTAGE */
#define TPS65917_SMPS5_VOLTAGE_RANGE				0x80
#define TPS65917_SMPS5_VOLTAGE_RANGE_SHIFT			0x07
#define TPS65917_SMPS5_VOLTAGE_VSEL_MASK			0x7F
#define TPS65917_SMPS5_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for SMPS_CTRL */
#define TPS65917_SMPS_CTRL_SMPS1_SMPS12_EN			0x10
#define TPS65917_SMPS_CTRL_SMPS1_SMPS12_EN_SHIFT		0x04
#define TPS65917_SMPS_CTRL_SMPS12_PHASE_CTRL			0x03
#define TPS65917_SMPS_CTRL_SMPS12_PHASE_CTRL_SHIFT		0x00

/* Bit definitions for SMPS_PD_CTRL */
#define TPS65917_SMPS_PD_CTRL_SMPS5				0x40
#define TPS65917_SMPS_PD_CTRL_SMPS5_SHIFT			0x06
#define TPS65917_SMPS_PD_CTRL_SMPS4				0x10
#define TPS65917_SMPS_PD_CTRL_SMPS4_SHIFT			0x04
#define TPS65917_SMPS_PD_CTRL_SMPS3				0x08
#define TPS65917_SMPS_PD_CTRL_SMPS3_SHIFT			0x03
#define TPS65917_SMPS_PD_CTRL_SMPS2				0x02
#define TPS65917_SMPS_PD_CTRL_SMPS2_SHIFT			0x01
#define TPS65917_SMPS_PD_CTRL_SMPS1				0x01
#define TPS65917_SMPS_PD_CTRL_SMPS1_SHIFT			0x00

/* Bit definitions for SMPS_THERMAL_EN */
#define TPS65917_SMPS_THERMAL_EN_SMPS5				0x40
#define TPS65917_SMPS_THERMAL_EN_SMPS5_SHIFT			0x06
#define TPS65917_SMPS_THERMAL_EN_SMPS3				0x08
#define TPS65917_SMPS_THERMAL_EN_SMPS3_SHIFT			0x03
#define TPS65917_SMPS_THERMAL_EN_SMPS12			0x01
#define TPS65917_SMPS_THERMAL_EN_SMPS12_SHIFT			0x00

/* Bit definitions for SMPS_THERMAL_STATUS */
#define TPS65917_SMPS_THERMAL_STATUS_SMPS5			0x40
#define TPS65917_SMPS_THERMAL_STATUS_SMPS5_SHIFT		0x06
#define TPS65917_SMPS_THERMAL_STATUS_SMPS3			0x08
#define TPS65917_SMPS_THERMAL_STATUS_SMPS3_SHIFT		0x03
#define TPS65917_SMPS_THERMAL_STATUS_SMPS12			0x01
#define TPS65917_SMPS_THERMAL_STATUS_SMPS12_SHIFT		0x00

/* Bit definitions for SMPS_SHORT_STATUS */
#define TPS65917_SMPS_SHORT_STATUS_SMPS5			0x40
#define TPS65917_SMPS_SHORT_STATUS_SMPS5_SHIFT			0x06
#define TPS65917_SMPS_SHORT_STATUS_SMPS4			0x10
#define TPS65917_SMPS_SHORT_STATUS_SMPS4_SHIFT			0x04
#define TPS65917_SMPS_SHORT_STATUS_SMPS3			0x08
#define TPS65917_SMPS_SHORT_STATUS_SMPS3_SHIFT			0x03
#define TPS65917_SMPS_SHORT_STATUS_SMPS2			0x02
#define TPS65917_SMPS_SHORT_STATUS_SMPS2_SHIFT			0x01
#define TPS65917_SMPS_SHORT_STATUS_SMPS1			0x01
#define TPS65917_SMPS_SHORT_STATUS_SMPS1_SHIFT			0x00

/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS5		0x40
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS5_SHIFT	0x06
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS4		0x10
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS4_SHIFT	0x04
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3		0x08
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT	0x03
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS2		0x02
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS2_SHIFT	0x01
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS1		0x01
#define TPS65917_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS1_SHIFT	0x00

/* Bit definitions for SMPS_POWERGOOD_MASK1 */
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS5			0x40
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS5_SHIFT		0x06
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS4			0x10
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS4_SHIFT		0x04
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS3			0x08
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT		0x03
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS2			0x02
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS2_SHIFT		0x01
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS1			0x01
#define TPS65917_SMPS_POWERGOOD_MASK1_SMPS1_SHIFT		0x00

/* Bit definitions for SMPS_POWERGOOD_MASK2 */
#define TPS65917_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT		0x80
#define TPS65917_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT	0x07
#define TPS65917_SMPS_POWERGOOD_MASK2_OVC_ALARM_SHIFT			0x10
#define TPS65917_SMPS_POWERGOOD_MASK2_OVC_ALARM			0x04

/* Bit definitions for SMPS_PLL_CTRL */

#define TPS65917_SMPS_PLL_CTRL_PLL_EN_PLL_BYPASS_SHIFT		0x08
#define TPS65917_SMPS_PLL_CTRL_PLL_PLL_EN_BYPASS		0x03
#define TPS65917_SMPS_PLL_CTRL_PLL_PLL_BYPASS_CLK_SHIFT	0x04
#define TPS65917_SMPS_PLL_CTRL_PLL_PLL_BYPASS_CLK		0x02

/* Registers for function LDO */
#define TPS65917_LDO1_CTRL					0x00
#define TPS65917_LDO1_VOLTAGE					0x01
#define TPS65917_LDO2_CTRL					0x02
#define TPS65917_LDO2_VOLTAGE					0x03
#define TPS65917_LDO3_CTRL					0x04
#define TPS65917_LDO3_VOLTAGE					0x05
#define TPS65917_LDO4_CTRL					0x0E
#define TPS65917_LDO4_VOLTAGE					0x0F
#define TPS65917_LDO5_CTRL					0x12
#define TPS65917_LDO5_VOLTAGE					0x13
#define TPS65917_LDO_PD_CTRL1					0x1B
#define TPS65917_LDO_PD_CTRL2					0x1C
#define TPS65917_LDO_SHORT_STATUS1				0x1D
#define TPS65917_LDO_SHORT_STATUS2				0x1E
#define TPS65917_LDO_PD_CTRL3					0x2D
#define TPS65917_LDO_SHORT_STATUS3				0x2E

/* Bit definitions for LDO1_CTRL */
#define TPS65917_LDO1_CTRL_WR_S				0x80
#define TPS65917_LDO1_CTRL_WR_S_SHIFT				0x07
#define TPS65917_LDO1_CTRL_BYPASS_EN				0x40
#define TPS65917_LDO1_CTRL_BYPASS_EN_SHIFT			0x06
#define TPS65917_LDO1_CTRL_STATUS				0x10
#define TPS65917_LDO1_CTRL_STATUS_SHIFT			0x04
#define TPS65917_LDO1_CTRL_MODE_SLEEP				0x04
#define TPS65917_LDO1_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_LDO1_CTRL_MODE_ACTIVE				0x01
#define TPS65917_LDO1_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for LDO1_VOLTAGE */
#define TPS65917_LDO1_VOLTAGE_VSEL_MASK			0x2F
#define TPS65917_LDO1_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for LDO2_CTRL */
#define TPS65917_LDO2_CTRL_WR_S				0x80
#define TPS65917_LDO2_CTRL_WR_S_SHIFT				0x07
#define TPS65917_LDO2_CTRL_BYPASS_EN				0x40
#define TPS65917_LDO2_CTRL_BYPASS_EN_SHIFT			0x06
#define TPS65917_LDO2_CTRL_STATUS				0x10
#define TPS65917_LDO2_CTRL_STATUS_SHIFT			0x04
#define TPS65917_LDO2_CTRL_MODE_SLEEP				0x04
#define TPS65917_LDO2_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_LDO2_CTRL_MODE_ACTIVE				0x01
#define TPS65917_LDO2_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for LDO2_VOLTAGE */
#define TPS65917_LDO2_VOLTAGE_VSEL_MASK			0x2F
#define TPS65917_LDO2_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for LDO3_CTRL */
#define TPS65917_LDO3_CTRL_WR_S				0x80
#define TPS65917_LDO3_CTRL_WR_S_SHIFT				0x07
#define TPS65917_LDO3_CTRL_STATUS				0x10
#define TPS65917_LDO3_CTRL_STATUS_SHIFT			0x04
#define TPS65917_LDO3_CTRL_MODE_SLEEP				0x04
#define TPS65917_LDO3_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_LDO3_CTRL_MODE_ACTIVE				0x01
#define TPS65917_LDO3_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for LDO3_VOLTAGE */
#define TPS65917_LDO3_VOLTAGE_VSEL_MASK			0x2F
#define TPS65917_LDO3_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for LDO4_CTRL */
#define TPS65917_LDO4_CTRL_WR_S				0x80
#define TPS65917_LDO4_CTRL_WR_S_SHIFT				0x07
#define TPS65917_LDO4_CTRL_STATUS				0x10
#define TPS65917_LDO4_CTRL_STATUS_SHIFT			0x04
#define TPS65917_LDO4_CTRL_MODE_SLEEP				0x04
#define TPS65917_LDO4_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_LDO4_CTRL_MODE_ACTIVE				0x01
#define TPS65917_LDO4_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for LDO4_VOLTAGE */
#define TPS65917_LDO4_VOLTAGE_VSEL_MASK			0x2F
#define TPS65917_LDO4_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for LDO5_CTRL */
#define TPS65917_LDO5_CTRL_WR_S				0x80
#define TPS65917_LDO5_CTRL_WR_S_SHIFT				0x07
#define TPS65917_LDO5_CTRL_STATUS				0x10
#define TPS65917_LDO5_CTRL_STATUS_SHIFT			0x04
#define TPS65917_LDO5_CTRL_MODE_SLEEP				0x04
#define TPS65917_LDO5_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_LDO5_CTRL_MODE_ACTIVE				0x01
#define TPS65917_LDO5_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for LDO5_VOLTAGE */
#define TPS65917_LDO5_VOLTAGE_VSEL_MASK			0x2F
#define TPS65917_LDO5_VOLTAGE_VSEL_SHIFT			0x00

/* Bit definitions for LDO_PD_CTRL1 */
#define TPS65917_LDO_PD_CTRL1_LDO4				0x80
#define TPS65917_LDO_PD_CTRL1_LDO4_SHIFT			0x07
#define TPS65917_LDO_PD_CTRL1_LDO2				0x02
#define TPS65917_LDO_PD_CTRL1_LDO2_SHIFT			0x01
#define TPS65917_LDO_PD_CTRL1_LDO1				0x01
#define TPS65917_LDO_PD_CTRL1_LDO1_SHIFT			0x00

/* Bit definitions for LDO_PD_CTRL2 */
#define TPS65917_LDO_PD_CTRL2_LDO3				0x04
#define TPS65917_LDO_PD_CTRL2_LDO3_SHIFT			0x02
#define TPS65917_LDO_PD_CTRL2_LDO5				0x02
#define TPS65917_LDO_PD_CTRL2_LDO5_SHIFT			0x01

/* Bit definitions for LDO_PD_CTRL3 */
#define TPS65917_LDO_PD_CTRL2_LDOVANA				0x80
#define TPS65917_LDO_PD_CTRL2_LDOVANA_SHIFT			0x07

/* Bit definitions for LDO_SHORT_STATUS1 */
#define TPS65917_LDO_SHORT_STATUS1_LDO4			0x80
#define TPS65917_LDO_SHORT_STATUS1_LDO4_SHIFT			0x07
#define TPS65917_LDO_SHORT_STATUS1_LDO2			0x02
#define TPS65917_LDO_SHORT_STATUS1_LDO2_SHIFT			0x01
#define TPS65917_LDO_SHORT_STATUS1_LDO1			0x01
#define TPS65917_LDO_SHORT_STATUS1_LDO1_SHIFT			0x00

/* Bit definitions for LDO_SHORT_STATUS2 */
#define TPS65917_LDO_SHORT_STATUS2_LDO3			0x04
#define TPS65917_LDO_SHORT_STATUS2_LDO3_SHIFT			0x02
#define TPS65917_LDO_SHORT_STATUS2_LDO5			0x02
#define TPS65917_LDO_SHORT_STATUS2_LDO5_SHIFT			0x01

/* Bit definitions for LDO_SHORT_STATUS2 */
#define TPS65917_LDO_SHORT_STATUS2_LDOVANA			0x80
#define TPS65917_LDO_SHORT_STATUS2_LDOVANA_SHIFT		0x07

/* Bit definitions for REGEN1_CTRL */
#define TPS65917_REGEN1_CTRL_STATUS				0x10
#define TPS65917_REGEN1_CTRL_STATUS_SHIFT			0x04
#define TPS65917_REGEN1_CTRL_MODE_SLEEP			0x04
#define TPS65917_REGEN1_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_REGEN1_CTRL_MODE_ACTIVE			0x01
#define TPS65917_REGEN1_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for PLLEN_CTRL */
#define TPS65917_PLLEN_CTRL_STATUS				0x10
#define TPS65917_PLLEN_CTRL_STATUS_SHIFT			0x04
#define TPS65917_PLLEN_CTRL_MODE_SLEEP				0x04
#define TPS65917_PLLEN_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_PLLEN_CTRL_MODE_ACTIVE			0x01
#define TPS65917_PLLEN_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for REGEN2_CTRL */
#define TPS65917_REGEN2_CTRL_STATUS				0x10
#define TPS65917_REGEN2_CTRL_STATUS_SHIFT			0x04
#define TPS65917_REGEN2_CTRL_MODE_SLEEP			0x04
#define TPS65917_REGEN2_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_REGEN2_CTRL_MODE_ACTIVE			0x01
#define TPS65917_REGEN2_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Bit definitions for NSLEEP_RES_ASSIGN */
#define TPS65917_NSLEEP_RES_ASSIGN_PLL_EN			0x08
#define TPS65917_NSLEEP_RES_ASSIGN_PLL_EN_SHIFT		0x03
#define TPS65917_NSLEEP_RES_ASSIGN_REGEN3			0x04
#define TPS65917_NSLEEP_RES_ASSIGN_REGEN3_SHIFT		0x02
#define TPS65917_NSLEEP_RES_ASSIGN_REGEN2			0x02
#define TPS65917_NSLEEP_RES_ASSIGN_REGEN2_SHIFT		0x01
#define TPS65917_NSLEEP_RES_ASSIGN_REGEN1			0x01
#define TPS65917_NSLEEP_RES_ASSIGN_REGEN1_SHIFT		0x00

/* Bit definitions for NSLEEP_SMPS_ASSIGN */
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS5			0x40
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS5_SHIFT		0x06
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS4			0x10
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS4_SHIFT		0x04
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS3			0x08
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT		0x03
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS2			0x02
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS2_SHIFT		0x01
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS1			0x01
#define TPS65917_NSLEEP_SMPS_ASSIGN_SMPS1_SHIFT		0x00

/* Bit definitions for NSLEEP_LDO_ASSIGN1 */
#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO4			0x80
#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT			0x07
#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO2			0x02
#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT			0x01
#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO1			0x01
#define TPS65917_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT			0x00

/* Bit definitions for NSLEEP_LDO_ASSIGN2 */
#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO3			0x04
#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO3_SHIFT			0x02
#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO5			0x02
#define TPS65917_NSLEEP_LDO_ASSIGN2_LDO5_SHIFT			0x01

/* Bit definitions for ENABLE1_RES_ASSIGN */
#define TPS65917_ENABLE1_RES_ASSIGN_PLLEN			0x08
#define TPS65917_ENABLE1_RES_ASSIGN_PLLEN_SHIFT		0x03
#define TPS65917_ENABLE1_RES_ASSIGN_REGEN3			0x04
#define TPS65917_ENABLE1_RES_ASSIGN_REGEN3_SHIFT		0x02
#define TPS65917_ENABLE1_RES_ASSIGN_REGEN2			0x02
#define TPS65917_ENABLE1_RES_ASSIGN_REGEN2_SHIFT		0x01
#define TPS65917_ENABLE1_RES_ASSIGN_REGEN1			0x01
#define TPS65917_ENABLE1_RES_ASSIGN_REGEN1_SHIFT		0x00

/* Bit definitions for ENABLE1_SMPS_ASSIGN */
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS5			0x40
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS5_SHIFT		0x06
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS4			0x10
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS4_SHIFT		0x04
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS3			0x08
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT		0x03
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS2			0x02
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS2_SHIFT		0x01
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS1			0x01
#define TPS65917_ENABLE1_SMPS_ASSIGN_SMPS1_SHIFT		0x00

/* Bit definitions for ENABLE1_LDO_ASSIGN1 */
#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO4			0x80
#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT		0x07
#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO2			0x02
#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT		0x01
#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO1			0x01
#define TPS65917_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT		0x00

/* Bit definitions for ENABLE1_LDO_ASSIGN2 */
#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO3			0x04
#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO3_SHIFT		0x02
#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO5			0x02
#define TPS65917_ENABLE1_LDO_ASSIGN2_LDO5_SHIFT		0x01

/* Bit definitions for ENABLE2_RES_ASSIGN */
#define TPS65917_ENABLE2_RES_ASSIGN_PLLEN			0x08
#define TPS65917_ENABLE2_RES_ASSIGN_PLLEN_SHIFT		0x03
#define TPS65917_ENABLE2_RES_ASSIGN_REGEN3			0x04
#define TPS65917_ENABLE2_RES_ASSIGN_REGEN3_SHIFT		0x02
#define TPS65917_ENABLE2_RES_ASSIGN_REGEN2			0x02
#define TPS65917_ENABLE2_RES_ASSIGN_REGEN2_SHIFT		0x01
#define TPS65917_ENABLE2_RES_ASSIGN_REGEN1			0x01
#define TPS65917_ENABLE2_RES_ASSIGN_REGEN1_SHIFT		0x00

/* Bit definitions for ENABLE2_SMPS_ASSIGN */
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS5			0x40
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS5_SHIFT		0x06
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS4			0x10
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS4_SHIFT		0x04
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS3			0x08
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT		0x03
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS2			0x02
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS2_SHIFT		0x01
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS1			0x01
#define TPS65917_ENABLE2_SMPS_ASSIGN_SMPS1_SHIFT		0x00

/* Bit definitions for ENABLE2_LDO_ASSIGN1 */
#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO4			0x80
#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT		0x07
#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO2			0x02
#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT		0x01
#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO1			0x01
#define TPS65917_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT		0x00

/* Bit definitions for ENABLE2_LDO_ASSIGN2 */
#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO3			0x04
#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO3_SHIFT		0x02
#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO5			0x02
#define TPS65917_ENABLE2_LDO_ASSIGN2_LDO5_SHIFT		0x01

/* Bit definitions for REGEN3_CTRL */
#define TPS65917_REGEN3_CTRL_STATUS				0x10
#define TPS65917_REGEN3_CTRL_STATUS_SHIFT			0x04
#define TPS65917_REGEN3_CTRL_MODE_SLEEP			0x04
#define TPS65917_REGEN3_CTRL_MODE_SLEEP_SHIFT			0x02
#define TPS65917_REGEN3_CTRL_MODE_ACTIVE			0x01
#define TPS65917_REGEN3_CTRL_MODE_ACTIVE_SHIFT			0x00

/* Registers for function RESOURCE */
#define TPS65917_REGEN1_CTRL					0x2
#define TPS65917_PLLEN_CTRL					0x3
#define TPS65917_NSLEEP_RES_ASSIGN				0x6
#define TPS65917_NSLEEP_SMPS_ASSIGN				0x7
#define TPS65917_NSLEEP_LDO_ASSIGN1				0x8
#define TPS65917_NSLEEP_LDO_ASSIGN2				0x9
#define TPS65917_ENABLE1_RES_ASSIGN				0xA
#define TPS65917_ENABLE1_SMPS_ASSIGN				0xB
#define TPS65917_ENABLE1_LDO_ASSIGN1				0xC
#define TPS65917_ENABLE1_LDO_ASSIGN2				0xD
#define TPS65917_ENABLE2_RES_ASSIGN				0xE
#define TPS65917_ENABLE2_SMPS_ASSIGN				0xF
#define TPS65917_ENABLE2_LDO_ASSIGN1				0x10
#define TPS65917_ENABLE2_LDO_ASSIGN2				0x11
#define TPS65917_REGEN2_CTRL					0x12
#define TPS65917_REGEN3_CTRL					0x13

3676 3677 3678
static inline int palmas_read(struct palmas *palmas, unsigned int base,
		unsigned int reg, unsigned int *val)
{
K
Keerthy 已提交
3679
	unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727
	int slave_id = PALMAS_BASE_TO_SLAVE(base);

	return regmap_read(palmas->regmap[slave_id], addr, val);
}

static inline int palmas_write(struct palmas *palmas, unsigned int base,
		unsigned int reg, unsigned int value)
{
	unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
	int slave_id = PALMAS_BASE_TO_SLAVE(base);

	return regmap_write(palmas->regmap[slave_id], addr, value);
}

static inline int palmas_bulk_write(struct palmas *palmas, unsigned int base,
	unsigned int reg, const void *val, size_t val_count)
{
	unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
	int slave_id = PALMAS_BASE_TO_SLAVE(base);

	return regmap_bulk_write(palmas->regmap[slave_id], addr,
			val, val_count);
}

static inline int palmas_bulk_read(struct palmas *palmas, unsigned int base,
		unsigned int reg, void *val, size_t val_count)
{
	unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
	int slave_id = PALMAS_BASE_TO_SLAVE(base);

	return regmap_bulk_read(palmas->regmap[slave_id], addr,
		val, val_count);
}

static inline int palmas_update_bits(struct palmas *palmas, unsigned int base,
	unsigned int reg, unsigned int mask, unsigned int val)
{
	unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
	int slave_id = PALMAS_BASE_TO_SLAVE(base);

	return regmap_update_bits(palmas->regmap[slave_id], addr, mask, val);
}

static inline int palmas_irq_get_virq(struct palmas *palmas, int irq)
{
	return regmap_irq_get_virq(palmas->irq_data, irq);
}

3728 3729 3730 3731 3732

int palmas_ext_control_req_config(struct palmas *palmas,
	enum palmas_external_requestor_id ext_control_req_id,
	int ext_ctrl, bool enable);

G
Graeme Gregory 已提交
3733
#endif /*  __LINUX_MFD_PALMAS_H */