palmas.h 148.8 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
#include <linux/extcon.h>
24
#include <linux/of_gpio.h>
G
Graeme Gregory 已提交
25
#include <linux/usb/phy_companion.h>
G
Graeme Gregory 已提交
26 27 28

#define PALMAS_NUM_CLIENTS		3

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

34 35
#define TPS65917_RESERVED		-1

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

40 41 42 43 44 45 46 47 48 49 50 51 52
/**
 * 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 已提交
53
struct palmas_pmic;
54 55 56
struct palmas_gpadc;
struct palmas_resource;
struct palmas_usb;
57 58
struct palmas_pmic_driver_data;
struct palmas_pmic_platform_data;
G
Graeme Gregory 已提交
59

G
Graeme Gregory 已提交
60 61 62 63 64 65
enum palmas_usb_state {
	PALMAS_USB_STATE_DISCONNECT,
	PALMAS_USB_STATE_VBUS,
	PALMAS_USB_STATE_ID,
};

G
Graeme Gregory 已提交
66 67 68 69 70 71 72 73 74
struct palmas {
	struct device *dev;

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

	/* Stored chip id */
	int id;

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

82 83
	struct palmas_pmic_driver_data *pmic_ddata;

G
Graeme Gregory 已提交
84 85
	/* Child Devices */
	struct palmas_pmic *pmic;
86 87 88
	struct palmas_gpadc *gpadc;
	struct palmas_resource *resource;
	struct palmas_usb *usb;
G
Graeme Gregory 已提交
89 90 91 92 93 94 95

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

96 97 98 99 100 101 102 103 104 105
#define PALMAS_EXT_REQ (PALMAS_EXT_CONTROL_ENABLE1 |	\
			PALMAS_EXT_CONTROL_ENABLE2 |	\
			PALMAS_EXT_CONTROL_NSLEEP)

struct palmas_sleep_requestor_info {
	int id;
	int reg_offset;
	int bit_pos;
};

106
struct palmas_regs_info {
107 108 109 110 111 112 113 114
	char	*name;
	char	*sname;
	u8	vsel_addr;
	u8	ctrl_addr;
	u8	tstep_addr;
	int	sleep_id;
};

115 116 117 118 119 120
struct palmas_pmic_driver_data {
	int smps_start;
	int smps_end;
	int ldo_begin;
	int ldo_end;
	int max_reg;
121
	bool has_regen3;
122
	struct palmas_regs_info *palmas_regs_info;
123 124 125 126 127 128 129 130 131 132 133 134 135 136
	struct of_regulator_match *palmas_matches;
	struct palmas_sleep_requestor_info *sleep_req_info;
	int (*smps_register)(struct palmas_pmic *pmic,
			     struct palmas_pmic_driver_data *ddata,
			     struct palmas_pmic_platform_data *pdata,
			     const char *pdev_name,
			     struct regulator_config config);
	int (*ldo_register)(struct palmas_pmic *pmic,
			    struct palmas_pmic_driver_data *ddata,
			    struct palmas_pmic_platform_data *pdata,
			    const char *pdev_name,
			    struct regulator_config config);
};

137 138 139 140 141 142
struct palmas_adc_wakeup_property {
	int adc_channel_number;
	int adc_high_threshold;
	int adc_low_threshold;
};

143 144
struct palmas_gpadc_platform_data {
	/* Channel 3 current source is only enabled during conversion */
145
	int ch3_current;	/* 0: off; 1: 10uA; 2: 400uA; 3: 800 uA */
146 147 148 149 150

	/* 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.
	 */
151 152
	int ch0_current;	/* 0: off; 1: 5uA; 2: 15uA; 3: 20 uA */
	bool extended_delay;	/* use extended delay for conversion */
153 154 155 156 157 158

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

	/* Sets the START_POLARITY bit in the RT_CTRL register */
	int start_polarity;
159 160 161 162

	int auto_conversion_period_ms;
	struct palmas_adc_wakeup_property *adc_wakeup1_data;
	struct palmas_adc_wakeup_property *adc_wakeup2_data;
163 164
};

G
Graeme Gregory 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
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;

};

211 212 213 214 215 216 217 218 219 220 221
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,
222 223
	PALMAS_REG_SMPS10_OUT2,
	PALMAS_REG_SMPS10_OUT1,
224 225 226 227 228 229 230 231 232 233 234 235
	/* 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,
236 237 238 239 240 241
	/* External regulators */
	PALMAS_REG_REGEN1,
	PALMAS_REG_REGEN2,
	PALMAS_REG_REGEN3,
	PALMAS_REG_SYSEN1,
	PALMAS_REG_SYSEN2,
242 243 244 245
	/* Total number of regulators */
	PALMAS_NUM_REGS,
};

246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
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,
};

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
/* 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,
};

311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
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 已提交
329 330 331 332
struct palmas_pmic_platform_data {
	/* An array of pointers to regulator init data indexed by regulator
	 * ID
	 */
333
	struct regulator_init_data *reg_data[PALMAS_NUM_REGS];
G
Graeme Gregory 已提交
334 335 336 337

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

	/* use LDO6 for vibrator control */
	int ldo6_vibrator;
342 343 344

	/* Enable tracking mode of LDO8 */
	bool enable_ldo8_tracking;
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
};

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 已提交
385

386 387 388
struct palmas_clk_platform_data {
	int clk32kg_mode_sleep;
	int clk32kgaudio_mode_sleep;
G
Graeme Gregory 已提交
389 390 391
};

struct palmas_platform_data {
392
	int irq_flags;
G
Graeme Gregory 已提交
393 394 395 396 397 398 399 400 401 402 403
	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 已提交
404
	bool pm_off;
G
Graeme Gregory 已提交
405 406

	struct palmas_pmic_platform_data *pmic_pdata;
407 408 409 410
	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 已提交
411 412
};

413 414 415 416 417 418
struct palmas_gpadc_calibration {
	s32 gain;
	s32 gain_error;
	s32 offset_error;
};

419
#define PALMAS_DATASHEET_NAME(_name)	"palmas-gpadc-chan-"#_name
420 421 422 423 424 425 426 427 428

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

#define PALMAS_MAX_CHANNELS 16

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 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
/* 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 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
/* 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,
};

513 514 515 516 517 518 519 520 521 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
/* Palmas GPADC Channels */
enum {
	PALMAS_ADC_CH_IN0,
	PALMAS_ADC_CH_IN1,
	PALMAS_ADC_CH_IN2,
	PALMAS_ADC_CH_IN3,
	PALMAS_ADC_CH_IN4,
	PALMAS_ADC_CH_IN5,
	PALMAS_ADC_CH_IN6,
	PALMAS_ADC_CH_IN7,
	PALMAS_ADC_CH_IN8,
	PALMAS_ADC_CH_IN9,
	PALMAS_ADC_CH_IN10,
	PALMAS_ADC_CH_IN11,
	PALMAS_ADC_CH_IN12,
	PALMAS_ADC_CH_IN13,
	PALMAS_ADC_CH_IN14,
	PALMAS_ADC_CH_IN15,
	PALMAS_ADC_CH_MAX,
};

/* Palmas GPADC Channel0 Current Source */
enum {
	PALMAS_ADC_CH0_CURRENT_SRC_0,
	PALMAS_ADC_CH0_CURRENT_SRC_5,
	PALMAS_ADC_CH0_CURRENT_SRC_15,
	PALMAS_ADC_CH0_CURRENT_SRC_20,
};

/* Palmas GPADC Channel3 Current Source */
enum {
	PALMAS_ADC_CH3_CURRENT_SRC_0,
	PALMAS_ADC_CH3_CURRENT_SRC_10,
	PALMAS_ADC_CH3_CURRENT_SRC_400,
	PALMAS_ADC_CH3_CURRENT_SRC_800,
};

G
Graeme Gregory 已提交
550 551 552 553 554 555 556 557 558
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;
559
	int smps12;
G
Graeme Gregory 已提交
560

561 562 563
	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 已提交
564 565
};

566 567 568 569 570 571 572 573 574
struct palmas_resource {
	struct palmas *palmas;
	struct device *dev;
};

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

575
	struct extcon_dev *edev;
576

G
Graeme Gregory 已提交
577 578 579 580
	int id_otg_irq;
	int id_irq;
	int vbus_otg_irq;
	int vbus_irq;
581

582 583 584 585 586
	int gpio_id_irq;
	struct gpio_desc *id_gpiod;
	unsigned long sw_debounce_jiffies;
	struct delayed_work wq_detectid;

G
Graeme Gregory 已提交
587
	enum palmas_usb_state linkstat;
588 589 590
	int wakeup;
	bool enable_vbus_detection;
	bool enable_id_detection;
591
	bool enable_gpio_id_detection;
592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
};

#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 已提交
630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
/* 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 已提交
648
#define PALMAS_BASE_TO_REG(x, y)	((x & 0xFF) + y)
G
Graeme Gregory 已提交
649 650

/* Base addresses of IP blocks in Palmas */
K
Keerthy 已提交
651
#define PALMAS_SMPS_DVS_BASE					0x020
G
Graeme Gregory 已提交
652 653 654 655 656 657 658
#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
659
#define PALMAS_PU_PD_OD_BASE					0x1F0
G
Graeme Gregory 已提交
660 661 662 663 664 665 666 667 668 669
#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 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682
#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 已提交
683 684 685 686 687 688 689 690 691 692
#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 已提交
693 694 695
#define PALMAS_SECONDS_REG_SEC1_SHIFT				0x04
#define PALMAS_SECONDS_REG_SEC0_MASK				0x0F
#define PALMAS_SECONDS_REG_SEC0_SHIFT				0x00
G
Graeme Gregory 已提交
696 697 698

/* Bit definitions for MINUTES_REG */
#define PALMAS_MINUTES_REG_MIN1_MASK				0x70
K
Keerthy 已提交
699 700 701
#define PALMAS_MINUTES_REG_MIN1_SHIFT				0x04
#define PALMAS_MINUTES_REG_MIN0_MASK				0x0F
#define PALMAS_MINUTES_REG_MIN0_SHIFT				0x00
G
Graeme Gregory 已提交
702 703 704

/* Bit definitions for HOURS_REG */
#define PALMAS_HOURS_REG_PM_NAM					0x80
K
Keerthy 已提交
705
#define PALMAS_HOURS_REG_PM_NAM_SHIFT				0x07
G
Graeme Gregory 已提交
706
#define PALMAS_HOURS_REG_HOUR1_MASK				0x30
K
Keerthy 已提交
707 708 709
#define PALMAS_HOURS_REG_HOUR1_SHIFT				0x04
#define PALMAS_HOURS_REG_HOUR0_MASK				0x0F
#define PALMAS_HOURS_REG_HOUR0_SHIFT				0x00
G
Graeme Gregory 已提交
710 711 712

/* Bit definitions for DAYS_REG */
#define PALMAS_DAYS_REG_DAY1_MASK				0x30
K
Keerthy 已提交
713 714 715
#define PALMAS_DAYS_REG_DAY1_SHIFT				0x04
#define PALMAS_DAYS_REG_DAY0_MASK				0x0F
#define PALMAS_DAYS_REG_DAY0_SHIFT				0x00
G
Graeme Gregory 已提交
716 717 718

/* Bit definitions for MONTHS_REG */
#define PALMAS_MONTHS_REG_MONTH1				0x10
K
Keerthy 已提交
719 720 721
#define PALMAS_MONTHS_REG_MONTH1_SHIFT				0x04
#define PALMAS_MONTHS_REG_MONTH0_MASK				0x0F
#define PALMAS_MONTHS_REG_MONTH0_SHIFT				0x00
G
Graeme Gregory 已提交
722 723 724

/* Bit definitions for YEARS_REG */
#define PALMAS_YEARS_REG_YEAR1_MASK				0xf0
K
Keerthy 已提交
725 726 727
#define PALMAS_YEARS_REG_YEAR1_SHIFT				0x04
#define PALMAS_YEARS_REG_YEAR0_MASK				0x0F
#define PALMAS_YEARS_REG_YEAR0_SHIFT				0x00
G
Graeme Gregory 已提交
728 729 730

/* Bit definitions for WEEKS_REG */
#define PALMAS_WEEKS_REG_WEEK_MASK				0x07
K
Keerthy 已提交
731
#define PALMAS_WEEKS_REG_WEEK_SHIFT				0x00
G
Graeme Gregory 已提交
732 733 734

/* Bit definitions for ALARM_SECONDS_REG */
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK		0x70
K
Keerthy 已提交
735 736 737
#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 已提交
738 739 740

/* Bit definitions for ALARM_MINUTES_REG */
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK		0x70
K
Keerthy 已提交
741 742 743
#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 已提交
744 745 746

/* Bit definitions for ALARM_HOURS_REG */
#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM			0x80
K
Keerthy 已提交
747
#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT		0x07
G
Graeme Gregory 已提交
748
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK			0x30
K
Keerthy 已提交
749 750 751
#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 已提交
752 753 754

/* Bit definitions for ALARM_DAYS_REG */
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK			0x30
K
Keerthy 已提交
755 756 757
#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 已提交
758 759 760

/* Bit definitions for ALARM_MONTHS_REG */
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1			0x10
K
Keerthy 已提交
761 762 763
#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 已提交
764 765 766

/* Bit definitions for ALARM_YEARS_REG */
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK			0xf0
K
Keerthy 已提交
767 768 769
#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 已提交
770 771 772

/* Bit definitions for RTC_CTRL_REG */
#define PALMAS_RTC_CTRL_REG_RTC_V_OPT				0x80
K
Keerthy 已提交
773
#define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT			0x07
G
Graeme Gregory 已提交
774
#define PALMAS_RTC_CTRL_REG_GET_TIME				0x40
K
Keerthy 已提交
775
#define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT			0x06
G
Graeme Gregory 已提交
776
#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER			0x20
K
Keerthy 已提交
777
#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT		0x05
G
Graeme Gregory 已提交
778
#define PALMAS_RTC_CTRL_REG_TEST_MODE				0x10
K
Keerthy 已提交
779
#define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT			0x04
G
Graeme Gregory 已提交
780
#define PALMAS_RTC_CTRL_REG_MODE_12_24				0x08
K
Keerthy 已提交
781
#define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT			0x03
G
Graeme Gregory 已提交
782
#define PALMAS_RTC_CTRL_REG_AUTO_COMP				0x04
K
Keerthy 已提交
783
#define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT			0x02
G
Graeme Gregory 已提交
784
#define PALMAS_RTC_CTRL_REG_ROUND_30S				0x02
K
Keerthy 已提交
785
#define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT			0x01
G
Graeme Gregory 已提交
786
#define PALMAS_RTC_CTRL_REG_STOP_RTC				0x01
K
Keerthy 已提交
787
#define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT			0x00
G
Graeme Gregory 已提交
788 789 790

/* Bit definitions for RTC_STATUS_REG */
#define PALMAS_RTC_STATUS_REG_POWER_UP				0x80
K
Keerthy 已提交
791
#define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT			0x07
G
Graeme Gregory 已提交
792
#define PALMAS_RTC_STATUS_REG_ALARM				0x40
K
Keerthy 已提交
793
#define PALMAS_RTC_STATUS_REG_ALARM_SHIFT			0x06
G
Graeme Gregory 已提交
794
#define PALMAS_RTC_STATUS_REG_EVENT_1D				0x20
K
Keerthy 已提交
795
#define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT			0x05
G
Graeme Gregory 已提交
796
#define PALMAS_RTC_STATUS_REG_EVENT_1H				0x10
K
Keerthy 已提交
797
#define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT			0x04
G
Graeme Gregory 已提交
798
#define PALMAS_RTC_STATUS_REG_EVENT_1M				0x08
K
Keerthy 已提交
799
#define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT			0x03
G
Graeme Gregory 已提交
800
#define PALMAS_RTC_STATUS_REG_EVENT_1S				0x04
K
Keerthy 已提交
801
#define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT			0x02
G
Graeme Gregory 已提交
802
#define PALMAS_RTC_STATUS_REG_RUN				0x02
K
Keerthy 已提交
803
#define PALMAS_RTC_STATUS_REG_RUN_SHIFT				0x01
G
Graeme Gregory 已提交
804 805 806

/* Bit definitions for RTC_INTERRUPTS_REG */
#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN		0x10
K
Keerthy 已提交
807
#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT	0x04
G
Graeme Gregory 已提交
808
#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM			0x08
K
Keerthy 已提交
809
#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT		0x03
G
Graeme Gregory 已提交
810
#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER			0x04
K
Keerthy 已提交
811
#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT		0x02
G
Graeme Gregory 已提交
812
#define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK			0x03
K
Keerthy 已提交
813
#define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT			0x00
G
Graeme Gregory 已提交
814 815

/* Bit definitions for RTC_COMP_LSB_REG */
K
Keerthy 已提交
816 817
#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 已提交
818 819

/* Bit definitions for RTC_COMP_MSB_REG */
K
Keerthy 已提交
820 821
#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 已提交
822 823

/* Bit definitions for RTC_RES_PROG_REG */
K
Keerthy 已提交
824 825
#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 已提交
826 827 828

/* Bit definitions for RTC_RESET_STATUS_REG */
#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS		0x01
K
Keerthy 已提交
829
#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT		0x00
G
Graeme Gregory 已提交
830 831

/* Registers for function BACKUP */
K
Keerthy 已提交
832 833 834 835 836 837 838 839
#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 已提交
840 841

/* Bit definitions for BACKUP0 */
K
Keerthy 已提交
842 843
#define PALMAS_BACKUP0_BACKUP_MASK				0xFF
#define PALMAS_BACKUP0_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
844 845

/* Bit definitions for BACKUP1 */
K
Keerthy 已提交
846 847
#define PALMAS_BACKUP1_BACKUP_MASK				0xFF
#define PALMAS_BACKUP1_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
848 849

