at v3.6 2620 lines 107 kB view raw
1/* 2 * TI Palmas 3 * 4 * Copyright 2011 Texas Instruments Inc. 5 * 6 * Author: Graeme Gregory <gg@slimlogic.co.uk> 7 * 8 * This program is free software; you can redistribute it and/or modify it 9 * under the terms of the GNU General Public License as published by the 10 * Free Software Foundation; either version 2 of the License, or (at your 11 * option) any later version. 12 * 13 */ 14 15#ifndef __LINUX_MFD_PALMAS_H 16#define __LINUX_MFD_PALMAS_H 17 18#include <linux/usb/otg.h> 19#include <linux/leds.h> 20#include <linux/regmap.h> 21#include <linux/regulator/driver.h> 22 23#define PALMAS_NUM_CLIENTS 3 24 25struct palmas_pmic; 26 27struct palmas { 28 struct device *dev; 29 30 struct i2c_client *i2c_clients[PALMAS_NUM_CLIENTS]; 31 struct regmap *regmap[PALMAS_NUM_CLIENTS]; 32 33 /* Stored chip id */ 34 int id; 35 36 /* IRQ Data */ 37 int irq; 38 u32 irq_mask; 39 struct mutex irq_lock; 40 struct regmap_irq_chip_data *irq_data; 41 42 /* Child Devices */ 43 struct palmas_pmic *pmic; 44 45 /* GPIO MUXing */ 46 u8 gpio_muxed; 47 u8 led_muxed; 48 u8 pwm_muxed; 49}; 50 51struct palmas_reg_init { 52 /* warm_rest controls the voltage levels after a warm reset 53 * 54 * 0: reload default values from OTP on warm reset 55 * 1: maintain voltage from VSEL on warm reset 56 */ 57 int warm_reset; 58 59 /* roof_floor controls whether the regulator uses the i2c style 60 * of DVS or uses the method where a GPIO or other control method is 61 * attached to the NSLEEP/ENABLE1/ENABLE2 pins 62 * 63 * For SMPS 64 * 65 * 0: i2c selection of voltage 66 * 1: pin selection of voltage. 67 * 68 * For LDO unused 69 */ 70 int roof_floor; 71 72 /* sleep_mode is the mode loaded to MODE_SLEEP bits as defined in 73 * the data sheet. 74 * 75 * For SMPS 76 * 77 * 0: Off 78 * 1: AUTO 79 * 2: ECO 80 * 3: Forced PWM 81 * 82 * For LDO 83 * 84 * 0: Off 85 * 1: On 86 */ 87 int mode_sleep; 88 89 /* tstep is the timestep loaded to the TSTEP register 90 * 91 * For SMPS 92 * 93 * 0: Jump (no slope control) 94 * 1: 10mV/us 95 * 2: 5mV/us 96 * 3: 2.5mV/us 97 * 98 * For LDO unused 99 */ 100 int tstep; 101 102 /* voltage_sel is the bitfield loaded onto the SMPSX_VOLTAGE 103 * register. Set this is the default voltage set in OTP needs 104 * to be overridden. 105 */ 106 u8 vsel; 107 108}; 109 110struct palmas_pmic_platform_data { 111 /* An array of pointers to regulator init data indexed by regulator 112 * ID 113 */ 114 struct regulator_init_data **reg_data; 115 116 /* An array of pointers to structures containing sleep mode and DVS 117 * configuration for regulators indexed by ID 118 */ 119 struct palmas_reg_init **reg_init; 120 121 /* use LDO6 for vibrator control */ 122 int ldo6_vibrator; 123 124 125}; 126 127struct palmas_platform_data { 128 int gpio_base; 129 130 /* bit value to be loaded to the POWER_CTRL register */ 131 u8 power_ctrl; 132 133 /* 134 * boolean to select if we want to configure muxing here 135 * then the two value to load into the registers if true 136 */ 137 int mux_from_pdata; 138 u8 pad1, pad2; 139 140 struct palmas_pmic_platform_data *pmic_pdata; 141}; 142 143/* Define the palmas IRQ numbers */ 144enum palmas_irqs { 145 /* INT1 registers */ 146 PALMAS_CHARG_DET_N_VBUS_OVV_IRQ, 147 PALMAS_PWRON_IRQ, 148 PALMAS_LONG_PRESS_KEY_IRQ, 149 PALMAS_RPWRON_IRQ, 150 PALMAS_PWRDOWN_IRQ, 151 PALMAS_HOTDIE_IRQ, 152 PALMAS_VSYS_MON_IRQ, 153 PALMAS_VBAT_MON_IRQ, 154 /* INT2 registers */ 155 PALMAS_RTC_ALARM_IRQ, 156 PALMAS_RTC_TIMER_IRQ, 157 PALMAS_WDT_IRQ, 158 PALMAS_BATREMOVAL_IRQ, 159 PALMAS_RESET_IN_IRQ, 160 PALMAS_FBI_BB_IRQ, 161 PALMAS_SHORT_IRQ, 162 PALMAS_VAC_ACOK_IRQ, 163 /* INT3 registers */ 164 PALMAS_GPADC_AUTO_0_IRQ, 165 PALMAS_GPADC_AUTO_1_IRQ, 166 PALMAS_GPADC_EOC_SW_IRQ, 167 PALMAS_GPADC_EOC_RT_IRQ, 168 PALMAS_ID_OTG_IRQ, 169 PALMAS_ID_IRQ, 170 PALMAS_VBUS_OTG_IRQ, 171 PALMAS_VBUS_IRQ, 172 /* INT4 registers */ 173 PALMAS_GPIO_0_IRQ, 174 PALMAS_GPIO_1_IRQ, 175 PALMAS_GPIO_2_IRQ, 176 PALMAS_GPIO_3_IRQ, 177 PALMAS_GPIO_4_IRQ, 178 PALMAS_GPIO_5_IRQ, 179 PALMAS_GPIO_6_IRQ, 180 PALMAS_GPIO_7_IRQ, 181 /* Total Number IRQs */ 182 PALMAS_NUM_IRQ, 183}; 184 185enum palmas_regulators { 186 /* SMPS regulators */ 187 PALMAS_REG_SMPS12, 188 PALMAS_REG_SMPS123, 189 PALMAS_REG_SMPS3, 190 PALMAS_REG_SMPS45, 191 PALMAS_REG_SMPS457, 192 PALMAS_REG_SMPS6, 193 PALMAS_REG_SMPS7, 194 PALMAS_REG_SMPS8, 195 PALMAS_REG_SMPS9, 196 PALMAS_REG_SMPS10, 197 /* LDO regulators */ 198 PALMAS_REG_LDO1, 199 PALMAS_REG_LDO2, 200 PALMAS_REG_LDO3, 201 PALMAS_REG_LDO4, 202 PALMAS_REG_LDO5, 203 PALMAS_REG_LDO6, 204 PALMAS_REG_LDO7, 205 PALMAS_REG_LDO8, 206 PALMAS_REG_LDO9, 207 PALMAS_REG_LDOLN, 208 PALMAS_REG_LDOUSB, 209 /* Total number of regulators */ 210 PALMAS_NUM_REGS, 211}; 212 213struct palmas_pmic { 214 struct palmas *palmas; 215 struct device *dev; 216 struct regulator_desc desc[PALMAS_NUM_REGS]; 217 struct regulator_dev *rdev[PALMAS_NUM_REGS]; 218 struct mutex mutex; 219 220 int smps123; 221 int smps457; 222 223 int range[PALMAS_REG_SMPS10]; 224}; 225 226/* defines so we can store the mux settings */ 227#define PALMAS_GPIO_0_MUXED (1 << 0) 228#define PALMAS_GPIO_1_MUXED (1 << 1) 229#define PALMAS_GPIO_2_MUXED (1 << 2) 230#define PALMAS_GPIO_3_MUXED (1 << 3) 231#define PALMAS_GPIO_4_MUXED (1 << 4) 232#define PALMAS_GPIO_5_MUXED (1 << 5) 233#define PALMAS_GPIO_6_MUXED (1 << 6) 234#define PALMAS_GPIO_7_MUXED (1 << 7) 235 236#define PALMAS_LED1_MUXED (1 << 0) 237#define PALMAS_LED2_MUXED (1 << 1) 238 239#define PALMAS_PWM1_MUXED (1 << 0) 240#define PALMAS_PWM2_MUXED (1 << 1) 241 242/* helper macro to get correct slave number */ 243#define PALMAS_BASE_TO_SLAVE(x) ((x >> 8) - 1) 244#define PALMAS_BASE_TO_REG(x, y) ((x & 0xff) + y) 245 246/* Base addresses of IP blocks in Palmas */ 247#define PALMAS_SMPS_DVS_BASE 0x20 248#define PALMAS_RTC_BASE 0x100 249#define PALMAS_VALIDITY_BASE 0x118 250#define PALMAS_SMPS_BASE 0x120 251#define PALMAS_LDO_BASE 0x150 252#define PALMAS_DVFS_BASE 0x180 253#define PALMAS_PMU_CONTROL_BASE 0x1A0 254#define PALMAS_RESOURCE_BASE 0x1D4 255#define PALMAS_PU_PD_OD_BASE 0x1F4 256#define PALMAS_LED_BASE 0x200 257#define PALMAS_INTERRUPT_BASE 0x210 258#define PALMAS_USB_OTG_BASE 0x250 259#define PALMAS_VIBRATOR_BASE 0x270 260#define PALMAS_GPIO_BASE 0x280 261#define PALMAS_USB_BASE 0x290 262#define PALMAS_GPADC_BASE 0x2C0 263#define PALMAS_TRIM_GPADC_BASE 0x3CD 264 265/* Registers for function RTC */ 266#define PALMAS_SECONDS_REG 0x0 267#define PALMAS_MINUTES_REG 0x1 268#define PALMAS_HOURS_REG 0x2 269#define PALMAS_DAYS_REG 0x3 270#define PALMAS_MONTHS_REG 0x4 271#define PALMAS_YEARS_REG 0x5 272#define PALMAS_WEEKS_REG 0x6 273#define PALMAS_ALARM_SECONDS_REG 0x8 274#define PALMAS_ALARM_MINUTES_REG 0x9 275#define PALMAS_ALARM_HOURS_REG 0xA 276#define PALMAS_ALARM_DAYS_REG 0xB 277#define PALMAS_ALARM_MONTHS_REG 0xC 278#define PALMAS_ALARM_YEARS_REG 0xD 279#define PALMAS_RTC_CTRL_REG 0x10 280#define PALMAS_RTC_STATUS_REG 0x11 281#define PALMAS_RTC_INTERRUPTS_REG 0x12 282#define PALMAS_RTC_COMP_LSB_REG 0x13 283#define PALMAS_RTC_COMP_MSB_REG 0x14 284#define PALMAS_RTC_RES_PROG_REG 0x15 285#define PALMAS_RTC_RESET_STATUS_REG 0x16 286 287/* Bit definitions for SECONDS_REG */ 288#define PALMAS_SECONDS_REG_SEC1_MASK 0x70 289#define PALMAS_SECONDS_REG_SEC1_SHIFT 4 290#define PALMAS_SECONDS_REG_SEC0_MASK 0x0f 291#define PALMAS_SECONDS_REG_SEC0_SHIFT 0 292 293/* Bit definitions for MINUTES_REG */ 294#define PALMAS_MINUTES_REG_MIN1_MASK 0x70 295#define PALMAS_MINUTES_REG_MIN1_SHIFT 4 296#define PALMAS_MINUTES_REG_MIN0_MASK 0x0f 297#define PALMAS_MINUTES_REG_MIN0_SHIFT 0 298 299/* Bit definitions for HOURS_REG */ 300#define PALMAS_HOURS_REG_PM_NAM 0x80 301#define PALMAS_HOURS_REG_PM_NAM_SHIFT 7 302#define PALMAS_HOURS_REG_HOUR1_MASK 0x30 303#define PALMAS_HOURS_REG_HOUR1_SHIFT 4 304#define PALMAS_HOURS_REG_HOUR0_MASK 0x0f 305#define PALMAS_HOURS_REG_HOUR0_SHIFT 0 306 307/* Bit definitions for DAYS_REG */ 308#define PALMAS_DAYS_REG_DAY1_MASK 0x30 309#define PALMAS_DAYS_REG_DAY1_SHIFT 4 310#define PALMAS_DAYS_REG_DAY0_MASK 0x0f 311#define PALMAS_DAYS_REG_DAY0_SHIFT 0 312 313/* Bit definitions for MONTHS_REG */ 314#define PALMAS_MONTHS_REG_MONTH1 0x10 315#define PALMAS_MONTHS_REG_MONTH1_SHIFT 4 316#define PALMAS_MONTHS_REG_MONTH0_MASK 0x0f 317#define PALMAS_MONTHS_REG_MONTH0_SHIFT 0 318 319/* Bit definitions for YEARS_REG */ 320#define PALMAS_YEARS_REG_YEAR1_MASK 0xf0 321#define PALMAS_YEARS_REG_YEAR1_SHIFT 4 322#define PALMAS_YEARS_REG_YEAR0_MASK 0x0f 323#define PALMAS_YEARS_REG_YEAR0_SHIFT 0 324 325/* Bit definitions for WEEKS_REG */ 326#define PALMAS_WEEKS_REG_WEEK_MASK 0x07 327#define PALMAS_WEEKS_REG_WEEK_SHIFT 0 328 329/* Bit definitions for ALARM_SECONDS_REG */ 330#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK 0x70 331#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_SHIFT 4 332#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_MASK 0x0f 333#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_SHIFT 0 334 335/* Bit definitions for ALARM_MINUTES_REG */ 336#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK 0x70 337#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_SHIFT 4 338#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_MASK 0x0f 339#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_SHIFT 0 340 341/* Bit definitions for ALARM_HOURS_REG */ 342#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM 0x80 343#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT 7 344#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK 0x30 345#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_SHIFT 4 346#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_MASK 0x0f 347#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_SHIFT 0 348 349/* Bit definitions for ALARM_DAYS_REG */ 350#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK 0x30 351#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_SHIFT 4 352#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_MASK 0x0f 353#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_SHIFT 0 354 355/* Bit definitions for ALARM_MONTHS_REG */ 356#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1 0x10 357#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1_SHIFT 4 358#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_MASK 0x0f 359#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_SHIFT 0 360 361/* Bit definitions for ALARM_YEARS_REG */ 362#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK 0xf0 363#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_SHIFT 4 364#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_MASK 0x0f 365#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_SHIFT 0 366 367/* Bit definitions for RTC_CTRL_REG */ 368#define PALMAS_RTC_CTRL_REG_RTC_V_OPT 0x80 369#define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT 7 370#define PALMAS_RTC_CTRL_REG_GET_TIME 0x40 371#define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT 6 372#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER 0x20 373#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT 5 374#define PALMAS_RTC_CTRL_REG_TEST_MODE 0x10 375#define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT 4 376#define PALMAS_RTC_CTRL_REG_MODE_12_24 0x08 377#define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT 3 378#define PALMAS_RTC_CTRL_REG_AUTO_COMP 0x04 379#define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT 2 380#define PALMAS_RTC_CTRL_REG_ROUND_30S 0x02 381#define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT 1 382#define PALMAS_RTC_CTRL_REG_STOP_RTC 0x01 383#define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT 0 384 385/* Bit definitions for RTC_STATUS_REG */ 386#define PALMAS_RTC_STATUS_REG_POWER_UP 0x80 387#define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT 7 388#define PALMAS_RTC_STATUS_REG_ALARM 0x40 389#define PALMAS_RTC_STATUS_REG_ALARM_SHIFT 6 390#define PALMAS_RTC_STATUS_REG_EVENT_1D 0x20 391#define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT 5 392#define PALMAS_RTC_STATUS_REG_EVENT_1H 0x10 393#define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT 4 394#define PALMAS_RTC_STATUS_REG_EVENT_1M 0x08 395#define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT 3 396#define PALMAS_RTC_STATUS_REG_EVENT_1S 0x04 397#define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT 2 398#define PALMAS_RTC_STATUS_REG_RUN 0x02 399#define PALMAS_RTC_STATUS_REG_RUN_SHIFT 1 400 401/* Bit definitions for RTC_INTERRUPTS_REG */ 402#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN 0x10 403#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT 4 404#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM 0x08 405#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT 3 406#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER 0x04 407#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT 2 408#define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK 0x03 409#define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT 0 410 411/* Bit definitions for RTC_COMP_LSB_REG */ 412#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_MASK 0xff 413#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_SHIFT 0 414 415/* Bit definitions for RTC_COMP_MSB_REG */ 416#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_MASK 0xff 417#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_SHIFT 0 418 419/* Bit definitions for RTC_RES_PROG_REG */ 420#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_MASK 0x3f 421#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_SHIFT 0 422 423/* Bit definitions for RTC_RESET_STATUS_REG */ 424#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS 0x01 425#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT 0 426 427/* Registers for function BACKUP */ 428#define PALMAS_BACKUP0 0x0 429#define PALMAS_BACKUP1 0x1 430#define PALMAS_BACKUP2 0x2 431#define PALMAS_BACKUP3 0x3 432#define PALMAS_BACKUP4 0x4 433#define PALMAS_BACKUP5 0x5 434#define PALMAS_BACKUP6 0x6 435#define PALMAS_BACKUP7 0x7 436 437/* Bit definitions for BACKUP0 */ 438#define PALMAS_BACKUP0_BACKUP_MASK 0xff 439#define PALMAS_BACKUP0_BACKUP_SHIFT 0 440 441/* Bit definitions for BACKUP1 */ 442#define PALMAS_BACKUP1_BACKUP_MASK 0xff 443#define PALMAS_BACKUP1_BACKUP_SHIFT 0 444 445/* Bit definitions for BACKUP2 */ 446#define PALMAS_BACKUP2_BACKUP_MASK 0xff 447#define PALMAS_BACKUP2_BACKUP_SHIFT 0 448 449/* Bit definitions for BACKUP3 */ 450#define PALMAS_BACKUP3_BACKUP_MASK 0xff 451#define PALMAS_BACKUP3_BACKUP_SHIFT 0 452 453/* Bit definitions for BACKUP4 */ 454#define PALMAS_BACKUP4_BACKUP_MASK 0xff 455#define PALMAS_BACKUP4_BACKUP_SHIFT 0 456 457/* Bit definitions for BACKUP5 */ 458#define PALMAS_BACKUP5_BACKUP_MASK 0xff 459#define PALMAS_BACKUP5_BACKUP_SHIFT 0 460 461/* Bit definitions for BACKUP6 */ 462#define PALMAS_BACKUP6_BACKUP_MASK 0xff 463#define PALMAS_BACKUP6_BACKUP_SHIFT 0 464 465/* Bit definitions for BACKUP7 */ 466#define PALMAS_BACKUP7_BACKUP_MASK 0xff 467#define PALMAS_BACKUP7_BACKUP_SHIFT 0 468 469/* Registers for function SMPS */ 470#define PALMAS_SMPS12_CTRL 0x0 471#define PALMAS_SMPS12_TSTEP 0x1 472#define PALMAS_SMPS12_FORCE 0x2 473#define PALMAS_SMPS12_VOLTAGE 0x3 474#define PALMAS_SMPS3_CTRL 0x4 475#define PALMAS_SMPS3_VOLTAGE 0x7 476#define PALMAS_SMPS45_CTRL 0x8 477#define PALMAS_SMPS45_TSTEP 0x9 478#define PALMAS_SMPS45_FORCE 0xA 479#define PALMAS_SMPS45_VOLTAGE 0xB 480#define PALMAS_SMPS6_CTRL 0xC 481#define PALMAS_SMPS6_TSTEP 0xD 482#define PALMAS_SMPS6_FORCE 0xE 483#define PALMAS_SMPS6_VOLTAGE 0xF 484#define PALMAS_SMPS7_CTRL 0x10 485#define PALMAS_SMPS7_VOLTAGE 0x13 486#define PALMAS_SMPS8_CTRL 0x14 487#define PALMAS_SMPS8_TSTEP 0x15 488#define PALMAS_SMPS8_FORCE 0x16 489#define PALMAS_SMPS8_VOLTAGE 0x17 490#define PALMAS_SMPS9_CTRL 0x18 491#define PALMAS_SMPS9_VOLTAGE 0x1B 492#define PALMAS_SMPS10_CTRL 0x1C 493#define PALMAS_SMPS10_STATUS 0x1F 494#define PALMAS_SMPS_CTRL 0x24 495#define PALMAS_SMPS_PD_CTRL 0x25 496#define PALMAS_SMPS_DITHER_EN 0x26 497#define PALMAS_SMPS_THERMAL_EN 0x27 498#define PALMAS_SMPS_THERMAL_STATUS 0x28 499#define PALMAS_SMPS_SHORT_STATUS 0x29 500#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN 0x2A 501#define PALMAS_SMPS_POWERGOOD_MASK1 0x2B 502#define PALMAS_SMPS_POWERGOOD_MASK2 0x2C 503 504/* Bit definitions for SMPS12_CTRL */ 505#define PALMAS_SMPS12_CTRL_WR_S 0x80 506#define PALMAS_SMPS12_CTRL_WR_S_SHIFT 7 507#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN 0x40 508#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT 6 509#define PALMAS_SMPS12_CTRL_STATUS_MASK 0x30 510#define PALMAS_SMPS12_CTRL_STATUS_SHIFT 4 511#define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK 0x0c 512#define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT 2 513#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK 0x03 514#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT 0 515 516/* Bit definitions for SMPS12_TSTEP */ 517#define PALMAS_SMPS12_TSTEP_TSTEP_MASK 0x03 518#define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT 0 519 520/* Bit definitions for SMPS12_FORCE */ 521#define PALMAS_SMPS12_FORCE_CMD 0x80 522#define PALMAS_SMPS12_FORCE_CMD_SHIFT 7 523#define PALMAS_SMPS12_FORCE_VSEL_MASK 0x7f 524#define PALMAS_SMPS12_FORCE_VSEL_SHIFT 0 525 526/* Bit definitions for SMPS12_VOLTAGE */ 527#define PALMAS_SMPS12_VOLTAGE_RANGE 0x80 528#define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT 7 529#define PALMAS_SMPS12_VOLTAGE_VSEL_MASK 0x7f 530#define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT 0 531 532/* Bit definitions for SMPS3_CTRL */ 533#define PALMAS_SMPS3_CTRL_WR_S 0x80 534#define PALMAS_SMPS3_CTRL_WR_S_SHIFT 7 535#define PALMAS_SMPS3_CTRL_STATUS_MASK 0x30 536#define PALMAS_SMPS3_CTRL_STATUS_SHIFT 4 537#define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK 0x0c 538#define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT 2 539#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK 0x03 540#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT 0 541 542/* Bit definitions for SMPS3_VOLTAGE */ 543#define PALMAS_SMPS3_VOLTAGE_RANGE 0x80 544#define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT 7 545#define PALMAS_SMPS3_VOLTAGE_VSEL_MASK 0x7f 546#define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT 0 547 548/* Bit definitions for SMPS45_CTRL */ 549#define PALMAS_SMPS45_CTRL_WR_S 0x80 550#define PALMAS_SMPS45_CTRL_WR_S_SHIFT 7 551#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN 0x40 552#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT 6 553#define PALMAS_SMPS45_CTRL_STATUS_MASK 0x30 554#define PALMAS_SMPS45_CTRL_STATUS_SHIFT 4 555#define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK 0x0c 556#define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT 2 557#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK 0x03 558#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT 0 559 560/* Bit definitions for SMPS45_TSTEP */ 561#define PALMAS_SMPS45_TSTEP_TSTEP_MASK 0x03 562#define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT 0 563 564/* Bit definitions for SMPS45_FORCE */ 565#define PALMAS_SMPS45_FORCE_CMD 0x80 566#define PALMAS_SMPS45_FORCE_CMD_SHIFT 7 567#define PALMAS_SMPS45_FORCE_VSEL_MASK 0x7f 568#define PALMAS_SMPS45_FORCE_VSEL_SHIFT 0 569 570/* Bit definitions for SMPS45_VOLTAGE */ 571#define PALMAS_SMPS45_VOLTAGE_RANGE 0x80 572#define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT 7 573#define PALMAS_SMPS45_VOLTAGE_VSEL_MASK 0x7f 574#define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT 0 575 576/* Bit definitions for SMPS6_CTRL */ 577#define PALMAS_SMPS6_CTRL_WR_S 0x80 578#define PALMAS_SMPS6_CTRL_WR_S_SHIFT 7 579#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN 0x40 580#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT 6 581#define PALMAS_SMPS6_CTRL_STATUS_MASK 0x30 582#define PALMAS_SMPS6_CTRL_STATUS_SHIFT 4 583#define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK 0x0c 584#define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT 2 585#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK 0x03 586#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT 0 587 588/* Bit definitions for SMPS6_TSTEP */ 589#define PALMAS_SMPS6_TSTEP_TSTEP_MASK 0x03 590#define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT 0 591 592/* Bit definitions for SMPS6_FORCE */ 593#define PALMAS_SMPS6_FORCE_CMD 0x80 594#define PALMAS_SMPS6_FORCE_CMD_SHIFT 7 595#define PALMAS_SMPS6_FORCE_VSEL_MASK 0x7f 596#define PALMAS_SMPS6_FORCE_VSEL_SHIFT 0 597 598/* Bit definitions for SMPS6_VOLTAGE */ 599#define PALMAS_SMPS6_VOLTAGE_RANGE 0x80 600#define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT 7 601#define PALMAS_SMPS6_VOLTAGE_VSEL_MASK 0x7f 602#define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT 0 603 604/* Bit definitions for SMPS7_CTRL */ 605#define PALMAS_SMPS7_CTRL_WR_S 0x80 606#define PALMAS_SMPS7_CTRL_WR_S_SHIFT 7 607#define PALMAS_SMPS7_CTRL_STATUS_MASK 0x30 608#define PALMAS_SMPS7_CTRL_STATUS_SHIFT 4 609#define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK 0x0c 610#define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT 2 611#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK 0x03 612#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT 0 613 614/* Bit definitions for SMPS7_VOLTAGE */ 615#define PALMAS_SMPS7_VOLTAGE_RANGE 0x80 616#define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT 7 617#define PALMAS_SMPS7_VOLTAGE_VSEL_MASK 0x7f 618#define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT 0 619 620/* Bit definitions for SMPS8_CTRL */ 621#define PALMAS_SMPS8_CTRL_WR_S 0x80 622#define PALMAS_SMPS8_CTRL_WR_S_SHIFT 7 623#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN 0x40 624#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT 6 625#define PALMAS_SMPS8_CTRL_STATUS_MASK 0x30 626#define PALMAS_SMPS8_CTRL_STATUS_SHIFT 4 627#define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK 0x0c 628#define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT 2 629#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK 0x03 630#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT 0 631 632/* Bit definitions for SMPS8_TSTEP */ 633#define PALMAS_SMPS8_TSTEP_TSTEP_MASK 0x03 634#define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT 0 635 636/* Bit definitions for SMPS8_FORCE */ 637#define PALMAS_SMPS8_FORCE_CMD 0x80 638#define PALMAS_SMPS8_FORCE_CMD_SHIFT 7 639#define PALMAS_SMPS8_FORCE_VSEL_MASK 0x7f 640#define PALMAS_SMPS8_FORCE_VSEL_SHIFT 0 641 642/* Bit definitions for SMPS8_VOLTAGE */ 643#define PALMAS_SMPS8_VOLTAGE_RANGE 0x80 644#define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT 7 645#define PALMAS_SMPS8_VOLTAGE_VSEL_MASK 0x7f 646#define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT 0 647 648/* Bit definitions for SMPS9_CTRL */ 649#define PALMAS_SMPS9_CTRL_WR_S 0x80 650#define PALMAS_SMPS9_CTRL_WR_S_SHIFT 7 651#define PALMAS_SMPS9_CTRL_STATUS_MASK 0x30 652#define PALMAS_SMPS9_CTRL_STATUS_SHIFT 4 653#define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK 0x0c 654#define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT 2 655#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK 0x03 656#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT 0 657 658/* Bit definitions for SMPS9_VOLTAGE */ 659#define PALMAS_SMPS9_VOLTAGE_RANGE 0x80 660#define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT 7 661#define PALMAS_SMPS9_VOLTAGE_VSEL_MASK 0x7f 662#define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT 0 663 664/* Bit definitions for SMPS10_CTRL */ 665#define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK 0xf0 666#define PALMAS_SMPS10_CTRL_MODE_SLEEP_SHIFT 4 667#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_MASK 0x0f 668#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_SHIFT 0 669 670/* Bit definitions for SMPS10_STATUS */ 671#define PALMAS_SMPS10_STATUS_STATUS_MASK 0x0f 672#define PALMAS_SMPS10_STATUS_STATUS_SHIFT 0 673 674/* Bit definitions for SMPS_CTRL */ 675#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN 0x20 676#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT 5 677#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN 0x10 678#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT 4 679#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK 0x0c 680#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT 2 681#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK 0x03 682#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT 0 683 684/* Bit definitions for SMPS_PD_CTRL */ 685#define PALMAS_SMPS_PD_CTRL_SMPS9 0x40 686#define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT 6 687#define PALMAS_SMPS_PD_CTRL_SMPS8 0x20 688#define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT 5 689#define PALMAS_SMPS_PD_CTRL_SMPS7 0x10 690#define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT 4 691#define PALMAS_SMPS_PD_CTRL_SMPS6 0x08 692#define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT 3 693#define PALMAS_SMPS_PD_CTRL_SMPS45 0x04 694#define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT 2 695#define PALMAS_SMPS_PD_CTRL_SMPS3 0x02 696#define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT 1 697#define PALMAS_SMPS_PD_CTRL_SMPS12 0x01 698#define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT 0 699 700/* Bit definitions for SMPS_THERMAL_EN */ 701#define PALMAS_SMPS_THERMAL_EN_SMPS9 0x40 702#define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT 6 703#define PALMAS_SMPS_THERMAL_EN_SMPS8 0x20 704#define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT 5 705#define PALMAS_SMPS_THERMAL_EN_SMPS6 0x08 706#define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT 3 707#define PALMAS_SMPS_THERMAL_EN_SMPS457 0x04 708#define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT 2 709#define PALMAS_SMPS_THERMAL_EN_SMPS123 0x01 710#define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT 0 711 712/* Bit definitions for SMPS_THERMAL_STATUS */ 713#define PALMAS_SMPS_THERMAL_STATUS_SMPS9 0x40 714#define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT 6 715#define PALMAS_SMPS_THERMAL_STATUS_SMPS8 0x20 716#define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT 5 717#define PALMAS_SMPS_THERMAL_STATUS_SMPS6 0x08 718#define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT 3 719#define PALMAS_SMPS_THERMAL_STATUS_SMPS457 0x04 720#define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT 2 721#define PALMAS_SMPS_THERMAL_STATUS_SMPS123 0x01 722#define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT 0 723 724/* Bit definitions for SMPS_SHORT_STATUS */ 725#define PALMAS_SMPS_SHORT_STATUS_SMPS10 0x80 726#define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT 7 727#define PALMAS_SMPS_SHORT_STATUS_SMPS9 0x40 728#define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT 6 729#define PALMAS_SMPS_SHORT_STATUS_SMPS8 0x20 730#define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT 5 731#define PALMAS_SMPS_SHORT_STATUS_SMPS7 0x10 732#define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT 4 733#define PALMAS_SMPS_SHORT_STATUS_SMPS6 0x08 734#define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT 3 735#define PALMAS_SMPS_SHORT_STATUS_SMPS45 0x04 736#define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT 2 737#define PALMAS_SMPS_SHORT_STATUS_SMPS3 0x02 738#define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT 1 739#define PALMAS_SMPS_SHORT_STATUS_SMPS12 0x01 740#define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT 0 741 742/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */ 743#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9 0x40 744#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT 6 745#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8 0x20 746#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT 5 747#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7 0x10 748#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT 4 749#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6 0x08 750#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT 3 751#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45 0x04 752#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT 2 753#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3 0x02 754#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT 1 755#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12 0x01 756#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT 0 757 758/* Bit definitions for SMPS_POWERGOOD_MASK1 */ 759#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10 0x80 760#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT 7 761#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9 0x40 762#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT 6 763#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8 0x20 764#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT 5 765#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7 0x10 766#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT 4 767#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6 0x08 768#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT 3 769#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45 0x04 770#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT 2 771#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3 0x02 772#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT 1 773#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12 0x01 774#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT 0 775 776/* Bit definitions for SMPS_POWERGOOD_MASK2 */ 777#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT 0x80 778#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT 7 779#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7 0x04 780#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT 2 781#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS 0x02 782#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT 1 783#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK 0x01 784#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT 0 785 786/* Registers for function LDO */ 787#define PALMAS_LDO1_CTRL 0x0 788#define PALMAS_LDO1_VOLTAGE 0x1 789#define PALMAS_LDO2_CTRL 0x2 790#define PALMAS_LDO2_VOLTAGE 0x3 791#define PALMAS_LDO3_CTRL 0x4 792#define PALMAS_LDO3_VOLTAGE 0x5 793#define PALMAS_LDO4_CTRL 0x6 794#define PALMAS_LDO4_VOLTAGE 0x7 795#define PALMAS_LDO5_CTRL 0x8 796#define PALMAS_LDO5_VOLTAGE 0x9 797#define PALMAS_LDO6_CTRL 0xA 798#define PALMAS_LDO6_VOLTAGE 0xB 799#define PALMAS_LDO7_CTRL 0xC 800#define PALMAS_LDO7_VOLTAGE 0xD 801#define PALMAS_LDO8_CTRL 0xE 802#define PALMAS_LDO8_VOLTAGE 0xF 803#define PALMAS_LDO9_CTRL 0x10 804#define PALMAS_LDO9_VOLTAGE 0x11 805#define PALMAS_LDOLN_CTRL 0x12 806#define PALMAS_LDOLN_VOLTAGE 0x13 807#define PALMAS_LDOUSB_CTRL 0x14 808#define PALMAS_LDOUSB_VOLTAGE 0x15 809#define PALMAS_LDO_CTRL 0x1A 810#define PALMAS_LDO_PD_CTRL1 0x1B 811#define PALMAS_LDO_PD_CTRL2 0x1C 812#define PALMAS_LDO_SHORT_STATUS1 0x1D 813#define PALMAS_LDO_SHORT_STATUS2 0x1E 814 815/* Bit definitions for LDO1_CTRL */ 816#define PALMAS_LDO1_CTRL_WR_S 0x80 817#define PALMAS_LDO1_CTRL_WR_S_SHIFT 7 818#define PALMAS_LDO1_CTRL_STATUS 0x10 819#define PALMAS_LDO1_CTRL_STATUS_SHIFT 4 820#define PALMAS_LDO1_CTRL_MODE_SLEEP 0x04 821#define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT 2 822#define PALMAS_LDO1_CTRL_MODE_ACTIVE 0x01 823#define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT 0 824 825/* Bit definitions for LDO1_VOLTAGE */ 826#define PALMAS_LDO1_VOLTAGE_VSEL_MASK 0x3f 827#define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT 0 828 829/* Bit definitions for LDO2_CTRL */ 830#define PALMAS_LDO2_CTRL_WR_S 0x80 831#define PALMAS_LDO2_CTRL_WR_S_SHIFT 7 832#define PALMAS_LDO2_CTRL_STATUS 0x10 833#define PALMAS_LDO2_CTRL_STATUS_SHIFT 4 834#define PALMAS_LDO2_CTRL_MODE_SLEEP 0x04 835#define PALMAS_LDO2_CTRL_MODE_SLEEP_SHIFT 2 836#define PALMAS_LDO2_CTRL_MODE_ACTIVE 0x01 837#define PALMAS_LDO2_CTRL_MODE_ACTIVE_SHIFT 0 838 839/* Bit definitions for LDO2_VOLTAGE */ 840#define PALMAS_LDO2_VOLTAGE_VSEL_MASK 0x3f 841#define PALMAS_LDO2_VOLTAGE_VSEL_SHIFT 0 842 843/* Bit definitions for LDO3_CTRL */ 844#define PALMAS_LDO3_CTRL_WR_S 0x80 845#define PALMAS_LDO3_CTRL_WR_S_SHIFT 7 846#define PALMAS_LDO3_CTRL_STATUS 0x10 847#define PALMAS_LDO3_CTRL_STATUS_SHIFT 4 848#define PALMAS_LDO3_CTRL_MODE_SLEEP 0x04 849#define PALMAS_LDO3_CTRL_MODE_SLEEP_SHIFT 2 850#define PALMAS_LDO3_CTRL_MODE_ACTIVE 0x01 851#define PALMAS_LDO3_CTRL_MODE_ACTIVE_SHIFT 0 852 853/* Bit definitions for LDO3_VOLTAGE */ 854#define PALMAS_LDO3_VOLTAGE_VSEL_MASK 0x3f 855#define PALMAS_LDO3_VOLTAGE_VSEL_SHIFT 0 856 857/* Bit definitions for LDO4_CTRL */ 858#define PALMAS_LDO4_CTRL_WR_S 0x80 859#define PALMAS_LDO4_CTRL_WR_S_SHIFT 7 860#define PALMAS_LDO4_CTRL_STATUS 0x10 861#define PALMAS_LDO4_CTRL_STATUS_SHIFT 4 862#define PALMAS_LDO4_CTRL_MODE_SLEEP 0x04 863#define PALMAS_LDO4_CTRL_MODE_SLEEP_SHIFT 2 864#define PALMAS_LDO4_CTRL_MODE_ACTIVE 0x01 865#define PALMAS_LDO4_CTRL_MODE_ACTIVE_SHIFT 0 866 867/* Bit definitions for LDO4_VOLTAGE */ 868#define PALMAS_LDO4_VOLTAGE_VSEL_MASK 0x3f 869#define PALMAS_LDO4_VOLTAGE_VSEL_SHIFT 0 870 871/* Bit definitions for LDO5_CTRL */ 872#define PALMAS_LDO5_CTRL_WR_S 0x80 873#define PALMAS_LDO5_CTRL_WR_S_SHIFT 7 874#define PALMAS_LDO5_CTRL_STATUS 0x10 875#define PALMAS_LDO5_CTRL_STATUS_SHIFT 4 876#define PALMAS_LDO5_CTRL_MODE_SLEEP 0x04 877#define PALMAS_LDO5_CTRL_MODE_SLEEP_SHIFT 2 878#define PALMAS_LDO5_CTRL_MODE_ACTIVE 0x01 879#define PALMAS_LDO5_CTRL_MODE_ACTIVE_SHIFT 0 880 881/* Bit definitions for LDO5_VOLTAGE */ 882#define PALMAS_LDO5_VOLTAGE_VSEL_MASK 0x3f 883#define PALMAS_LDO5_VOLTAGE_VSEL_SHIFT 0 884 885/* Bit definitions for LDO6_CTRL */ 886#define PALMAS_LDO6_CTRL_WR_S 0x80 887#define PALMAS_LDO6_CTRL_WR_S_SHIFT 7 888#define PALMAS_LDO6_CTRL_LDO_VIB_EN 0x40 889#define PALMAS_LDO6_CTRL_LDO_VIB_EN_SHIFT 6 890#define PALMAS_LDO6_CTRL_STATUS 0x10 891#define PALMAS_LDO6_CTRL_STATUS_SHIFT 4 892#define PALMAS_LDO6_CTRL_MODE_SLEEP 0x04 893#define PALMAS_LDO6_CTRL_MODE_SLEEP_SHIFT 2 894#define PALMAS_LDO6_CTRL_MODE_ACTIVE 0x01 895#define PALMAS_LDO6_CTRL_MODE_ACTIVE_SHIFT 0 896 897/* Bit definitions for LDO6_VOLTAGE */ 898#define PALMAS_LDO6_VOLTAGE_VSEL_MASK 0x3f 899#define PALMAS_LDO6_VOLTAGE_VSEL_SHIFT 0 900 901/* Bit definitions for LDO7_CTRL */ 902#define PALMAS_LDO7_CTRL_WR_S 0x80 903#define PALMAS_LDO7_CTRL_WR_S_SHIFT 7 904#define PALMAS_LDO7_CTRL_STATUS 0x10 905#define PALMAS_LDO7_CTRL_STATUS_SHIFT 4 906#define PALMAS_LDO7_CTRL_MODE_SLEEP 0x04 907#define PALMAS_LDO7_CTRL_MODE_SLEEP_SHIFT 2 908#define PALMAS_LDO7_CTRL_MODE_ACTIVE 0x01 909#define PALMAS_LDO7_CTRL_MODE_ACTIVE_SHIFT 0 910 911/* Bit definitions for LDO7_VOLTAGE */ 912#define PALMAS_LDO7_VOLTAGE_VSEL_MASK 0x3f 913#define PALMAS_LDO7_VOLTAGE_VSEL_SHIFT 0 914 915/* Bit definitions for LDO8_CTRL */ 916#define PALMAS_LDO8_CTRL_WR_S 0x80 917#define PALMAS_LDO8_CTRL_WR_S_SHIFT 7 918#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN 0x40 919#define PALMAS_LDO8_CTRL_LDO_TRACKING_EN_SHIFT 6 920#define PALMAS_LDO8_CTRL_STATUS 0x10 921#define PALMAS_LDO8_CTRL_STATUS_SHIFT 4 922#define PALMAS_LDO8_CTRL_MODE_SLEEP 0x04 923#define PALMAS_LDO8_CTRL_MODE_SLEEP_SHIFT 2 924#define PALMAS_LDO8_CTRL_MODE_ACTIVE 0x01 925#define PALMAS_LDO8_CTRL_MODE_ACTIVE_SHIFT 0 926 927/* Bit definitions for LDO8_VOLTAGE */ 928#define PALMAS_LDO8_VOLTAGE_VSEL_MASK 0x3f 929#define PALMAS_LDO8_VOLTAGE_VSEL_SHIFT 0 930 931/* Bit definitions for LDO9_CTRL */ 932#define PALMAS_LDO9_CTRL_WR_S 0x80 933#define PALMAS_LDO9_CTRL_WR_S_SHIFT 7 934#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN 0x40 935#define PALMAS_LDO9_CTRL_LDO_BYPASS_EN_SHIFT 6 936#define PALMAS_LDO9_CTRL_STATUS 0x10 937#define PALMAS_LDO9_CTRL_STATUS_SHIFT 4 938#define PALMAS_LDO9_CTRL_MODE_SLEEP 0x04 939#define PALMAS_LDO9_CTRL_MODE_SLEEP_SHIFT 2 940#define PALMAS_LDO9_CTRL_MODE_ACTIVE 0x01 941#define PALMAS_LDO9_CTRL_MODE_ACTIVE_SHIFT 0 942 943/* Bit definitions for LDO9_VOLTAGE */ 944#define PALMAS_LDO9_VOLTAGE_VSEL_MASK 0x3f 945#define PALMAS_LDO9_VOLTAGE_VSEL_SHIFT 0 946 947/* Bit definitions for LDOLN_CTRL */ 948#define PALMAS_LDOLN_CTRL_WR_S 0x80 949#define PALMAS_LDOLN_CTRL_WR_S_SHIFT 7 950#define PALMAS_LDOLN_CTRL_STATUS 0x10 951#define PALMAS_LDOLN_CTRL_STATUS_SHIFT 4 952#define PALMAS_LDOLN_CTRL_MODE_SLEEP 0x04 953#define PALMAS_LDOLN_CTRL_MODE_SLEEP_SHIFT 2 954#define PALMAS_LDOLN_CTRL_MODE_ACTIVE 0x01 955#define PALMAS_LDOLN_CTRL_MODE_ACTIVE_SHIFT 0 956 957/* Bit definitions for LDOLN_VOLTAGE */ 958#define PALMAS_LDOLN_VOLTAGE_VSEL_MASK 0x3f 959#define PALMAS_LDOLN_VOLTAGE_VSEL_SHIFT 0 960 961/* Bit definitions for LDOUSB_CTRL */ 962#define PALMAS_LDOUSB_CTRL_WR_S 0x80 963#define PALMAS_LDOUSB_CTRL_WR_S_SHIFT 7 964#define PALMAS_LDOUSB_CTRL_STATUS 0x10 965#define PALMAS_LDOUSB_CTRL_STATUS_SHIFT 4 966#define PALMAS_LDOUSB_CTRL_MODE_SLEEP 0x04 967#define PALMAS_LDOUSB_CTRL_MODE_SLEEP_SHIFT 2 968#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE 0x01 969#define PALMAS_LDOUSB_CTRL_MODE_ACTIVE_SHIFT 0 970 971/* Bit definitions for LDOUSB_VOLTAGE */ 972#define PALMAS_LDOUSB_VOLTAGE_VSEL_MASK 0x3f 973#define PALMAS_LDOUSB_VOLTAGE_VSEL_SHIFT 0 974 975/* Bit definitions for LDO_CTRL */ 976#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS 0x01 977#define PALMAS_LDO_CTRL_LDOUSB_ON_VBUS_VSYS_SHIFT 0 978 979/* Bit definitions for LDO_PD_CTRL1 */ 980#define PALMAS_LDO_PD_CTRL1_LDO8 0x80 981#define PALMAS_LDO_PD_CTRL1_LDO8_SHIFT 7 982#define PALMAS_LDO_PD_CTRL1_LDO7 0x40 983#define PALMAS_LDO_PD_CTRL1_LDO7_SHIFT 6 984#define PALMAS_LDO_PD_CTRL1_LDO6 0x20 985#define PALMAS_LDO_PD_CTRL1_LDO6_SHIFT 5 986#define PALMAS_LDO_PD_CTRL1_LDO5 0x10 987#define PALMAS_LDO_PD_CTRL1_LDO5_SHIFT 4 988#define PALMAS_LDO_PD_CTRL1_LDO4 0x08 989#define PALMAS_LDO_PD_CTRL1_LDO4_SHIFT 3 990#define PALMAS_LDO_PD_CTRL1_LDO3 0x04 991#define PALMAS_LDO_PD_CTRL1_LDO3_SHIFT 2 992#define PALMAS_LDO_PD_CTRL1_LDO2 0x02 993#define PALMAS_LDO_PD_CTRL1_LDO2_SHIFT 1 994#define PALMAS_LDO_PD_CTRL1_LDO1 0x01 995#define PALMAS_LDO_PD_CTRL1_LDO1_SHIFT 0 996 997/* Bit definitions for LDO_PD_CTRL2 */ 998#define PALMAS_LDO_PD_CTRL2_LDOUSB 0x04 999#define PALMAS_LDO_PD_CTRL2_LDOUSB_SHIFT 2 1000#define PALMAS_LDO_PD_CTRL2_LDOLN 0x02 1001#define PALMAS_LDO_PD_CTRL2_LDOLN_SHIFT 1 1002#define PALMAS_LDO_PD_CTRL2_LDO9 0x01 1003#define PALMAS_LDO_PD_CTRL2_LDO9_SHIFT 0 1004 1005/* Bit definitions for LDO_SHORT_STATUS1 */ 1006#define PALMAS_LDO_SHORT_STATUS1_LDO8 0x80 1007#define PALMAS_LDO_SHORT_STATUS1_LDO8_SHIFT 7 1008#define PALMAS_LDO_SHORT_STATUS1_LDO7 0x40 1009#define PALMAS_LDO_SHORT_STATUS1_LDO7_SHIFT 6 1010#define PALMAS_LDO_SHORT_STATUS1_LDO6 0x20 1011#define PALMAS_LDO_SHORT_STATUS1_LDO6_SHIFT 5 1012#define PALMAS_LDO_SHORT_STATUS1_LDO5 0x10 1013#define PALMAS_LDO_SHORT_STATUS1_LDO5_SHIFT 4 1014#define PALMAS_LDO_SHORT_STATUS1_LDO4 0x08 1015#define PALMAS_LDO_SHORT_STATUS1_LDO4_SHIFT 3 1016#define PALMAS_LDO_SHORT_STATUS1_LDO3 0x04 1017#define PALMAS_LDO_SHORT_STATUS1_LDO3_SHIFT 2 1018#define PALMAS_LDO_SHORT_STATUS1_LDO2 0x02 1019#define PALMAS_LDO_SHORT_STATUS1_LDO2_SHIFT 1 1020#define PALMAS_LDO_SHORT_STATUS1_LDO1 0x01 1021#define PALMAS_LDO_SHORT_STATUS1_LDO1_SHIFT 0 1022 1023/* Bit definitions for LDO_SHORT_STATUS2 */ 1024#define PALMAS_LDO_SHORT_STATUS2_LDOVANA 0x08 1025#define PALMAS_LDO_SHORT_STATUS2_LDOVANA_SHIFT 3 1026#define PALMAS_LDO_SHORT_STATUS2_LDOUSB 0x04 1027#define PALMAS_LDO_SHORT_STATUS2_LDOUSB_SHIFT 2 1028#define PALMAS_LDO_SHORT_STATUS2_LDOLN 0x02 1029#define PALMAS_LDO_SHORT_STATUS2_LDOLN_SHIFT 1 1030#define PALMAS_LDO_SHORT_STATUS2_LDO9 0x01 1031#define PALMAS_LDO_SHORT_STATUS2_LDO9_SHIFT 0 1032 1033/* Registers for function PMU_CONTROL */ 1034#define PALMAS_DEV_CTRL 0x0 1035#define PALMAS_POWER_CTRL 0x1 1036#define PALMAS_VSYS_LO 0x2 1037#define PALMAS_VSYS_MON 0x3 1038#define PALMAS_VBAT_MON 0x4 1039#define PALMAS_WATCHDOG 0x5 1040#define PALMAS_BOOT_STATUS 0x6 1041#define PALMAS_BATTERY_BOUNCE 0x7 1042#define PALMAS_BACKUP_BATTERY_CTRL 0x8 1043#define PALMAS_LONG_PRESS_KEY 0x9 1044#define PALMAS_OSC_THERM_CTRL 0xA 1045#define PALMAS_BATDEBOUNCING 0xB 1046#define PALMAS_SWOFF_HWRST 0xF 1047#define PALMAS_SWOFF_COLDRST 0x10 1048#define PALMAS_SWOFF_STATUS 0x11 1049#define PALMAS_PMU_CONFIG 0x12 1050#define PALMAS_SPARE 0x14 1051#define PALMAS_PMU_SECONDARY_INT 0x15 1052#define PALMAS_SW_REVISION 0x17 1053#define PALMAS_EXT_CHRG_CTRL 0x18 1054#define PALMAS_PMU_SECONDARY_INT2 0x19 1055 1056/* Bit definitions for DEV_CTRL */ 1057#define PALMAS_DEV_CTRL_DEV_STATUS_MASK 0x0c 1058#define PALMAS_DEV_CTRL_DEV_STATUS_SHIFT 2 1059#define PALMAS_DEV_CTRL_SW_RST 0x02 1060#define PALMAS_DEV_CTRL_SW_RST_SHIFT 1 1061#define PALMAS_DEV_CTRL_DEV_ON 0x01 1062#define PALMAS_DEV_CTRL_DEV_ON_SHIFT 0 1063 1064/* Bit definitions for POWER_CTRL */ 1065#define PALMAS_POWER_CTRL_ENABLE2_MASK 0x04 1066#define PALMAS_POWER_CTRL_ENABLE2_MASK_SHIFT 2 1067#define PALMAS_POWER_CTRL_ENABLE1_MASK 0x02 1068#define PALMAS_POWER_CTRL_ENABLE1_MASK_SHIFT 1 1069#define PALMAS_POWER_CTRL_NSLEEP_MASK 0x01 1070#define PALMAS_POWER_CTRL_NSLEEP_MASK_SHIFT 0 1071 1072/* Bit definitions for VSYS_LO */ 1073#define PALMAS_VSYS_LO_THRESHOLD_MASK 0x1f 1074#define PALMAS_VSYS_LO_THRESHOLD_SHIFT 0 1075 1076/* Bit definitions for VSYS_MON */ 1077#define PALMAS_VSYS_MON_ENABLE 0x80 1078#define PALMAS_VSYS_MON_ENABLE_SHIFT 7 1079#define PALMAS_VSYS_MON_THRESHOLD_MASK 0x3f 1080#define PALMAS_VSYS_MON_THRESHOLD_SHIFT 0 1081 1082/* Bit definitions for VBAT_MON */ 1083#define PALMAS_VBAT_MON_ENABLE 0x80 1084#define PALMAS_VBAT_MON_ENABLE_SHIFT 7 1085#define PALMAS_VBAT_MON_THRESHOLD_MASK 0x3f 1086#define PALMAS_VBAT_MON_THRESHOLD_SHIFT 0 1087 1088/* Bit definitions for WATCHDOG */ 1089#define PALMAS_WATCHDOG_LOCK 0x20 1090#define PALMAS_WATCHDOG_LOCK_SHIFT 5 1091#define PALMAS_WATCHDOG_ENABLE 0x10 1092#define PALMAS_WATCHDOG_ENABLE_SHIFT 4 1093#define PALMAS_WATCHDOG_MODE 0x08 1094#define PALMAS_WATCHDOG_MODE_SHIFT 3 1095#define PALMAS_WATCHDOG_TIMER_MASK 0x07 1096#define PALMAS_WATCHDOG_TIMER_SHIFT 0 1097 1098/* Bit definitions for BOOT_STATUS */ 1099#define PALMAS_BOOT_STATUS_BOOT1 0x02 1100#define PALMAS_BOOT_STATUS_BOOT1_SHIFT 1 1101#define PALMAS_BOOT_STATUS_BOOT0 0x01 1102#define PALMAS_BOOT_STATUS_BOOT0_SHIFT 0 1103 1104/* Bit definitions for BATTERY_BOUNCE */ 1105#define PALMAS_BATTERY_BOUNCE_BB_DELAY_MASK 0x3f 1106#define PALMAS_BATTERY_BOUNCE_BB_DELAY_SHIFT 0 1107 1108/* Bit definitions for BACKUP_BATTERY_CTRL */ 1109#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15 0x80 1110#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_18_15_SHIFT 7 1111#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP 0x40 1112#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_SLP_SHIFT 6 1113#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF 0x20 1114#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_EN_OFF_SHIFT 5 1115#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN 0x10 1116#define PALMAS_BACKUP_BATTERY_CTRL_VRTC_PWEN_SHIFT 4 1117#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG 0x08 1118#define PALMAS_BACKUP_BATTERY_CTRL_BBS_BBC_LOW_ICHRG_SHIFT 3 1119#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_MASK 0x06 1120#define PALMAS_BACKUP_BATTERY_CTRL_BB_SEL_SHIFT 1 1121#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN 0x01 1122#define PALMAS_BACKUP_BATTERY_CTRL_BB_CHG_EN_SHIFT 0 1123 1124/* Bit definitions for LONG_PRESS_KEY */ 1125#define PALMAS_LONG_PRESS_KEY_LPK_LOCK 0x80 1126#define PALMAS_LONG_PRESS_KEY_LPK_LOCK_SHIFT 7 1127#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR 0x10 1128#define PALMAS_LONG_PRESS_KEY_LPK_INT_CLR_SHIFT 4 1129#define PALMAS_LONG_PRESS_KEY_LPK_TIME_MASK 0x0c 1130#define PALMAS_LONG_PRESS_KEY_LPK_TIME_SHIFT 2 1131#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_MASK 0x03 1132#define PALMAS_LONG_PRESS_KEY_PWRON_DEBOUNCE_SHIFT 0 1133 1134/* Bit definitions for OSC_THERM_CTRL */ 1135#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP 0x80 1136#define PALMAS_OSC_THERM_CTRL_VANA_ON_IN_SLEEP_SHIFT 7 1137#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP 0x40 1138#define PALMAS_OSC_THERM_CTRL_INT_MASK_IN_SLEEP_SHIFT 6 1139#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP 0x20 1140#define PALMAS_OSC_THERM_CTRL_RC15MHZ_ON_IN_SLEEP_SHIFT 5 1141#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP 0x10 1142#define PALMAS_OSC_THERM_CTRL_THERM_OFF_IN_SLEEP_SHIFT 4 1143#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_MASK 0x0c 1144#define PALMAS_OSC_THERM_CTRL_THERM_HD_SEL_SHIFT 2 1145#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS 0x02 1146#define PALMAS_OSC_THERM_CTRL_OSC_BYPASS_SHIFT 1 1147#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE 0x01 1148#define PALMAS_OSC_THERM_CTRL_OSC_HPMODE_SHIFT 0 1149 1150/* Bit definitions for BATDEBOUNCING */ 1151#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS 0x80 1152#define PALMAS_BATDEBOUNCING_BAT_DEB_BYPASS_SHIFT 7 1153#define PALMAS_BATDEBOUNCING_BINS_DEB_MASK 0x78 1154#define PALMAS_BATDEBOUNCING_BINS_DEB_SHIFT 3 1155#define PALMAS_BATDEBOUNCING_BEXT_DEB_MASK 0x07 1156#define PALMAS_BATDEBOUNCING_BEXT_DEB_SHIFT 0 1157 1158/* Bit definitions for SWOFF_HWRST */ 1159#define PALMAS_SWOFF_HWRST_PWRON_LPK 0x80 1160#define PALMAS_SWOFF_HWRST_PWRON_LPK_SHIFT 7 1161#define PALMAS_SWOFF_HWRST_PWRDOWN 0x40 1162#define PALMAS_SWOFF_HWRST_PWRDOWN_SHIFT 6 1163#define PALMAS_SWOFF_HWRST_WTD 0x20 1164#define PALMAS_SWOFF_HWRST_WTD_SHIFT 5 1165#define PALMAS_SWOFF_HWRST_TSHUT 0x10 1166#define PALMAS_SWOFF_HWRST_TSHUT_SHIFT 4 1167#define PALMAS_SWOFF_HWRST_RESET_IN 0x08 1168#define PALMAS_SWOFF_HWRST_RESET_IN_SHIFT 3 1169#define PALMAS_SWOFF_HWRST_SW_RST 0x04 1170#define PALMAS_SWOFF_HWRST_SW_RST_SHIFT 2 1171#define PALMAS_SWOFF_HWRST_VSYS_LO 0x02 1172#define PALMAS_SWOFF_HWRST_VSYS_LO_SHIFT 1 1173#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN 0x01 1174#define PALMAS_SWOFF_HWRST_GPADC_SHUTDOWN_SHIFT 0 1175 1176/* Bit definitions for SWOFF_COLDRST */ 1177#define PALMAS_SWOFF_COLDRST_PWRON_LPK 0x80 1178#define PALMAS_SWOFF_COLDRST_PWRON_LPK_SHIFT 7 1179#define PALMAS_SWOFF_COLDRST_PWRDOWN 0x40 1180#define PALMAS_SWOFF_COLDRST_PWRDOWN_SHIFT 6 1181#define PALMAS_SWOFF_COLDRST_WTD 0x20 1182#define PALMAS_SWOFF_COLDRST_WTD_SHIFT 5 1183#define PALMAS_SWOFF_COLDRST_TSHUT 0x10 1184#define PALMAS_SWOFF_COLDRST_TSHUT_SHIFT 4 1185#define PALMAS_SWOFF_COLDRST_RESET_IN 0x08 1186#define PALMAS_SWOFF_COLDRST_RESET_IN_SHIFT 3 1187#define PALMAS_SWOFF_COLDRST_SW_RST 0x04 1188#define PALMAS_SWOFF_COLDRST_SW_RST_SHIFT 2 1189#define PALMAS_SWOFF_COLDRST_VSYS_LO 0x02 1190#define PALMAS_SWOFF_COLDRST_VSYS_LO_SHIFT 1 1191#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN 0x01 1192#define PALMAS_SWOFF_COLDRST_GPADC_SHUTDOWN_SHIFT 0 1193 1194/* Bit definitions for SWOFF_STATUS */ 1195#define PALMAS_SWOFF_STATUS_PWRON_LPK 0x80 1196#define PALMAS_SWOFF_STATUS_PWRON_LPK_SHIFT 7 1197#define PALMAS_SWOFF_STATUS_PWRDOWN 0x40 1198#define PALMAS_SWOFF_STATUS_PWRDOWN_SHIFT 6 1199#define PALMAS_SWOFF_STATUS_WTD 0x20 1200#define PALMAS_SWOFF_STATUS_WTD_SHIFT 5 1201#define PALMAS_SWOFF_STATUS_TSHUT 0x10 1202#define PALMAS_SWOFF_STATUS_TSHUT_SHIFT 4 1203#define PALMAS_SWOFF_STATUS_RESET_IN 0x08 1204#define PALMAS_SWOFF_STATUS_RESET_IN_SHIFT 3 1205#define PALMAS_SWOFF_STATUS_SW_RST 0x04 1206#define PALMAS_SWOFF_STATUS_SW_RST_SHIFT 2 1207#define PALMAS_SWOFF_STATUS_VSYS_LO 0x02 1208#define PALMAS_SWOFF_STATUS_VSYS_LO_SHIFT 1 1209#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN 0x01 1210#define PALMAS_SWOFF_STATUS_GPADC_SHUTDOWN_SHIFT 0 1211 1212/* Bit definitions for PMU_CONFIG */ 1213#define PALMAS_PMU_CONFIG_MULTI_CELL_EN 0x40 1214#define PALMAS_PMU_CONFIG_MULTI_CELL_EN_SHIFT 6 1215#define PALMAS_PMU_CONFIG_SPARE_MASK 0x30 1216#define PALMAS_PMU_CONFIG_SPARE_SHIFT 4 1217#define PALMAS_PMU_CONFIG_SWOFF_DLY_MASK 0x0c 1218#define PALMAS_PMU_CONFIG_SWOFF_DLY_SHIFT 2 1219#define PALMAS_PMU_CONFIG_GATE_RESET_OUT 0x02 1220#define PALMAS_PMU_CONFIG_GATE_RESET_OUT_SHIFT 1 1221#define PALMAS_PMU_CONFIG_AUTODEVON 0x01 1222#define PALMAS_PMU_CONFIG_AUTODEVON_SHIFT 0 1223 1224/* Bit definitions for SPARE */ 1225#define PALMAS_SPARE_SPARE_MASK 0xf8 1226#define PALMAS_SPARE_SPARE_SHIFT 3 1227#define PALMAS_SPARE_REGEN3_OD 0x04 1228#define PALMAS_SPARE_REGEN3_OD_SHIFT 2 1229#define PALMAS_SPARE_REGEN2_OD 0x02 1230#define PALMAS_SPARE_REGEN2_OD_SHIFT 1 1231#define PALMAS_SPARE_REGEN1_OD 0x01 1232#define PALMAS_SPARE_REGEN1_OD_SHIFT 0 1233 1234/* Bit definitions for PMU_SECONDARY_INT */ 1235#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC 0x80 1236#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_INT_SRC_SHIFT 7 1237#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC 0x40 1238#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_INT_SRC_SHIFT 6 1239#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC 0x20 1240#define PALMAS_PMU_SECONDARY_INT_BB_INT_SRC_SHIFT 5 1241#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC 0x10 1242#define PALMAS_PMU_SECONDARY_INT_FBI_INT_SRC_SHIFT 4 1243#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK 0x08 1244#define PALMAS_PMU_SECONDARY_INT_VBUS_OVV_MASK_SHIFT 3 1245#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK 0x04 1246#define PALMAS_PMU_SECONDARY_INT_CHARG_DET_N_MASK_SHIFT 2 1247#define PALMAS_PMU_SECONDARY_INT_BB_MASK 0x02 1248#define PALMAS_PMU_SECONDARY_INT_BB_MASK_SHIFT 1 1249#define PALMAS_PMU_SECONDARY_INT_FBI_MASK 0x01 1250#define PALMAS_PMU_SECONDARY_INT_FBI_MASK_SHIFT 0 1251 1252/* Bit definitions for SW_REVISION */ 1253#define PALMAS_SW_REVISION_SW_REVISION_MASK 0xff 1254#define PALMAS_SW_REVISION_SW_REVISION_SHIFT 0 1255 1256/* Bit definitions for EXT_CHRG_CTRL */ 1257#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS 0x80 1258#define PALMAS_EXT_CHRG_CTRL_VBUS_OVV_STATUS_SHIFT 7 1259#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS 0x40 1260#define PALMAS_EXT_CHRG_CTRL_CHARG_DET_N_STATUS_SHIFT 6 1261#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY 0x08 1262#define PALMAS_EXT_CHRG_CTRL_VSYS_DEBOUNCE_DELAY_SHIFT 3 1263#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N 0x04 1264#define PALMAS_EXT_CHRG_CTRL_CHRG_DET_N_SHIFT 2 1265#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN 0x02 1266#define PALMAS_EXT_CHRG_CTRL_AUTO_ACA_EN_SHIFT 1 1267#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN 0x01 1268#define PALMAS_EXT_CHRG_CTRL_AUTO_LDOUSB_EN_SHIFT 0 1269 1270/* Bit definitions for PMU_SECONDARY_INT2 */ 1271#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC 0x20 1272#define PALMAS_PMU_SECONDARY_INT2_DVFS2_INT_SRC_SHIFT 5 1273#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC 0x10 1274#define PALMAS_PMU_SECONDARY_INT2_DVFS1_INT_SRC_SHIFT 4 1275#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK 0x02 1276#define PALMAS_PMU_SECONDARY_INT2_DVFS2_MASK_SHIFT 1 1277#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK 0x01 1278#define PALMAS_PMU_SECONDARY_INT2_DVFS1_MASK_SHIFT 0 1279 1280/* Registers for function RESOURCE */ 1281#define PALMAS_CLK32KG_CTRL 0x0 1282#define PALMAS_CLK32KGAUDIO_CTRL 0x1 1283#define PALMAS_REGEN1_CTRL 0x2 1284#define PALMAS_REGEN2_CTRL 0x3 1285#define PALMAS_SYSEN1_CTRL 0x4 1286#define PALMAS_SYSEN2_CTRL 0x5 1287#define PALMAS_NSLEEP_RES_ASSIGN 0x6 1288#define PALMAS_NSLEEP_SMPS_ASSIGN 0x7 1289#define PALMAS_NSLEEP_LDO_ASSIGN1 0x8 1290#define PALMAS_NSLEEP_LDO_ASSIGN2 0x9 1291#define PALMAS_ENABLE1_RES_ASSIGN 0xA 1292#define PALMAS_ENABLE1_SMPS_ASSIGN 0xB 1293#define PALMAS_ENABLE1_LDO_ASSIGN1 0xC 1294#define PALMAS_ENABLE1_LDO_ASSIGN2 0xD 1295#define PALMAS_ENABLE2_RES_ASSIGN 0xE 1296#define PALMAS_ENABLE2_SMPS_ASSIGN 0xF 1297#define PALMAS_ENABLE2_LDO_ASSIGN1 0x10 1298#define PALMAS_ENABLE2_LDO_ASSIGN2 0x11 1299#define PALMAS_REGEN3_CTRL 0x12 1300 1301/* Bit definitions for CLK32KG_CTRL */ 1302#define PALMAS_CLK32KG_CTRL_STATUS 0x10 1303#define PALMAS_CLK32KG_CTRL_STATUS_SHIFT 4 1304#define PALMAS_CLK32KG_CTRL_MODE_SLEEP 0x04 1305#define PALMAS_CLK32KG_CTRL_MODE_SLEEP_SHIFT 2 1306#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE 0x01 1307#define PALMAS_CLK32KG_CTRL_MODE_ACTIVE_SHIFT 0 1308 1309/* Bit definitions for CLK32KGAUDIO_CTRL */ 1310#define PALMAS_CLK32KGAUDIO_CTRL_STATUS 0x10 1311#define PALMAS_CLK32KGAUDIO_CTRL_STATUS_SHIFT 4 1312#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3 0x08 1313#define PALMAS_CLK32KGAUDIO_CTRL_RESERVED3_SHIFT 3 1314#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP 0x04 1315#define PALMAS_CLK32KGAUDIO_CTRL_MODE_SLEEP_SHIFT 2 1316#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE 0x01 1317#define PALMAS_CLK32KGAUDIO_CTRL_MODE_ACTIVE_SHIFT 0 1318 1319/* Bit definitions for REGEN1_CTRL */ 1320#define PALMAS_REGEN1_CTRL_STATUS 0x10 1321#define PALMAS_REGEN1_CTRL_STATUS_SHIFT 4 1322#define PALMAS_REGEN1_CTRL_MODE_SLEEP 0x04 1323#define PALMAS_REGEN1_CTRL_MODE_SLEEP_SHIFT 2 1324#define PALMAS_REGEN1_CTRL_MODE_ACTIVE 0x01 1325#define PALMAS_REGEN1_CTRL_MODE_ACTIVE_SHIFT 0 1326 1327/* Bit definitions for REGEN2_CTRL */ 1328#define PALMAS_REGEN2_CTRL_STATUS 0x10 1329#define PALMAS_REGEN2_CTRL_STATUS_SHIFT 4 1330#define PALMAS_REGEN2_CTRL_MODE_SLEEP 0x04 1331#define PALMAS_REGEN2_CTRL_MODE_SLEEP_SHIFT 2 1332#define PALMAS_REGEN2_CTRL_MODE_ACTIVE 0x01 1333#define PALMAS_REGEN2_CTRL_MODE_ACTIVE_SHIFT 0 1334 1335/* Bit definitions for SYSEN1_CTRL */ 1336#define PALMAS_SYSEN1_CTRL_STATUS 0x10 1337#define PALMAS_SYSEN1_CTRL_STATUS_SHIFT 4 1338#define PALMAS_SYSEN1_CTRL_MODE_SLEEP 0x04 1339#define PALMAS_SYSEN1_CTRL_MODE_SLEEP_SHIFT 2 1340#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE 0x01 1341#define PALMAS_SYSEN1_CTRL_MODE_ACTIVE_SHIFT 0 1342 1343/* Bit definitions for SYSEN2_CTRL */ 1344#define PALMAS_SYSEN2_CTRL_STATUS 0x10 1345#define PALMAS_SYSEN2_CTRL_STATUS_SHIFT 4 1346#define PALMAS_SYSEN2_CTRL_MODE_SLEEP 0x04 1347#define PALMAS_SYSEN2_CTRL_MODE_SLEEP_SHIFT 2 1348#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE 0x01 1349#define PALMAS_SYSEN2_CTRL_MODE_ACTIVE_SHIFT 0 1350 1351/* Bit definitions for NSLEEP_RES_ASSIGN */ 1352#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3 0x40 1353#define PALMAS_NSLEEP_RES_ASSIGN_REGEN3_SHIFT 6 1354#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO 0x20 1355#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KGAUDIO_SHIFT 5 1356#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG 0x10 1357#define PALMAS_NSLEEP_RES_ASSIGN_CLK32KG_SHIFT 4 1358#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2 0x08 1359#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN2_SHIFT 3 1360#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1 0x04 1361#define PALMAS_NSLEEP_RES_ASSIGN_SYSEN1_SHIFT 2 1362#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2 0x02 1363#define PALMAS_NSLEEP_RES_ASSIGN_REGEN2_SHIFT 1 1364#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1 0x01 1365#define PALMAS_NSLEEP_RES_ASSIGN_REGEN1_SHIFT 0 1366 1367/* Bit definitions for NSLEEP_SMPS_ASSIGN */ 1368#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10 0x80 1369#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS10_SHIFT 7 1370#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9 0x40 1371#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS9_SHIFT 6 1372#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8 0x20 1373#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS8_SHIFT 5 1374#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7 0x10 1375#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS7_SHIFT 4 1376#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6 0x08 1377#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS6_SHIFT 3 1378#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45 0x04 1379#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS45_SHIFT 2 1380#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3 0x02 1381#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS3_SHIFT 1 1382#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12 0x01 1383#define PALMAS_NSLEEP_SMPS_ASSIGN_SMPS12_SHIFT 0 1384 1385/* Bit definitions for NSLEEP_LDO_ASSIGN1 */ 1386#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8 0x80 1387#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO8_SHIFT 7 1388#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7 0x40 1389#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO7_SHIFT 6 1390#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6 0x20 1391#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO6_SHIFT 5 1392#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5 0x10 1393#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO5_SHIFT 4 1394#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4 0x08 1395#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO4_SHIFT 3 1396#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3 0x04 1397#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO3_SHIFT 2 1398#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2 0x02 1399#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO2_SHIFT 1 1400#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1 0x01 1401#define PALMAS_NSLEEP_LDO_ASSIGN1_LDO1_SHIFT 0 1402 1403/* Bit definitions for NSLEEP_LDO_ASSIGN2 */ 1404#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB 0x04 1405#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOUSB_SHIFT 2 1406#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN 0x02 1407#define PALMAS_NSLEEP_LDO_ASSIGN2_LDOLN_SHIFT 1 1408#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9 0x01 1409#define PALMAS_NSLEEP_LDO_ASSIGN2_LDO9_SHIFT 0 1410 1411/* Bit definitions for ENABLE1_RES_ASSIGN */ 1412#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3 0x40 1413#define PALMAS_ENABLE1_RES_ASSIGN_REGEN3_SHIFT 6 1414#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO 0x20 1415#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KGAUDIO_SHIFT 5 1416#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG 0x10 1417#define PALMAS_ENABLE1_RES_ASSIGN_CLK32KG_SHIFT 4 1418#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2 0x08 1419#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN2_SHIFT 3 1420#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1 0x04 1421#define PALMAS_ENABLE1_RES_ASSIGN_SYSEN1_SHIFT 2 1422#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2 0x02 1423#define PALMAS_ENABLE1_RES_ASSIGN_REGEN2_SHIFT 1 1424#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1 0x01 1425#define PALMAS_ENABLE1_RES_ASSIGN_REGEN1_SHIFT 0 1426 1427/* Bit definitions for ENABLE1_SMPS_ASSIGN */ 1428#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10 0x80 1429#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS10_SHIFT 7 1430#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9 0x40 1431#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS9_SHIFT 6 1432#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8 0x20 1433#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS8_SHIFT 5 1434#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7 0x10 1435#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS7_SHIFT 4 1436#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6 0x08 1437#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS6_SHIFT 3 1438#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45 0x04 1439#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS45_SHIFT 2 1440#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3 0x02 1441#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS3_SHIFT 1 1442#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12 0x01 1443#define PALMAS_ENABLE1_SMPS_ASSIGN_SMPS12_SHIFT 0 1444 1445/* Bit definitions for ENABLE1_LDO_ASSIGN1 */ 1446#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8 0x80 1447#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO8_SHIFT 7 1448#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7 0x40 1449#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO7_SHIFT 6 1450#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6 0x20 1451#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO6_SHIFT 5 1452#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5 0x10 1453#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO5_SHIFT 4 1454#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4 0x08 1455#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO4_SHIFT 3 1456#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3 0x04 1457#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO3_SHIFT 2 1458#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2 0x02 1459#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO2_SHIFT 1 1460#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1 0x01 1461#define PALMAS_ENABLE1_LDO_ASSIGN1_LDO1_SHIFT 0 1462 1463/* Bit definitions for ENABLE1_LDO_ASSIGN2 */ 1464#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB 0x04 1465#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOUSB_SHIFT 2 1466#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN 0x02 1467#define PALMAS_ENABLE1_LDO_ASSIGN2_LDOLN_SHIFT 1 1468#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9 0x01 1469#define PALMAS_ENABLE1_LDO_ASSIGN2_LDO9_SHIFT 0 1470 1471/* Bit definitions for ENABLE2_RES_ASSIGN */ 1472#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3 0x40 1473#define PALMAS_ENABLE2_RES_ASSIGN_REGEN3_SHIFT 6 1474#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO 0x20 1475#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KGAUDIO_SHIFT 5 1476#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG 0x10 1477#define PALMAS_ENABLE2_RES_ASSIGN_CLK32KG_SHIFT 4 1478#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2 0x08 1479#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN2_SHIFT 3 1480#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1 0x04 1481#define PALMAS_ENABLE2_RES_ASSIGN_SYSEN1_SHIFT 2 1482#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2 0x02 1483#define PALMAS_ENABLE2_RES_ASSIGN_REGEN2_SHIFT 1 1484#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1 0x01 1485#define PALMAS_ENABLE2_RES_ASSIGN_REGEN1_SHIFT 0 1486 1487/* Bit definitions for ENABLE2_SMPS_ASSIGN */ 1488#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10 0x80 1489#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS10_SHIFT 7 1490#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9 0x40 1491#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS9_SHIFT 6 1492#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8 0x20 1493#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS8_SHIFT 5 1494#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7 0x10 1495#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS7_SHIFT 4 1496#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6 0x08 1497#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS6_SHIFT 3 1498#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45 0x04 1499#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS45_SHIFT 2 1500#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3 0x02 1501#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS3_SHIFT 1 1502#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12 0x01 1503#define PALMAS_ENABLE2_SMPS_ASSIGN_SMPS12_SHIFT 0 1504 1505/* Bit definitions for ENABLE2_LDO_ASSIGN1 */ 1506#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8 0x80 1507#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO8_SHIFT 7 1508#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7 0x40 1509#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO7_SHIFT 6 1510#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6 0x20 1511#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO6_SHIFT 5 1512#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5 0x10 1513#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO5_SHIFT 4 1514#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4 0x08 1515#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO4_SHIFT 3 1516#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3 0x04 1517#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO3_SHIFT 2 1518#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2 0x02 1519#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO2_SHIFT 1 1520#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1 0x01 1521#define PALMAS_ENABLE2_LDO_ASSIGN1_LDO1_SHIFT 0 1522 1523/* Bit definitions for ENABLE2_LDO_ASSIGN2 */ 1524#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB 0x04 1525#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOUSB_SHIFT 2 1526#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN 0x02 1527#define PALMAS_ENABLE2_LDO_ASSIGN2_LDOLN_SHIFT 1 1528#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9 0x01 1529#define PALMAS_ENABLE2_LDO_ASSIGN2_LDO9_SHIFT 0 1530 1531/* Bit definitions for REGEN3_CTRL */ 1532#define PALMAS_REGEN3_CTRL_STATUS 0x10 1533#define PALMAS_REGEN3_CTRL_STATUS_SHIFT 4 1534#define PALMAS_REGEN3_CTRL_MODE_SLEEP 0x04 1535#define PALMAS_REGEN3_CTRL_MODE_SLEEP_SHIFT 2 1536#define PALMAS_REGEN3_CTRL_MODE_ACTIVE 0x01 1537#define PALMAS_REGEN3_CTRL_MODE_ACTIVE_SHIFT 0 1538 1539/* Registers for function PAD_CONTROL */ 1540#define PALMAS_PU_PD_INPUT_CTRL1 0x0 1541#define PALMAS_PU_PD_INPUT_CTRL2 0x1 1542#define PALMAS_PU_PD_INPUT_CTRL3 0x2 1543#define PALMAS_OD_OUTPUT_CTRL 0x4 1544#define PALMAS_POLARITY_CTRL 0x5 1545#define PALMAS_PRIMARY_SECONDARY_PAD1 0x6 1546#define PALMAS_PRIMARY_SECONDARY_PAD2 0x7 1547#define PALMAS_I2C_SPI 0x8 1548#define PALMAS_PU_PD_INPUT_CTRL4 0x9 1549#define PALMAS_PRIMARY_SECONDARY_PAD3 0xA 1550 1551/* Bit definitions for PU_PD_INPUT_CTRL1 */ 1552#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD 0x40 1553#define PALMAS_PU_PD_INPUT_CTRL1_RESET_IN_PD_SHIFT 6 1554#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU 0x20 1555#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PU_SHIFT 5 1556#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD 0x10 1557#define PALMAS_PU_PD_INPUT_CTRL1_GPADC_START_PD_SHIFT 4 1558#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD 0x04 1559#define PALMAS_PU_PD_INPUT_CTRL1_PWRDOWN_PD_SHIFT 2 1560#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU 0x02 1561#define PALMAS_PU_PD_INPUT_CTRL1_NRESWARM_PU_SHIFT 1 1562 1563/* Bit definitions for PU_PD_INPUT_CTRL2 */ 1564#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU 0x20 1565#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PU_SHIFT 5 1566#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD 0x10 1567#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE2_PD_SHIFT 4 1568#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU 0x08 1569#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PU_SHIFT 3 1570#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD 0x04 1571#define PALMAS_PU_PD_INPUT_CTRL2_ENABLE1_PD_SHIFT 2 1572#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU 0x02 1573#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PU_SHIFT 1 1574#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD 0x01 1575#define PALMAS_PU_PD_INPUT_CTRL2_NSLEEP_PD_SHIFT 0 1576 1577/* Bit definitions for PU_PD_INPUT_CTRL3 */ 1578#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD 0x40 1579#define PALMAS_PU_PD_INPUT_CTRL3_ACOK_PD_SHIFT 6 1580#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD 0x10 1581#define PALMAS_PU_PD_INPUT_CTRL3_CHRG_DET_N_PD_SHIFT 4 1582#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD 0x04 1583#define PALMAS_PU_PD_INPUT_CTRL3_POWERHOLD_PD_SHIFT 2 1584#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD 0x01 1585#define PALMAS_PU_PD_INPUT_CTRL3_MSECURE_PD_SHIFT 0 1586 1587/* Bit definitions for OD_OUTPUT_CTRL */ 1588#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD 0x80 1589#define PALMAS_OD_OUTPUT_CTRL_PWM_2_OD_SHIFT 7 1590#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD 0x40 1591#define PALMAS_OD_OUTPUT_CTRL_VBUSDET_OD_SHIFT 6 1592#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD 0x20 1593#define PALMAS_OD_OUTPUT_CTRL_PWM_1_OD_SHIFT 5 1594#define PALMAS_OD_OUTPUT_CTRL_INT_OD 0x08 1595#define PALMAS_OD_OUTPUT_CTRL_INT_OD_SHIFT 3 1596 1597/* Bit definitions for POLARITY_CTRL */ 1598#define PALMAS_POLARITY_CTRL_INT_POLARITY 0x80 1599#define PALMAS_POLARITY_CTRL_INT_POLARITY_SHIFT 7 1600#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY 0x40 1601#define PALMAS_POLARITY_CTRL_ENABLE2_POLARITY_SHIFT 6 1602#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY 0x20 1603#define PALMAS_POLARITY_CTRL_ENABLE1_POLARITY_SHIFT 5 1604#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY 0x10 1605#define PALMAS_POLARITY_CTRL_NSLEEP_POLARITY_SHIFT 4 1606#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY 0x08 1607#define PALMAS_POLARITY_CTRL_RESET_IN_POLARITY_SHIFT 3 1608#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY 0x04 1609#define PALMAS_POLARITY_CTRL_GPIO_3_CHRG_DET_N_POLARITY_SHIFT 2 1610#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY 0x02 1611#define PALMAS_POLARITY_CTRL_POWERGOOD_USB_PSEL_POLARITY_SHIFT 1 1612#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY 0x01 1613#define PALMAS_POLARITY_CTRL_PWRDOWN_POLARITY_SHIFT 0 1614 1615/* Bit definitions for PRIMARY_SECONDARY_PAD1 */ 1616#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3 0x80 1617#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_3_SHIFT 7 1618#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_MASK 0x60 1619#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_2_SHIFT 5 1620#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_MASK 0x18 1621#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_1_SHIFT 3 1622#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0 0x04 1623#define PALMAS_PRIMARY_SECONDARY_PAD1_GPIO_0_SHIFT 2 1624#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC 0x02 1625#define PALMAS_PRIMARY_SECONDARY_PAD1_VAC_SHIFT 1 1626#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD 0x01 1627#define PALMAS_PRIMARY_SECONDARY_PAD1_POWERGOOD_SHIFT 0 1628 1629/* Bit definitions for PRIMARY_SECONDARY_PAD2 */ 1630#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_MASK 0x30 1631#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_7_SHIFT 4 1632#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6 0x08 1633#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_6_SHIFT 3 1634#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_MASK 0x06 1635#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_5_SHIFT 1 1636#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4 0x01 1637#define PALMAS_PRIMARY_SECONDARY_PAD2_GPIO_4_SHIFT 0 1638 1639/* Bit definitions for I2C_SPI */ 1640#define PALMAS_I2C_SPI_I2C2OTP_EN 0x80 1641#define PALMAS_I2C_SPI_I2C2OTP_EN_SHIFT 7 1642#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL 0x40 1643#define PALMAS_I2C_SPI_I2C2OTP_PAGESEL_SHIFT 6 1644#define PALMAS_I2C_SPI_ID_I2C2 0x20 1645#define PALMAS_I2C_SPI_ID_I2C2_SHIFT 5 1646#define PALMAS_I2C_SPI_I2C_SPI 0x10 1647#define PALMAS_I2C_SPI_I2C_SPI_SHIFT 4 1648#define PALMAS_I2C_SPI_ID_I2C1_MASK 0x0f 1649#define PALMAS_I2C_SPI_ID_I2C1_SHIFT 0 1650 1651/* Bit definitions for PU_PD_INPUT_CTRL4 */ 1652#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD 0x40 1653#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_DAT_PD_SHIFT 6 1654#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD 0x10 1655#define PALMAS_PU_PD_INPUT_CTRL4_DVFS2_CLK_PD_SHIFT 4 1656#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD 0x04 1657#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_DAT_PD_SHIFT 2 1658#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD 0x01 1659#define PALMAS_PU_PD_INPUT_CTRL4_DVFS1_CLK_PD_SHIFT 0 1660 1661/* Bit definitions for PRIMARY_SECONDARY_PAD3 */ 1662#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2 0x02 1663#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS2_SHIFT 1 1664#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1 0x01 1665#define PALMAS_PRIMARY_SECONDARY_PAD3_DVFS1_SHIFT 0 1666 1667/* Registers for function LED_PWM */ 1668#define PALMAS_LED_PERIOD_CTRL 0x0 1669#define PALMAS_LED_CTRL 0x1 1670#define PALMAS_PWM_CTRL1 0x2 1671#define PALMAS_PWM_CTRL2 0x3 1672 1673/* Bit definitions for LED_PERIOD_CTRL */ 1674#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_MASK 0x38 1675#define PALMAS_LED_PERIOD_CTRL_LED_2_PERIOD_SHIFT 3 1676#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_MASK 0x07 1677#define PALMAS_LED_PERIOD_CTRL_LED_1_PERIOD_SHIFT 0 1678 1679/* Bit definitions for LED_CTRL */ 1680#define PALMAS_LED_CTRL_LED_2_SEQ 0x20 1681#define PALMAS_LED_CTRL_LED_2_SEQ_SHIFT 5 1682#define PALMAS_LED_CTRL_LED_1_SEQ 0x10 1683#define PALMAS_LED_CTRL_LED_1_SEQ_SHIFT 4 1684#define PALMAS_LED_CTRL_LED_2_ON_TIME_MASK 0x0c 1685#define PALMAS_LED_CTRL_LED_2_ON_TIME_SHIFT 2 1686#define PALMAS_LED_CTRL_LED_1_ON_TIME_MASK 0x03 1687#define PALMAS_LED_CTRL_LED_1_ON_TIME_SHIFT 0 1688 1689/* Bit definitions for PWM_CTRL1 */ 1690#define PALMAS_PWM_CTRL1_PWM_FREQ_EN 0x02 1691#define PALMAS_PWM_CTRL1_PWM_FREQ_EN_SHIFT 1 1692#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL 0x01 1693#define PALMAS_PWM_CTRL1_PWM_FREQ_SEL_SHIFT 0 1694 1695/* Bit definitions for PWM_CTRL2 */ 1696#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_MASK 0xff 1697#define PALMAS_PWM_CTRL2_PWM_DUTY_SEL_SHIFT 0 1698 1699/* Registers for function INTERRUPT */ 1700#define PALMAS_INT1_STATUS 0x0 1701#define PALMAS_INT1_MASK 0x1 1702#define PALMAS_INT1_LINE_STATE 0x2 1703#define PALMAS_INT1_EDGE_DETECT1_RESERVED 0x3 1704#define PALMAS_INT1_EDGE_DETECT2_RESERVED 0x4 1705#define PALMAS_INT2_STATUS 0x5 1706#define PALMAS_INT2_MASK 0x6 1707#define PALMAS_INT2_LINE_STATE 0x7 1708#define PALMAS_INT2_EDGE_DETECT1_RESERVED 0x8 1709#define PALMAS_INT2_EDGE_DETECT2_RESERVED 0x9 1710#define PALMAS_INT3_STATUS 0xA 1711#define PALMAS_INT3_MASK 0xB 1712#define PALMAS_INT3_LINE_STATE 0xC 1713#define PALMAS_INT3_EDGE_DETECT1_RESERVED 0xD 1714#define PALMAS_INT3_EDGE_DETECT2_RESERVED 0xE 1715#define PALMAS_INT4_STATUS 0xF 1716#define PALMAS_INT4_MASK 0x10 1717#define PALMAS_INT4_LINE_STATE 0x11 1718#define PALMAS_INT4_EDGE_DETECT1 0x12 1719#define PALMAS_INT4_EDGE_DETECT2 0x13 1720#define PALMAS_INT_CTRL 0x14 1721 1722/* Bit definitions for INT1_STATUS */ 1723#define PALMAS_INT1_STATUS_VBAT_MON 0x80 1724#define PALMAS_INT1_STATUS_VBAT_MON_SHIFT 7 1725#define PALMAS_INT1_STATUS_VSYS_MON 0x40 1726#define PALMAS_INT1_STATUS_VSYS_MON_SHIFT 6 1727#define PALMAS_INT1_STATUS_HOTDIE 0x20 1728#define PALMAS_INT1_STATUS_HOTDIE_SHIFT 5 1729#define PALMAS_INT1_STATUS_PWRDOWN 0x10 1730#define PALMAS_INT1_STATUS_PWRDOWN_SHIFT 4 1731#define PALMAS_INT1_STATUS_RPWRON 0x08 1732#define PALMAS_INT1_STATUS_RPWRON_SHIFT 3 1733#define PALMAS_INT1_STATUS_LONG_PRESS_KEY 0x04 1734#define PALMAS_INT1_STATUS_LONG_PRESS_KEY_SHIFT 2 1735#define PALMAS_INT1_STATUS_PWRON 0x02 1736#define PALMAS_INT1_STATUS_PWRON_SHIFT 1 1737#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV 0x01 1738#define PALMAS_INT1_STATUS_CHARG_DET_N_VBUS_OVV_SHIFT 0 1739 1740/* Bit definitions for INT1_MASK */ 1741#define PALMAS_INT1_MASK_VBAT_MON 0x80 1742#define PALMAS_INT1_MASK_VBAT_MON_SHIFT 7 1743#define PALMAS_INT1_MASK_VSYS_MON 0x40 1744#define PALMAS_INT1_MASK_VSYS_MON_SHIFT 6 1745#define PALMAS_INT1_MASK_HOTDIE 0x20 1746#define PALMAS_INT1_MASK_HOTDIE_SHIFT 5 1747#define PALMAS_INT1_MASK_PWRDOWN 0x10 1748#define PALMAS_INT1_MASK_PWRDOWN_SHIFT 4 1749#define PALMAS_INT1_MASK_RPWRON 0x08 1750#define PALMAS_INT1_MASK_RPWRON_SHIFT 3 1751#define PALMAS_INT1_MASK_LONG_PRESS_KEY 0x04 1752#define PALMAS_INT1_MASK_LONG_PRESS_KEY_SHIFT 2 1753#define PALMAS_INT1_MASK_PWRON 0x02 1754#define PALMAS_INT1_MASK_PWRON_SHIFT 1 1755#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV 0x01 1756#define PALMAS_INT1_MASK_CHARG_DET_N_VBUS_OVV_SHIFT 0 1757 1758/* Bit definitions for INT1_LINE_STATE */ 1759#define PALMAS_INT1_LINE_STATE_VBAT_MON 0x80 1760#define PALMAS_INT1_LINE_STATE_VBAT_MON_SHIFT 7 1761#define PALMAS_INT1_LINE_STATE_VSYS_MON 0x40 1762#define PALMAS_INT1_LINE_STATE_VSYS_MON_SHIFT 6 1763#define PALMAS_INT1_LINE_STATE_HOTDIE 0x20 1764#define PALMAS_INT1_LINE_STATE_HOTDIE_SHIFT 5 1765#define PALMAS_INT1_LINE_STATE_PWRDOWN 0x10 1766#define PALMAS_INT1_LINE_STATE_PWRDOWN_SHIFT 4 1767#define PALMAS_INT1_LINE_STATE_RPWRON 0x08 1768#define PALMAS_INT1_LINE_STATE_RPWRON_SHIFT 3 1769#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY 0x04 1770#define PALMAS_INT1_LINE_STATE_LONG_PRESS_KEY_SHIFT 2 1771#define PALMAS_INT1_LINE_STATE_PWRON 0x02 1772#define PALMAS_INT1_LINE_STATE_PWRON_SHIFT 1 1773#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV 0x01 1774#define PALMAS_INT1_LINE_STATE_CHARG_DET_N_VBUS_OVV_SHIFT 0 1775 1776/* Bit definitions for INT2_STATUS */ 1777#define PALMAS_INT2_STATUS_VAC_ACOK 0x80 1778#define PALMAS_INT2_STATUS_VAC_ACOK_SHIFT 7 1779#define PALMAS_INT2_STATUS_SHORT 0x40 1780#define PALMAS_INT2_STATUS_SHORT_SHIFT 6 1781#define PALMAS_INT2_STATUS_FBI_BB 0x20 1782#define PALMAS_INT2_STATUS_FBI_BB_SHIFT 5 1783#define PALMAS_INT2_STATUS_RESET_IN 0x10 1784#define PALMAS_INT2_STATUS_RESET_IN_SHIFT 4 1785#define PALMAS_INT2_STATUS_BATREMOVAL 0x08 1786#define PALMAS_INT2_STATUS_BATREMOVAL_SHIFT 3 1787#define PALMAS_INT2_STATUS_WDT 0x04 1788#define PALMAS_INT2_STATUS_WDT_SHIFT 2 1789#define PALMAS_INT2_STATUS_RTC_TIMER 0x02 1790#define PALMAS_INT2_STATUS_RTC_TIMER_SHIFT 1 1791#define PALMAS_INT2_STATUS_RTC_ALARM 0x01 1792#define PALMAS_INT2_STATUS_RTC_ALARM_SHIFT 0 1793 1794/* Bit definitions for INT2_MASK */ 1795#define PALMAS_INT2_MASK_VAC_ACOK 0x80 1796#define PALMAS_INT2_MASK_VAC_ACOK_SHIFT 7 1797#define PALMAS_INT2_MASK_SHORT 0x40 1798#define PALMAS_INT2_MASK_SHORT_SHIFT 6 1799#define PALMAS_INT2_MASK_FBI_BB 0x20 1800#define PALMAS_INT2_MASK_FBI_BB_SHIFT 5 1801#define PALMAS_INT2_MASK_RESET_IN 0x10 1802#define PALMAS_INT2_MASK_RESET_IN_SHIFT 4 1803#define PALMAS_INT2_MASK_BATREMOVAL 0x08 1804#define PALMAS_INT2_MASK_BATREMOVAL_SHIFT 3 1805#define PALMAS_INT2_MASK_WDT 0x04 1806#define PALMAS_INT2_MASK_WDT_SHIFT 2 1807#define PALMAS_INT2_MASK_RTC_TIMER 0x02 1808#define PALMAS_INT2_MASK_RTC_TIMER_SHIFT 1 1809#define PALMAS_INT2_MASK_RTC_ALARM 0x01 1810#define PALMAS_INT2_MASK_RTC_ALARM_SHIFT 0 1811 1812/* Bit definitions for INT2_LINE_STATE */ 1813#define PALMAS_INT2_LINE_STATE_VAC_ACOK 0x80 1814#define PALMAS_INT2_LINE_STATE_VAC_ACOK_SHIFT 7 1815#define PALMAS_INT2_LINE_STATE_SHORT 0x40 1816#define PALMAS_INT2_LINE_STATE_SHORT_SHIFT 6 1817#define PALMAS_INT2_LINE_STATE_FBI_BB 0x20 1818#define PALMAS_INT2_LINE_STATE_FBI_BB_SHIFT 5 1819#define PALMAS_INT2_LINE_STATE_RESET_IN 0x10 1820#define PALMAS_INT2_LINE_STATE_RESET_IN_SHIFT 4 1821#define PALMAS_INT2_LINE_STATE_BATREMOVAL 0x08 1822#define PALMAS_INT2_LINE_STATE_BATREMOVAL_SHIFT 3 1823#define PALMAS_INT2_LINE_STATE_WDT 0x04 1824#define PALMAS_INT2_LINE_STATE_WDT_SHIFT 2 1825#define PALMAS_INT2_LINE_STATE_RTC_TIMER 0x02 1826#define PALMAS_INT2_LINE_STATE_RTC_TIMER_SHIFT 1 1827#define PALMAS_INT2_LINE_STATE_RTC_ALARM 0x01 1828#define PALMAS_INT2_LINE_STATE_RTC_ALARM_SHIFT 0 1829 1830/* Bit definitions for INT3_STATUS */ 1831#define PALMAS_INT3_STATUS_VBUS 0x80 1832#define PALMAS_INT3_STATUS_VBUS_SHIFT 7 1833#define PALMAS_INT3_STATUS_VBUS_OTG 0x40 1834#define PALMAS_INT3_STATUS_VBUS_OTG_SHIFT 6 1835#define PALMAS_INT3_STATUS_ID 0x20 1836#define PALMAS_INT3_STATUS_ID_SHIFT 5 1837#define PALMAS_INT3_STATUS_ID_OTG 0x10 1838#define PALMAS_INT3_STATUS_ID_OTG_SHIFT 4 1839#define PALMAS_INT3_STATUS_GPADC_EOC_RT 0x08 1840#define PALMAS_INT3_STATUS_GPADC_EOC_RT_SHIFT 3 1841#define PALMAS_INT3_STATUS_GPADC_EOC_SW 0x04 1842#define PALMAS_INT3_STATUS_GPADC_EOC_SW_SHIFT 2 1843#define PALMAS_INT3_STATUS_GPADC_AUTO_1 0x02 1844#define PALMAS_INT3_STATUS_GPADC_AUTO_1_SHIFT 1 1845#define PALMAS_INT3_STATUS_GPADC_AUTO_0 0x01 1846#define PALMAS_INT3_STATUS_GPADC_AUTO_0_SHIFT 0 1847 1848/* Bit definitions for INT3_MASK */ 1849#define PALMAS_INT3_MASK_VBUS 0x80 1850#define PALMAS_INT3_MASK_VBUS_SHIFT 7 1851#define PALMAS_INT3_MASK_VBUS_OTG 0x40 1852#define PALMAS_INT3_MASK_VBUS_OTG_SHIFT 6 1853#define PALMAS_INT3_MASK_ID 0x20 1854#define PALMAS_INT3_MASK_ID_SHIFT 5 1855#define PALMAS_INT3_MASK_ID_OTG 0x10 1856#define PALMAS_INT3_MASK_ID_OTG_SHIFT 4 1857#define PALMAS_INT3_MASK_GPADC_EOC_RT 0x08 1858#define PALMAS_INT3_MASK_GPADC_EOC_RT_SHIFT 3 1859#define PALMAS_INT3_MASK_GPADC_EOC_SW 0x04 1860#define PALMAS_INT3_MASK_GPADC_EOC_SW_SHIFT 2 1861#define PALMAS_INT3_MASK_GPADC_AUTO_1 0x02 1862#define PALMAS_INT3_MASK_GPADC_AUTO_1_SHIFT 1 1863#define PALMAS_INT3_MASK_GPADC_AUTO_0 0x01 1864#define PALMAS_INT3_MASK_GPADC_AUTO_0_SHIFT 0 1865 1866/* Bit definitions for INT3_LINE_STATE */ 1867#define PALMAS_INT3_LINE_STATE_VBUS 0x80 1868#define PALMAS_INT3_LINE_STATE_VBUS_SHIFT 7 1869#define PALMAS_INT3_LINE_STATE_VBUS_OTG 0x40 1870#define PALMAS_INT3_LINE_STATE_VBUS_OTG_SHIFT 6 1871#define PALMAS_INT3_LINE_STATE_ID 0x20 1872#define PALMAS_INT3_LINE_STATE_ID_SHIFT 5 1873#define PALMAS_INT3_LINE_STATE_ID_OTG 0x10 1874#define PALMAS_INT3_LINE_STATE_ID_OTG_SHIFT 4 1875#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT 0x08 1876#define PALMAS_INT3_LINE_STATE_GPADC_EOC_RT_SHIFT 3 1877#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW 0x04 1878#define PALMAS_INT3_LINE_STATE_GPADC_EOC_SW_SHIFT 2 1879#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1 0x02 1880#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_1_SHIFT 1 1881#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0 0x01 1882#define PALMAS_INT3_LINE_STATE_GPADC_AUTO_0_SHIFT 0 1883 1884/* Bit definitions for INT4_STATUS */ 1885#define PALMAS_INT4_STATUS_GPIO_7 0x80 1886#define PALMAS_INT4_STATUS_GPIO_7_SHIFT 7 1887#define PALMAS_INT4_STATUS_GPIO_6 0x40 1888#define PALMAS_INT4_STATUS_GPIO_6_SHIFT 6 1889#define PALMAS_INT4_STATUS_GPIO_5 0x20 1890#define PALMAS_INT4_STATUS_GPIO_5_SHIFT 5 1891#define PALMAS_INT4_STATUS_GPIO_4 0x10 1892#define PALMAS_INT4_STATUS_GPIO_4_SHIFT 4 1893#define PALMAS_INT4_STATUS_GPIO_3 0x08 1894#define PALMAS_INT4_STATUS_GPIO_3_SHIFT 3 1895#define PALMAS_INT4_STATUS_GPIO_2 0x04 1896#define PALMAS_INT4_STATUS_GPIO_2_SHIFT 2 1897#define PALMAS_INT4_STATUS_GPIO_1 0x02 1898#define PALMAS_INT4_STATUS_GPIO_1_SHIFT 1 1899#define PALMAS_INT4_STATUS_GPIO_0 0x01 1900#define PALMAS_INT4_STATUS_GPIO_0_SHIFT 0 1901 1902/* Bit definitions for INT4_MASK */ 1903#define PALMAS_INT4_MASK_GPIO_7 0x80 1904#define PALMAS_INT4_MASK_GPIO_7_SHIFT 7 1905#define PALMAS_INT4_MASK_GPIO_6 0x40 1906#define PALMAS_INT4_MASK_GPIO_6_SHIFT 6 1907#define PALMAS_INT4_MASK_GPIO_5 0x20 1908#define PALMAS_INT4_MASK_GPIO_5_SHIFT 5 1909#define PALMAS_INT4_MASK_GPIO_4 0x10 1910#define PALMAS_INT4_MASK_GPIO_4_SHIFT 4 1911#define PALMAS_INT4_MASK_GPIO_3 0x08 1912#define PALMAS_INT4_MASK_GPIO_3_SHIFT 3 1913#define PALMAS_INT4_MASK_GPIO_2 0x04 1914#define PALMAS_INT4_MASK_GPIO_2_SHIFT 2 1915#define PALMAS_INT4_MASK_GPIO_1 0x02 1916#define PALMAS_INT4_MASK_GPIO_1_SHIFT 1 1917#define PALMAS_INT4_MASK_GPIO_0 0x01 1918#define PALMAS_INT4_MASK_GPIO_0_SHIFT 0 1919 1920/* Bit definitions for INT4_LINE_STATE */ 1921#define PALMAS_INT4_LINE_STATE_GPIO_7 0x80 1922#define PALMAS_INT4_LINE_STATE_GPIO_7_SHIFT 7 1923#define PALMAS_INT4_LINE_STATE_GPIO_6 0x40 1924#define PALMAS_INT4_LINE_STATE_GPIO_6_SHIFT 6 1925#define PALMAS_INT4_LINE_STATE_GPIO_5 0x20 1926#define PALMAS_INT4_LINE_STATE_GPIO_5_SHIFT 5 1927#define PALMAS_INT4_LINE_STATE_GPIO_4 0x10 1928#define PALMAS_INT4_LINE_STATE_GPIO_4_SHIFT 4 1929#define PALMAS_INT4_LINE_STATE_GPIO_3 0x08 1930#define PALMAS_INT4_LINE_STATE_GPIO_3_SHIFT 3 1931#define PALMAS_INT4_LINE_STATE_GPIO_2 0x04 1932#define PALMAS_INT4_LINE_STATE_GPIO_2_SHIFT 2 1933#define PALMAS_INT4_LINE_STATE_GPIO_1 0x02 1934#define PALMAS_INT4_LINE_STATE_GPIO_1_SHIFT 1 1935#define PALMAS_INT4_LINE_STATE_GPIO_0 0x01 1936#define PALMAS_INT4_LINE_STATE_GPIO_0_SHIFT 0 1937 1938/* Bit definitions for INT4_EDGE_DETECT1 */ 1939#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING 0x80 1940#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_RISING_SHIFT 7 1941#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING 0x40 1942#define PALMAS_INT4_EDGE_DETECT1_GPIO_3_FALLING_SHIFT 6 1943#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING 0x20 1944#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_RISING_SHIFT 5 1945#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING 0x10 1946#define PALMAS_INT4_EDGE_DETECT1_GPIO_2_FALLING_SHIFT 4 1947#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING 0x08 1948#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_RISING_SHIFT 3 1949#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING 0x04 1950#define PALMAS_INT4_EDGE_DETECT1_GPIO_1_FALLING_SHIFT 2 1951#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING 0x02 1952#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_RISING_SHIFT 1 1953#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING 0x01 1954#define PALMAS_INT4_EDGE_DETECT1_GPIO_0_FALLING_SHIFT 0 1955 1956/* Bit definitions for INT4_EDGE_DETECT2 */ 1957#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING 0x80 1958#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_RISING_SHIFT 7 1959#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING 0x40 1960#define PALMAS_INT4_EDGE_DETECT2_GPIO_7_FALLING_SHIFT 6 1961#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING 0x20 1962#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_RISING_SHIFT 5 1963#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING 0x10 1964#define PALMAS_INT4_EDGE_DETECT2_GPIO_6_FALLING_SHIFT 4 1965#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING 0x08 1966#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_RISING_SHIFT 3 1967#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING 0x04 1968#define PALMAS_INT4_EDGE_DETECT2_GPIO_5_FALLING_SHIFT 2 1969#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING 0x02 1970#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_RISING_SHIFT 1 1971#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING 0x01 1972#define PALMAS_INT4_EDGE_DETECT2_GPIO_4_FALLING_SHIFT 0 1973 1974/* Bit definitions for INT_CTRL */ 1975#define PALMAS_INT_CTRL_INT_PENDING 0x04 1976#define PALMAS_INT_CTRL_INT_PENDING_SHIFT 2 1977#define PALMAS_INT_CTRL_INT_CLEAR 0x01 1978#define PALMAS_INT_CTRL_INT_CLEAR_SHIFT 0 1979 1980/* Registers for function USB_OTG */ 1981#define PALMAS_USB_WAKEUP 0x3 1982#define PALMAS_USB_VBUS_CTRL_SET 0x4 1983#define PALMAS_USB_VBUS_CTRL_CLR 0x5 1984#define PALMAS_USB_ID_CTRL_SET 0x6 1985#define PALMAS_USB_ID_CTRL_CLEAR 0x7 1986#define PALMAS_USB_VBUS_INT_SRC 0x8 1987#define PALMAS_USB_VBUS_INT_LATCH_SET 0x9 1988#define PALMAS_USB_VBUS_INT_LATCH_CLR 0xA 1989#define PALMAS_USB_VBUS_INT_EN_LO_SET 0xB 1990#define PALMAS_USB_VBUS_INT_EN_LO_CLR 0xC 1991#define PALMAS_USB_VBUS_INT_EN_HI_SET 0xD 1992#define PALMAS_USB_VBUS_INT_EN_HI_CLR 0xE 1993#define PALMAS_USB_ID_INT_SRC 0xF 1994#define PALMAS_USB_ID_INT_LATCH_SET 0x10 1995#define PALMAS_USB_ID_INT_LATCH_CLR 0x11 1996#define PALMAS_USB_ID_INT_EN_LO_SET 0x12 1997#define PALMAS_USB_ID_INT_EN_LO_CLR 0x13 1998#define PALMAS_USB_ID_INT_EN_HI_SET 0x14 1999#define PALMAS_USB_ID_INT_EN_HI_CLR 0x15 2000#define PALMAS_USB_OTG_ADP_CTRL 0x16 2001#define PALMAS_USB_OTG_ADP_HIGH 0x17 2002#define PALMAS_USB_OTG_ADP_LOW 0x18 2003#define PALMAS_USB_OTG_ADP_RISE 0x19 2004#define PALMAS_USB_OTG_REVISION 0x1A 2005 2006/* Bit definitions for USB_WAKEUP */ 2007#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP 0x01 2008#define PALMAS_USB_WAKEUP_ID_WK_UP_COMP_SHIFT 0 2009 2010/* Bit definitions for USB_VBUS_CTRL_SET */ 2011#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS 0x80 2012#define PALMAS_USB_VBUS_CTRL_SET_VBUS_CHRG_VSYS_SHIFT 7 2013#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG 0x20 2014#define PALMAS_USB_VBUS_CTRL_SET_VBUS_DISCHRG_SHIFT 5 2015#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC 0x10 2016#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SRC_SHIFT 4 2017#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK 0x08 2018#define PALMAS_USB_VBUS_CTRL_SET_VBUS_IADP_SINK_SHIFT 3 2019#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP 0x04 2020#define PALMAS_USB_VBUS_CTRL_SET_VBUS_ACT_COMP_SHIFT 2 2021 2022/* Bit definitions for USB_VBUS_CTRL_CLR */ 2023#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS 0x80 2024#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_CHRG_VSYS_SHIFT 7 2025#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG 0x20 2026#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_DISCHRG_SHIFT 5 2027#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC 0x10 2028#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SRC_SHIFT 4 2029#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK 0x08 2030#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_IADP_SINK_SHIFT 3 2031#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP 0x04 2032#define PALMAS_USB_VBUS_CTRL_CLR_VBUS_ACT_COMP_SHIFT 2 2033 2034/* Bit definitions for USB_ID_CTRL_SET */ 2035#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K 0x80 2036#define PALMAS_USB_ID_CTRL_SET_ID_PU_220K_SHIFT 7 2037#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K 0x40 2038#define PALMAS_USB_ID_CTRL_SET_ID_PU_100K_SHIFT 6 2039#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV 0x20 2040#define PALMAS_USB_ID_CTRL_SET_ID_GND_DRV_SHIFT 5 2041#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U 0x10 2042#define PALMAS_USB_ID_CTRL_SET_ID_SRC_16U_SHIFT 4 2043#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U 0x08 2044#define PALMAS_USB_ID_CTRL_SET_ID_SRC_5U_SHIFT 3 2045#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP 0x04 2046#define PALMAS_USB_ID_CTRL_SET_ID_ACT_COMP_SHIFT 2 2047 2048/* Bit definitions for USB_ID_CTRL_CLEAR */ 2049#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K 0x80 2050#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_220K_SHIFT 7 2051#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K 0x40 2052#define PALMAS_USB_ID_CTRL_CLEAR_ID_PU_100K_SHIFT 6 2053#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV 0x20 2054#define PALMAS_USB_ID_CTRL_CLEAR_ID_GND_DRV_SHIFT 5 2055#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U 0x10 2056#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_16U_SHIFT 4 2057#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U 0x08 2058#define PALMAS_USB_ID_CTRL_CLEAR_ID_SRC_5U_SHIFT 3 2059#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP 0x04 2060#define PALMAS_USB_ID_CTRL_CLEAR_ID_ACT_COMP_SHIFT 2 2061 2062/* Bit definitions for USB_VBUS_INT_SRC */ 2063#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD 0x80 2064#define PALMAS_USB_VBUS_INT_SRC_VOTG_SESS_VLD_SHIFT 7 2065#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB 0x40 2066#define PALMAS_USB_VBUS_INT_SRC_VADP_PRB_SHIFT 6 2067#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS 0x20 2068#define PALMAS_USB_VBUS_INT_SRC_VADP_SNS_SHIFT 5 2069#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD 0x08 2070#define PALMAS_USB_VBUS_INT_SRC_VA_VBUS_VLD_SHIFT 3 2071#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD 0x04 2072#define PALMAS_USB_VBUS_INT_SRC_VA_SESS_VLD_SHIFT 2 2073#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD 0x02 2074#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_VLD_SHIFT 1 2075#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END 0x01 2076#define PALMAS_USB_VBUS_INT_SRC_VB_SESS_END_SHIFT 0 2077 2078/* Bit definitions for USB_VBUS_INT_LATCH_SET */ 2079#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD 0x80 2080#define PALMAS_USB_VBUS_INT_LATCH_SET_VOTG_SESS_VLD_SHIFT 7 2081#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB 0x40 2082#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_PRB_SHIFT 6 2083#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS 0x20 2084#define PALMAS_USB_VBUS_INT_LATCH_SET_VADP_SNS_SHIFT 5 2085#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP 0x10 2086#define PALMAS_USB_VBUS_INT_LATCH_SET_ADP_SHIFT 4 2087#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD 0x08 2088#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_VBUS_VLD_SHIFT 3 2089#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD 0x04 2090#define PALMAS_USB_VBUS_INT_LATCH_SET_VA_SESS_VLD_SHIFT 2 2091#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD 0x02 2092#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_VLD_SHIFT 1 2093#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END 0x01 2094#define PALMAS_USB_VBUS_INT_LATCH_SET_VB_SESS_END_SHIFT 0 2095 2096/* Bit definitions for USB_VBUS_INT_LATCH_CLR */ 2097#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD 0x80 2098#define PALMAS_USB_VBUS_INT_LATCH_CLR_VOTG_SESS_VLD_SHIFT 7 2099#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB 0x40 2100#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_PRB_SHIFT 6 2101#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS 0x20 2102#define PALMAS_USB_VBUS_INT_LATCH_CLR_VADP_SNS_SHIFT 5 2103#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP 0x10 2104#define PALMAS_USB_VBUS_INT_LATCH_CLR_ADP_SHIFT 4 2105#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD 0x08 2106#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_VBUS_VLD_SHIFT 3 2107#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD 0x04 2108#define PALMAS_USB_VBUS_INT_LATCH_CLR_VA_SESS_VLD_SHIFT 2 2109#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD 0x02 2110#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_VLD_SHIFT 1 2111#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END 0x01 2112#define PALMAS_USB_VBUS_INT_LATCH_CLR_VB_SESS_END_SHIFT 0 2113 2114/* Bit definitions for USB_VBUS_INT_EN_LO_SET */ 2115#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD 0x80 2116#define PALMAS_USB_VBUS_INT_EN_LO_SET_VOTG_SESS_VLD_SHIFT 7 2117#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB 0x40 2118#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_PRB_SHIFT 6 2119#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS 0x20 2120#define PALMAS_USB_VBUS_INT_EN_LO_SET_VADP_SNS_SHIFT 5 2121#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD 0x08 2122#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_VBUS_VLD_SHIFT 3 2123#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD 0x04 2124#define PALMAS_USB_VBUS_INT_EN_LO_SET_VA_SESS_VLD_SHIFT 2 2125#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD 0x02 2126#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_VLD_SHIFT 1 2127#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END 0x01 2128#define PALMAS_USB_VBUS_INT_EN_LO_SET_VB_SESS_END_SHIFT 0 2129 2130/* Bit definitions for USB_VBUS_INT_EN_LO_CLR */ 2131#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD 0x80 2132#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VOTG_SESS_VLD_SHIFT 7 2133#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB 0x40 2134#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_PRB_SHIFT 6 2135#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS 0x20 2136#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VADP_SNS_SHIFT 5 2137#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD 0x08 2138#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_VBUS_VLD_SHIFT 3 2139#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD 0x04 2140#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VA_SESS_VLD_SHIFT 2 2141#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD 0x02 2142#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_VLD_SHIFT 1 2143#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END 0x01 2144#define PALMAS_USB_VBUS_INT_EN_LO_CLR_VB_SESS_END_SHIFT 0 2145 2146/* Bit definitions for USB_VBUS_INT_EN_HI_SET */ 2147#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD 0x80 2148#define PALMAS_USB_VBUS_INT_EN_HI_SET_VOTG_SESS_VLD_SHIFT 7 2149#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB 0x40 2150#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_PRB_SHIFT 6 2151#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS 0x20 2152#define PALMAS_USB_VBUS_INT_EN_HI_SET_VADP_SNS_SHIFT 5 2153#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP 0x10 2154#define PALMAS_USB_VBUS_INT_EN_HI_SET_ADP_SHIFT 4 2155#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD 0x08 2156#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_VBUS_VLD_SHIFT 3 2157#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD 0x04 2158#define PALMAS_USB_VBUS_INT_EN_HI_SET_VA_SESS_VLD_SHIFT 2 2159#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD 0x02 2160#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_VLD_SHIFT 1 2161#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END 0x01 2162#define PALMAS_USB_VBUS_INT_EN_HI_SET_VB_SESS_END_SHIFT 0 2163 2164/* Bit definitions for USB_VBUS_INT_EN_HI_CLR */ 2165#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD 0x80 2166#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VOTG_SESS_VLD_SHIFT 7 2167#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB 0x40 2168#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_PRB_SHIFT 6 2169#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS 0x20 2170#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VADP_SNS_SHIFT 5 2171#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP 0x10 2172#define PALMAS_USB_VBUS_INT_EN_HI_CLR_ADP_SHIFT 4 2173#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD 0x08 2174#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_VBUS_VLD_SHIFT 3 2175#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD 0x04 2176#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VA_SESS_VLD_SHIFT 2 2177#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD 0x02 2178#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_VLD_SHIFT 1 2179#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END 0x01 2180#define PALMAS_USB_VBUS_INT_EN_HI_CLR_VB_SESS_END_SHIFT 0 2181 2182/* Bit definitions for USB_ID_INT_SRC */ 2183#define PALMAS_USB_ID_INT_SRC_ID_FLOAT 0x10 2184#define PALMAS_USB_ID_INT_SRC_ID_FLOAT_SHIFT 4 2185#define PALMAS_USB_ID_INT_SRC_ID_A 0x08 2186#define PALMAS_USB_ID_INT_SRC_ID_A_SHIFT 3 2187#define PALMAS_USB_ID_INT_SRC_ID_B 0x04 2188#define PALMAS_USB_ID_INT_SRC_ID_B_SHIFT 2 2189#define PALMAS_USB_ID_INT_SRC_ID_C 0x02 2190#define PALMAS_USB_ID_INT_SRC_ID_C_SHIFT 1 2191#define PALMAS_USB_ID_INT_SRC_ID_GND 0x01 2192#define PALMAS_USB_ID_INT_SRC_ID_GND_SHIFT 0 2193 2194/* Bit definitions for USB_ID_INT_LATCH_SET */ 2195#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT 0x10 2196#define PALMAS_USB_ID_INT_LATCH_SET_ID_FLOAT_SHIFT 4 2197#define PALMAS_USB_ID_INT_LATCH_SET_ID_A 0x08 2198#define PALMAS_USB_ID_INT_LATCH_SET_ID_A_SHIFT 3 2199#define PALMAS_USB_ID_INT_LATCH_SET_ID_B 0x04 2200#define PALMAS_USB_ID_INT_LATCH_SET_ID_B_SHIFT 2 2201#define PALMAS_USB_ID_INT_LATCH_SET_ID_C 0x02 2202#define PALMAS_USB_ID_INT_LATCH_SET_ID_C_SHIFT 1 2203#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND 0x01 2204#define PALMAS_USB_ID_INT_LATCH_SET_ID_GND_SHIFT 0 2205 2206/* Bit definitions for USB_ID_INT_LATCH_CLR */ 2207#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT 0x10 2208#define PALMAS_USB_ID_INT_LATCH_CLR_ID_FLOAT_SHIFT 4 2209#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A 0x08 2210#define PALMAS_USB_ID_INT_LATCH_CLR_ID_A_SHIFT 3 2211#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B 0x04 2212#define PALMAS_USB_ID_INT_LATCH_CLR_ID_B_SHIFT 2 2213#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C 0x02 2214#define PALMAS_USB_ID_INT_LATCH_CLR_ID_C_SHIFT 1 2215#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND 0x01 2216#define PALMAS_USB_ID_INT_LATCH_CLR_ID_GND_SHIFT 0 2217 2218/* Bit definitions for USB_ID_INT_EN_LO_SET */ 2219#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT 0x10 2220#define PALMAS_USB_ID_INT_EN_LO_SET_ID_FLOAT_SHIFT 4 2221#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A 0x08 2222#define PALMAS_USB_ID_INT_EN_LO_SET_ID_A_SHIFT 3 2223#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B 0x04 2224#define PALMAS_USB_ID_INT_EN_LO_SET_ID_B_SHIFT 2 2225#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C 0x02 2226#define PALMAS_USB_ID_INT_EN_LO_SET_ID_C_SHIFT 1 2227#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND 0x01 2228#define PALMAS_USB_ID_INT_EN_LO_SET_ID_GND_SHIFT 0 2229 2230/* Bit definitions for USB_ID_INT_EN_LO_CLR */ 2231#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT 0x10 2232#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_FLOAT_SHIFT 4 2233#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A 0x08 2234#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_A_SHIFT 3 2235#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B 0x04 2236#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_B_SHIFT 2 2237#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C 0x02 2238#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_C_SHIFT 1 2239#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND 0x01 2240#define PALMAS_USB_ID_INT_EN_LO_CLR_ID_GND_SHIFT 0 2241 2242/* Bit definitions for USB_ID_INT_EN_HI_SET */ 2243#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT 0x10 2244#define PALMAS_USB_ID_INT_EN_HI_SET_ID_FLOAT_SHIFT 4 2245#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A 0x08 2246#define PALMAS_USB_ID_INT_EN_HI_SET_ID_A_SHIFT 3 2247#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B 0x04 2248#define PALMAS_USB_ID_INT_EN_HI_SET_ID_B_SHIFT 2 2249#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C 0x02 2250#define PALMAS_USB_ID_INT_EN_HI_SET_ID_C_SHIFT 1 2251#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND 0x01 2252#define PALMAS_USB_ID_INT_EN_HI_SET_ID_GND_SHIFT 0 2253 2254/* Bit definitions for USB_ID_INT_EN_HI_CLR */ 2255#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT 0x10 2256#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_FLOAT_SHIFT 4 2257#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A 0x08 2258#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_A_SHIFT 3 2259#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B 0x04 2260#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_B_SHIFT 2 2261#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C 0x02 2262#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_C_SHIFT 1 2263#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND 0x01 2264#define PALMAS_USB_ID_INT_EN_HI_CLR_ID_GND_SHIFT 0 2265 2266/* Bit definitions for USB_OTG_ADP_CTRL */ 2267#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN 0x04 2268#define PALMAS_USB_OTG_ADP_CTRL_ADP_EN_SHIFT 2 2269#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_MASK 0x03 2270#define PALMAS_USB_OTG_ADP_CTRL_ADP_MODE_SHIFT 0 2271 2272/* Bit definitions for USB_OTG_ADP_HIGH */ 2273#define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_MASK 0xff 2274#define PALMAS_USB_OTG_ADP_HIGH_T_ADP_HIGH_SHIFT 0 2275 2276/* Bit definitions for USB_OTG_ADP_LOW */ 2277#define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_MASK 0xff 2278#define PALMAS_USB_OTG_ADP_LOW_T_ADP_LOW_SHIFT 0 2279 2280/* Bit definitions for USB_OTG_ADP_RISE */ 2281#define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_MASK 0xff 2282#define PALMAS_USB_OTG_ADP_RISE_T_ADP_RISE_SHIFT 0 2283 2284/* Bit definitions for USB_OTG_REVISION */ 2285#define PALMAS_USB_OTG_REVISION_OTG_REV 0x01 2286#define PALMAS_USB_OTG_REVISION_OTG_REV_SHIFT 0 2287 2288/* Registers for function VIBRATOR */ 2289#define PALMAS_VIBRA_CTRL 0x0 2290 2291/* Bit definitions for VIBRA_CTRL */ 2292#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_MASK 0x06 2293#define PALMAS_VIBRA_CTRL_PWM_DUTY_SEL_SHIFT 1 2294#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL 0x01 2295#define PALMAS_VIBRA_CTRL_PWM_FREQ_SEL_SHIFT 0 2296 2297/* Registers for function GPIO */ 2298#define PALMAS_GPIO_DATA_IN 0x0 2299#define PALMAS_GPIO_DATA_DIR 0x1 2300#define PALMAS_GPIO_DATA_OUT 0x2 2301#define PALMAS_GPIO_DEBOUNCE_EN 0x3 2302#define PALMAS_GPIO_CLEAR_DATA_OUT 0x4 2303#define PALMAS_GPIO_SET_DATA_OUT 0x5 2304#define PALMAS_PU_PD_GPIO_CTRL1 0x6 2305#define PALMAS_PU_PD_GPIO_CTRL2 0x7 2306#define PALMAS_OD_OUTPUT_GPIO_CTRL 0x8 2307 2308/* Bit definitions for GPIO_DATA_IN */ 2309#define PALMAS_GPIO_DATA_IN_GPIO_7_IN 0x80 2310#define PALMAS_GPIO_DATA_IN_GPIO_7_IN_SHIFT 7 2311#define PALMAS_GPIO_DATA_IN_GPIO_6_IN 0x40 2312#define PALMAS_GPIO_DATA_IN_GPIO_6_IN_SHIFT 6 2313#define PALMAS_GPIO_DATA_IN_GPIO_5_IN 0x20 2314#define PALMAS_GPIO_DATA_IN_GPIO_5_IN_SHIFT 5 2315#define PALMAS_GPIO_DATA_IN_GPIO_4_IN 0x10 2316#define PALMAS_GPIO_DATA_IN_GPIO_4_IN_SHIFT 4 2317#define PALMAS_GPIO_DATA_IN_GPIO_3_IN 0x08 2318#define PALMAS_GPIO_DATA_IN_GPIO_3_IN_SHIFT 3 2319#define PALMAS_GPIO_DATA_IN_GPIO_2_IN 0x04 2320#define PALMAS_GPIO_DATA_IN_GPIO_2_IN_SHIFT 2 2321#define PALMAS_GPIO_DATA_IN_GPIO_1_IN 0x02 2322#define PALMAS_GPIO_DATA_IN_GPIO_1_IN_SHIFT 1 2323#define PALMAS_GPIO_DATA_IN_GPIO_0_IN 0x01 2324#define PALMAS_GPIO_DATA_IN_GPIO_0_IN_SHIFT 0 2325 2326/* Bit definitions for GPIO_DATA_DIR */ 2327#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR 0x80 2328#define PALMAS_GPIO_DATA_DIR_GPIO_7_DIR_SHIFT 7 2329#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR 0x40 2330#define PALMAS_GPIO_DATA_DIR_GPIO_6_DIR_SHIFT 6 2331#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR 0x20 2332#define PALMAS_GPIO_DATA_DIR_GPIO_5_DIR_SHIFT 5 2333#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR 0x10 2334#define PALMAS_GPIO_DATA_DIR_GPIO_4_DIR_SHIFT 4 2335#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR 0x08 2336#define PALMAS_GPIO_DATA_DIR_GPIO_3_DIR_SHIFT 3 2337#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR 0x04 2338#define PALMAS_GPIO_DATA_DIR_GPIO_2_DIR_SHIFT 2 2339#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR 0x02 2340#define PALMAS_GPIO_DATA_DIR_GPIO_1_DIR_SHIFT 1 2341#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR 0x01 2342#define PALMAS_GPIO_DATA_DIR_GPIO_0_DIR_SHIFT 0 2343 2344/* Bit definitions for GPIO_DATA_OUT */ 2345#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT 0x80 2346#define PALMAS_GPIO_DATA_OUT_GPIO_7_OUT_SHIFT 7 2347#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT 0x40 2348#define PALMAS_GPIO_DATA_OUT_GPIO_6_OUT_SHIFT 6 2349#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT 0x20 2350#define PALMAS_GPIO_DATA_OUT_GPIO_5_OUT_SHIFT 5 2351#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT 0x10 2352#define PALMAS_GPIO_DATA_OUT_GPIO_4_OUT_SHIFT 4 2353#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT 0x08 2354#define PALMAS_GPIO_DATA_OUT_GPIO_3_OUT_SHIFT 3 2355#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT 0x04 2356#define PALMAS_GPIO_DATA_OUT_GPIO_2_OUT_SHIFT 2 2357#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT 0x02 2358#define PALMAS_GPIO_DATA_OUT_GPIO_1_OUT_SHIFT 1 2359#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT 0x01 2360#define PALMAS_GPIO_DATA_OUT_GPIO_0_OUT_SHIFT 0 2361 2362/* Bit definitions for GPIO_DEBOUNCE_EN */ 2363#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN 0x80 2364#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_7_DEBOUNCE_EN_SHIFT 7 2365#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN 0x40 2366#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_6_DEBOUNCE_EN_SHIFT 6 2367#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN 0x20 2368#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_5_DEBOUNCE_EN_SHIFT 5 2369#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN 0x10 2370#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_4_DEBOUNCE_EN_SHIFT 4 2371#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN 0x08 2372#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_3_DEBOUNCE_EN_SHIFT 3 2373#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN 0x04 2374#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_2_DEBOUNCE_EN_SHIFT 2 2375#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN 0x02 2376#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_1_DEBOUNCE_EN_SHIFT 1 2377#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN 0x01 2378#define PALMAS_GPIO_DEBOUNCE_EN_GPIO_0_DEBOUNCE_EN_SHIFT 0 2379 2380/* Bit definitions for GPIO_CLEAR_DATA_OUT */ 2381#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT 0x80 2382#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_7_CLEAR_DATA_OUT_SHIFT 7 2383#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT 0x40 2384#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_6_CLEAR_DATA_OUT_SHIFT 6 2385#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT 0x20 2386#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_5_CLEAR_DATA_OUT_SHIFT 5 2387#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT 0x10 2388#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_4_CLEAR_DATA_OUT_SHIFT 4 2389#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT 0x08 2390#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_3_CLEAR_DATA_OUT_SHIFT 3 2391#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT 0x04 2392#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_2_CLEAR_DATA_OUT_SHIFT 2 2393#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT 0x02 2394#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_1_CLEAR_DATA_OUT_SHIFT 1 2395#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT 0x01 2396#define PALMAS_GPIO_CLEAR_DATA_OUT_GPIO_0_CLEAR_DATA_OUT_SHIFT 0 2397 2398/* Bit definitions for GPIO_SET_DATA_OUT */ 2399#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT 0x80 2400#define PALMAS_GPIO_SET_DATA_OUT_GPIO_7_SET_DATA_OUT_SHIFT 7 2401#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT 0x40 2402#define PALMAS_GPIO_SET_DATA_OUT_GPIO_6_SET_DATA_OUT_SHIFT 6 2403#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT 0x20 2404#define PALMAS_GPIO_SET_DATA_OUT_GPIO_5_SET_DATA_OUT_SHIFT 5 2405#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT 0x10 2406#define PALMAS_GPIO_SET_DATA_OUT_GPIO_4_SET_DATA_OUT_SHIFT 4 2407#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT 0x08 2408#define PALMAS_GPIO_SET_DATA_OUT_GPIO_3_SET_DATA_OUT_SHIFT 3 2409#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT 0x04 2410#define PALMAS_GPIO_SET_DATA_OUT_GPIO_2_SET_DATA_OUT_SHIFT 2 2411#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT 0x02 2412#define PALMAS_GPIO_SET_DATA_OUT_GPIO_1_SET_DATA_OUT_SHIFT 1 2413#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT 0x01 2414#define PALMAS_GPIO_SET_DATA_OUT_GPIO_0_SET_DATA_OUT_SHIFT 0 2415 2416/* Bit definitions for PU_PD_GPIO_CTRL1 */ 2417#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD 0x40 2418#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_3_PD_SHIFT 6 2419#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU 0x20 2420#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PU_SHIFT 5 2421#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD 0x10 2422#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_2_PD_SHIFT 4 2423#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU 0x08 2424#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PU_SHIFT 3 2425#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD 0x04 2426#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_1_PD_SHIFT 2 2427#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD 0x01 2428#define PALMAS_PU_PD_GPIO_CTRL1_GPIO_0_PD_SHIFT 0 2429 2430/* Bit definitions for PU_PD_GPIO_CTRL2 */ 2431#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD 0x40 2432#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_7_PD_SHIFT 6 2433#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU 0x20 2434#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PU_SHIFT 5 2435#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD 0x10 2436#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_6_PD_SHIFT 4 2437#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU 0x08 2438#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PU_SHIFT 3 2439#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD 0x04 2440#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_5_PD_SHIFT 2 2441#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU 0x02 2442#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PU_SHIFT 1 2443#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD 0x01 2444#define PALMAS_PU_PD_GPIO_CTRL2_GPIO_4_PD_SHIFT 0 2445 2446/* Bit definitions for OD_OUTPUT_GPIO_CTRL */ 2447#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD 0x20 2448#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_5_OD_SHIFT 5 2449#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD 0x04 2450#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_2_OD_SHIFT 2 2451#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD 0x02 2452#define PALMAS_OD_OUTPUT_GPIO_CTRL_GPIO_1_OD_SHIFT 1 2453 2454/* Registers for function GPADC */ 2455#define PALMAS_GPADC_CTRL1 0x0 2456#define PALMAS_GPADC_CTRL2 0x1 2457#define PALMAS_GPADC_RT_CTRL 0x2 2458#define PALMAS_GPADC_AUTO_CTRL 0x3 2459#define PALMAS_GPADC_STATUS 0x4 2460#define PALMAS_GPADC_RT_SELECT 0x5 2461#define PALMAS_GPADC_RT_CONV0_LSB 0x6 2462#define PALMAS_GPADC_RT_CONV0_MSB 0x7 2463#define PALMAS_GPADC_AUTO_SELECT 0x8 2464#define PALMAS_GPADC_AUTO_CONV0_LSB 0x9 2465#define PALMAS_GPADC_AUTO_CONV0_MSB 0xA 2466#define PALMAS_GPADC_AUTO_CONV1_LSB 0xB 2467#define PALMAS_GPADC_AUTO_CONV1_MSB 0xC 2468#define PALMAS_GPADC_SW_SELECT 0xD 2469#define PALMAS_GPADC_SW_CONV0_LSB 0xE 2470#define PALMAS_GPADC_SW_CONV0_MSB 0xF 2471#define PALMAS_GPADC_THRES_CONV0_LSB 0x10 2472#define PALMAS_GPADC_THRES_CONV0_MSB 0x11 2473#define PALMAS_GPADC_THRES_CONV1_LSB 0x12 2474#define PALMAS_GPADC_THRES_CONV1_MSB 0x13 2475#define PALMAS_GPADC_SMPS_ILMONITOR_EN 0x14 2476#define PALMAS_GPADC_SMPS_VSEL_MONITORING 0x15 2477 2478/* Bit definitions for GPADC_CTRL1 */ 2479#define PALMAS_GPADC_CTRL1_RESERVED_MASK 0xc0 2480#define PALMAS_GPADC_CTRL1_RESERVED_SHIFT 6 2481#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_MASK 0x30 2482#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH3_SHIFT 4 2483#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_MASK 0x0c 2484#define PALMAS_GPADC_CTRL1_CURRENT_SRC_CH0_SHIFT 2 2485#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET 0x02 2486#define PALMAS_GPADC_CTRL1_BAT_REMOVAL_DET_SHIFT 1 2487#define PALMAS_GPADC_CTRL1_GPADC_FORCE 0x01 2488#define PALMAS_GPADC_CTRL1_GPADC_FORCE_SHIFT 0 2489 2490/* Bit definitions for GPADC_CTRL2 */ 2491#define PALMAS_GPADC_CTRL2_RESERVED_MASK 0x06 2492#define PALMAS_GPADC_CTRL2_RESERVED_SHIFT 1 2493 2494/* Bit definitions for GPADC_RT_CTRL */ 2495#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY 0x02 2496#define PALMAS_GPADC_RT_CTRL_EXTEND_DELAY_SHIFT 1 2497#define PALMAS_GPADC_RT_CTRL_START_POLARITY 0x01 2498#define PALMAS_GPADC_RT_CTRL_START_POLARITY_SHIFT 0 2499 2500/* Bit definitions for GPADC_AUTO_CTRL */ 2501#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1 0x80 2502#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV1_SHIFT 7 2503#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0 0x40 2504#define PALMAS_GPADC_AUTO_CTRL_SHUTDOWN_CONV0_SHIFT 6 2505#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN 0x20 2506#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV1_EN_SHIFT 5 2507#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN 0x10 2508#define PALMAS_GPADC_AUTO_CTRL_AUTO_CONV0_EN_SHIFT 4 2509#define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_MASK 0x0f 2510#define PALMAS_GPADC_AUTO_CTRL_COUNTER_CONV_SHIFT 0 2511 2512/* Bit definitions for GPADC_STATUS */ 2513#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE 0x10 2514#define PALMAS_GPADC_STATUS_GPADC_AVAILABLE_SHIFT 4 2515 2516/* Bit definitions for GPADC_RT_SELECT */ 2517#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN 0x80 2518#define PALMAS_GPADC_RT_SELECT_RT_CONV_EN_SHIFT 7 2519#define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_MASK 0x0f 2520#define PALMAS_GPADC_RT_SELECT_RT_CONV0_SEL_SHIFT 0 2521 2522/* Bit definitions for GPADC_RT_CONV0_LSB */ 2523#define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_MASK 0xff 2524#define PALMAS_GPADC_RT_CONV0_LSB_RT_CONV0_LSB_SHIFT 0 2525 2526/* Bit definitions for GPADC_RT_CONV0_MSB */ 2527#define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_MASK 0x0f 2528#define PALMAS_GPADC_RT_CONV0_MSB_RT_CONV0_MSB_SHIFT 0 2529 2530/* Bit definitions for GPADC_AUTO_SELECT */ 2531#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_MASK 0xf0 2532#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV1_SEL_SHIFT 4 2533#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_MASK 0x0f 2534#define PALMAS_GPADC_AUTO_SELECT_AUTO_CONV0_SEL_SHIFT 0 2535 2536/* Bit definitions for GPADC_AUTO_CONV0_LSB */ 2537#define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_MASK 0xff 2538#define PALMAS_GPADC_AUTO_CONV0_LSB_AUTO_CONV0_LSB_SHIFT 0 2539 2540/* Bit definitions for GPADC_AUTO_CONV0_MSB */ 2541#define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_MASK 0x0f 2542#define PALMAS_GPADC_AUTO_CONV0_MSB_AUTO_CONV0_MSB_SHIFT 0 2543 2544/* Bit definitions for GPADC_AUTO_CONV1_LSB */ 2545#define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_MASK 0xff 2546#define PALMAS_GPADC_AUTO_CONV1_LSB_AUTO_CONV1_LSB_SHIFT 0 2547 2548/* Bit definitions for GPADC_AUTO_CONV1_MSB */ 2549#define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_MASK 0x0f 2550#define PALMAS_GPADC_AUTO_CONV1_MSB_AUTO_CONV1_MSB_SHIFT 0 2551 2552/* Bit definitions for GPADC_SW_SELECT */ 2553#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN 0x80 2554#define PALMAS_GPADC_SW_SELECT_SW_CONV_EN_SHIFT 7 2555#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0 0x10 2556#define PALMAS_GPADC_SW_SELECT_SW_START_CONV0_SHIFT 4 2557#define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_MASK 0x0f 2558#define PALMAS_GPADC_SW_SELECT_SW_CONV0_SEL_SHIFT 0 2559 2560/* Bit definitions for GPADC_SW_CONV0_LSB */ 2561#define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_MASK 0xff 2562#define PALMAS_GPADC_SW_CONV0_LSB_SW_CONV0_LSB_SHIFT 0 2563 2564/* Bit definitions for GPADC_SW_CONV0_MSB */ 2565#define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_MASK 0x0f 2566#define PALMAS_GPADC_SW_CONV0_MSB_SW_CONV0_MSB_SHIFT 0 2567 2568/* Bit definitions for GPADC_THRES_CONV0_LSB */ 2569#define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_MASK 0xff 2570#define PALMAS_GPADC_THRES_CONV0_LSB_THRES_CONV0_LSB_SHIFT 0 2571 2572/* Bit definitions for GPADC_THRES_CONV0_MSB */ 2573#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL 0x80 2574#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_POL_SHIFT 7 2575#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_MASK 0x0f 2576#define PALMAS_GPADC_THRES_CONV0_MSB_THRES_CONV0_MSB_SHIFT 0 2577 2578/* Bit definitions for GPADC_THRES_CONV1_LSB */ 2579#define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_MASK 0xff 2580#define PALMAS_GPADC_THRES_CONV1_LSB_THRES_CONV1_LSB_SHIFT 0 2581 2582/* Bit definitions for GPADC_THRES_CONV1_MSB */ 2583#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL 0x80 2584#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_POL_SHIFT 7 2585#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_MASK 0x0f 2586#define PALMAS_GPADC_THRES_CONV1_MSB_THRES_CONV1_MSB_SHIFT 0 2587 2588/* Bit definitions for GPADC_SMPS_ILMONITOR_EN */ 2589#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN 0x20 2590#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_EN_SHIFT 5 2591#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT 0x10 2592#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_REXT_SHIFT 4 2593#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_MASK 0x0f 2594#define PALMAS_GPADC_SMPS_ILMONITOR_EN_SMPS_ILMON_SEL_SHIFT 0 2595 2596/* Bit definitions for GPADC_SMPS_VSEL_MONITORING */ 2597#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE 0x80 2598#define PALMAS_GPADC_SMPS_VSEL_MONITORING_ACTIVE_PHASE_SHIFT 7 2599#define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_MASK 0x7f 2600#define PALMAS_GPADC_SMPS_VSEL_MONITORING_SMPS_VSEL_MONITORING_SHIFT 0 2601 2602/* Registers for function GPADC */ 2603#define PALMAS_GPADC_TRIM1 0x0 2604#define PALMAS_GPADC_TRIM2 0x1 2605#define PALMAS_GPADC_TRIM3 0x2 2606#define PALMAS_GPADC_TRIM4 0x3 2607#define PALMAS_GPADC_TRIM5 0x4 2608#define PALMAS_GPADC_TRIM6 0x5 2609#define PALMAS_GPADC_TRIM7 0x6 2610#define PALMAS_GPADC_TRIM8 0x7 2611#define PALMAS_GPADC_TRIM9 0x8 2612#define PALMAS_GPADC_TRIM10 0x9 2613#define PALMAS_GPADC_TRIM11 0xA 2614#define PALMAS_GPADC_TRIM12 0xB 2615#define PALMAS_GPADC_TRIM13 0xC 2616#define PALMAS_GPADC_TRIM14 0xD 2617#define PALMAS_GPADC_TRIM15 0xE 2618#define PALMAS_GPADC_TRIM16 0xF 2619 2620#endif /* __LINUX_MFD_PALMAS_H */