forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpalmas.h
More file actions
2792 lines (2498 loc) · 108 KB
/
palmas.h
File metadata and controls
2792 lines (2498 loc) · 108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* TI Palmas
*
* Copyright 2011 Texas Instruments Inc.
*
* Author: Graeme Gregory <gg@slimlogic.co.uk>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
*/
#ifndef __LINUX_MFD_PALMAS_H
#define __LINUX_MFD_PALMAS_H
#include <linux/usb/otg.h>
#include <linux/leds.h>
#include <linux/regmap.h>
#include <linux/regulator/driver.h>
#define PALMAS_NUM_CLIENTS 3
struct palmas_pmic;
struct palmas_gpadc;
struct palmas_resource;
struct palmas_usb;
struct palmas {
struct device *dev;
struct i2c_client *i2c_clients[PALMAS_NUM_CLIENTS];
struct regmap *regmap[PALMAS_NUM_CLIENTS];
/* Stored chip id */
int id;
/* IRQ Data */
int irq;
u32 irq_mask;
struct mutex irq_lock;
struct regmap_irq_chip_data *irq_data;
/* Child Devices */
struct palmas_pmic *pmic;
struct palmas_gpadc *gpadc;
struct palmas_resource *resource;
struct palmas_usb *usb;
/* GPIO MUXing */
u8 gpio_muxed;
u8 led_muxed;
u8 pwm_muxed;
};
struct palmas_gpadc_platform_data {
/* Channel 3 current source is only enabled during conversion */
int ch3_current;
/* Channel 0 current source can be used for battery detection.
* If used for battery detection this will cause a permanent current
* consumption depending on current level set here.
*/
int ch0_current;
/* default BAT_REMOVAL_DAT setting on device probe */
int bat_removal;
/* Sets the START_POLARITY bit in the RT_CTRL register */
int start_polarity;
};
struct palmas_reg_init {
/* warm_rest controls the voltage levels after a warm reset
*
* 0: reload default values from OTP on warm reset
* 1: maintain voltage from VSEL on warm reset
*/
int warm_reset;
/* roof_floor controls whether the regulator uses the i2c style
* of DVS or uses the method where a GPIO or other control method is
* attached to the NSLEEP/ENABLE1/ENABLE2 pins
*
* For SMPS
*
* 0: i2c selection of voltage
* 1: pin selection of voltage.
*
* For LDO unused
*/
int roof_floor;
/* sleep_mode is the mode loaded to MODE_SLEEP bits as defined in
* the data sheet.
*
* For SMPS
*
* 0: Off
* 1: AUTO
* 2: ECO
* 3: Forced PWM
*
* For LDO
*
* 0: Off
* 1: On
*/
int mode_sleep;
/* tstep is the timestep loaded to the TSTEP register
*
* For SMPS
*
* 0: Jump (no slope control)
* 1: 10mV/us
* 2: 5mV/us
* 3: 2.5mV/us
*
* For LDO unused
*/
int tstep;
/* voltage_sel is the bitfield loaded onto the SMPSX_VOLTAGE
* register. Set this is the default voltage set in OTP needs
* to be overridden.
*/
u8 vsel;
};
enum palmas_regulators {
/* SMPS regulators */
PALMAS_REG_SMPS12,
PALMAS_REG_SMPS123,
PALMAS_REG_SMPS3,
PALMAS_REG_SMPS45,
PALMAS_REG_SMPS457,
PALMAS_REG_SMPS6,
PALMAS_REG_SMPS7,
PALMAS_REG_SMPS8,
PALMAS_REG_SMPS9,
PALMAS_REG_SMPS10,
/* LDO regulators */
PALMAS_REG_LDO1,
PALMAS_REG_LDO2,
PALMAS_REG_LDO3,
PALMAS_REG_LDO4,
PALMAS_REG_LDO5,
PALMAS_REG_LDO6,
PALMAS_REG_LDO7,
PALMAS_REG_LDO8,
PALMAS_REG_LDO9,
PALMAS_REG_LDOLN,
PALMAS_REG_LDOUSB,
/* Total number of regulators */
PALMAS_NUM_REGS,
};
struct palmas_pmic_platform_data {
/* An array of pointers to regulator init data indexed by regulator
* ID
*/
struct regulator_init_data *reg_data[PALMAS_NUM_REGS];
/* An array of pointers to structures containing sleep mode and DVS
* configuration for regulators indexed by ID
*/
struct palmas_reg_init *reg_init[PALMAS_NUM_REGS];
/* use LDO6 for vibrator control */
int ldo6_vibrator;
};
struct palmas_usb_platform_data {
/* Set this if platform wishes its own vbus control */
int no_control_vbus;
/* Do we enable the wakeup comparator on probe */
int wakeup;
};
struct palmas_resource_platform_data {
int regen1_mode_sleep;
int regen2_mode_sleep;
int sysen1_mode_sleep;
int sysen2_mode_sleep;
/* bitfield to be loaded to NSLEEP_RES_ASSIGN */
u8 nsleep_res;
/* bitfield to be loaded to NSLEEP_SMPS_ASSIGN */
u8 nsleep_smps;
/* bitfield to be loaded to NSLEEP_LDO_ASSIGN1 */
u8 nsleep_ldo1;
/* bitfield to be loaded to NSLEEP_LDO_ASSIGN2 */
u8 nsleep_ldo2;
/* bitfield to be loaded to ENABLE1_RES_ASSIGN */
u8 enable1_res;
/* bitfield to be loaded to ENABLE1_SMPS_ASSIGN */
u8 enable1_smps;
/* bitfield to be loaded to ENABLE1_LDO_ASSIGN1 */
u8 enable1_ldo1;
/* bitfield to be loaded to ENABLE1_LDO_ASSIGN2 */
u8 enable1_ldo2;
/* bitfield to be loaded to ENABLE2_RES_ASSIGN */
u8 enable2_res;
/* bitfield to be loaded to ENABLE2_SMPS_ASSIGN */
u8 enable2_smps;
/* bitfield to be loaded to ENABLE2_LDO_ASSIGN1 */
u8 enable2_ldo1;
/* bitfield to be loaded to ENABLE2_LDO_ASSIGN2 */
u8 enable2_ldo2;
};
struct palmas_clk_platform_data {
int clk32kg_mode_sleep;
int clk32kgaudio_mode_sleep;
};
struct palmas_platform_data {
int gpio_base;
/* bit value to be loaded to the POWER_CTRL register */
u8 power_ctrl;
/*
* boolean to select if we want to configure muxing here
* then the two value to load into the registers if true
*/
int mux_from_pdata;
u8 pad1, pad2;
struct palmas_pmic_platform_data *pmic_pdata;
struct palmas_gpadc_platform_data *gpadc_pdata;
struct palmas_usb_platform_data *usb_pdata;
struct palmas_resource_platform_data *resource_pdata;
struct palmas_clk_platform_data *clk_pdata;
};
struct palmas_gpadc_calibration {
s32 gain;
s32 gain_error;
s32 offset_error;
};
struct palmas_gpadc {
struct device *dev;
struct palmas *palmas;
int ch3_current;
int ch0_current;
int gpadc_force;
int bat_removal;
struct mutex reading_lock;
struct completion irq_complete;
int eoc_sw_irq;
struct palmas_gpadc_calibration *palmas_cal_tbl;
int conv0_channel;
int conv1_channel;
int rt_channel;
};
struct palmas_gpadc_result {
s32 raw_code;
s32 corrected_code;
s32 result;
};
#define PALMAS_MAX_CHANNELS 16
/* Define the palmas IRQ numbers */
enum palmas_irqs {
/* INT1 registers */
PALMAS_CHARG_DET_N_VBUS_OVV_IRQ,
PALMAS_PWRON_IRQ,
PALMAS_LONG_PRESS_KEY_IRQ,
PALMAS_RPWRON_IRQ,
PALMAS_PWRDOWN_IRQ,
PALMAS_HOTDIE_IRQ,
PALMAS_VSYS_MON_IRQ,
PALMAS_VBAT_MON_IRQ,
/* INT2 registers */
PALMAS_RTC_ALARM_IRQ,
PALMAS_RTC_TIMER_IRQ,
PALMAS_WDT_IRQ,
PALMAS_BATREMOVAL_IRQ,
PALMAS_RESET_IN_IRQ,
PALMAS_FBI_BB_IRQ,
PALMAS_SHORT_IRQ,
PALMAS_VAC_ACOK_IRQ,
/* INT3 registers */
PALMAS_GPADC_AUTO_0_IRQ,
PALMAS_GPADC_AUTO_1_IRQ,
PALMAS_GPADC_EOC_SW_IRQ,
PALMAS_GPADC_EOC_RT_IRQ,
PALMAS_ID_OTG_IRQ,
PALMAS_ID_IRQ,
PALMAS_VBUS_OTG_IRQ,
PALMAS_VBUS_IRQ,
/* INT4 registers */
PALMAS_GPIO_0_IRQ,
PALMAS_GPIO_1_IRQ,
PALMAS_GPIO_2_IRQ,
PALMAS_GPIO_3_IRQ,
PALMAS_GPIO_4_IRQ,
PALMAS_GPIO_5_IRQ,
PALMAS_GPIO_6_IRQ,
PALMAS_GPIO_7_IRQ,
/* Total Number IRQs */
PALMAS_NUM_IRQ,
};
struct palmas_pmic {
struct palmas *palmas;
struct device *dev;
struct regulator_desc desc[PALMAS_NUM_REGS];
struct regulator_dev *rdev[PALMAS_NUM_REGS];
struct mutex mutex;
int smps123;
int smps457;
int range[PALMAS_REG_SMPS10];
};
struct palmas_resource {
struct palmas *palmas;
struct device *dev;
};
struct palmas_usb {
struct palmas *palmas;
struct device *dev;
/* for vbus reporting with irqs disabled */
spinlock_t lock;
struct regulator *vbus_reg;
/* used to set vbus, in atomic path */
struct work_struct set_vbus_work;
int irq1;
int irq2;
int irq3;
int irq4;
int vbus_enable;
u8 linkstat;
};
#define comparator_to_palmas(x) container_of((x), struct palmas_usb, comparator)
enum usb_irq_events {
/* Wakeup events from INT3 */
PALMAS_USB_ID_WAKEPUP,
PALMAS_USB_VBUS_WAKEUP,
/* ID_OTG_EVENTS */
PALMAS_USB_ID_GND,
N_PALMAS_USB_ID_GND,
PALMAS_USB_ID_C,
N_PALMAS_USB_ID_C,
PALMAS_USB_ID_B,
N_PALMAS_USB_ID_B,
PALMAS_USB_ID_A,
N_PALMAS_USB_ID_A,
PALMAS_USB_ID_FLOAT,
N_PALMAS_USB_ID_FLOAT,
/* VBUS_OTG_EVENTS */
PALMAS_USB_VB_SESS_END,
N_PALMAS_USB_VB_SESS_END,
PALMAS_USB_VB_SESS_VLD,
N_PALMAS_USB_VB_SESS_VLD,
PALMAS_USB_VA_SESS_VLD,
N_PALMAS_USB_VA_SESS_VLD,
PALMAS_USB_VA_VBUS_VLD,
N_PALMAS_USB_VA_VBUS_VLD,
PALMAS_USB_VADP_SNS,
N_PALMAS_USB_VADP_SNS,
PALMAS_USB_VADP_PRB,
N_PALMAS_USB_VADP_PRB,
PALMAS_USB_VOTG_SESS_VLD,
N_PALMAS_USB_VOTG_SESS_VLD,
};
/* defines so we can store the mux settings */
#define PALMAS_GPIO_0_MUXED (1 << 0)
#define PALMAS_GPIO_1_MUXED (1 << 1)
#define PALMAS_GPIO_2_MUXED (1 << 2)
#define PALMAS_GPIO_3_MUXED (1 << 3)
#define PALMAS_GPIO_4_MUXED (1 << 4)
#define PALMAS_GPIO_5_MUXED (1 << 5)
#define PALMAS_GPIO_6_MUXED (1 << 6)
#define PALMAS_GPIO_7_MUXED (1 << 7)
#define PALMAS_LED1_MUXED (1 << 0)
#define PALMAS_LED2_MUXED (1 << 1)
#define PALMAS_PWM1_MUXED (1 << 0)
#define PALMAS_PWM2_MUXED (1 << 1)
/* helper macro to get correct slave number */
#define PALMAS_BASE_TO_SLAVE(x) ((x >> 8) - 1)
#define PALMAS_BASE_TO_REG(x, y) ((x & 0xff) + y)
/* Base addresses of IP blocks in Palmas */
#define PALMAS_SMPS_DVS_BASE 0x20
#define PALMAS_RTC_BASE 0x100
#define PALMAS_VALIDITY_BASE 0x118
#define PALMAS_SMPS_BASE 0x120
#define PALMAS_LDO_BASE 0x150
#define PALMAS_DVFS_BASE 0x180
#define PALMAS_PMU_CONTROL_BASE 0x1A0
#define PALMAS_RESOURCE_BASE 0x1D4
#define PALMAS_PU_PD_OD_BASE 0x1F4
#define PALMAS_LED_BASE 0x200
#define PALMAS_INTERRUPT_BASE 0x210
#define PALMAS_USB_OTG_BASE 0x250
#define PALMAS_VIBRATOR_BASE 0x270
#define PALMAS_GPIO_BASE 0x280
#define PALMAS_USB_BASE 0x290
#define PALMAS_GPADC_BASE 0x2C0
#define PALMAS_TRIM_GPADC_BASE 0x3CD
/* Registers for function RTC */
#define PALMAS_SECONDS_REG 0x0
#define PALMAS_MINUTES_REG 0x1
#define PALMAS_HOURS_REG 0x2
#define PALMAS_DAYS_REG 0x3
#define PALMAS_MONTHS_REG 0x4
#define PALMAS_YEARS_REG 0x5
#define PALMAS_WEEKS_REG 0x6
#define PALMAS_ALARM_SECONDS_REG 0x8
#define PALMAS_ALARM_MINUTES_REG 0x9
#define PALMAS_ALARM_HOURS_REG 0xA
#define PALMAS_ALARM_DAYS_REG 0xB
#define PALMAS_ALARM_MONTHS_REG 0xC
#define PALMAS_ALARM_YEARS_REG 0xD
#define PALMAS_RTC_CTRL_REG 0x10
#define PALMAS_RTC_STATUS_REG 0x11
#define PALMAS_RTC_INTERRUPTS_REG 0x12
#define PALMAS_RTC_COMP_LSB_REG 0x13
#define PALMAS_RTC_COMP_MSB_REG 0x14
#define PALMAS_RTC_RES_PROG_REG 0x15
#define PALMAS_RTC_RESET_STATUS_REG 0x16
/* Bit definitions for SECONDS_REG */
#define PALMAS_SECONDS_REG_SEC1_MASK 0x70
#define PALMAS_SECONDS_REG_SEC1_SHIFT 4
#define PALMAS_SECONDS_REG_SEC0_MASK 0x0f
#define PALMAS_SECONDS_REG_SEC0_SHIFT 0
/* Bit definitions for MINUTES_REG */
#define PALMAS_MINUTES_REG_MIN1_MASK 0x70
#define PALMAS_MINUTES_REG_MIN1_SHIFT 4
#define PALMAS_MINUTES_REG_MIN0_MASK 0x0f
#define PALMAS_MINUTES_REG_MIN0_SHIFT 0
/* Bit definitions for HOURS_REG */
#define PALMAS_HOURS_REG_PM_NAM 0x80
#define PALMAS_HOURS_REG_PM_NAM_SHIFT 7
#define PALMAS_HOURS_REG_HOUR1_MASK 0x30
#define PALMAS_HOURS_REG_HOUR1_SHIFT 4
#define PALMAS_HOURS_REG_HOUR0_MASK 0x0f
#define PALMAS_HOURS_REG_HOUR0_SHIFT 0
/* Bit definitions for DAYS_REG */
#define PALMAS_DAYS_REG_DAY1_MASK 0x30
#define PALMAS_DAYS_REG_DAY1_SHIFT 4
#define PALMAS_DAYS_REG_DAY0_MASK 0x0f
#define PALMAS_DAYS_REG_DAY0_SHIFT 0
/* Bit definitions for MONTHS_REG */
#define PALMAS_MONTHS_REG_MONTH1 0x10
#define PALMAS_MONTHS_REG_MONTH1_SHIFT 4
#define PALMAS_MONTHS_REG_MONTH0_MASK 0x0f
#define PALMAS_MONTHS_REG_MONTH0_SHIFT 0
/* Bit definitions for YEARS_REG */
#define PALMAS_YEARS_REG_YEAR1_MASK 0xf0
#define PALMAS_YEARS_REG_YEAR1_SHIFT 4
#define PALMAS_YEARS_REG_YEAR0_MASK 0x0f
#define PALMAS_YEARS_REG_YEAR0_SHIFT 0
/* Bit definitions for WEEKS_REG */
#define PALMAS_WEEKS_REG_WEEK_MASK 0x07
#define PALMAS_WEEKS_REG_WEEK_SHIFT 0
/* Bit definitions for ALARM_SECONDS_REG */
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_MASK 0x70
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC1_SHIFT 4
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_MASK 0x0f
#define PALMAS_ALARM_SECONDS_REG_ALARM_SEC0_SHIFT 0
/* Bit definitions for ALARM_MINUTES_REG */
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_MASK 0x70
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN1_SHIFT 4
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_MASK 0x0f
#define PALMAS_ALARM_MINUTES_REG_ALARM_MIN0_SHIFT 0
/* Bit definitions for ALARM_HOURS_REG */
#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM 0x80
#define PALMAS_ALARM_HOURS_REG_ALARM_PM_NAM_SHIFT 7
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_MASK 0x30
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR1_SHIFT 4
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_MASK 0x0f
#define PALMAS_ALARM_HOURS_REG_ALARM_HOUR0_SHIFT 0
/* Bit definitions for ALARM_DAYS_REG */
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_MASK 0x30
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY1_SHIFT 4
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_MASK 0x0f
#define PALMAS_ALARM_DAYS_REG_ALARM_DAY0_SHIFT 0
/* Bit definitions for ALARM_MONTHS_REG */
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1 0x10
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH1_SHIFT 4
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_MASK 0x0f
#define PALMAS_ALARM_MONTHS_REG_ALARM_MONTH0_SHIFT 0
/* Bit definitions for ALARM_YEARS_REG */
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_MASK 0xf0
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR1_SHIFT 4
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_MASK 0x0f
#define PALMAS_ALARM_YEARS_REG_ALARM_YEAR0_SHIFT 0
/* Bit definitions for RTC_CTRL_REG */
#define PALMAS_RTC_CTRL_REG_RTC_V_OPT 0x80
#define PALMAS_RTC_CTRL_REG_RTC_V_OPT_SHIFT 7
#define PALMAS_RTC_CTRL_REG_GET_TIME 0x40
#define PALMAS_RTC_CTRL_REG_GET_TIME_SHIFT 6
#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER 0x20
#define PALMAS_RTC_CTRL_REG_SET_32_COUNTER_SHIFT 5
#define PALMAS_RTC_CTRL_REG_TEST_MODE 0x10
#define PALMAS_RTC_CTRL_REG_TEST_MODE_SHIFT 4
#define PALMAS_RTC_CTRL_REG_MODE_12_24 0x08
#define PALMAS_RTC_CTRL_REG_MODE_12_24_SHIFT 3
#define PALMAS_RTC_CTRL_REG_AUTO_COMP 0x04
#define PALMAS_RTC_CTRL_REG_AUTO_COMP_SHIFT 2
#define PALMAS_RTC_CTRL_REG_ROUND_30S 0x02
#define PALMAS_RTC_CTRL_REG_ROUND_30S_SHIFT 1
#define PALMAS_RTC_CTRL_REG_STOP_RTC 0x01
#define PALMAS_RTC_CTRL_REG_STOP_RTC_SHIFT 0
/* Bit definitions for RTC_STATUS_REG */
#define PALMAS_RTC_STATUS_REG_POWER_UP 0x80
#define PALMAS_RTC_STATUS_REG_POWER_UP_SHIFT 7
#define PALMAS_RTC_STATUS_REG_ALARM 0x40
#define PALMAS_RTC_STATUS_REG_ALARM_SHIFT 6
#define PALMAS_RTC_STATUS_REG_EVENT_1D 0x20
#define PALMAS_RTC_STATUS_REG_EVENT_1D_SHIFT 5
#define PALMAS_RTC_STATUS_REG_EVENT_1H 0x10
#define PALMAS_RTC_STATUS_REG_EVENT_1H_SHIFT 4
#define PALMAS_RTC_STATUS_REG_EVENT_1M 0x08
#define PALMAS_RTC_STATUS_REG_EVENT_1M_SHIFT 3
#define PALMAS_RTC_STATUS_REG_EVENT_1S 0x04
#define PALMAS_RTC_STATUS_REG_EVENT_1S_SHIFT 2
#define PALMAS_RTC_STATUS_REG_RUN 0x02
#define PALMAS_RTC_STATUS_REG_RUN_SHIFT 1
/* Bit definitions for RTC_INTERRUPTS_REG */
#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN 0x10
#define PALMAS_RTC_INTERRUPTS_REG_IT_SLEEP_MASK_EN_SHIFT 4
#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM 0x08
#define PALMAS_RTC_INTERRUPTS_REG_IT_ALARM_SHIFT 3
#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER 0x04
#define PALMAS_RTC_INTERRUPTS_REG_IT_TIMER_SHIFT 2
#define PALMAS_RTC_INTERRUPTS_REG_EVERY_MASK 0x03
#define PALMAS_RTC_INTERRUPTS_REG_EVERY_SHIFT 0
/* Bit definitions for RTC_COMP_LSB_REG */
#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_MASK 0xff
#define PALMAS_RTC_COMP_LSB_REG_RTC_COMP_LSB_SHIFT 0
/* Bit definitions for RTC_COMP_MSB_REG */
#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_MASK 0xff
#define PALMAS_RTC_COMP_MSB_REG_RTC_COMP_MSB_SHIFT 0
/* Bit definitions for RTC_RES_PROG_REG */
#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_MASK 0x3f
#define PALMAS_RTC_RES_PROG_REG_SW_RES_PROG_SHIFT 0
/* Bit definitions for RTC_RESET_STATUS_REG */
#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS 0x01
#define PALMAS_RTC_RESET_STATUS_REG_RESET_STATUS_SHIFT 0
/* Registers for function BACKUP */
#define PALMAS_BACKUP0 0x0
#define PALMAS_BACKUP1 0x1
#define PALMAS_BACKUP2 0x2
#define PALMAS_BACKUP3 0x3
#define PALMAS_BACKUP4 0x4
#define PALMAS_BACKUP5 0x5
#define PALMAS_BACKUP6 0x6
#define PALMAS_BACKUP7 0x7
/* Bit definitions for BACKUP0 */
#define PALMAS_BACKUP0_BACKUP_MASK 0xff
#define PALMAS_BACKUP0_BACKUP_SHIFT 0
/* Bit definitions for BACKUP1 */
#define PALMAS_BACKUP1_BACKUP_MASK 0xff
#define PALMAS_BACKUP1_BACKUP_SHIFT 0
/* Bit definitions for BACKUP2 */
#define PALMAS_BACKUP2_BACKUP_MASK 0xff
#define PALMAS_BACKUP2_BACKUP_SHIFT 0
/* Bit definitions for BACKUP3 */
#define PALMAS_BACKUP3_BACKUP_MASK 0xff
#define PALMAS_BACKUP3_BACKUP_SHIFT 0
/* Bit definitions for BACKUP4 */
#define PALMAS_BACKUP4_BACKUP_MASK 0xff
#define PALMAS_BACKUP4_BACKUP_SHIFT 0
/* Bit definitions for BACKUP5 */
#define PALMAS_BACKUP5_BACKUP_MASK 0xff
#define PALMAS_BACKUP5_BACKUP_SHIFT 0
/* Bit definitions for BACKUP6 */
#define PALMAS_BACKUP6_BACKUP_MASK 0xff
#define PALMAS_BACKUP6_BACKUP_SHIFT 0
/* Bit definitions for BACKUP7 */
#define PALMAS_BACKUP7_BACKUP_MASK 0xff
#define PALMAS_BACKUP7_BACKUP_SHIFT 0
/* Registers for function SMPS */
#define PALMAS_SMPS12_CTRL 0x0
#define PALMAS_SMPS12_TSTEP 0x1
#define PALMAS_SMPS12_FORCE 0x2
#define PALMAS_SMPS12_VOLTAGE 0x3
#define PALMAS_SMPS3_CTRL 0x4
#define PALMAS_SMPS3_VOLTAGE 0x7
#define PALMAS_SMPS45_CTRL 0x8
#define PALMAS_SMPS45_TSTEP 0x9
#define PALMAS_SMPS45_FORCE 0xA
#define PALMAS_SMPS45_VOLTAGE 0xB
#define PALMAS_SMPS6_CTRL 0xC
#define PALMAS_SMPS6_TSTEP 0xD
#define PALMAS_SMPS6_FORCE 0xE
#define PALMAS_SMPS6_VOLTAGE 0xF
#define PALMAS_SMPS7_CTRL 0x10
#define PALMAS_SMPS7_VOLTAGE 0x13
#define PALMAS_SMPS8_CTRL 0x14
#define PALMAS_SMPS8_TSTEP 0x15
#define PALMAS_SMPS8_FORCE 0x16
#define PALMAS_SMPS8_VOLTAGE 0x17
#define PALMAS_SMPS9_CTRL 0x18
#define PALMAS_SMPS9_VOLTAGE 0x1B
#define PALMAS_SMPS10_CTRL 0x1C
#define PALMAS_SMPS10_STATUS 0x1F
#define PALMAS_SMPS_CTRL 0x24
#define PALMAS_SMPS_PD_CTRL 0x25
#define PALMAS_SMPS_DITHER_EN 0x26
#define PALMAS_SMPS_THERMAL_EN 0x27
#define PALMAS_SMPS_THERMAL_STATUS 0x28
#define PALMAS_SMPS_SHORT_STATUS 0x29
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN 0x2A
#define PALMAS_SMPS_POWERGOOD_MASK1 0x2B
#define PALMAS_SMPS_POWERGOOD_MASK2 0x2C
/* Bit definitions for SMPS12_CTRL */
#define PALMAS_SMPS12_CTRL_WR_S 0x80
#define PALMAS_SMPS12_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN 0x40
#define PALMAS_SMPS12_CTRL_ROOF_FLOOR_EN_SHIFT 6
#define PALMAS_SMPS12_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS12_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS12_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS12_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS12_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS12_TSTEP */
#define PALMAS_SMPS12_TSTEP_TSTEP_MASK 0x03
#define PALMAS_SMPS12_TSTEP_TSTEP_SHIFT 0
/* Bit definitions for SMPS12_FORCE */
#define PALMAS_SMPS12_FORCE_CMD 0x80
#define PALMAS_SMPS12_FORCE_CMD_SHIFT 7
#define PALMAS_SMPS12_FORCE_VSEL_MASK 0x7f
#define PALMAS_SMPS12_FORCE_VSEL_SHIFT 0
/* Bit definitions for SMPS12_VOLTAGE */
#define PALMAS_SMPS12_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS12_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS12_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS12_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS3_CTRL */
#define PALMAS_SMPS3_CTRL_WR_S 0x80
#define PALMAS_SMPS3_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS3_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS3_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS3_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS3_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS3_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS3_VOLTAGE */
#define PALMAS_SMPS3_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS3_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS3_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS3_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS45_CTRL */
#define PALMAS_SMPS45_CTRL_WR_S 0x80
#define PALMAS_SMPS45_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN 0x40
#define PALMAS_SMPS45_CTRL_ROOF_FLOOR_EN_SHIFT 6
#define PALMAS_SMPS45_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS45_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS45_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS45_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS45_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS45_TSTEP */
#define PALMAS_SMPS45_TSTEP_TSTEP_MASK 0x03
#define PALMAS_SMPS45_TSTEP_TSTEP_SHIFT 0
/* Bit definitions for SMPS45_FORCE */
#define PALMAS_SMPS45_FORCE_CMD 0x80
#define PALMAS_SMPS45_FORCE_CMD_SHIFT 7
#define PALMAS_SMPS45_FORCE_VSEL_MASK 0x7f
#define PALMAS_SMPS45_FORCE_VSEL_SHIFT 0
/* Bit definitions for SMPS45_VOLTAGE */
#define PALMAS_SMPS45_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS45_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS45_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS45_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS6_CTRL */
#define PALMAS_SMPS6_CTRL_WR_S 0x80
#define PALMAS_SMPS6_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN 0x40
#define PALMAS_SMPS6_CTRL_ROOF_FLOOR_EN_SHIFT 6
#define PALMAS_SMPS6_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS6_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS6_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS6_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS6_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS6_TSTEP */
#define PALMAS_SMPS6_TSTEP_TSTEP_MASK 0x03
#define PALMAS_SMPS6_TSTEP_TSTEP_SHIFT 0
/* Bit definitions for SMPS6_FORCE */
#define PALMAS_SMPS6_FORCE_CMD 0x80
#define PALMAS_SMPS6_FORCE_CMD_SHIFT 7
#define PALMAS_SMPS6_FORCE_VSEL_MASK 0x7f
#define PALMAS_SMPS6_FORCE_VSEL_SHIFT 0
/* Bit definitions for SMPS6_VOLTAGE */
#define PALMAS_SMPS6_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS6_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS6_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS6_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS7_CTRL */
#define PALMAS_SMPS7_CTRL_WR_S 0x80
#define PALMAS_SMPS7_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS7_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS7_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS7_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS7_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS7_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS7_VOLTAGE */
#define PALMAS_SMPS7_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS7_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS7_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS7_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS8_CTRL */
#define PALMAS_SMPS8_CTRL_WR_S 0x80
#define PALMAS_SMPS8_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN 0x40
#define PALMAS_SMPS8_CTRL_ROOF_FLOOR_EN_SHIFT 6
#define PALMAS_SMPS8_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS8_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS8_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS8_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS8_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS8_TSTEP */
#define PALMAS_SMPS8_TSTEP_TSTEP_MASK 0x03
#define PALMAS_SMPS8_TSTEP_TSTEP_SHIFT 0
/* Bit definitions for SMPS8_FORCE */
#define PALMAS_SMPS8_FORCE_CMD 0x80
#define PALMAS_SMPS8_FORCE_CMD_SHIFT 7
#define PALMAS_SMPS8_FORCE_VSEL_MASK 0x7f
#define PALMAS_SMPS8_FORCE_VSEL_SHIFT 0
/* Bit definitions for SMPS8_VOLTAGE */
#define PALMAS_SMPS8_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS8_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS8_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS8_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS9_CTRL */
#define PALMAS_SMPS9_CTRL_WR_S 0x80
#define PALMAS_SMPS9_CTRL_WR_S_SHIFT 7
#define PALMAS_SMPS9_CTRL_STATUS_MASK 0x30
#define PALMAS_SMPS9_CTRL_STATUS_SHIFT 4
#define PALMAS_SMPS9_CTRL_MODE_SLEEP_MASK 0x0c
#define PALMAS_SMPS9_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_MASK 0x03
#define PALMAS_SMPS9_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS9_VOLTAGE */
#define PALMAS_SMPS9_VOLTAGE_RANGE 0x80
#define PALMAS_SMPS9_VOLTAGE_RANGE_SHIFT 7
#define PALMAS_SMPS9_VOLTAGE_VSEL_MASK 0x7f
#define PALMAS_SMPS9_VOLTAGE_VSEL_SHIFT 0
/* Bit definitions for SMPS10_CTRL */
#define PALMAS_SMPS10_CTRL_MODE_SLEEP_MASK 0xf0
#define PALMAS_SMPS10_CTRL_MODE_SLEEP_SHIFT 4
#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_MASK 0x0f
#define PALMAS_SMPS10_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for SMPS10_STATUS */
#define PALMAS_SMPS10_STATUS_STATUS_MASK 0x0f
#define PALMAS_SMPS10_STATUS_STATUS_SHIFT 0
/* Bit definitions for SMPS_CTRL */
#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN 0x20
#define PALMAS_SMPS_CTRL_SMPS45_SMPS457_EN_SHIFT 5
#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN 0x10
#define PALMAS_SMPS_CTRL_SMPS12_SMPS123_EN_SHIFT 4
#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_MASK 0x0c
#define PALMAS_SMPS_CTRL_SMPS45_PHASE_CTRL_SHIFT 2
#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_MASK 0x03
#define PALMAS_SMPS_CTRL_SMPS123_PHASE_CTRL_SHIFT 0
/* Bit definitions for SMPS_PD_CTRL */
#define PALMAS_SMPS_PD_CTRL_SMPS9 0x40
#define PALMAS_SMPS_PD_CTRL_SMPS9_SHIFT 6
#define PALMAS_SMPS_PD_CTRL_SMPS8 0x20
#define PALMAS_SMPS_PD_CTRL_SMPS8_SHIFT 5
#define PALMAS_SMPS_PD_CTRL_SMPS7 0x10
#define PALMAS_SMPS_PD_CTRL_SMPS7_SHIFT 4
#define PALMAS_SMPS_PD_CTRL_SMPS6 0x08
#define PALMAS_SMPS_PD_CTRL_SMPS6_SHIFT 3
#define PALMAS_SMPS_PD_CTRL_SMPS45 0x04
#define PALMAS_SMPS_PD_CTRL_SMPS45_SHIFT 2
#define PALMAS_SMPS_PD_CTRL_SMPS3 0x02
#define PALMAS_SMPS_PD_CTRL_SMPS3_SHIFT 1
#define PALMAS_SMPS_PD_CTRL_SMPS12 0x01
#define PALMAS_SMPS_PD_CTRL_SMPS12_SHIFT 0
/* Bit definitions for SMPS_THERMAL_EN */
#define PALMAS_SMPS_THERMAL_EN_SMPS9 0x40
#define PALMAS_SMPS_THERMAL_EN_SMPS9_SHIFT 6
#define PALMAS_SMPS_THERMAL_EN_SMPS8 0x20
#define PALMAS_SMPS_THERMAL_EN_SMPS8_SHIFT 5
#define PALMAS_SMPS_THERMAL_EN_SMPS6 0x08
#define PALMAS_SMPS_THERMAL_EN_SMPS6_SHIFT 3
#define PALMAS_SMPS_THERMAL_EN_SMPS457 0x04
#define PALMAS_SMPS_THERMAL_EN_SMPS457_SHIFT 2
#define PALMAS_SMPS_THERMAL_EN_SMPS123 0x01
#define PALMAS_SMPS_THERMAL_EN_SMPS123_SHIFT 0
/* Bit definitions for SMPS_THERMAL_STATUS */
#define PALMAS_SMPS_THERMAL_STATUS_SMPS9 0x40
#define PALMAS_SMPS_THERMAL_STATUS_SMPS9_SHIFT 6
#define PALMAS_SMPS_THERMAL_STATUS_SMPS8 0x20
#define PALMAS_SMPS_THERMAL_STATUS_SMPS8_SHIFT 5
#define PALMAS_SMPS_THERMAL_STATUS_SMPS6 0x08
#define PALMAS_SMPS_THERMAL_STATUS_SMPS6_SHIFT 3
#define PALMAS_SMPS_THERMAL_STATUS_SMPS457 0x04
#define PALMAS_SMPS_THERMAL_STATUS_SMPS457_SHIFT 2
#define PALMAS_SMPS_THERMAL_STATUS_SMPS123 0x01
#define PALMAS_SMPS_THERMAL_STATUS_SMPS123_SHIFT 0
/* Bit definitions for SMPS_SHORT_STATUS */
#define PALMAS_SMPS_SHORT_STATUS_SMPS10 0x80
#define PALMAS_SMPS_SHORT_STATUS_SMPS10_SHIFT 7
#define PALMAS_SMPS_SHORT_STATUS_SMPS9 0x40
#define PALMAS_SMPS_SHORT_STATUS_SMPS9_SHIFT 6
#define PALMAS_SMPS_SHORT_STATUS_SMPS8 0x20
#define PALMAS_SMPS_SHORT_STATUS_SMPS8_SHIFT 5
#define PALMAS_SMPS_SHORT_STATUS_SMPS7 0x10
#define PALMAS_SMPS_SHORT_STATUS_SMPS7_SHIFT 4
#define PALMAS_SMPS_SHORT_STATUS_SMPS6 0x08
#define PALMAS_SMPS_SHORT_STATUS_SMPS6_SHIFT 3
#define PALMAS_SMPS_SHORT_STATUS_SMPS45 0x04
#define PALMAS_SMPS_SHORT_STATUS_SMPS45_SHIFT 2
#define PALMAS_SMPS_SHORT_STATUS_SMPS3 0x02
#define PALMAS_SMPS_SHORT_STATUS_SMPS3_SHIFT 1
#define PALMAS_SMPS_SHORT_STATUS_SMPS12 0x01
#define PALMAS_SMPS_SHORT_STATUS_SMPS12_SHIFT 0
/* Bit definitions for SMPS_NEGATIVE_CURRENT_LIMIT_EN */
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9 0x40
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS9_SHIFT 6
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8 0x20
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS8_SHIFT 5
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7 0x10
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS7_SHIFT 4
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6 0x08
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS6_SHIFT 3
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45 0x04
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS45_SHIFT 2
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3 0x02
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS3_SHIFT 1
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12 0x01
#define PALMAS_SMPS_NEGATIVE_CURRENT_LIMIT_EN_SMPS12_SHIFT 0
/* Bit definitions for SMPS_POWERGOOD_MASK1 */
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10 0x80
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS10_SHIFT 7
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9 0x40
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS9_SHIFT 6
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8 0x20
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS8_SHIFT 5
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7 0x10
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS7_SHIFT 4
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6 0x08
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS6_SHIFT 3
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45 0x04
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS45_SHIFT 2
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3 0x02
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS3_SHIFT 1
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12 0x01
#define PALMAS_SMPS_POWERGOOD_MASK1_SMPS12_SHIFT 0
/* Bit definitions for SMPS_POWERGOOD_MASK2 */
#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT 0x80
#define PALMAS_SMPS_POWERGOOD_MASK2_POWERGOOD_TYPE_SELECT_SHIFT 7
#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7 0x04
#define PALMAS_SMPS_POWERGOOD_MASK2_GPIO_7_SHIFT 2
#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS 0x02
#define PALMAS_SMPS_POWERGOOD_MASK2_VBUS_SHIFT 1
#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK 0x01
#define PALMAS_SMPS_POWERGOOD_MASK2_ACOK_SHIFT 0
/* Registers for function LDO */
#define PALMAS_LDO1_CTRL 0x0
#define PALMAS_LDO1_VOLTAGE 0x1
#define PALMAS_LDO2_CTRL 0x2
#define PALMAS_LDO2_VOLTAGE 0x3
#define PALMAS_LDO3_CTRL 0x4
#define PALMAS_LDO3_VOLTAGE 0x5
#define PALMAS_LDO4_CTRL 0x6
#define PALMAS_LDO4_VOLTAGE 0x7
#define PALMAS_LDO5_CTRL 0x8
#define PALMAS_LDO5_VOLTAGE 0x9
#define PALMAS_LDO6_CTRL 0xA
#define PALMAS_LDO6_VOLTAGE 0xB
#define PALMAS_LDO7_CTRL 0xC
#define PALMAS_LDO7_VOLTAGE 0xD
#define PALMAS_LDO8_CTRL 0xE
#define PALMAS_LDO8_VOLTAGE 0xF
#define PALMAS_LDO9_CTRL 0x10
#define PALMAS_LDO9_VOLTAGE 0x11
#define PALMAS_LDOLN_CTRL 0x12
#define PALMAS_LDOLN_VOLTAGE 0x13
#define PALMAS_LDOUSB_CTRL 0x14
#define PALMAS_LDOUSB_VOLTAGE 0x15
#define PALMAS_LDO_CTRL 0x1A
#define PALMAS_LDO_PD_CTRL1 0x1B
#define PALMAS_LDO_PD_CTRL2 0x1C
#define PALMAS_LDO_SHORT_STATUS1 0x1D
#define PALMAS_LDO_SHORT_STATUS2 0x1E
/* Bit definitions for LDO1_CTRL */
#define PALMAS_LDO1_CTRL_WR_S 0x80
#define PALMAS_LDO1_CTRL_WR_S_SHIFT 7
#define PALMAS_LDO1_CTRL_STATUS 0x10
#define PALMAS_LDO1_CTRL_STATUS_SHIFT 4
#define PALMAS_LDO1_CTRL_MODE_SLEEP 0x04
#define PALMAS_LDO1_CTRL_MODE_SLEEP_SHIFT 2
#define PALMAS_LDO1_CTRL_MODE_ACTIVE 0x01
#define PALMAS_LDO1_CTRL_MODE_ACTIVE_SHIFT 0
/* Bit definitions for LDO1_VOLTAGE */
#define PALMAS_LDO1_VOLTAGE_VSEL_MASK 0x3f
#define PALMAS_LDO1_VOLTAGE_VSEL_SHIFT 0