/* Bit definitions for BACKUP2 */
K
Keerthy 已提交
850 851
#define PALMAS_BACKUP2_BACKUP_MASK				0xFF
#define PALMAS_BACKUP2_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
852 853

/* Bit definitions for BACKUP3 */
K
Keerthy 已提交
854 855
#define PALMAS_BACKUP3_BACKUP_MASK				0xFF
#define PALMAS_BACKUP3_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
856 857

/* Bit definitions for BACKUP4 */
K
Keerthy 已提交
858 859
#define PALMAS_BACKUP4_BACKUP_MASK				0xFF
#define PALMAS_BACKUP4_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
860 861

/* Bit definitions for BACKUP5 */
K
Keerthy 已提交
862 863
#define PALMAS_BACKUP5_BACKUP_MASK				0xFF
#define PALMAS_BACKUP5_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
864 865

/* Bit definitions for BACKUP6 */
K
Keerthy 已提交
866 867
#define PALMAS_BACKUP6_BACKUP_MASK				0xFF
#define PALMAS_BACKUP6_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
868 869

/* Bit definitions for BACKUP7 */
K
Keerthy 已提交
870 871
#define PALMAS_BACKUP7_BACKUP_MASK				0xFF
#define PALMAS_BACKUP7_BACKUP_SHIFT				0x00
G
Graeme Gregory 已提交
872 873

/* Registers for function SMPS */
K
Keerthy 已提交
874 875 876 877 878 879 880 881 882 883 884 885 886 887
#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 已提交
888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909
#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 已提交
910
#define PALMAS_SMPS12_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
911
#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN			0x40
K
Keerthy 已提交
912
#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
913
#define PALMAS_SMPS12_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
914
#define PALMAS_SMPS12_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
915
#define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
916
#define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
917
#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
918
#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
919 920 921

/* Bit definitions for SMPS12_TSTEP */
#define PALMAS_SMPS12_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
922
#define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
923 924 925

/* Bit definitions for SMPS12_FORCE */
#define PALMAS_SMPS12_FORCE_CMD					0x80
K
Keerthy 已提交
926 927 928
#define PALMAS_SMPS12_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS12_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS12_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
929 930 931

/* Bit definitions for SMPS12_VOLTAGE */
#define PALMAS_SMPS12_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
932 933 934
#define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS12_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT			0x00
G
Graeme Gregory 已提交
935 936 937

/* Bit definitions for SMPS3_CTRL */
#define PALMAS_SMPS3_CTRL_WR_S					0x80
K
Keerthy 已提交
938
#define PALMAS_SMPS3_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
939
#define PALMAS_SMPS3_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
940
#define PALMAS_SMPS3_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
941
#define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
942
#define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
943
#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
944
#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
945 946 947

/* Bit definitions for SMPS3_VOLTAGE */
#define PALMAS_SMPS3_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
948 949 950
#define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS3_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
951 952 953

/* Bit definitions for SMPS45_CTRL */
#define PALMAS_SMPS45_CTRL_WR_S					0x80
K
Keerthy 已提交
954
#define PALMAS_SMPS45_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
955
#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN			0x40
K
Keerthy 已提交
956
#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
957
#define PALMAS_SMPS45_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
958
#define PALMAS_SMPS45_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
959
#define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
960
#define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
961
#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
962
#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
963 964 965

/* Bit definitions for SMPS45_TSTEP */
#define PALMAS_SMPS45_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
966
#define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
967 968 969

/* Bit definitions for SMPS45_FORCE */
#define PALMAS_SMPS45_FORCE_CMD					0x80
K
Keerthy 已提交
970 971 972
#define PALMAS_SMPS45_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS45_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS45_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
973 974 975

/* Bit definitions for SMPS45_VOLTAGE */
#define PALMAS_SMPS45_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
976 977 978
#define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS45_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT			0x00
G
Graeme Gregory 已提交
979 980 981

/* Bit definitions for SMPS6_CTRL */
#define PALMAS_SMPS6_CTRL_WR_S					0x80
K
Keerthy 已提交
982
#define PALMAS_SMPS6_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
983
#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN				0x40
K
Keerthy 已提交
984
#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
985
#define PALMAS_SMPS6_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
986
#define PALMAS_SMPS6_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
987
#define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
988
#define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
989
#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
990
#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
991 992 993

/* Bit definitions for SMPS6_TSTEP */
#define PALMAS_SMPS6_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
994
#define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
995 996 997

/* Bit definitions for SMPS6_FORCE */
#define PALMAS_SMPS6_FORCE_CMD					0x80
K
Keerthy 已提交
998 999 1000
#define PALMAS_SMPS6_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS6_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS6_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1001 1002 1003

/* Bit definitions for SMPS6_VOLTAGE */
#define PALMAS_SMPS6_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
1004 1005 1006
#define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS6_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1007 1008 1009

/* Bit definitions for SMPS7_CTRL */
#define PALMAS_SMPS7_CTRL_WR_S					0x80
K
Keerthy 已提交
1010
#define PALMAS_SMPS7_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1011
#define PALMAS_SMPS7_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
1012
#define PALMAS_SMPS7_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1013
#define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
1014
#define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1015
#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
1016
#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1017 1018 1019

/* Bit definitions for SMPS7_VOLTAGE */
#define PALMAS_SMPS7_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
1020 1021 1022
#define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS7_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1023 1024 1025

/* Bit definitions for SMPS8_CTRL */
#define PALMAS_SMPS8_CTRL_WR_S					0x80
K
Keerthy 已提交
1026
#define PALMAS_SMPS8_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1027
#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN				0x40
K
Keerthy 已提交
1028
#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1029
#define PALMAS_SMPS8_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
1030
#define PALMAS_SMPS8_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1031
#define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
1032
#define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1033
#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
1034
#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1035 1036 1037

/* Bit definitions for SMPS8_TSTEP */
#define PALMAS_SMPS8_TSTEP_TSTEP_MASK				0x03
K
Keerthy 已提交
1038
#define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT				0x00
G
Graeme Gregory 已提交
1039 1040 1041

/* Bit definitions for SMPS8_FORCE */
#define PALMAS_SMPS8_FORCE_CMD					0x80
K
Keerthy 已提交
1042 1043 1044
#define PALMAS_SMPS8_FORCE_CMD_SHIFT				0x07
#define PALMAS_SMPS8_FORCE_VSEL_MASK				0x7F
#define PALMAS_SMPS8_FORCE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1045 1046 1047

/* Bit definitions for SMPS8_VOLTAGE */
#define PALMAS_SMPS8_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
1048 1049 1050
#define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS8_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1051 1052 1053

/* Bit definitions for SMPS9_CTRL */
#define PALMAS_SMPS9_CTRL_WR_S					0x80
K
Keerthy 已提交
1054
#define PALMAS_SMPS9_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1055
#define PALMAS_SMPS9_CTRL_STATUS_MASK				0x30
K
Keerthy 已提交
1056
#define PALMAS_SMPS9_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1057
#define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK			0x0c
K
Keerthy 已提交
1058
#define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1059
#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK			0x03
K
Keerthy 已提交
1060
#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1061 1062 1063

/* Bit definitions for SMPS9_VOLTAGE */
#define PALMAS_SMPS9_VOLTAGE_RANGE				0x80
K
Keerthy 已提交
1064 1065 1066
#define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT			0x07
#define PALMAS_SMPS9_VOLTAGE_VSEL_MASK				0x7F
#define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1067 1068 1069

/* Bit definitions for SMPS10_CTRL */
#define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK			0xf0
K
Keerthy 已提交
1070 1071 1072
#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 已提交
1073 1074

/* Bit definitions for SMPS10_STATUS */
K
Keerthy 已提交
1075 1076
#define PALMAS_SMPS10_STATUS_STATUS_MASK			0x0F
#define PALMAS_SMPS10_STATUS_STATUS_SHIFT			0x00
G
Graeme Gregory 已提交
1077 1078 1079

/* Bit definitions for SMPS_CTRL */
#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN			0x20
K
Keerthy 已提交
1080
#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT		0x05
G
Graeme Gregory 已提交
1081
#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN			0x10
K
Keerthy 已提交
1082
#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT		0x04
G
Graeme Gregory 已提交
1083
#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK			0x0c
K
Keerthy 已提交
1084
#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT		0x02
G
Graeme Gregory 已提交
1085
#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK		0x03
K
Keerthy 已提交
1086
#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT		0x00
G
Graeme Gregory 已提交
1087 1088 1089

/* Bit definitions for SMPS_PD_CTRL */
#define PALMAS_SMPS_PD_CTRL_SMPS9				0x40
K
Keerthy 已提交
1090
#define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT				0x06
G
Graeme Gregory 已提交
1091
#define PALMAS_SMPS_PD_CTRL_SMPS8				0x20
K
Keerthy 已提交
1092
#define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT				0x05
G
Graeme Gregory 已提交
1093
#define PALMAS_SMPS_PD_CTRL_SMPS7				0x10
K
Keerthy 已提交
1094
#define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT				0x04
G
Graeme Gregory 已提交
1095
#define PALMAS_SMPS_PD_CTRL_SMPS6				0x08
K
Keerthy 已提交
1096
#define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT				0x03
G
Graeme Gregory 已提交
1097
#define PALMAS_SMPS_PD_CTRL_SMPS45				0x04
K
Keerthy 已提交
1098
#define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1099
#define PALMAS_SMPS_PD_CTRL_SMPS3				0x02
K
Keerthy 已提交
1100
#define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT				0x01
G
Graeme Gregory 已提交
1101
#define PALMAS_SMPS_PD_CTRL_SMPS12				0x01
K
Keerthy 已提交
1102
#define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1103 1104 1105

/* Bit definitions for SMPS_THERMAL_EN */
#define PALMAS_SMPS_THERMAL_EN_SMPS9				0x40
K
Keerthy 已提交
1106
#define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1107
#define PALMAS_SMPS_THERMAL_EN_SMPS8				0x20
K
Keerthy 已提交
1108
#define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1109
#define PALMAS_SMPS_THERMAL_EN_SMPS6				0x08
K
Keerthy 已提交
1110
#define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1111
#define PALMAS_SMPS_THERMAL_EN_SMPS457				0x04
K
Keerthy 已提交
1112
#define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT			0x02
G
Graeme Gregory 已提交
1113
#define PALMAS_SMPS_THERMAL_EN_SMPS123				0x01
K
Keerthy 已提交
1114
#define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT			0x00
G
Graeme Gregory 已提交
1115 1116 1117

/* Bit definitions for SMPS_THERMAL_STATUS */
#define PALMAS_SMPS_THERMAL_STATUS_SMPS9			0x40
K
Keerthy 已提交
1118
#define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1119
#define PALMAS_SMPS_THERMAL_STATUS_SMPS8			0x20
K
Keerthy 已提交
1120
#define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1121
#define PALMAS_SMPS_THERMAL_STATUS_SMPS6			0x08
K
Keerthy 已提交
1122
#define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1123
#define PALMAS_SMPS_THERMAL_STATUS_SMPS457			0x04
K
Keerthy 已提交
1124
#define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT		0x02
G
Graeme Gregory 已提交
1125
#define PALMAS_SMPS_THERMAL_STATUS_SMPS123			0x01
K
Keerthy 已提交
1126
#define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT		0x00
G
Graeme Gregory 已提交
1127 1128 1129

/* Bit definitions for SMPS_SHORT_STATUS */
#define PALMAS_SMPS_SHORT_STATUS_SMPS10				0x80
K
Keerthy 已提交
1130
#define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1131
#define PALMAS_SMPS_SHORT_STATUS_SMPS9				0x40
K
Keerthy 已提交
1132
#define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1133
#define PALMAS_SMPS_SHORT_STATUS_SMPS8				0x20
K
Keerthy 已提交
1134
#define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1135
#define PALMAS_SMPS_SHORT_STATUS_SMPS7				0x10
K
Keerthy 已提交
1136
#define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1137
#define PALMAS_SMPS_SHORT_STATUS_SMPS6				0x08
K
Keerthy 已提交
1138
#define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1139
#define PALMAS_SMPS_SHORT_STATUS_SMPS45				0x04
K
Keerthy 已提交
1140
#define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1141
#define PALMAS_SMPS_SHORT_STATUS_SMPS3				0x02
K
Keerthy 已提交
1142
#define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1143
#define PALMAS_SMPS_SHORT_STATUS_SMPS12				0x01
K
Keerthy 已提交
1144
#define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1145 1146 1147

/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9		0x40
K
Keerthy 已提交
1148
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT	0x06
G
Graeme Gregory 已提交
1149
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8		0x20
K
Keerthy 已提交
1150
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT	0x05
G
Graeme Gregory 已提交
1151
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7		0x10
K
Keerthy 已提交
1152
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT	0x04
G
Graeme Gregory 已提交
1153
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6		0x08
K
Keerthy 已提交
1154
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT	0x03
G
Graeme Gregory 已提交
1155
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45		0x04
K
Keerthy 已提交
1156
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT	0x02
G
Graeme Gregory 已提交
1157
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3		0x02
K
Keerthy 已提交
1158
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT	0x01
G
Graeme Gregory 已提交
1159
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12		0x01
K
Keerthy 已提交
1160
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT	0x00
G
Graeme Gregory 已提交
1161 1162 1163

/* Bit definitions for SMPS_POWERGOOD_MASK1 */
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10			0x80
K
Keerthy 已提交
1164
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT		0x07
G
Graeme Gregory 已提交
1165
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9			0x40
K
Keerthy 已提交
1166
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1167
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8			0x20
K
Keerthy 已提交
1168
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1169
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7			0x10
K
Keerthy 已提交
1170
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1171
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6			0x08
K
Keerthy 已提交
1172
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1173
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45			0x04
K
Keerthy 已提交
1174
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT		0x02
G
Graeme Gregory 已提交
1175
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3			0x02
K
Keerthy 已提交
1176
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1177
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12			0x01
K
Keerthy 已提交
1178
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT		0x00
G
Graeme Gregory 已提交
1179 1180 1181

/* Bit definitions for SMPS_POWERGOOD_MASK2 */
#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT	0x80
K
Keerthy 已提交
1182
#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT	0x07
G
Graeme Gregory 已提交
1183
#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7			0x04
K
Keerthy 已提交
1184
#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT		0x02
G
Graeme Gregory 已提交
1185
#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS			0x02
K
Keerthy 已提交
1186
#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT			0x01
G
Graeme Gregory 已提交
1187
#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK			0x01
K
Keerthy 已提交
1188
#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT			0x00
G
Graeme Gregory 已提交
1189 1190

/* Registers for function LDO */
K
Keerthy 已提交
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
#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 已提交
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
#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 已提交
1221
#define PALMAS_LDO1_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1222
#define PALMAS_LDO1_CTRL_STATUS					0x10
K
Keerthy 已提交
1223
#define PALMAS_LDO1_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1224
#define PALMAS_LDO1_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1225
#define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1226
#define PALMAS_LDO1_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1227
#define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1228 1229

/* Bit definitions for LDO1_VOLTAGE */
K
Keerthy 已提交
1230 1231
#define PALMAS_LDO1_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1232 1233 1234

/* Bit definitions for LDO2_CTRL */
#define PALMAS_LDO2_CTRL_WR_S					0x80
K
Keerthy 已提交
1235
#define PALMAS_LDO2_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1236
#define PALMAS_LDO2_CTRL_STATUS					0x10
K
Keerthy 已提交
1237
#define PALMAS_LDO2_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1238
#define PALMAS_LDO2_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1239
#define PALMAS_LDO2_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1240
#define PALMAS_LDO2_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1241
#define PALMAS_LDO2_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1242 1243

/* Bit definitions for LDO2_VOLTAGE */
K
Keerthy 已提交
1244 1245
#define PALMAS_LDO2_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO2_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1246 1247 1248

/* Bit definitions for LDO3_CTRL */
#define PALMAS_LDO3_CTRL_WR_S					0x80
K
Keerthy 已提交
1249
#define PALMAS_LDO3_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1250
#define PALMAS_LDO3_CTRL_STATUS					0x10
K
Keerthy 已提交
1251
#define PALMAS_LDO3_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1252
#define PALMAS_LDO3_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1253
#define PALMAS_LDO3_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1254
#define PALMAS_LDO3_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1255
#define PALMAS_LDO3_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1256 1257

/* Bit definitions for LDO3_VOLTAGE */
K
Keerthy 已提交
1258 1259
#define PALMAS_LDO3_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO3_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1260 1261 1262

/* Bit definitions for LDO4_CTRL */
#define PALMAS_LDO4_CTRL_WR_S					0x80
K
Keerthy 已提交
1263
#define PALMAS_LDO4_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1264
#define PALMAS_LDO4_CTRL_STATUS					0x10
K
Keerthy 已提交
1265
#define PALMAS_LDO4_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1266
#define PALMAS_LDO4_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1267
#define PALMAS_LDO4_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1268
#define PALMAS_LDO4_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1269
#define PALMAS_LDO4_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1270 1271

/* Bit definitions for LDO4_VOLTAGE */
K
Keerthy 已提交
1272 1273
#define PALMAS_LDO4_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO4_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1274 1275 1276

/* Bit definitions for LDO5_CTRL */
#define PALMAS_LDO5_CTRL_WR_S					0x80
K
Keerthy 已提交
1277
#define PALMAS_LDO5_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1278
#define PALMAS_LDO5_CTRL_STATUS					0x10
K
Keerthy 已提交
1279
#define PALMAS_LDO5_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1280
#define PALMAS_LDO5_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1281
#define PALMAS_LDO5_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1282
#define PALMAS_LDO5_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1283
#define PALMAS_LDO5_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1284 1285

/* Bit definitions for LDO5_VOLTAGE */
K
Keerthy 已提交
1286 1287
#define PALMAS_LDO5_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO5_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1288 1289 1290

/* Bit definitions for LDO6_CTRL */
#define PALMAS_LDO6_CTRL_WR_S					0x80
K
Keerthy 已提交
1291
#define PALMAS_LDO6_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1292
#define PALMAS_LDO6_CTRL_LDO_VIB_EN				0x40
K
Keerthy 已提交
1293
#define PALMAS_LDO6_CTRL_LDO_VIB_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1294
#define PALMAS_LDO6_CTRL_STATUS					0x10
K
Keerthy 已提交
1295
#define PALMAS_LDO6_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1296
#define PALMAS_LDO6_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1297
#define PALMAS_LDO6_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1298
#define PALMAS_LDO6_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1299
#define PALMAS_LDO6_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1300 1301

/* Bit definitions for LDO6_VOLTAGE */
K
Keerthy 已提交
1302 1303
#define PALMAS_LDO6_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO6_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1304 1305 1306

/* Bit definitions for LDO7_CTRL */
#define PALMAS_LDO7_CTRL_WR_S					0x80
K
Keerthy 已提交
1307
#define PALMAS_LDO7_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1308
#define PALMAS_LDO7_CTRL_STATUS					0x10
K
Keerthy 已提交
1309
#define PALMAS_LDO7_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1310
#define PALMAS_LDO7_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1311
#define PALMAS_LDO7_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1312
#define PALMAS_LDO7_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1313
#define PALMAS_LDO7_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1314 1315

/* Bit definitions for LDO7_VOLTAGE */
K
Keerthy 已提交
1316 1317
#define PALMAS_LDO7_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO7_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1318 1319 1320

/* Bit definitions for LDO8_CTRL */
#define PALMAS_LDO8_CTRL_WR_S					0x80
K
Keerthy 已提交
1321
#define PALMAS_LDO8_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1322
#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN			0x40
K
Keerthy 已提交
1323
#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1324
#define PALMAS_LDO8_CTRL_STATUS					0x10
K
Keerthy 已提交
1325
#define PALMAS_LDO8_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1326
#define PALMAS_LDO8_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1327
#define PALMAS_LDO8_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1328
#define PALMAS_LDO8_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1329
#define PALMAS_LDO8_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1330 1331

/* Bit definitions for LDO8_VOLTAGE */
K
Keerthy 已提交
1332 1333
#define PALMAS_LDO8_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO8_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1334 1335 1336

/* Bit definitions for LDO9_CTRL */
#define PALMAS_LDO9_CTRL_WR_S					0x80
K
Keerthy 已提交
1337
#define PALMAS_LDO9_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1338
#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN				0x40
K
Keerthy 已提交
1339
#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1340
#define PALMAS_LDO9_CTRL_STATUS					0x10
K
Keerthy 已提交
1341
#define PALMAS_LDO9_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1342
#define PALMAS_LDO9_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1343
#define PALMAS_LDO9_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1344
#define PALMAS_LDO9_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1345
#define PALMAS_LDO9_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1346 1347

/* Bit definitions for LDO9_VOLTAGE */
K
Keerthy 已提交
1348 1349
#define PALMAS_LDO9_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDO9_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1350 1351 1352

/* Bit definitions for LDOLN_CTRL */
#define PALMAS_LDOLN_CTRL_WR_S					0x80
K
Keerthy 已提交
1353
#define PALMAS_LDOLN_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1354
#define PALMAS_LDOLN_CTRL_STATUS				0x10
K
Keerthy 已提交
1355
#define PALMAS_LDOLN_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1356
#define PALMAS_LDOLN_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1357
#define PALMAS_LDOLN_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1358
#define PALMAS_LDOLN_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1359
#define PALMAS_LDOLN_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1360 1361

/* Bit definitions for LDOLN_VOLTAGE */
K
Keerthy 已提交
1362 1363
#define PALMAS_LDOLN_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDOLN_VOLTAGE_VSEL_SHIFT				0x00
G
Graeme Gregory 已提交
1364 1365 1366

/* Bit definitions for LDOUSB_CTRL */
#define PALMAS_LDOUSB_CTRL_WR_S					0x80
K
Keerthy 已提交
1367
#define PALMAS_LDOUSB_CTRL_WR_S_SHIFT				0x07
G
Graeme Gregory 已提交
1368
#define PALMAS_LDOUSB_CTRL_STATUS				0x10
K
Keerthy 已提交
1369
#define PALMAS_LDOUSB_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1370
#define PALMAS_LDOUSB_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1371
#define PALMAS_LDOUSB_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1372
#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1373
#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1374 1375

/* Bit definitions for LDOUSB_VOLTAGE */
K
Keerthy 已提交
1376 1377
#define PALMAS_LDOUSB_VOLTAGE_VSEL_MASK				0x3F
#define PALMAS_LDOUSB_VOLTAGE_VSEL_SHIFT			0x00
G
Graeme Gregory 已提交
1378 1379 1380

/* Bit definitions for LDO_CTRL */
#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS			0x01
K
Keerthy 已提交
1381
#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS_SHIFT		0x00
G
Graeme Gregory 已提交
1382 1383 1384

/* Bit definitions for LDO_PD_CTRL1 */
#define PALMAS_LDO_PD_CTRL1_LDO8				0x80
K
Keerthy 已提交
1385
#define PALMAS_LDO_PD_CTRL1_LDO8_SHIFT				0x07
G
Graeme Gregory 已提交
1386
#define PALMAS_LDO_PD_CTRL1_LDO7				0x40
K
Keerthy 已提交
1387
#define PALMAS_LDO_PD_CTRL1_LDO7_SHIFT				0x06
G
Graeme Gregory 已提交
1388
#define PALMAS_LDO_PD_CTRL1_LDO6				0x20
K
Keerthy 已提交
1389
#define PALMAS_LDO_PD_CTRL1_LDO6_SHIFT				0x05
G
Graeme Gregory 已提交
1390
#define PALMAS_LDO_PD_CTRL1_LDO5				0x10
K
Keerthy 已提交
1391
#define PALMAS_LDO_PD_CTRL1_LDO5_SHIFT				0x04
G
Graeme Gregory 已提交
1392
#define PALMAS_LDO_PD_CTRL1_LDO4				0x08
K
Keerthy 已提交
1393
#define PALMAS_LDO_PD_CTRL1_LDO4_SHIFT				0x03
G
Graeme Gregory 已提交
1394
#define PALMAS_LDO_PD_CTRL1_LDO3				0x04
K
Keerthy 已提交
1395
#define PALMAS_LDO_PD_CTRL1_LDO3_SHIFT				0x02
G
Graeme Gregory 已提交
1396
#define PALMAS_LDO_PD_CTRL1_LDO2				0x02
K
Keerthy 已提交
1397
#define PALMAS_LDO_PD_CTRL1_LDO2_SHIFT				0x01
G
Graeme Gregory 已提交
1398
#define PALMAS_LDO_PD_CTRL1_LDO1				0x01
K
Keerthy 已提交
1399
#define PALMAS_LDO_PD_CTRL1_LDO1_SHIFT				0x00
G
Graeme Gregory 已提交
1400 1401 1402

/* Bit definitions for LDO_PD_CTRL2 */
#define PALMAS_LDO_PD_CTRL2_LDOUSB				0x04
K
Keerthy 已提交
1403
#define PALMAS_LDO_PD_CTRL2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1404
#define PALMAS_LDO_PD_CTRL2_LDOLN				0x02
K
Keerthy 已提交
1405
#define PALMAS_LDO_PD_CTRL2_LDOLN_SHIFT				0x01
G
Graeme Gregory 已提交
1406
#define PALMAS_LDO_PD_CTRL2_LDO9				0x01
K
Keerthy 已提交
1407
#define PALMAS_LDO_PD_CTRL2_LDO9_SHIFT				0x00
G
Graeme Gregory 已提交
1408 1409 1410

/* Bit definitions for LDO_SHORT_STATUS1 */
#define PALMAS_LDO_SHORT_STATUS1_LDO8				0x80
K
Keerthy 已提交
1411
#define PALMAS_LDO_SHORT_STATUS1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1412
#define PALMAS_LDO_SHORT_STATUS1_LDO7				0x40
K
Keerthy 已提交
1413
#define PALMAS_LDO_SHORT_STATUS1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1414
#define PALMAS_LDO_SHORT_STATUS1_LDO6				0x20
K
Keerthy 已提交
1415
#define PALMAS_LDO_SHORT_STATUS1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1416
#define PALMAS_LDO_SHORT_STATUS1_LDO5				0x10
K
Keerthy 已提交
1417
#define PALMAS_LDO_SHORT_STATUS1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1418
#define PALMAS_LDO_SHORT_STATUS1_LDO4				0x08
K
Keerthy 已提交
1419
#define PALMAS_LDO_SHORT_STATUS1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1420
#define PALMAS_LDO_SHORT_STATUS1_LDO3				0x04
K
Keerthy 已提交
1421
#define PALMAS_LDO_SHORT_STATUS1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1422
#define PALMAS_LDO_SHORT_STATUS1_LDO2				0x02
K
Keerthy 已提交
1423
#define PALMAS_LDO_SHORT_STATUS1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1424
#define PALMAS_LDO_SHORT_STATUS1_LDO1				0x01
K
Keerthy 已提交
1425
#define PALMAS_LDO_SHORT_STATUS1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1426 1427 1428

/* Bit definitions for LDO_SHORT_STATUS2 */
#define PALMAS_LDO_SHORT_STATUS2_LDOVANA			0x08
K
Keerthy 已提交
1429
#define PALMAS_LDO_SHORT_STATUS2_LDOVANA_SHIFT			0x03
G
Graeme Gregory 已提交
1430
#define PALMAS_LDO_SHORT_STATUS2_LDOUSB				0x04
K
Keerthy 已提交
1431
#define PALMAS_LDO_SHORT_STATUS2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1432
#define PALMAS_LDO_SHORT_STATUS2_LDOLN				0x02
K
Keerthy 已提交
1433
#define PALMAS_LDO_SHORT_STATUS2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1434
#define PALMAS_LDO_SHORT_STATUS2_LDO9				0x01
K
Keerthy 已提交
1435
#define PALMAS_LDO_SHORT_STATUS2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1436 1437

/* Registers for function PMU_CONTROL */
K
Keerthy 已提交
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
#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 已提交
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
#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 已提交
1462
#define PALMAS_DEV_CTRL_DEV_STATUS_SHIFT			0x02
G
Graeme Gregory 已提交
1463
#define PALMAS_DEV_CTRL_SW_RST					0x02
K
Keerthy 已提交
1464
#define PALMAS_DEV_CTRL_SW_RST_SHIFT				0x01
G
Graeme Gregory 已提交
1465
#define PALMAS_DEV_CTRL_DEV_ON					0x01
K
Keerthy 已提交
1466
#define PALMAS_DEV_CTRL_DEV_ON_SHIFT				0x00
G
Graeme Gregory 已提交
1467 1468 1469

/* Bit definitions for POWER_CTRL */
#define PALMAS_POWER_CTRL_ENABLE2_MASK				0x04
K
Keerthy 已提交
1470
#define PALMAS_POWER_CTRL_ENABLE2_MASK_SHIFT			0x02
G
Graeme Gregory 已提交
1471
#define PALMAS_POWER_CTRL_ENABLE1_MASK				0x02
K
Keerthy 已提交
1472
#define PALMAS_POWER_CTRL_ENABLE1_MASK_SHIFT			0x01
G
Graeme Gregory 已提交
1473
#define PALMAS_POWER_CTRL_NSLEEP_MASK				0x01
K
Keerthy 已提交
1474
#define PALMAS_POWER_CTRL_NSLEEP_MASK_SHIFT			0x00
G
Graeme Gregory 已提交
1475 1476

/* Bit definitions for VSYS_LO */
K
Keerthy 已提交
1477 1478
#define PALMAS_VSYS_LO_THRESHOLD_MASK				0x1F
#define PALMAS_VSYS_LO_THRESHOLD_SHIFT				0x00
G
Graeme Gregory 已提交
1479 1480 1481

/* Bit definitions for VSYS_MON */
#define PALMAS_VSYS_MON_ENABLE					0x80
K
Keerthy 已提交
1482 1483 1484
#define PALMAS_VSYS_MON_ENABLE_SHIFT				0x07
#define PALMAS_VSYS_MON_THRESHOLD_MASK				0x3F
#define PALMAS_VSYS_MON_THRESHOLD_SHIFT				0x00
G
Graeme Gregory 已提交
1485 1486 1487

/* Bit definitions for VBAT_MON */
#define PALMAS_VBAT_MON_ENABLE					0x80
K
Keerthy 已提交
1488 1489 1490
#define PALMAS_VBAT_MON_ENABLE_SHIFT				0x07
#define PALMAS_VBAT_MON_THRESHOLD_MASK				0x3F
#define PALMAS_VBAT_MON_THRESHOLD_SHIFT				0x00
G
Graeme Gregory 已提交
1491 1492 1493

/* Bit definitions for WATCHDOG */
#define PALMAS_WATCHDOG_LOCK					0x20
K
Keerthy 已提交
1494
#define PALMAS_WATCHDOG_LOCK_SHIFT				0x05
G
Graeme Gregory 已提交
1495
#define PALMAS_WATCHDOG_ENABLE					0x10
K
Keerthy 已提交
1496
#define PALMAS_WATCHDOG_ENABLE_SHIFT				0x04
G
Graeme Gregory 已提交
1497
#define PALMAS_WATCHDOG_MODE					0x08
K
Keerthy 已提交
1498
#define PALMAS_WATCHDOG_MODE_SHIFT				0x03
G
Graeme Gregory 已提交
1499
#define PALMAS_WATCHDOG_TIMER_MASK				0x07
K
Keerthy 已提交
1500
#define PALMAS_WATCHDOG_TIMER_SHIFT				0x00
G
Graeme Gregory 已提交
1501 1502 1503

/* Bit definitions for BOOT_STATUS */
#define PALMAS_BOOT_STATUS_BOOT1				0x02
K
Keerthy 已提交
1504
#define PALMAS_BOOT_STATUS_BOOT1_SHIFT				0x01
G
Graeme Gregory 已提交
1505
#define PALMAS_BOOT_STATUS_BOOT0				0x01
K
Keerthy 已提交
1506
#define PALMAS_BOOT_STATUS_BOOT0_SHIFT				0x00
G
Graeme Gregory 已提交
1507 1508

/* Bit definitions for BATTERY_BOUNCE */
K
Keerthy 已提交
1509 1510
#define PALMAS_BATTERY_BOUNCE_BB_DELAY_MASK			0x3F
#define PALMAS_BATTERY_BOUNCE_BB_DELAY_SHIFT			0x00
G
Graeme Gregory 已提交
1511 1512 1513

/* Bit definitions for BACKUP_BATTERY_CTRL */
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15			0x80
K
Keerthy 已提交
1514
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15_SHIFT		0x07
G
Graeme Gregory 已提交
1515
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP			0x40
K
Keerthy 已提交
1516
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP_SHIFT		0x06
G
Graeme Gregory 已提交
1517
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF			0x20
K
Keerthy 已提交
1518
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF_SHIFT		0x05
G
Graeme Gregory 已提交
1519
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN			0x10
K
Keerthy 已提交
1520
#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN_SHIFT		0x04
G
Graeme Gregory 已提交
1521
#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG		0x08
K
Keerthy 已提交
1522
#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG_SHIFT	0x03
G
Graeme Gregory 已提交
1523
#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_MASK			0x06
K
Keerthy 已提交
1524
#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_SHIFT			0x01
G
Graeme Gregory 已提交
1525
#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN			0x01
K
Keerthy 已提交
1526
#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN_SHIFT		0x00
G
Graeme Gregory 已提交
1527 1528 1529

/* Bit definitions for LONG_PRESS_KEY */
#define PALMAS_LONG_PRESS_KEY_LPK_LOCK				0x80
K
Keerthy 已提交
1530
#define PALMAS_LONG_PRESS_KEY_LPK_LOCK_SHIFT			0x07
G
Graeme Gregory 已提交
1531
#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR			0x10
K
Keerthy 已提交
1532
#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR_SHIFT			0x04
G
Graeme Gregory 已提交
1533
#define PALMAS_LONG_PRESS_KEY_LPK_TIME_MASK			0x0c
K
Keerthy 已提交
1534
#define PALMAS_LONG_PRESS_KEY_LPK_TIME_SHIFT			0x02
G
Graeme Gregory 已提交
1535
#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_MASK		0x03
K
Keerthy 已提交
1536
#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_SHIFT		0x00
G
Graeme Gregory 已提交
1537 1538 1539

/* Bit definitions for OSC_THERM_CTRL */
#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP			0x80
K
Keerthy 已提交
1540
#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP_SHIFT		0x07
G
Graeme Gregory 已提交
1541
#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP			0x40
K
Keerthy 已提交
1542
#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP_SHIFT		0x06
G
Graeme Gregory 已提交
1543
#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP		0x20
K
Keerthy 已提交
1544
#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP_SHIFT		0x05
G
Graeme Gregory 已提交
1545
#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP		0x10
K
Keerthy 已提交
1546
#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP_SHIFT		0x04
G
Graeme Gregory 已提交
1547
#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_MASK			0x0c
K
Keerthy 已提交
1548
#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_SHIFT		0x02
G
Graeme Gregory 已提交
1549
#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS			0x02
K
Keerthy 已提交
1550
#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS_SHIFT			0x01
G
Graeme Gregory 已提交
1551
#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE			0x01
K
Keerthy 已提交
1552
#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE_SHIFT			0x00
G
Graeme Gregory 已提交
1553 1554 1555

/* Bit definitions for BATDEBOUNCING */
#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS			0x80
K
Keerthy 已提交
1556
#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS_SHIFT		0x07
G
Graeme Gregory 已提交
1557
#define PALMAS_BATDEBOUNCING_BINS_DEB_MASK			0x78
K
Keerthy 已提交
1558
#define PALMAS_BATDEBOUNCING_BINS_DEB_SHIFT			0x03
G
Graeme Gregory 已提交
1559
#define PALMAS_BATDEBOUNCING_BEXT_DEB_MASK			0x07
K
Keerthy 已提交
1560
#define PALMAS_BATDEBOUNCING_BEXT_DEB_SHIFT			0x00
G
Graeme Gregory 已提交
1561 1562 1563

/* Bit definitions for SWOFF_HWRST */
#define PALMAS_SWOFF_HWRST_PWRON_LPK				0x80
K
Keerthy 已提交
1564
#define PALMAS_SWOFF_HWRST_PWRON_LPK_SHIFT			0x07
G
Graeme Gregory 已提交
1565
#define PALMAS_SWOFF_HWRST_PWRDOWN				0x40
K
Keerthy 已提交
1566
#define PALMAS_SWOFF_HWRST_PWRDOWN_SHIFT			0x06
G
Graeme Gregory 已提交
1567
#define PALMAS_SWOFF_HWRST_WTD					0x20
K
Keerthy 已提交
1568
#define PALMAS_SWOFF_HWRST_WTD_SHIFT				0x05
G
Graeme Gregory 已提交
1569
#define PALMAS_SWOFF_HWRST_TSHUT				0x10
K
Keerthy 已提交
1570
#define PALMAS_SWOFF_HWRST_TSHUT_SHIFT				0x04
G
Graeme Gregory 已提交
1571
#define PALMAS_SWOFF_HWRST_RESET_IN				0x08
K
Keerthy 已提交
1572
#define PALMAS_SWOFF_HWRST_RESET_IN_SHIFT			0x03
G
Graeme Gregory 已提交
1573
#define PALMAS_SWOFF_HWRST_SW_RST				0x04
K
Keerthy 已提交
1574
#define PALMAS_SWOFF_HWRST_SW_RST_SHIFT				0x02
G
Graeme Gregory 已提交
1575
#define PALMAS_SWOFF_HWRST_VSYS_LO				0x02
K
Keerthy 已提交
1576
#define PALMAS_SWOFF_HWRST_VSYS_LO_SHIFT			0x01
G
Graeme Gregory 已提交
1577
#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN			0x01
K
Keerthy 已提交
1578
#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN_SHIFT			0x00
G
Graeme Gregory 已提交
1579 1580 1581

/* Bit definitions for SWOFF_COLDRST */
#define PALMAS_SWOFF_COLDRST_PWRON_LPK				0x80
K
Keerthy 已提交
1582
#define PALMAS_SWOFF_COLDRST_PWRON_LPK_SHIFT			0x07
G
Graeme Gregory 已提交
1583
#define PALMAS_SWOFF_COLDRST_PWRDOWN				0x40
K
Keerthy 已提交
1584
#define PALMAS_SWOFF_COLDRST_PWRDOWN_SHIFT			0x06
G
Graeme Gregory 已提交
1585
#define PALMAS_SWOFF_COLDRST_WTD				0x20
K
Keerthy 已提交
1586
#define PALMAS_SWOFF_COLDRST_WTD_SHIFT				0x05
G
Graeme Gregory 已提交
1587
#define PALMAS_SWOFF_COLDRST_TSHUT				0x10
K
Keerthy 已提交
1588
#define PALMAS_SWOFF_COLDRST_TSHUT_SHIFT			0x04
G
Graeme Gregory 已提交
1589
#define PALMAS_SWOFF_COLDRST_RESET_IN				0x08
K
Keerthy 已提交
1590
#define PALMAS_SWOFF_COLDRST_RESET_IN_SHIFT			0x03
G
Graeme Gregory 已提交
1591
#define PALMAS_SWOFF_COLDRST_SW_RST				0x04
K
Keerthy 已提交
1592
#define PALMAS_SWOFF_COLDRST_SW_RST_SHIFT			0x02
G
Graeme Gregory 已提交
1593
#define PALMAS_SWOFF_COLDRST_VSYS_LO				0x02
K
Keerthy 已提交
1594
#define PALMAS_SWOFF_COLDRST_VSYS_LO_SHIFT			0x01
G
Graeme Gregory 已提交
1595
#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN			0x01
K
Keerthy 已提交
1596
#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN_SHIFT		0x00
G
Graeme Gregory 已提交
1597 1598 1599

/* Bit definitions for SWOFF_STATUS */
#define PALMAS_SWOFF_STATUS_PWRON_LPK				0x80
K
Keerthy 已提交
1600
#define PALMAS_SWOFF_STATUS_PWRON_LPK_SHIFT			0x07
G
Graeme Gregory 已提交
1601
#define PALMAS_SWOFF_STATUS_PWRDOWN				0x40
K
Keerthy 已提交
1602
#define PALMAS_SWOFF_STATUS_PWRDOWN_SHIFT			0x06
G
Graeme Gregory 已提交
1603
#define PALMAS_SWOFF_STATUS_WTD					0x20
K
Keerthy 已提交
1604
#define PALMAS_SWOFF_STATUS_WTD_SHIFT				0x05
G
Graeme Gregory 已提交
1605
#define PALMAS_SWOFF_STATUS_TSHUT				0x10
K
Keerthy 已提交
1606
#define PALMAS_SWOFF_STATUS_TSHUT_SHIFT				0x04
G
Graeme Gregory 已提交
1607
#define PALMAS_SWOFF_STATUS_RESET_IN				0x08
K
Keerthy 已提交
1608
#define PALMAS_SWOFF_STATUS_RESET_IN_SHIFT			0x03
G
Graeme Gregory 已提交
1609
#define PALMAS_SWOFF_STATUS_SW_RST				0x04
K
Keerthy 已提交
1610
#define PALMAS_SWOFF_STATUS_SW_RST_SHIFT			0x02
G
Graeme Gregory 已提交
1611
#define PALMAS_SWOFF_STATUS_VSYS_LO				0x02
K
Keerthy 已提交
1612
#define PALMAS_SWOFF_STATUS_VSYS_LO_SHIFT			0x01
G
Graeme Gregory 已提交
1613
#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN			0x01
K
Keerthy 已提交
1614
#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN_SHIFT		0x00
G
Graeme Gregory 已提交
1615 1616 1617

/* Bit definitions for PMU_CONFIG */
#define PALMAS_PMU_CONFIG_MULTI_CELL_EN				0x40
K
Keerthy 已提交
1618
#define PALMAS_PMU_CONFIG_MULTI_CELL_EN_SHIFT			0x06
G
Graeme Gregory 已提交
1619
#define PALMAS_PMU_CONFIG_SPARE_MASK				0x30
K
Keerthy 已提交
1620
#define PALMAS_PMU_CONFIG_SPARE_SHIFT				0x04
G
Graeme Gregory 已提交
1621
#define PALMAS_PMU_CONFIG_SWOFF_DLY_MASK			0x0c
K
Keerthy 已提交
1622
#define PALMAS_PMU_CONFIG_SWOFF_DLY_SHIFT			0x02
G
Graeme Gregory 已提交
1623
#define PALMAS_PMU_CONFIG_GATE_RESET_OUT			0x02
K
Keerthy 已提交
1624
#define PALMAS_PMU_CONFIG_GATE_RESET_OUT_SHIFT			0x01
G
Graeme Gregory 已提交
1625
#define PALMAS_PMU_CONFIG_AUTODEVON				0x01
K
Keerthy 已提交
1626
#define PALMAS_PMU_CONFIG_AUTODEVON_SHIFT			0x00
G
Graeme Gregory 已提交
1627 1628 1629

/* Bit definitions for SPARE */
#define PALMAS_SPARE_SPARE_MASK					0xf8
K
Keerthy 已提交
1630
#define PALMAS_SPARE_SPARE_SHIFT				0x03
G
Graeme Gregory 已提交
1631
#define PALMAS_SPARE_REGEN3_OD					0x04
K
Keerthy 已提交
1632
#define PALMAS_SPARE_REGEN3_OD_SHIFT				0x02
G
Graeme Gregory 已提交
1633
#define PALMAS_SPARE_REGEN2_OD					0x02
K
Keerthy 已提交
1634
#define PALMAS_SPARE_REGEN2_OD_SHIFT				0x01
G
Graeme Gregory 已提交
1635
#define PALMAS_SPARE_REGEN1_OD					0x01
K
Keerthy 已提交
1636
#define PALMAS_SPARE_REGEN1_OD_SHIFT				0x00
G
Graeme Gregory 已提交
1637 1638 1639

/* Bit definitions for PMU_SECONDARY_INT */
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC		0x80
K
Keerthy 已提交
1640
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC_SHIFT		0x07
G
Graeme Gregory 已提交
1641
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC		0x40
K
Keerthy 已提交
1642
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC_SHIFT	0x06
G
Graeme Gregory 已提交
1643
#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC			0x20
K
Keerthy 已提交
1644
#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC_SHIFT		0x05
G
Graeme Gregory 已提交
1645
#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC			0x10
K
Keerthy 已提交
1646
#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
1647
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK			0x08
K
Keerthy 已提交
1648
#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK_SHIFT		0x03
G
Graeme Gregory 已提交
1649
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK		0x04
K
Keerthy 已提交
1650
#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK_SHIFT		0x02
G
Graeme Gregory 已提交
1651
#define PALMAS_PMU_SECONDARY_INT_BB_MASK			0x02
K
Keerthy 已提交
1652
#define PALMAS_PMU_SECONDARY_INT_BB_MASK_SHIFT			0x01
G
Graeme Gregory 已提交
1653
#define PALMAS_PMU_SECONDARY_INT_FBI_MASK			0x01
K
Keerthy 已提交
1654
#define PALMAS_PMU_SECONDARY_INT_FBI_MASK_SHIFT			0x00
G
Graeme Gregory 已提交
1655 1656

/* Bit definitions for SW_REVISION */
K
Keerthy 已提交
1657 1658
#define PALMAS_SW_REVISION_SW_REVISION_MASK			0xFF
#define PALMAS_SW_REVISION_SW_REVISION_SHIFT			0x00
G
Graeme Gregory 已提交
1659 1660 1661

/* Bit definitions for EXT_CHRG_CTRL */
#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS			0x80
K
Keerthy 已提交
1662
#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS_SHIFT		0x07
G
Graeme Gregory 已提交
1663
#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS			0x40
K
Keerthy 已提交
1664
#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS_SHIFT		0x06
G
Graeme Gregory 已提交
1665
#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY		0x08
K
Keerthy 已提交
1666
#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY_SHIFT		0x03
G
Graeme Gregory 已提交
1667
#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N				0x04
K
Keerthy 已提交
1668
#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N_SHIFT			0x02
G
Graeme Gregory 已提交
1669
#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN			0x02
K
Keerthy 已提交
1670
#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN_SHIFT			0x01
G
Graeme Gregory 已提交
1671
#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN			0x01
K
Keerthy 已提交
1672
#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN_SHIFT		0x00
G
Graeme Gregory 已提交
1673 1674 1675

/* Bit definitions for PMU_SECONDARY_INT2 */
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC			0x20
K
Keerthy 已提交
1676
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC_SHIFT		0x05
G
Graeme Gregory 已提交
1677
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC			0x10
K
Keerthy 已提交
1678
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
1679
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK			0x02
K
Keerthy 已提交
1680
#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK_SHIFT		0x01
G
Graeme Gregory 已提交
1681
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK			0x01
K
Keerthy 已提交
1682
#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK_SHIFT		0x00
G
Graeme Gregory 已提交
1683 1684

/* Registers for function RESOURCE */
K
Keerthy 已提交
1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700
#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 已提交
1701 1702 1703 1704 1705 1706
#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 已提交
1707
#define PALMAS_CLK32KG_CTRL_STATUS_SHIFT			0x04
G
Graeme Gregory 已提交
1708
#define PALMAS_CLK32KG_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1709
#define PALMAS_CLK32KG_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1710
#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1711
#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1712 1713 1714

/* Bit definitions for CLK32KGAUDIO_CTRL */
#define PALMAS_CLK32KGAUDIO_CTRL_STATUS				0x10
K
Keerthy 已提交
1715
#define PALMAS_CLK32KGAUDIO_CTRL_STATUS_SHIFT			0x04
G
Graeme Gregory 已提交
1716
#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3			0x08
K
Keerthy 已提交
1717
#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3_SHIFT		0x03
G
Graeme Gregory 已提交
1718
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP			0x04
K
Keerthy 已提交
1719
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP_SHIFT		0x02
G
Graeme Gregory 已提交
1720
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE			0x01
K
Keerthy 已提交
1721
#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE_SHIFT		0x00
G
Graeme Gregory 已提交
1722 1723 1724

/* Bit definitions for REGEN1_CTRL */
#define PALMAS_REGEN1_CTRL_STATUS				0x10
K
Keerthy 已提交
1725
#define PALMAS_REGEN1_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1726
#define PALMAS_REGEN1_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1727
#define PALMAS_REGEN1_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1728
#define PALMAS_REGEN1_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1729
#define PALMAS_REGEN1_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1730 1731 1732

/* Bit definitions for REGEN2_CTRL */
#define PALMAS_REGEN2_CTRL_STATUS				0x10
K
Keerthy 已提交
1733
#define PALMAS_REGEN2_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1734
#define PALMAS_REGEN2_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1735
#define PALMAS_REGEN2_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1736
#define PALMAS_REGEN2_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1737
#define PALMAS_REGEN2_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1738 1739 1740

/* Bit definitions for SYSEN1_CTRL */
#define PALMAS_SYSEN1_CTRL_STATUS				0x10
K
Keerthy 已提交
1741
#define PALMAS_SYSEN1_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1742
#define PALMAS_SYSEN1_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1743
#define PALMAS_SYSEN1_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1744
#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1745
#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1746 1747 1748

/* Bit definitions for SYSEN2_CTRL */
#define PALMAS_SYSEN2_CTRL_STATUS				0x10
K
Keerthy 已提交
1749
#define PALMAS_SYSEN2_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1750
#define PALMAS_SYSEN2_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1751
#define PALMAS_SYSEN2_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1752
#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1753
#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1754 1755 1756

/* Bit definitions for NSLEEP_RES_ASSIGN */
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3				0x40
K
Keerthy 已提交
1757
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3_SHIFT			0x06
G
Graeme Gregory 已提交
1758
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO			0x20
K
Keerthy 已提交
1759
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO_SHIFT		0x05
G
Graeme Gregory 已提交
1760
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG			0x10
K
Keerthy 已提交
1761
#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG_SHIFT			0x04
G
Graeme Gregory 已提交
1762
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2				0x08
K
Keerthy 已提交
1763
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2_SHIFT			0x03
G
Graeme Gregory 已提交
1764
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1				0x04
K
Keerthy 已提交
1765
#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1_SHIFT			0x02
G
Graeme Gregory 已提交
1766
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2				0x02
K
Keerthy 已提交
1767
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2_SHIFT			0x01
G
Graeme Gregory 已提交
1768
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1				0x01
K
Keerthy 已提交
1769
#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1_SHIFT			0x00
G
Graeme Gregory 已提交
1770 1771 1772

/* Bit definitions for NSLEEP_SMPS_ASSIGN */
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10			0x80
K
Keerthy 已提交
1773
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1774
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9				0x40
K
Keerthy 已提交
1775
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1776
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8				0x20
K
Keerthy 已提交
1777
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1778
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7				0x10
K
Keerthy 已提交
1779
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1780
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6				0x08
K
Keerthy 已提交
1781
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1782
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45			0x04
K
Keerthy 已提交
1783
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1784
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3				0x02
K
Keerthy 已提交
1785
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1786
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12			0x01
K
Keerthy 已提交
1787
#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1788 1789 1790

/* Bit definitions for NSLEEP_LDO_ASSIGN1 */
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8				0x80
K
Keerthy 已提交
1791
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1792
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7				0x40
K
Keerthy 已提交
1793
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1794
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6				0x20
K
Keerthy 已提交
1795
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1796
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5				0x10
K
Keerthy 已提交
1797
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1798
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4				0x08
K
Keerthy 已提交
1799
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1800
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3				0x04
K
Keerthy 已提交
1801
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1802
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2				0x02
K
Keerthy 已提交
1803
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1804
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1				0x01
K
Keerthy 已提交
1805
#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1806 1807 1808

/* Bit definitions for NSLEEP_LDO_ASSIGN2 */
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB			0x04
K
Keerthy 已提交
1809
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1810
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN				0x02
K
Keerthy 已提交
1811
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1812
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9				0x01
K
Keerthy 已提交
1813
#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1814 1815 1816

/* Bit definitions for ENABLE1_RES_ASSIGN */
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3			0x40
K
Keerthy 已提交
1817
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3_SHIFT			0x06
G
Graeme Gregory 已提交
1818
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO			0x20
K
Keerthy 已提交
1819
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO_SHIFT		0x05
G
Graeme Gregory 已提交
1820
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG			0x10
K
Keerthy 已提交
1821
#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG_SHIFT			0x04
G
Graeme Gregory 已提交
1822
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2			0x08
K
Keerthy 已提交
1823
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2_SHIFT			0x03
G
Graeme Gregory 已提交
1824
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1			0x04
K
Keerthy 已提交
1825
#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1_SHIFT			0x02
G
Graeme Gregory 已提交
1826
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2			0x02
K
Keerthy 已提交
1827
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2_SHIFT			0x01
G
Graeme Gregory 已提交
1828
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1			0x01
K
Keerthy 已提交
1829
#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1_SHIFT			0x00
G
Graeme Gregory 已提交
1830 1831 1832

/* Bit definitions for ENABLE1_SMPS_ASSIGN */
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10			0x80
K
Keerthy 已提交
1833
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1834
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9			0x40
K
Keerthy 已提交
1835
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1836
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8			0x20
K
Keerthy 已提交
1837
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1838
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7			0x10
K
Keerthy 已提交
1839
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1840
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6			0x08
K
Keerthy 已提交
1841
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1842
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45			0x04
K
Keerthy 已提交
1843
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1844
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3			0x02
K
Keerthy 已提交
1845
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1846
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12			0x01
K
Keerthy 已提交
1847
#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1848 1849 1850

/* Bit definitions for ENABLE1_LDO_ASSIGN1 */
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8				0x80
K
Keerthy 已提交
1851
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1852
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7				0x40
K
Keerthy 已提交
1853
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1854
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6				0x20
K
Keerthy 已提交
1855
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1856
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5				0x10
K
Keerthy 已提交
1857
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1858
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4				0x08
K
Keerthy 已提交
1859
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1860
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3				0x04
K
Keerthy 已提交
1861
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1862
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2				0x02
K
Keerthy 已提交
1863
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1864
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1				0x01
K
Keerthy 已提交
1865
#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1866 1867 1868

/* Bit definitions for ENABLE1_LDO_ASSIGN2 */
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB			0x04
K
Keerthy 已提交
1869
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1870
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN			0x02
K
Keerthy 已提交
1871
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1872
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9				0x01
K
Keerthy 已提交
1873
#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1874 1875 1876

/* Bit definitions for ENABLE2_RES_ASSIGN */
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3			0x40
K
Keerthy 已提交
1877
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3_SHIFT			0x06
G
Graeme Gregory 已提交
1878
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO			0x20
K
Keerthy 已提交
1879
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO_SHIFT		0x05
G
Graeme Gregory 已提交
1880
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG			0x10
K
Keerthy 已提交
1881
#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG_SHIFT			0x04
G
Graeme Gregory 已提交
1882
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2			0x08
K
Keerthy 已提交
1883
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2_SHIFT			0x03
G
Graeme Gregory 已提交
1884
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1			0x04
K
Keerthy 已提交
1885
#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1_SHIFT			0x02
G
Graeme Gregory 已提交
1886
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2			0x02
K
Keerthy 已提交
1887
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2_SHIFT			0x01
G
Graeme Gregory 已提交
1888
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1			0x01
K
Keerthy 已提交
1889
#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1_SHIFT			0x00
G
Graeme Gregory 已提交
1890 1891 1892

/* Bit definitions for ENABLE2_SMPS_ASSIGN */
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10			0x80
K
Keerthy 已提交
1893
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10_SHIFT			0x07
G
Graeme Gregory 已提交
1894
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9			0x40
K
Keerthy 已提交
1895
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9_SHIFT			0x06
G
Graeme Gregory 已提交
1896
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8			0x20
K
Keerthy 已提交
1897
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8_SHIFT			0x05
G
Graeme Gregory 已提交
1898
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7			0x10
K
Keerthy 已提交
1899
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7_SHIFT			0x04
G
Graeme Gregory 已提交
1900
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6			0x08
K
Keerthy 已提交
1901
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6_SHIFT			0x03
G
Graeme Gregory 已提交
1902
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45			0x04
K
Keerthy 已提交
1903
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45_SHIFT			0x02
G
Graeme Gregory 已提交
1904
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3			0x02
K
Keerthy 已提交
1905
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT			0x01
G
Graeme Gregory 已提交
1906
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12			0x01
K
Keerthy 已提交
1907
#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12_SHIFT			0x00
G
Graeme Gregory 已提交
1908 1909 1910

/* Bit definitions for ENABLE2_LDO_ASSIGN1 */
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8				0x80
K
Keerthy 已提交
1911
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8_SHIFT			0x07
G
Graeme Gregory 已提交
1912
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7				0x40
K
Keerthy 已提交
1913
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7_SHIFT			0x06
G
Graeme Gregory 已提交
1914
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6				0x20
K
Keerthy 已提交
1915
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6_SHIFT			0x05
G
Graeme Gregory 已提交
1916
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5				0x10
K
Keerthy 已提交
1917
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5_SHIFT			0x04
G
Graeme Gregory 已提交
1918
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4				0x08
K
Keerthy 已提交
1919
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT			0x03
G
Graeme Gregory 已提交
1920
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3				0x04
K
Keerthy 已提交
1921
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3_SHIFT			0x02
G
Graeme Gregory 已提交
1922
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2				0x02
K
Keerthy 已提交
1923
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT			0x01
G
Graeme Gregory 已提交
1924
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1				0x01
K
Keerthy 已提交
1925
#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT			0x00
G
Graeme Gregory 已提交
1926 1927 1928

/* Bit definitions for ENABLE2_LDO_ASSIGN2 */
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB			0x04
K
Keerthy 已提交
1929
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB_SHIFT			0x02
G
Graeme Gregory 已提交
1930
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN			0x02
K
Keerthy 已提交
1931
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN_SHIFT			0x01
G
Graeme Gregory 已提交
1932
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9				0x01
K
Keerthy 已提交
1933
#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9_SHIFT			0x00
G
Graeme Gregory 已提交
1934 1935 1936

/* Bit definitions for REGEN3_CTRL */
#define PALMAS_REGEN3_CTRL_STATUS				0x10
K
Keerthy 已提交
1937
#define PALMAS_REGEN3_CTRL_STATUS_SHIFT				0x04
G
Graeme Gregory 已提交
1938
#define PALMAS_REGEN3_CTRL_MODE_SLEEP				0x04
K
Keerthy 已提交
1939
#define PALMAS_REGEN3_CTRL_MODE_SLEEP_SHIFT			0x02
G
Graeme Gregory 已提交
1940
#define PALMAS_REGEN3_CTRL_MODE_ACTIVE				0x01
K
Keerthy 已提交
1941
#define PALMAS_REGEN3_CTRL_MODE_ACTIVE_SHIFT			0x00
G
Graeme Gregory 已提交
1942 1943

/* Registers for function PAD_CONTROL */
K
Keerthy 已提交
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
#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 已提交
1958 1959 1960

/* Bit definitions for PU_PD_INPUT_CTRL1 */
#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD			0x40
K
Keerthy 已提交
1961
#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD_SHIFT		0x06
G
Graeme Gregory 已提交
1962
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU			0x20
K
Keerthy 已提交
1963
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU_SHIFT		0x05
G
Graeme Gregory 已提交
1964
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD			0x10
K
Keerthy 已提交
1965
#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1966
#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD			0x04
K
Keerthy 已提交
1967
#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1968
#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU			0x02
K
Keerthy 已提交
1969
#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU_SHIFT		0x01
G
Graeme Gregory 已提交
1970 1971 1972

/* Bit definitions for PU_PD_INPUT_CTRL2 */
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU			0x20
K
Keerthy 已提交
1973
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU_SHIFT		0x05
G
Graeme Gregory 已提交
1974
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD			0x10
K
Keerthy 已提交
1975
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1976
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU			0x08
K
Keerthy 已提交
1977
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU_SHIFT		0x03
G
Graeme Gregory 已提交
1978
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD			0x04
K
Keerthy 已提交
1979
#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1980
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU			0x02
K
Keerthy 已提交
1981
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU_SHIFT		0x01
G
Graeme Gregory 已提交
1982
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD			0x01
K
Keerthy 已提交
1983
#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD_SHIFT		0x00
G
Graeme Gregory 已提交
1984 1985 1986

/* Bit definitions for PU_PD_INPUT_CTRL3 */
#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD			0x40
K
Keerthy 已提交
1987
#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD_SHIFT			0x06
G
Graeme Gregory 已提交
1988
#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD			0x10
K
Keerthy 已提交
1989
#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD_SHIFT		0x04
G
Graeme Gregory 已提交
1990
#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD			0x04
K
Keerthy 已提交
1991
#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD_SHIFT		0x02
G
Graeme Gregory 已提交
1992
#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD			0x01
K
Keerthy 已提交
1993
#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD_SHIFT		0x00
G
Graeme Gregory 已提交
1994 1995 1996

/* Bit definitions for OD_OUTPUT_CTRL */
#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD				0x80
K
Keerthy 已提交
1997
#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD_SHIFT			0x07
G
Graeme Gregory 已提交
1998
#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD			0x40
K
Keerthy 已提交
1999
#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD_SHIFT			0x06
G
Graeme Gregory 已提交
2000
#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD				0x20
K
Keerthy 已提交
2001
#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD_SHIFT			0x05
G
Graeme Gregory 已提交
2002
#define PALMAS_OD_OUTPUT_CTRL_INT_OD				0x08
K
Keerthy 已提交
2003
#define PALMAS_OD_OUTPUT_CTRL_INT_OD_SHIFT			0x03
G
Graeme Gregory 已提交
2004 2005 2006

/* Bit definitions for POLARITY_CTRL */
#define PALMAS_POLARITY_CTRL_INT_POLARITY			0x80
K
Keerthy 已提交
2007
#define PALMAS_POLARITY_CTRL_INT_POLARITY_SHIFT			0x07
G
Graeme Gregory 已提交
2008
#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY			0x40
K
Keerthy 已提交
2009
#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY_SHIFT		0x06
G
Graeme Gregory 已提交
2010
#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY			0x20
K
Keerthy 已提交
2011
#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY_SHIFT		0x05
G
Graeme Gregory 已提交
2012
#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY			0x10
K
Keerthy 已提交
2013
#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY_SHIFT		0x04
G
Graeme Gregory 已提交
2014
#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY			0x08
K
Keerthy 已提交
2015
#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY_SHIFT		0x03
G
Graeme Gregory 已提交
2016
#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY		0x04
K
Keerthy 已提交
2017
#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY_SHIFT	0x02
G
Graeme Gregory 已提交
2018
#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY	0x02
K
Keerthy 已提交
2019
#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY_SHIFT	0x01
G
Graeme Gregory 已提交
2020
#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY			0x01
K
Keerthy 已提交
2021
#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY_SHIFT		0x00
G
Graeme Gregory 已提交
2022 2023 2024

/* Bit definitions for PRIMARY_SECONDARY_PAD1 */
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3			0x80
K
Keerthy 已提交
2025
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3_SHIFT		0x07
G
Graeme Gregory 已提交
2026
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_MASK		0x60
K
Keerthy 已提交
2027
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_SHIFT		0x05
G
Graeme Gregory 已提交
2028
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_MASK		0x18
K
Keerthy 已提交
2029
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_SHIFT		0x03
G
Graeme Gregory 已提交
2030
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0			0x04
K
Keerthy 已提交
2031
#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0_SHIFT		0x02
G
Graeme Gregory 已提交
2032
#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC			0x02
K
Keerthy 已提交
2033
#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC_SHIFT			0x01
G
Graeme Gregory 已提交
2034
#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD			0x01
K
Keerthy 已提交
2035
#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD_SHIFT		0x00
G
Graeme Gregory 已提交
2036 2037 2038

/* Bit definitions for PRIMARY_SECONDARY_PAD2 */
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_MASK		0x30
K
Keerthy 已提交
2039
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_SHIFT		0x04
G
Graeme Gregory 已提交
2040
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6			0x08
K
Keerthy 已提交
2041
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6_SHIFT		0x03
G
Graeme Gregory 已提交
2042
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_MASK		0x06
K
Keerthy 已提交
2043
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_SHIFT		0x01
G
Graeme Gregory 已提交
2044
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4			0x01
K
Keerthy 已提交
2045
#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4_SHIFT		0x00
G
Graeme Gregory 已提交
2046 2047 2048

/* Bit definitions for I2C_SPI */
#define PALMAS_I2C_SPI_I2C2OTP_EN				0x80
K
Keerthy 已提交
2049
#define PALMAS_I2C_SPI_I2C2OTP_EN_SHIFT				0x07
G
Graeme Gregory 已提交
2050
#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL				0x40
K
Keerthy 已提交
2051
#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL_SHIFT			0x06
G
Graeme Gregory 已提交
2052
#define PALMAS_I2C_SPI_ID_I2C2					0x20
K
Keerthy 已提交
2053
#define PALMAS_I2C_SPI_ID_I2C2_SHIFT				0x05
G
Graeme Gregory 已提交
2054
#define PALMAS_I2C_SPI_I2C_SPI					0x10
K
Keerthy 已提交
2055 2056 2057
#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 已提交
2058 2059 2060

/* Bit definitions for PU_PD_INPUT_CTRL4 */
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD			0x40
K
Keerthy 已提交
2061
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD_SHIFT		0x06
G
Graeme Gregory 已提交
2062
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD			0x10
K
Keerthy 已提交
2063
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD_SHIFT		0x04
G
Graeme Gregory 已提交
2064
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD			0x04
K
Keerthy 已提交
2065
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD_SHIFT		0x02
G
Graeme Gregory 已提交
2066
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD			0x01
K
Keerthy 已提交
2067
#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD_SHIFT		0x00
G
Graeme Gregory 已提交
2068 2069 2070

/* Bit definitions for PRIMARY_SECONDARY_PAD3 */
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2			0x02
K
Keerthy 已提交
2071
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2_SHIFT		0x01
G
Graeme Gregory 已提交
2072
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1			0x01
K
Keerthy 已提交
2073
#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1_SHIFT		0x00
G
Graeme Gregory 已提交
2074 2075

/* Registers for function LED_PWM */
K
Keerthy 已提交
2076 2077 2078 2079
#define PALMAS_LED_PERIOD_CTRL					0x00
#define PALMAS_LED_CTRL						0x01
#define PALMAS_PWM_CTRL1					0x02
#define PALMAS_PWM_CTRL2					0x03
G
Graeme Gregory 已提交
2080 2081 2082

/* Bit definitions for LED_PERIOD_CTRL */
#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_MASK		0x38
K
Keerthy 已提交
2083
#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_SHIFT		0x03
G
Graeme Gregory 已提交
2084
#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_MASK		0x07
K
Keerthy 已提交
2085
#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_SHIFT		0x00
G
Graeme Gregory 已提交
2086 2087 2088

/* Bit definitions for LED_CTRL */
#define PALMAS_LED_CTRL_LED_2_SEQ				0x20
K
Keerthy 已提交
2089
#define PALMAS_LED_CTRL_LED_2_SEQ_SHIFT				0x05
G
Graeme Gregory 已提交
2090
#define PALMAS_LED_CTRL_LED_1_SEQ				0x10
K
Keerthy 已提交
2091
#define PALMAS_LED_CTRL_LED_1_SEQ_SHIFT				0x04
G
Graeme Gregory 已提交
2092
#define PALMAS_LED_CTRL_LED_2_ON_TIME_MASK			0x0c
K
Keerthy 已提交
2093
#define PALMAS_LED_CTRL_LED_2_ON_TIME_SHIFT			0x02
G
Graeme Gregory 已提交
2094
#define PALMAS_LED_CTRL_LED_1_ON_TIME_MASK			0x03
K
Keerthy 已提交
2095
#define PALMAS_LED_CTRL_LED_1_ON_TIME_SHIFT			0x00
G
Graeme Gregory 已提交
2096 2097 2098

/* Bit definitions for PWM_CTRL1 */
#define PALMAS_PWM_CTRL1_PWM_FREQ_EN				0x02
K
Keerthy 已提交
2099
#define PALMAS_PWM_CTRL1_PWM_FREQ_EN_SHIFT			0x01
G
Graeme Gregory 已提交
2100
#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL				0x01
K
Keerthy 已提交
2101
#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL_SHIFT			0x00
G
Graeme Gregory 已提交
2102 2103

/* Bit definitions for PWM_CTRL2 */
K
Keerthy 已提交
2104 2105
#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_MASK			0xFF
#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_SHIFT			0x00
G
Graeme Gregory 已提交
2106 2107

/* Registers for function INTERRUPT */
K
Keerthy 已提交
2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
#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 已提交
2124 2125 2126 2127 2128 2129 2130 2131
#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 已提交
2132
#define PALMAS_INT1_STATUS_VBAT_MON_SHIFT			0x07
G
Graeme Gregory 已提交
2133
#define PALMAS_INT1_STATUS_VSYS_MON				0x40
K
Keerthy 已提交
2134
#define PALMAS_INT1_STATUS_VSYS_MON_SHIFT			0x06
G
Graeme Gregory 已提交
2135
#define PALMAS_INT1_STATUS_HOTDIE				0x20
K
Keerthy 已提交
2136
#define PALMAS_INT1_STATUS_HOTDIE_SHIFT				0x05
G
Graeme Gregory 已提交
2137
#define PALMAS_INT1_STATUS_PWRDOWN				0x10
K
Keerthy 已提交
2138
#define PALMAS_INT1_STATUS_PWRDOWN_SHIFT			0x04
G
Graeme Gregory 已提交
2139
#define PALMAS_INT1_STATUS_RPWRON				0x08
K
Keerthy 已提交
2140
#define PALMAS_INT1_STATUS_RPWRON_SHIFT				0x03
G
Graeme Gregory 已提交
2141
#define PALMAS_INT1_STATUS_LONG_PRESS_KEY			0x04
K
Keerthy 已提交
2142
#define PALMAS_INT1_STATUS_LONG_PRESS_KEY_SHIFT			0x02
G
Graeme Gregory 已提交
2143
#define PALMAS_INT1_STATUS_PWRON				0x02
K
Keerthy 已提交
2144
#define PALMAS_INT1_STATUS_PWRON_SHIFT				0x01
G
Graeme Gregory 已提交
2145
#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV			0x01
K
Keerthy 已提交
2146
#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV_SHIFT		0x00
G
Graeme Gregory 已提交
2147 2148 2149

/* Bit definitions for INT1_MASK */
#define PALMAS_INT1_MASK_VBAT_MON				0x80
K
Keerthy 已提交
2150
#define PALMAS_INT1_MASK_VBAT_MON_SHIFT				0x07
G
Graeme Gregory 已提交
2151
#define PALMAS_INT1_MASK_VSYS_MON				0x40
K
Keerthy 已提交
2152
#define PALMAS_INT1_MASK_VSYS_MON_SHIFT				0x06
G
Graeme Gregory 已提交
2153
#define PALMAS_INT1_MASK_HOTDIE					0x20
K
Keerthy 已提交
2154
#define PALMAS_INT1_MASK_HOTDIE_SHIFT				0x05
G
Graeme Gregory 已提交
2155
#define PALMAS_INT1_MASK_PWRDOWN				0x10
K
Keerthy 已提交
2156
#define PALMAS_INT1_MASK_PWRDOWN_SHIFT				0x04
G
Graeme Gregory 已提交
2157
#define PALMAS_INT1_MASK_RPWRON					0x08
K
Keerthy 已提交
2158
#define PALMAS_INT1_MASK_RPWRON_SHIFT				0x03
G
Graeme Gregory 已提交
2159
#define PALMAS_INT1_MASK_LONG_PRESS_KEY				0x04
K
Keerthy 已提交
2160
#define PALMAS_INT1_MASK_LONG_PRESS_KEY_SHIFT			0x02
G
Graeme Gregory 已提交
2161
#define PALMAS_INT1_MASK_PWRON					0x02
K
Keerthy 已提交
2162
#define PALMAS_INT1_MASK_PWRON_SHIFT				0x01
G
Graeme Gregory 已提交
2163
#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV			0x01
K
Keerthy 已提交
2164
#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV_SHIFT		0x00
G
Graeme Gregory 已提交
2165 2166 2167

/* Bit definitions for INT1_LINE_STATE */
#define PALMAS_INT1_LINE_STATE_VBAT_MON				0x80
K
Keerthy 已提交
2168
#define PALMAS_INT1_LINE_STATE_VBAT_MON_SHIFT			0x07
G
Graeme Gregory 已提交
2169
#define PALMAS_INT1_LINE_STATE_VSYS_MON				0x40
K
Keerthy 已提交
2170
#define PALMAS_INT1_LINE_STATE_VSYS_MON_SHIFT			0x06
G
Graeme Gregory 已提交
2171
#define PALMAS_INT1_LINE_STATE_HOTDIE				0x20
K
Keerthy 已提交
2172
#define PALMAS_INT1_LINE_STATE_HOTDIE_SHIFT			0x05
G
Graeme Gregory 已提交
2173
#define PALMAS_INT1_LINE_STATE_PWRDOWN				0x10
K
Keerthy 已提交
2174
#define PALMAS_INT1_LINE_STATE_PWRDOWN_SHIFT			0x04
G
Graeme Gregory 已提交
2175
#define PALMAS_INT1_LINE_STATE_RPWRON				0x08
K
Keerthy 已提交
2176
#define PALMAS_INT1_LINE_STATE_RPWRON_SHIFT			0x03
G
Graeme Gregory 已提交
2177
#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY			0x04
K
Keerthy 已提交
2178
#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT		0x02
G
Graeme Gregory 已提交
2179
#define PALMAS_INT1_LINE_STATE_PWRON				0x02
K
Keerthy 已提交
2180
#define PALMAS_INT1_LINE_STATE_PWRON_SHIFT			0x01
G
Graeme Gregory 已提交
2181
#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV		0x01
K
Keerthy 已提交
2182
#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV_SHIFT	0x00
G
Graeme Gregory 已提交
2183 2184 2185

/* Bit definitions for INT2_STATUS */
#define PALMAS_INT2_STATUS_VAC_ACOK				0x80
K
Keerthy 已提交
2186
#define PALMAS_INT2_STATUS_VAC_ACOK_SHIFT			0x07
G
Graeme Gregory 已提交
2187
#define PALMAS_INT2_STATUS_SHORT				0x40
K
Keerthy 已提交
2188
#define PALMAS_INT2_STATUS_SHORT_SHIFT				0x06
G
Graeme Gregory 已提交
2189
#define PALMAS_INT2_STATUS_FBI_BB				0x20
K
Keerthy 已提交
2190
#define PALMAS_INT2_STATUS_FBI_BB_SHIFT				0x05
G
Graeme Gregory 已提交
2191
#define PALMAS_INT2_STATUS_RESET_IN				0x10
K
Keerthy 已提交
2192
#define PALMAS_INT2_STATUS_RESET_IN_SHIFT			0x04
G
Graeme Gregory 已提交
2193
#define PALMAS_INT2_STATUS_BATREMOVAL				0x08
K
Keerthy 已提交
2194
#define PALMAS_INT2_STATUS_BATREMOVAL_SHIFT			0x03
G
Graeme Gregory 已提交
2195
#define PALMAS_INT2_STATUS_WDT					0x04
K
Keerthy 已提交
2196
#define PALMAS_INT2_STATUS_WDT_SHIFT				0x02
G
Graeme Gregory 已提交
2197
#define PALMAS_INT2_STATUS_RTC_TIMER				0x02
K
Keerthy 已提交
2198
#define PALMAS_INT2_STATUS_RTC_TIMER_SHIFT			0x01
G
Graeme Gregory 已提交
2199
#define PALMAS_INT2_STATUS_RTC_ALARM				0x01
K
Keerthy 已提交
2200
#define PALMAS_INT2_STATUS_RTC_ALARM_SHIFT			0x00
G
Graeme Gregory 已提交
2201 2202 2203

/* Bit definitions for INT2_MASK */
#define PALMAS_INT2_MASK_VAC_ACOK				0x80
K
Keerthy 已提交
2204
#define PALMAS_INT2_MASK_VAC_ACOK_SHIFT				0x07
G
Graeme Gregory 已提交
2205
#define PALMAS_INT2_MASK_SHORT					0x40
K
Keerthy 已提交
2206
#define PALMAS_INT2_MASK_SHORT_SHIFT				0x06
G
Graeme Gregory 已提交
2207
#define PALMAS_INT2_MASK_FBI_BB					0x20
K
Keerthy 已提交
2208
#define PALMAS_INT2_MASK_FBI_BB_SHIFT				0x05
G
Graeme Gregory 已提交
2209
#define PALMAS_INT2_MASK_RESET_IN				0x10
K
Keerthy 已提交
2210
#define PALMAS_INT2_MASK_RESET_IN_SHIFT				0x04
G
Graeme Gregory 已提交
2211
#define PALMAS_INT2_MASK_BATREMOVAL				0x08
K
Keerthy 已提交
2212
#define PALMAS_INT2_MASK_BATREMOVAL_SHIFT			0x03
G
Graeme Gregory 已提交
2213
#define PALMAS_INT2_MASK_WDT					0x04
K
Keerthy 已提交
2214
#define PALMAS_INT2_MASK_WDT_SHIFT				0x02
G
Graeme Gregory 已提交
2215
#define PALMAS_INT2_MASK_RTC_TIMER				0x02
K
Keerthy 已提交
2216
#define PALMAS_INT2_MASK_RTC_TIMER_SHIFT			0x01
G
Graeme Gregory 已提交
2217
#define PALMAS_INT2_MASK_RTC_ALARM				0x01
K
Keerthy 已提交
2218
#define PALMAS_INT2_MASK_RTC_ALARM_SHIFT			0x00
G
Graeme Gregory 已提交
2219 2220 2221

/* Bit definitions for INT2_LINE_STATE */
#define PALMAS_INT2_LINE_STATE_VAC_ACOK				0x80
K
Keerthy 已提交
2222
#define PALMAS_INT2_LINE_STATE_VAC_ACOK_SHIFT			0x07
G
Graeme Gregory 已提交
2223
#define PALMAS_INT2_LINE_STATE_SHORT				0x40
K
Keerthy 已提交
2224
#define PALMAS_INT2_LINE_STATE_SHORT_SHIFT			0x06
G
Graeme Gregory 已提交
2225
#define PALMAS_INT2_LINE_STATE_FBI_BB				0x20
K
Keerthy 已提交
2226
#define PALMAS_INT2_LINE_STATE_FBI_BB_SHIFT			0x05
G
Graeme Gregory 已提交
2227
#define PALMAS_INT2_LINE_STATE_RESET_IN				0x10
K
Keerthy 已提交
2228
#define PALMAS_INT2_LINE_STATE_RESET_IN_SHIFT			0x04
G
Graeme Gregory 已提交
2229
#define PALMAS_INT2_LINE_STATE_BATREMOVAL			0x08
K
Keerthy 已提交
2230
#define PALMAS_INT2_LINE_STATE_BATREMOVAL_SHIFT			0x03
G
Graeme Gregory 已提交
2231
#define PALMAS_INT2_LINE_STATE_WDT				0x04
K
Keerthy 已提交
2232
#define PALMAS_INT2_LINE_STATE_WDT_SHIFT			0x02
G
Graeme Gregory 已提交
2233
#define PALMAS_INT2_LINE_STATE_RTC_TIMER			0x02
K
Keerthy 已提交
2234
#define PALMAS_INT2_LINE_STATE_RTC_TIMER_SHIFT			0x01
G
Graeme Gregory 已提交
2235
#define PALMAS_INT2_LINE_STATE_RTC_ALARM			0x01
K
Keerthy 已提交
2236
#define PALMAS_INT2_LINE_STATE_RTC_ALARM_SHIFT			0x00
G
Graeme Gregory 已提交
2237 2238 2239

/* Bit definitions for INT3_STATUS */
#define PALMAS_INT3_STATUS_VBUS					0x80
K
Keerthy 已提交
2240
#define PALMAS_INT3_STATUS_VBUS_SHIFT				0x07
G
Graeme Gregory 已提交
2241
#define PALMAS_INT3_STATUS_VBUS_OTG				0x40
K
Keerthy 已提交
2242
#define PALMAS_INT3_STATUS_VBUS_OTG_SHIFT			0x06
G
Graeme Gregory 已提交
2243
#define PALMAS_INT3_STATUS_ID					0x20
K
Keerthy 已提交
2244
#define PALMAS_INT3_STATUS_ID_SHIFT				0x05
G
Graeme Gregory 已提交
2245
#define PALMAS_INT3_STATUS_ID_OTG				0x10
K
Keerthy 已提交
2246
#define PALMAS_INT3_STATUS_ID_OTG_SHIFT				0x04
G
Graeme Gregory 已提交
2247
#define PALMAS_INT3_STATUS_GPADC_EOC_RT				0x08
K
Keerthy 已提交
2248
#define PALMAS_INT3_STATUS_GPADC_EOC_RT_SHIFT			0x03
G
Graeme Gregory 已提交
2249
#define PALMAS_INT3_STATUS_GPADC_EOC_SW				0x04
K
Keerthy 已提交
2250
#define PALMAS_INT3_STATUS_GPADC_EOC_SW_SHIFT			0x02
G
Graeme Gregory 已提交
2251
#define PALMAS_INT3_STATUS_GPADC_AUTO_1				0x02
K
Keerthy 已提交
2252
#define PALMAS_INT3_STATUS_GPADC_AUTO_1_SHIFT			0x01
G
Graeme Gregory 已提交
2253
#define PALMAS_INT3_STATUS_GPADC_AUTO_0				0x01
K
Keerthy 已提交
2254
#define PALMAS_INT3_STATUS_GPADC_AUTO_0_SHIFT			0x00
G
Graeme Gregory 已提交
2255 2256 2257

/* Bit definitions for INT3_MASK */
#define PALMAS_INT3_MASK_VBUS					0x80
K
Keerthy 已提交
2258
#define PALMAS_INT3_MASK_VBUS_SHIFT				0x07
G
Graeme Gregory 已提交
2259
#define PALMAS_INT3_MASK_VBUS_OTG				0x40
K
Keerthy 已提交
2260
#define PALMAS_INT3_MASK_VBUS_OTG_SHIFT				0x06
G
Graeme Gregory 已提交
2261
#define PALMAS_INT3_MASK_ID					0x20
K
Keerthy 已提交
2262
#define PALMAS_INT3_MASK_ID_SHIFT				0x05
G
Graeme Gregory 已提交
2263
#define PALMAS_INT3_MASK_ID_OTG					0x10
K
Keerthy 已提交
2264
#define PALMAS_INT3_MASK_ID_OTG_SHIFT				0x04
G
Graeme Gregory 已提交
2265
#define PALMAS_INT3_MASK_GPADC_EOC_RT				0x08
K
Keerthy 已提交
2266
#define PALMAS_INT3_MASK_GPADC_EOC_RT_SHIFT			0x03
G
Graeme Gregory 已提交
2267
#define PALMAS_INT3_MASK_GPADC_EOC_SW				0x04
K
Keerthy 已提交
2268
#define PALMAS_INT3_MASK_GPADC_EOC_SW_SHIFT			0x02
G
Graeme Gregory 已提交
2269
#define PALMAS_INT3_MASK_GPADC_AUTO_1				0x02
K
Keerthy 已提交
2270
#define PALMAS_INT3_MASK_GPADC_AUTO_1_SHIFT			0x01
G
Graeme Gregory 已提交
2271
#define PALMAS_INT3_MASK_GPADC_AUTO_0				0x01
K
Keerthy 已提交
2272
#define PALMAS_INT3_MASK_GPADC_AUTO_0_SHIFT			0x00
G
Graeme Gregory 已提交
2273 2274 2275

/* Bit definitions for INT3_LINE_STATE */
#define PALMAS_INT3_LINE_STATE_VBUS				0x80
K
Keerthy 已提交
2276
#define PALMAS_INT3_LINE_STATE_VBUS_SHIFT			0x07
G
Graeme Gregory 已提交
2277
#define PALMAS_INT3_LINE_STATE_VBUS_OTG				0x40
K
Keerthy 已提交
2278
#define PALMAS_INT3_LINE_STATE_VBUS_OTG_SHIFT			0x06
G
Graeme Gregory 已提交
2279
#define PALMAS_INT3_LINE_STATE_ID				0x20
K
Keerthy 已提交
2280
#define PALMAS_INT3_LINE_STATE_ID_SHIFT				0x05
G
Graeme Gregory 已提交
2281
#define PALMAS_INT3_LINE_STATE_ID_OTG				0x10
K
Keerthy 已提交
2282
#define PALMAS_INT3_LINE_STATE_ID_OTG_SHIFT			0x04
G
Graeme Gregory 已提交
2283
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT			0x08
K
Keerthy 已提交
2284
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT_SHIFT		0x03
G
Graeme Gregory 已提交
2285
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW			0x04
K
Keerthy 已提交
2286
#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT		0x02
G
Graeme Gregory 已提交
2287
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1			0x02
K
Keerthy 已提交
2288
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT		0x01
G
Graeme Gregory 已提交
2289
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0			0x01
K
Keerthy 已提交
2290
#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT		0x00
G
Graeme Gregory 已提交
2291 2292 2293

/* Bit definitions for INT4_STATUS */
#define PALMAS_INT4_STATUS_GPIO_7				0x80
K
Keerthy 已提交
2294
#define PALMAS_INT4_STATUS_GPIO_7_SHIFT				0x07
G
Graeme Gregory 已提交
2295
#define PALMAS_INT4_STATUS_GPIO_6				0x40
K
Keerthy 已提交
2296
#define PALMAS_INT4_STATUS_GPIO_6_SHIFT				0x06
G
Graeme Gregory 已提交
2297
#define PALMAS_INT4_STATUS_GPIO_5				0x20
K
Keerthy 已提交
2298
#define PALMAS_INT4_STATUS_GPIO_5_SHIFT				0x05
G
Graeme Gregory 已提交
2299
#define PALMAS_INT4_STATUS_GPIO_4				0x10
K
Keerthy 已提交
2300
#define PALMAS_INT4_STATUS_GPIO_4_SHIFT				0x04
G
Graeme Gregory 已提交
2301
#define PALMAS_INT4_STATUS_GPIO_3				0x08
K
Keerthy 已提交
2302
#define PALMAS_INT4_STATUS_GPIO_3_SHIFT				0x03
G
Graeme Gregory 已提交
2303
#define PALMAS_INT4_STATUS_GPIO_2				0x04
K
Keerthy 已提交
2304
#define PALMAS_INT4_STATUS_GPIO_2_SHIFT				0x02
G
Graeme Gregory 已提交
2305
#define PALMAS_INT4_STATUS_GPIO_1				0x02
K
Keerthy 已提交
2306
#define PALMAS_INT4_STATUS_GPIO_1_SHIFT				0x01
G
Graeme Gregory 已提交
2307
#define PALMAS_INT4_STATUS_GPIO_0				0x01
K
Keerthy 已提交
2308
#define PALMAS_INT4_STATUS_GPIO_0_SHIFT				0x00
G
Graeme Gregory 已提交
2309 2310 2311

/* Bit definitions for INT4_MASK */
#define PALMAS_INT4_MASK_GPIO_7					0x80
K
Keerthy 已提交
2312
#define PALMAS_INT4_MASK_GPIO_7_SHIFT				0x07
G
Graeme Gregory 已提交
2313
#define PALMAS_INT4_MASK_GPIO_6					0x40
K
Keerthy 已提交
2314
#define PALMAS_INT4_MASK_GPIO_6_SHIFT				0x06
G
Graeme Gregory 已提交
2315
#define PALMAS_INT4_MASK_GPIO_5					0x20
K
Keerthy 已提交
2316
#define PALMAS_INT4_MASK_GPIO_5_SHIFT				0x05
G
Graeme Gregory 已提交
2317
#define PALMAS_INT4_MASK_GPIO_4					0x10
K
Keerthy 已提交
2318
#define PALMAS_INT4_MASK_GPIO_4_SHIFT				0x04
G
Graeme Gregory 已提交
2319
#define PALMAS_INT4_MASK_GPIO_3					0x08
K
Keerthy 已提交
2320
#define PALMAS_INT4_MASK_GPIO_3_SHIFT				0x03
G
Graeme Gregory 已提交
2321
#define PALMAS_INT4_MASK_GPIO_2					0x04
K
Keerthy 已提交
2322
#define PALMAS_INT4_MASK_GPIO_2_SHIFT				0x02
G
Graeme Gregory 已提交
2323
#define PALMAS_INT4_MASK_GPIO_1					0x02
K
Keerthy 已提交
2324
#define PALMAS_INT4_MASK_GPIO_1_SHIFT				0x01
G
Graeme Gregory 已提交
2325
#define PALMAS_INT4_MASK_GPIO_0					0x01
K
Keerthy 已提交
2326
#define PALMAS_INT4_MASK_GPIO_0_SHIFT				0x00
G
Graeme Gregory 已提交
2327 2328 2329

/* Bit definitions for INT4_LINE_STATE */
#define PALMAS_INT4_LINE_STATE_GPIO_7				0x80
K
Keerthy 已提交
2330
#define PALMAS_INT4_LINE_STATE_GPIO_7_SHIFT			0x07
G
Graeme Gregory 已提交
2331
#define PALMAS_INT4_LINE_STATE_GPIO_6				0x40
K
Keerthy 已提交
2332
#define PALMAS_INT4_LINE_STATE_GPIO_6_SHIFT			0x06
G
Graeme Gregory 已提交
2333
#define PALMAS_INT4_LINE_STATE_GPIO_5				0x20
K
Keerthy 已提交
2334
#define PALMAS_INT4_LINE_STATE_GPIO_5_SHIFT			0x05
G
Graeme Gregory 已提交
2335
#define PALMAS_INT4_LINE_STATE_GPIO_4				0x10
K
Keerthy 已提交
2336
#define PALMAS_INT4_LINE_STATE_GPIO_4_SHIFT			0x04
G
Graeme Gregory 已提交
2337
#define PALMAS_INT4_LINE_STATE_GPIO_3				0x08
K
Keerthy 已提交
2338
#define PALMAS_INT4_LINE_STATE_GPIO_3_SHIFT			0x03
G
Graeme Gregory 已提交
2339
#define PALMAS_INT4_LINE_STATE_GPIO_2				0x04
K
Keerthy 已提交
2340
#define PALMAS_INT4_LINE_STATE_GPIO_2_SHIFT			0x02
G
Graeme Gregory 已提交
2341
#define PALMAS_INT4_LINE_STATE_GPIO_1				0x02
K
Keerthy 已提交
2342
#define PALMAS_INT4_LINE_STATE_GPIO_1_SHIFT			0x01
G
Graeme Gregory 已提交
2343
#define PALMAS_INT4_LINE_STATE_GPIO_0				0x01
K
Keerthy 已提交
2344
#define PALMAS_INT4_LINE_STATE_GPIO_0_SHIFT			0x00
G
Graeme Gregory 已提交
2345 2346 2347

/* Bit definitions for INT4_EDGE_DETECT1 */
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING			0x80
K
Keerthy 已提交
2348
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT		0x07
G
Graeme Gregory 已提交
2349
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING			0x40
K
Keerthy 已提交
2350
#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT		0x06
G
Graeme Gregory 已提交
2351
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING			0x20
K
Keerthy 已提交
2352
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT		0x05
G
Graeme Gregory 已提交
2353
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING			0x10
K
Keerthy 已提交
2354
#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT		0x04
G
Graeme Gregory 已提交
2355
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING			0x08
K
Keerthy 已提交
2356
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT		0x03
G
Graeme Gregory 已提交
2357
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING			0x04
K
Keerthy 已提交
2358
#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT		0x02
G
Graeme Gregory 已提交
2359
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING			0x02
K
Keerthy 已提交
2360
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT		0x01
G
Graeme Gregory 已提交
2361
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING			0x01
K
Keerthy 已提交
2362
#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT		0x00
G
Graeme Gregory 已提交
2363 2364 2365

/* Bit definitions for INT4_EDGE_DETECT2 */
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING			0x80
K
Keerthy 已提交
2366
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING_SHIFT		0x07
G
Graeme Gregory 已提交
2367
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING			0x40
K
Keerthy 已提交
2368
#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING_SHIFT		0x06
G
Graeme Gregory 已提交
2369
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING			0x20
K
Keerthy 已提交
2370
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT		0x05
G
Graeme Gregory 已提交
2371
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING			0x10
K
Keerthy 已提交
2372
#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT		0x04
G
Graeme Gregory 已提交
2373
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING			0x08
K
Keerthy 已提交
2374
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT		0x03
G
Graeme Gregory 已提交
2375
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING			0x04
K
Keerthy 已提交
2376
#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT		0x02
G
Graeme Gregory 已提交
2377
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING			0x02
K
Keerthy 已提交
2378
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT		0x01
G
Graeme Gregory 已提交
2379
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING			0x01
K
Keerthy 已提交
2380
#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT		0x00
G
Graeme Gregory 已提交
2381 2382 2383

/* Bit definitions for INT_CTRL */
#define PALMAS_INT_CTRL_INT_PENDING				0x04
K
Keerthy 已提交
2384
#define PALMAS_INT_CTRL_INT_PENDING_SHIFT			0x02
G
Graeme Gregory 已提交
2385
#define PALMAS_INT_CTRL_INT_CLEAR				0x01
K
Keerthy 已提交
2386
#define PALMAS_INT_CTRL_INT_CLEAR_SHIFT				0x00
G
Graeme Gregory 已提交
2387 2388

/* Registers for function USB_OTG */
K
Keerthy 已提交
2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401
#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 已提交
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
#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 已提交
2416
#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP_SHIFT			0x00
G
Graeme Gregory 已提交
2417 2418 2419

/* Bit definitions for USB_VBUS_CTRL_SET */
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS			0x80
K
Keerthy 已提交
2420
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS_SHIFT		0x07
G
Graeme Gregory 已提交
2421
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG			0x20
K
Keerthy 已提交
2422
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG_SHIFT		0x05
G
Graeme Gregory 已提交
2423
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC			0x10
K
Keerthy 已提交
2424
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
2425
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK			0x08
K
Keerthy 已提交
2426
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK_SHIFT		0x03
G
Graeme Gregory 已提交
2427
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP			0x04
K
Keerthy 已提交
2428
#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2429 2430 2431

/* Bit definitions for USB_VBUS_CTRL_CLR */
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS			0x80
K
Keerthy 已提交
2432
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS_SHIFT		0x07
G
Graeme Gregory 已提交
2433
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG			0x20
K
Keerthy 已提交
2434
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG_SHIFT		0x05
G
Graeme Gregory 已提交
2435
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC			0x10
K
Keerthy 已提交
2436
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC_SHIFT		0x04
G
Graeme Gregory 已提交
2437
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK			0x08
K
Keerthy 已提交
2438
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK_SHIFT		0x03
G
Graeme Gregory 已提交
2439
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP			0x04
K
Keerthy 已提交
2440
#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2441 2442 2443

/* Bit definitions for USB_ID_CTRL_SET */
#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K			0x80
K
Keerthy 已提交
2444
#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K_SHIFT			0x07
G
Graeme Gregory 已提交
2445
#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K			0x40
K
Keerthy 已提交
2446
#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K_SHIFT			0x06
G
Graeme Gregory 已提交
2447
#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV			0x20
K
Keerthy 已提交
2448
#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV_SHIFT			0x05
G
Graeme Gregory 已提交
2449
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U			0x10
K
Keerthy 已提交
2450
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U_SHIFT			0x04
G
Graeme Gregory 已提交
2451
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U			0x08
K
Keerthy 已提交
2452
#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U_SHIFT			0x03
G
Graeme Gregory 已提交
2453
#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP			0x04
K
Keerthy 已提交
2454
#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2455 2456 2457

/* Bit definitions for USB_ID_CTRL_CLEAR */
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K			0x80
K
Keerthy 已提交
2458
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K_SHIFT		0x07
G
Graeme Gregory 已提交
2459
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K			0x40
K
Keerthy 已提交
2460
#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K_SHIFT		0x06
G
Graeme Gregory 已提交
2461
#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV			0x20
K
Keerthy 已提交
2462
#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV_SHIFT		0x05
G
Graeme Gregory 已提交
2463
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U			0x10
K
Keerthy 已提交
2464
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U_SHIFT		0x04
G
Graeme Gregory 已提交
2465
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U			0x08
K
Keerthy 已提交
2466
#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U_SHIFT		0x03
G
Graeme Gregory 已提交
2467
#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP			0x04
K
Keerthy 已提交
2468
#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP_SHIFT		0x02
G
Graeme Gregory 已提交
2469 2470 2471

/* Bit definitions for USB_VBUS_INT_SRC */
#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD			0x80
K
Keerthy 已提交
2472
#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD_SHIFT		0x07
G
Graeme Gregory 已提交
2473
#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB			0x40
K
Keerthy 已提交
2474
#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB_SHIFT			0x06
G
Graeme Gregory 已提交
2475
#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS			0x20
K
Keerthy 已提交
2476
#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS_SHIFT			0x05
G
Graeme Gregory 已提交
2477
#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD			0x08
K
Keerthy 已提交
2478
#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2479
#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD			0x04
K
Keerthy 已提交
2480
#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2481
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD			0x02
K
Keerthy 已提交
2482
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2483
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END			0x01
K
Keerthy 已提交
2484
#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2485 2486 2487

/* Bit definitions for USB_VBUS_INT_LATCH_SET */
#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2488
#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2489
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB			0x40
K
Keerthy 已提交
2490
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2491
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS			0x20
K
Keerthy 已提交
2492
#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2493
#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP			0x10
K
Keerthy 已提交
2494
#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2495
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2496
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2497
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD		0x04
K
Keerthy 已提交
2498
#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2499
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD		0x02
K
Keerthy 已提交
2500
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2501
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END		0x01
K
Keerthy 已提交
2502
#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2503 2504 2505

/* Bit definitions for USB_VBUS_INT_LATCH_CLR */
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2506
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2507
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB			0x40
K
Keerthy 已提交
2508
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2509
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS			0x20
K
Keerthy 已提交
2510
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2511
#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP			0x10
K
Keerthy 已提交
2512
#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2513
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2514
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2515
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD		0x04
K
Keerthy 已提交
2516
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2517
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD		0x02
K
Keerthy 已提交
2518
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2519
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END		0x01
K
Keerthy 已提交
2520
#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2521 2522 2523

/* Bit definitions for USB_VBUS_INT_EN_LO_SET */
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2524
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2525
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB			0x40
K
Keerthy 已提交
2526
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2527
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS			0x20
K
Keerthy 已提交
2528
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2529
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2530
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2531
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD		0x04
K
Keerthy 已提交
2532
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2533
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD		0x02
K
Keerthy 已提交
2534
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2535
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END		0x01
K
Keerthy 已提交
2536
#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2537 2538 2539

/* Bit definitions for USB_VBUS_INT_EN_LO_CLR */
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2540
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2541
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB			0x40
K
Keerthy 已提交
2542
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2543
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS			0x20
K
Keerthy 已提交
2544
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2545
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2546
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2547
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD		0x04
K
Keerthy 已提交
2548
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2549
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD		0x02
K
Keerthy 已提交
2550
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2551
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END		0x01
K
Keerthy 已提交
2552
#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2553 2554 2555

/* Bit definitions for USB_VBUS_INT_EN_HI_SET */
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2556
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2557
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB			0x40
K
Keerthy 已提交
2558
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2559
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS			0x20
K
Keerthy 已提交
2560
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2561
#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP			0x10
K
Keerthy 已提交
2562
#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2563
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2564
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2565
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD		0x04
K
Keerthy 已提交
2566
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2567
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD		0x02
K
Keerthy 已提交
2568
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2569
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END		0x01
K
Keerthy 已提交
2570
#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2571 2572 2573

/* Bit definitions for USB_VBUS_INT_EN_HI_CLR */
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD		0x80
K
Keerthy 已提交
2574
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD_SHIFT	0x07
G
Graeme Gregory 已提交
2575
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB			0x40
K
Keerthy 已提交
2576
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB_SHIFT		0x06
G
Graeme Gregory 已提交
2577
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS			0x20
K
Keerthy 已提交
2578
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS_SHIFT		0x05
G
Graeme Gregory 已提交
2579
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP			0x10
K
Keerthy 已提交
2580
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP_SHIFT			0x04
G
Graeme Gregory 已提交
2581
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD		0x08
K
Keerthy 已提交
2582
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD_SHIFT		0x03
G
Graeme Gregory 已提交
2583
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD		0x04
K
Keerthy 已提交
2584
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD_SHIFT		0x02
G
Graeme Gregory 已提交
2585
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD		0x02
K
Keerthy 已提交
2586
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD_SHIFT		0x01
G
Graeme Gregory 已提交
2587
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END		0x01
K
Keerthy 已提交
2588
#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END_SHIFT		0x00
G
Graeme Gregory 已提交
2589 2590 2591

/* Bit definitions for USB_ID_INT_SRC */
#define PALMAS_USB_ID_INT_SRC_ID_FLOAT				0x10
K
Keerthy 已提交
2592
#define PALMAS_USB_ID_INT_SRC_ID_FLOAT_SHIFT			0x04
G
Graeme Gregory 已提交
2593
#define PALMAS_USB_ID_INT_SRC_ID_A				0x08
K
Keerthy 已提交
2594
#define PALMAS_USB_ID_INT_SRC_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2595
#define PALMAS_USB_ID_INT_SRC_ID_B				0x04
K
Keerthy 已提交
2596
#define PALMAS_USB_ID_INT_SRC_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2597
#define PALMAS_USB_ID_INT_SRC_ID_C				0x02
K
Keerthy 已提交
2598
#define PALMAS_USB_ID_INT_SRC_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2599
#define PALMAS_USB_ID_INT_SRC_ID_GND				0x01
K
Keerthy 已提交
2600
#define PALMAS_USB_ID_INT_SRC_ID_GND_SHIFT			0x00
G
Graeme Gregory 已提交
2601 2602 2603

/* Bit definitions for USB_ID_INT_LATCH_SET */
#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT			0x10
K
Keerthy 已提交
2604
#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2605
#define PALMAS_USB_ID_INT_LATCH_SET_ID_A			0x08
K
Keerthy 已提交
2606
#define PALMAS_USB_ID_INT_LATCH_SET_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2607
#define PALMAS_USB_ID_INT_LATCH_SET_ID_B			0x04
K
Keerthy 已提交
2608
#define PALMAS_USB_ID_INT_LATCH_SET_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2609
#define PALMAS_USB_ID_INT_LATCH_SET_ID_C			0x02
K
Keerthy 已提交
2610
#define PALMAS_USB_ID_INT_LATCH_SET_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2611
#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND			0x01
K
Keerthy 已提交
2612
#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2613 2614 2615

/* Bit definitions for USB_ID_INT_LATCH_CLR */
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT			0x10
K
Keerthy 已提交
2616
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2617
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A			0x08
K
Keerthy 已提交
2618
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2619
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B			0x04
K
Keerthy 已提交
2620
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2621
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C			0x02
K
Keerthy 已提交
2622
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2623
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND			0x01
K
Keerthy 已提交
2624
#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2625 2626 2627

/* Bit definitions for USB_ID_INT_EN_LO_SET */
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT			0x10
K
Keerthy 已提交
2628
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2629
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A			0x08
K
Keerthy 已提交
2630
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2631
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B			0x04
K
Keerthy 已提交
2632
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2633
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C			0x02
K
Keerthy 已提交
2634
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2635
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND			0x01
K
Keerthy 已提交
2636
#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2637 2638 2639

/* Bit definitions for USB_ID_INT_EN_LO_CLR */
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT			0x10
K
Keerthy 已提交
2640
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2641
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A			0x08
K
Keerthy 已提交
2642
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2643
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B			0x04
K
Keerthy 已提交
2644
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2645
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C			0x02
K
Keerthy 已提交
2646
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2647
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND			0x01
K
Keerthy 已提交
2648
#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2649 2650 2651

/* Bit definitions for USB_ID_INT_EN_HI_SET */
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT			0x10
K
Keerthy 已提交
2652
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2653
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A			0x08
K
Keerthy 已提交
2654
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2655
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B			0x04
K
Keerthy 已提交
2656
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2657
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C			0x02
K
Keerthy 已提交
2658
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2659
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND			0x01
K
Keerthy 已提交
2660
#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2661 2662 2663

/* Bit definitions for USB_ID_INT_EN_HI_CLR */
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT			0x10
K
Keerthy 已提交
2664
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT_SHIFT		0x04
G
Graeme Gregory 已提交
2665
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A			0x08
K
Keerthy 已提交
2666
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A_SHIFT			0x03
G
Graeme Gregory 已提交
2667
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B			0x04
K
Keerthy 已提交
2668
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B_SHIFT			0x02
G
Graeme Gregory 已提交
2669
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C			0x02
K
Keerthy 已提交
2670
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C_SHIFT			0x01
G
Graeme Gregory 已提交
2671
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND			0x01
K
Keerthy 已提交
2672
#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND_SHIFT		0x00
G
Graeme Gregory 已提交
2673 2674 2675

/* Bit definitions for USB_OTG_ADP_CTRL */
#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN				0x04
K
Keerthy 已提交
2676
#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN_SHIFT			0x02
G
Graeme Gregory 已提交
2677
#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_MASK			0x03
K
Keerthy 已提交
2678
#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_SHIFT			0x00
G
Graeme Gregory 已提交
2679 2680

/* Bit definitions for USB_OTG_ADP_HIGH */
K
Keerthy 已提交
2681 2682
#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 已提交
2683 2684

/* Bit definitions for USB_OTG_ADP_LOW */
K
Keerthy 已提交
2685 2686
#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 已提交
2687 2688

/* Bit definitions for USB_OTG_ADP_RISE */
K
Keerthy 已提交
2689 2690
#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 已提交
2691 2692 2693

/* Bit definitions for USB_OTG_REVISION */
#define PALMAS_USB_OTG_REVISION_OTG_REV				0x01
K
Keerthy 已提交
2694
#define PALMAS_USB_OTG_REVISION_OTG_REV_SHIFT			0x00
G
Graeme Gregory 已提交
2695 2696

/* Registers for function VIBRATOR */
K
Keerthy 已提交
2697
#define PALMAS_VIBRA_CTRL					0x00
G
Graeme Gregory 已提交
2698 2699 2700

/* Bit definitions for VIBRA_CTRL */
#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_MASK			0x06
K
Keerthy 已提交
2701
#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_SHIFT			0x01
G
Graeme Gregory 已提交
2702
#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL				0x01
K
Keerthy 已提交
2703
#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL_SHIFT			0x00
G
Graeme Gregory 已提交
2704 2705

/* Registers for function GPIO */
K
Keerthy 已提交
2706 2707 2708 2709 2710 2711 2712 2713 2714 2715
#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
2716 2717 2718 2719 2720 2721 2722 2723
#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 已提交
2724 2725 2726

/* Bit definitions for GPIO_DATA_IN */
#define PALMAS_GPIO_DATA_IN_GPIO_7_IN				0x80
K
Keerthy 已提交
2727
#define PALMAS_GPIO_DATA_IN_GPIO_7_IN_SHIFT			0x07
G
Graeme Gregory 已提交
2728
#define PALMAS_GPIO_DATA_IN_GPIO_6_IN				0x40
K
Keerthy 已提交
2729
#define PALMAS_GPIO_DATA_IN_GPIO_6_IN_SHIFT			0x06
G
Graeme Gregory 已提交
2730
#define PALMAS_GPIO_DATA_IN_GPIO_5_IN				0x20
K
Keerthy 已提交
2731
#define PALMAS_GPIO_DATA_IN_GPIO_5_IN_SHIFT			0x05
G
Graeme Gregory 已提交
2732
#define PALMAS_GPIO_DATA_IN_GPIO_4_IN				0x10
K
Keerthy 已提交
2733
#define PALMAS_GPIO_DATA_IN_GPIO_4_IN_SHIFT			0x04
G
Graeme Gregory 已提交
2734
#define PALMAS_GPIO_DATA_IN_GPIO_3_IN				0x08
K
Keerthy 已提交
2735
#define PALMAS_GPIO_DATA_IN_GPIO_3_IN_SHIFT			0x03
G
Graeme Gregory 已提交
2736
#define PALMAS_GPIO_DATA_IN_GPIO_2_IN				0x04
K
Keerthy 已提交
2737
#define PALMAS_GPIO_DATA_IN_GPIO_2_IN_SHIFT			0x02
G
Graeme Gregory 已提交
2738
#define PALMAS_GPIO_DATA_IN_GPIO_1_IN				0x02
K
Keerthy 已提交
2739
#define PALMAS_GPIO_DATA_IN_GPIO_1_IN_SHIFT			0x01
G
Graeme Gregory 已提交
2740
#define PALMAS_GPIO_DATA_IN_GPIO_0_IN				0x01
K
Keerthy 已提交
2741
#define PALMAS_GPIO_DATA_IN_GPIO_0_IN_SHIFT			0x00
G
Graeme Gregory 已提交
2742 2743 2744

/* Bit definitions for GPIO_DATA_DIR */
#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR				0x80
K
Keerthy 已提交
2745
#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR_SHIFT			0x07
G
Graeme Gregory 已提交
2746
#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR				0x40
K
Keerthy 已提交
2747
#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR_SHIFT			0x06
G
Graeme Gregory 已提交
2748
#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR				0x20
K
Keerthy 已提交
2749
#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR_SHIFT			0x05
G
Graeme Gregory 已提交
2750
#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR				0x10
K
Keerthy 已提交
2751
#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR_SHIFT			0x04
G
Graeme Gregory 已提交
2752
#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR				0x08
K
Keerthy 已提交
2753
#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR_SHIFT			0x03
G
Graeme Gregory 已提交
2754
#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR				0x04
K
Keerthy 已提交
2755
#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR_SHIFT			0x02
G
Graeme Gregory 已提交
2756
#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR				0x02
K
Keerthy 已提交
2757
#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR_SHIFT			0x01
G
Graeme Gregory 已提交
2758
#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR				0x01
K
Keerthy 已提交
2759
#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR_SHIFT			0x00
G
Graeme Gregory 已提交
2760 2761 2762

/* Bit definitions for GPIO_DATA_OUT */
#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT				0x80
K
Keerthy 已提交
2763
#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT_SHIFT			0x07
G
Graeme Gregory 已提交
2764
#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT				0x40
K
Keerthy 已提交
2765
#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT_SHIFT			0x06
G
Graeme Gregory 已提交
2766
#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT				0x20
K
Keerthy 已提交
2767
#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT_SHIFT			0x05
G
Graeme Gregory 已提交
2768
#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT				0x10
K
Keerthy 已提交
2769
#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT_SHIFT			0x04
G
Graeme Gregory 已提交
2770
#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT				0x08
K
Keerthy 已提交
2771
#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT_SHIFT			0x03
G
Graeme Gregory 已提交
2772
#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT				0x04
K
Keerthy 已提交
2773
#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT_SHIFT			0x02
G
Graeme Gregory 已提交
2774
#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT				0x02
K
Keerthy 已提交
2775
#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT_SHIFT			0x01
G
Graeme Gregory 已提交
2776
#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT				0x01
K
Keerthy 已提交
2777
#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT_SHIFT			0x00
G
Graeme Gregory 已提交
2778 2779 2780

/* Bit definitions for GPIO_DEBOUNCE_EN */
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN		0x80
K
Keerthy 已提交
2781
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN_SHIFT	0x07
G
Graeme Gregory 已提交
2782
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN		0x40
K
Keerthy 已提交
2783
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN_SHIFT	0x06
G
Graeme Gregory 已提交
2784
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN		0x20
K
Keerthy 已提交
2785
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN_SHIFT	0x05
G
Graeme Gregory 已提交
2786
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN		0x10
K
Keerthy 已提交
2787
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN_SHIFT	0x04
G
Graeme Gregory 已提交
2788
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN		0x08
K
Keerthy 已提交
2789
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN_SHIFT	0x03
G
Graeme Gregory 已提交
2790
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN		0x04
K
Keerthy 已提交
2791
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN_SHIFT	0x02
G
Graeme Gregory 已提交
2792
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN		0x02
K
Keerthy 已提交
2793
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN_SHIFT	0x01
G
Graeme Gregory 已提交
2794
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN		0x01
K
Keerthy 已提交
2795
#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN_SHIFT	0x00
G
Graeme Gregory 已提交
2796 2797 2798

/* Bit definitions for GPIO_CLEAR_DATA_OUT */
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT	0x80
K
Keerthy 已提交
2799
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT_SHIFT	0x07
G
Graeme Gregory 已提交
2800
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT	0x40
K
Keerthy 已提交
2801
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT_SHIFT	0x06
G
Graeme Gregory 已提交
2802
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT	0x20
K
Keerthy 已提交
2803
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT_SHIFT	0x05
G
Graeme Gregory 已提交
2804
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT	0x10
K
Keerthy 已提交
2805
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT_SHIFT	0x04
G
Graeme Gregory 已提交
2806
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT	0x08
K
Keerthy 已提交
2807
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT_SHIFT	0x03
G
Graeme Gregory 已提交
2808
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT	0x04
K
Keerthy 已提交
2809
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT_SHIFT	0x02
G
Graeme Gregory 已提交
2810
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT	0x02
K
Keerthy 已提交
2811
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT_SHIFT	0x01
G
Graeme Gregory 已提交
2812
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT	0x01
K
Keerthy 已提交
2813
#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT_SHIFT	0x00
G
Graeme Gregory 已提交
2814 2815 2816

/* Bit definitions for GPIO_SET_DATA_OUT */
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT		0x80
K
Keerthy 已提交
2817
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT_SHIFT	0x07
G
Graeme Gregory 已提交
2818
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT		0x40
K
Keerthy 已提交
2819
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT_SHIFT	0x06
G
Graeme Gregory 已提交
2820
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT		0x20
K
Keerthy 已提交
2821
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT_SHIFT	0x05
G
Graeme Gregory 已提交
2822
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT		0x10
K
Keerthy 已提交
2823
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT_SHIFT	0x04
G
Graeme Gregory 已提交
2824
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT		0x08
K
Keerthy 已提交
2825
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT_SHIFT	0x03
G
Graeme Gregory 已提交
2826
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT		0x04
K
Keerthy 已提交
2827
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT_SHIFT	0x02
G
Graeme Gregory 已提交
2828
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT		0x02
K
Keerthy 已提交
2829
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT_SHIFT	0x01
G
Graeme Gregory 已提交
2830
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT		0x01
K
Keerthy 已提交
2831
#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT_SHIFT	0x00
G
Graeme Gregory 已提交
2832 2833 2834

/* Bit definitions for PU_PD_GPIO_CTRL1 */
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD			0x40
K
Keerthy 已提交
2835
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD_SHIFT			0x06
G
Graeme Gregory 已提交
2836
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU			0x20
K
Keerthy 已提交
2837
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU_SHIFT			0x05
G
Graeme Gregory 已提交
2838
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD			0x10
K
Keerthy 已提交
2839
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD_SHIFT			0x04
G
Graeme Gregory 已提交
2840
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU			0x08
K
Keerthy 已提交
2841
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU_SHIFT			0x03
G
Graeme Gregory 已提交
2842
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD			0x04
K
Keerthy 已提交
2843
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD_SHIFT			0x02
G
Graeme Gregory 已提交
2844
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD			0x01
K
Keerthy 已提交
2845
#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD_SHIFT			0x00
G
Graeme Gregory 已提交
2846 2847 2848

/* Bit definitions for PU_PD_GPIO_CTRL2 */
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD			0x40
K
Keerthy 已提交
2849
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD_SHIFT			0x06
G
Graeme Gregory 已提交
2850
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU			0x20
K
Keerthy 已提交
2851
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU_SHIFT			0x05
G
Graeme Gregory 已提交
2852
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD			0x10
K
Keerthy 已提交
2853
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD_SHIFT			0x04
G
Graeme Gregory 已提交
2854
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU			0x08
K
Keerthy 已提交
2855
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU_SHIFT			0x03
G
Graeme Gregory 已提交
2856
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD			0x04
K
Keerthy 已提交
2857
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD_SHIFT			0x02
G
Graeme Gregory 已提交
2858
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU			0x02
K
Keerthy 已提交
2859
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU_SHIFT			0x01
G
Graeme Gregory 已提交
2860
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD			0x01
K
Keerthy 已提交
2861
#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD_SHIFT			0x00
G
Graeme Gregory 已提交
2862 2863 2864

/* Bit definitions for OD_OUTPUT_GPIO_CTRL */
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD			0x20
K
Keerthy 已提交
2865
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD_SHIFT		0x05
G
Graeme Gregory 已提交
2866
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD			0x04
K
Keerthy 已提交
2867
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD_SHIFT		0x02
G
Graeme Gregory 已提交
2868
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD			0x02
K
Keerthy 已提交
2869
#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD_SHIFT		0x01
G
Graeme Gregory 已提交
2870 2871

/* Registers for function GPADC */
K
Keerthy 已提交
2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887
#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 已提交
2888 2889 2890 2891 2892 2893 2894 2895 2896
#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 已提交
2897
#define PALMAS_GPADC_CTRL1_RESERVED_SHIFT			0x06
G
Graeme Gregory 已提交
2898
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_MASK			0x30
K
Keerthy 已提交
2899
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_SHIFT		0x04
G
Graeme Gregory 已提交
2900
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_MASK			0x0c
K
Keerthy 已提交
2901
#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_SHIFT		0x02
G
Graeme Gregory 已提交
2902
#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET			0x02
K
Keerthy 已提交
2903
#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET_SHIFT		0x01
G
Graeme Gregory 已提交
2904
#define PALMAS_GPADC_CTRL1_GPADC_FORCE				0x01
K
Keerthy 已提交
2905
#define PALMAS_GPADC_CTRL1_GPADC_FORCE_SHIFT			0x00
G
Graeme Gregory 已提交
2906 2907 2908

/* Bit definitions for GPADC_CTRL2 */
#define PALMAS_GPADC_CTRL2_RESERVED_MASK			0x06
K
Keerthy 已提交
2909
#define PALMAS_GPADC_CTRL2_RESERVED_SHIFT			0x01
G
Graeme Gregory 已提交
2910 2911 2912

/* Bit definitions for GPADC_RT_CTRL */
#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY			0x02
K
Keerthy 已提交
2913
#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY_SHIFT			0x01
G
Graeme Gregory 已提交
2914
#define PALMAS_GPADC_RT_CTRL_START_POLARITY			0x01
K
Keerthy 已提交
2915
#define PALMAS_GPADC_RT_CTRL_START_POLARITY_SHIFT		0x00
G
Graeme Gregory 已提交
2916 2917 2918

/* Bit definitions for GPADC_AUTO_CTRL */
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1			0x80
K
Keerthy 已提交
2919
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1_SHIFT		0x07
G
Graeme Gregory 已提交
2920
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0			0x40
K
Keerthy 已提交
2921
#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0_SHIFT		0x06
G
Graeme Gregory 已提交
2922
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN			0x20
K
Keerthy 已提交
2923
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN_SHIFT		0x05
G
Graeme Gregory 已提交
2924
#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN			0x10
K
Keerthy 已提交
2925 2926 2927
#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 已提交
2928 2929 2930

/* Bit definitions for GPADC_STATUS */
#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE			0x10
K
Keerthy 已提交
2931
#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE_SHIFT		0x04
G
Graeme Gregory 已提交
2932 2933 2934

/* Bit definitions for GPADC_RT_SELECT */
#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN			0x80
K
Keerthy 已提交
2935 2936 2937
#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 已提交
2938 2939

/* Bit definitions for GPADC_RT_CONV0_LSB */
K
Keerthy 已提交
2940 2941
#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 已提交
2942 2943

/* Bit definitions for GPADC_RT_CONV0_MSB */
K
Keerthy 已提交
2944 2945
#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 已提交
2946 2947

/* Bit definitions for GPADC_AUTO_SELECT */
K
Keerthy 已提交
2948 2949 2950 2951
#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 已提交
2952 2953

/* Bit definitions for GPADC_AUTO_CONV0_LSB */
K
Keerthy 已提交
2954 2955
#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 已提交
2956 2957

/* Bit definitions for GPADC_AUTO_CONV0_MSB */
K
Keerthy 已提交
2958 2959
#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 已提交
2960 2961

/* Bit definitions for GPADC_AUTO_CONV1_LSB */
K
Keerthy 已提交
2962 2963
#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 已提交
2964 2965

/* Bit definitions for GPADC_AUTO_CONV1_MSB */
K
Keerthy 已提交
2966 2967
#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 已提交
2968 2969 2970

/* Bit definitions for GPADC_SW_SELECT */
#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN			0x80
K
Keerthy 已提交
2971
#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN_SHIFT			0x07
G
Graeme Gregory 已提交
2972
#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0			0x10
K
Keerthy 已提交
2973 2974 2975
#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 已提交
2976 2977

/* Bit definitions for GPADC_SW_CONV0_LSB */
K
Keerthy 已提交
2978 2979
#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 已提交
2980 2981

/* Bit definitions for GPADC_SW_CONV0_MSB */
K
Keerthy 已提交
2982 2983
#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 已提交
2984 2985

/* Bit definitions for GPADC_THRES_CONV0_LSB */
K
Keerthy 已提交
2986 2987
#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 已提交
2988 2989 2990

/* Bit definitions for GPADC_THRES_CONV0_MSB */
#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL		0x80
K
Keerthy 已提交
2991 2992 2993
#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 已提交
2994 2995

/* Bit definitions for GPADC_THRES_CONV1_LSB */
K
Keerthy 已提交
2996 2997
#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 已提交
2998 2999 3000

/* Bit definitions for GPADC_THRES_CONV1_MSB */
#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL		0x80
K
Keerthy 已提交
3001 3002 3003
#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 已提交
3004 3005 3006

/* Bit definitions for GPADC_SMPS_ILMONITOR_EN */
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN		0x20
K
Keerthy 已提交
3007
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN_SHIFT	0x05
G
Graeme Gregory 已提交
3008
#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT		0x10
K
Keerthy 已提交
3009 3010 3011
#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 已提交
3012 3013 3014

/* Bit definitions for GPADC_SMPS_VSEL_MONITORING */
#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE		0x80
K
Keerthy 已提交
3015 3016 3017
#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 已提交
3018 3019

/* Registers for function GPADC */
K
Keerthy 已提交
3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035
#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 已提交
3036

3037 3038 3039
/* TPS659038 regen2_ctrl offset iss different from palmas */
#define TPS659038_REGEN2_CTRL					0x12

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 3676 3677 3678 3679 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 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748
/* 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

3749 3750 3751
static inline int palmas_read(struct palmas *palmas, unsigned int base,
		unsigned int reg, unsigned int *val)
{
K
Keerthy 已提交
3752
	unsigned int addr = PALMAS_BASE_TO_REG(base, reg);
3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800
	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);
}

3801 3802 3803 3804 3805

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 已提交
3806
#endif /*  __LINUX_MFD_PALMAS_H */