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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Functions to access TPS6594 Power Management IC
*
* Copyright (C) 2023 BayLibre Incorporated - https://www.baylibre.com/
*/
#ifndef __LINUX_MFD_TPS6594_H
#define __LINUX_MFD_TPS6594_H
#include <linux/device.h>
#include <linux/regmap.h>
struct regmap_irq_chip_data;
/* Chip id list */
enum pmic_id {
TPS6594,
TPS6593,
LP8764,
TPS65224,
};
/* Macro to get page index from register address */
#define TPS6594_REG_TO_PAGE(reg) ((reg) >> 8)
/* Registers for page 0 */
#define TPS6594_REG_DEV_REV 0x01
#define TPS6594_REG_NVM_CODE_1 0x02
#define TPS6594_REG_NVM_CODE_2 0x03
#define TPS6594_REG_BUCKX_CTRL(buck_inst) (0x04 + ((buck_inst) << 1))
#define TPS6594_REG_BUCKX_CONF(buck_inst) (0x05 + ((buck_inst) << 1))
#define TPS6594_REG_BUCKX_VOUT_1(buck_inst) (0x0e + ((buck_inst) << 1))
#define TPS6594_REG_BUCKX_VOUT_2(buck_inst) (0x0f + ((buck_inst) << 1))
#define TPS6594_REG_BUCKX_PG_WINDOW(buck_inst) (0x18 + (buck_inst))
#define TPS6594_REG_LDOX_CTRL(ldo_inst) (0x1d + (ldo_inst))
#define TPS6594_REG_LDORTC_CTRL 0x22
#define TPS6594_REG_LDOX_VOUT(ldo_inst) (0x23 + (ldo_inst))
#define TPS6594_REG_LDOX_PG_WINDOW(ldo_inst) (0x27 + (ldo_inst))
#define TPS6594_REG_VCCA_VMON_CTRL 0x2b
#define TPS6594_REG_VCCA_PG_WINDOW 0x2c
#define TPS6594_REG_VMON1_PG_WINDOW 0x2d
#define TPS6594_REG_VMON1_PG_LEVEL 0x2e
#define TPS6594_REG_VMON2_PG_WINDOW 0x2f
#define TPS6594_REG_VMON2_PG_LEVEL 0x30
#define TPS6594_REG_GPIOX_CONF(gpio_inst) (0x31 + (gpio_inst))
#define TPS6594_REG_NPWRON_CONF 0x3c
#define TPS6594_REG_GPIO_OUT_1 0x3d
#define TPS6594_REG_GPIO_OUT_2 0x3e
#define TPS6594_REG_GPIO_IN_1 0x3f
#define TPS6594_REG_GPIO_IN_2 0x40
#define TPS6594_REG_GPIOX_OUT(gpio_inst) (TPS6594_REG_GPIO_OUT_1 + (gpio_inst) / 8)
#define TPS6594_REG_GPIOX_IN(gpio_inst) (TPS6594_REG_GPIO_IN_1 + (gpio_inst) / 8)
#define TPS6594_REG_RAIL_SEL_1 0x41
#define TPS6594_REG_RAIL_SEL_2 0x42
#define TPS6594_REG_RAIL_SEL_3 0x43
#define TPS6594_REG_FSM_TRIG_SEL_1 0x44
#define TPS6594_REG_FSM_TRIG_SEL_2 0x45
#define TPS6594_REG_FSM_TRIG_MASK_1 0x46
#define TPS6594_REG_FSM_TRIG_MASK_2 0x47
#define TPS6594_REG_FSM_TRIG_MASK_3 0x48
#define TPS6594_REG_MASK_BUCK1_2 0x49
#define TPS65224_REG_MASK_BUCKS 0x49
#define TPS6594_REG_MASK_BUCK3_4 0x4a
#define TPS6594_REG_MASK_BUCK5 0x4b
#define TPS6594_REG_MASK_LDO1_2 0x4c
#define TPS65224_REG_MASK_LDOS 0x4c
#define TPS6594_REG_MASK_LDO3_4 0x4d
#define TPS6594_REG_MASK_VMON 0x4e
#define TPS6594_REG_MASK_GPIO_FALL 0x4f
#define TPS6594_REG_MASK_GPIO_RISE 0x50
#define TPS6594_REG_MASK_GPIO9_11 0x51
#define TPS6594_REG_MASK_STARTUP 0x52
#define TPS6594_REG_MASK_MISC 0x53
#define TPS6594_REG_MASK_MODERATE_ERR 0x54
#define TPS6594_REG_MASK_FSM_ERR 0x56
#define TPS6594_REG_MASK_COMM_ERR 0x57
#define TPS6594_REG_MASK_READBACK_ERR 0x58
#define TPS6594_REG_MASK_ESM 0x59
#define TPS6594_REG_INT_TOP 0x5a
#define TPS6594_REG_INT_BUCK 0x5b
#define TPS6594_REG_INT_BUCK1_2 0x5c
#define TPS6594_REG_INT_BUCK3_4 0x5d
#define TPS6594_REG_INT_BUCK5 0x5e
#define TPS6594_REG_INT_LDO_VMON 0x5f
#define TPS6594_REG_INT_LDO1_2 0x60
#define TPS6594_REG_INT_LDO3_4 0x61
#define TPS6594_REG_INT_VMON 0x62
#define TPS6594_REG_INT_GPIO 0x63
#define TPS6594_REG_INT_GPIO1_8 0x64
#define TPS6594_REG_INT_STARTUP 0x65
#define TPS6594_REG_INT_MISC 0x66
#define TPS6594_REG_INT_MODERATE_ERR 0x67
#define TPS6594_REG_INT_SEVERE_ERR 0x68
#define TPS6594_REG_INT_FSM_ERR 0x69
#define TPS6594_REG_INT_COMM_ERR 0x6a
#define TPS6594_REG_INT_READBACK_ERR 0x6b
#define TPS6594_REG_INT_ESM 0x6c
#define TPS6594_REG_STAT_BUCK1_2 0x6d
#define TPS6594_REG_STAT_BUCK3_4 0x6e
#define TPS6594_REG_STAT_BUCK5 0x6f
#define TPS6594_REG_STAT_LDO1_2 0x70
#define TPS6594_REG_STAT_LDO3_4 0x71
#define TPS6594_REG_STAT_VMON 0x72
#define TPS6594_REG_STAT_STARTUP 0x73
#define TPS6594_REG_STAT_MISC 0x74
#define TPS6594_REG_STAT_MODERATE_ERR 0x75
#define TPS6594_REG_STAT_SEVERE_ERR 0x76
#define TPS6594_REG_STAT_READBACK_ERR 0x77
#define TPS6594_REG_PGOOD_SEL_1 0x78
#define TPS6594_REG_PGOOD_SEL_2 0x79
#define TPS6594_REG_PGOOD_SEL_3 0x7a
#define TPS6594_REG_PGOOD_SEL_4 0x7b
#define TPS6594_REG_PLL_CTRL 0x7c
#define TPS6594_REG_CONFIG_1 0x7d
#define TPS6594_REG_CONFIG_2 0x7e
#define TPS6594_REG_ENABLE_DRV_REG 0x80
#define TPS6594_REG_MISC_CTRL 0x81
#define TPS6594_REG_ENABLE_DRV_STAT 0x82
#define TPS6594_REG_RECOV_CNT_REG_1 0x83
#define TPS6594_REG_RECOV_CNT_REG_2 0x84
#define TPS6594_REG_FSM_I2C_TRIGGERS 0x85
#define TPS6594_REG_FSM_NSLEEP_TRIGGERS 0x86
#define TPS6594_REG_BUCK_RESET_REG 0x87
#define TPS6594_REG_SPREAD_SPECTRUM_1 0x88
#define TPS6594_REG_FREQ_SEL 0x8a
#define TPS6594_REG_FSM_STEP_SIZE 0x8b
#define TPS6594_REG_LDO_RV_TIMEOUT_REG_1 0x8c
#define TPS6594_REG_LDO_RV_TIMEOUT_REG_2 0x8d
#define TPS6594_REG_USER_SPARE_REGS 0x8e
#define TPS6594_REG_ESM_MCU_START_REG 0x8f
#define TPS6594_REG_ESM_MCU_DELAY1_REG 0x90
#define TPS6594_REG_ESM_MCU_DELAY2_REG 0x91
#define TPS6594_REG_ESM_MCU_MODE_CFG 0x92
#define TPS6594_REG_ESM_MCU_HMAX_REG 0x93
#define TPS6594_REG_ESM_MCU_HMIN_REG 0x94
#define TPS6594_REG_ESM_MCU_LMAX_REG 0x95
#define TPS6594_REG_ESM_MCU_LMIN_REG 0x96
#define TPS6594_REG_ESM_MCU_ERR_CNT_REG 0x97
#define TPS6594_REG_ESM_SOC_START_REG 0x98
#define TPS6594_REG_ESM_SOC_DELAY1_REG 0x99
#define TPS6594_REG_ESM_SOC_DELAY2_REG 0x9a
#define TPS6594_REG_ESM_SOC_MODE_CFG 0x9b
#define TPS6594_REG_ESM_SOC_HMAX_REG 0x9c
#define TPS6594_REG_ESM_SOC_HMIN_REG 0x9d
#define TPS6594_REG_ESM_SOC_LMAX_REG 0x9e
#define TPS6594_REG_ESM_SOC_LMIN_REG 0x9f
#define TPS6594_REG_ESM_SOC_ERR_CNT_REG 0xa0
#define TPS6594_REG_REGISTER_LOCK 0xa1
#define TPS65224_REG_SRAM_ACCESS_1 0xa2
#define TPS65224_REG_SRAM_ACCESS_2 0xa3
#define TPS65224_REG_SRAM_ADDR_CTRL 0xa4
#define TPS65224_REG_RECOV_CNT_PFSM_INCR 0xa5
#define TPS6594_REG_MANUFACTURING_VER 0xa6
#define TPS6594_REG_CUSTOMER_NVM_ID_REG 0xa7
#define TPS6594_REG_VMON_CONF_REG 0xa8
#define TPS6594_REG_SOFT_REBOOT_REG 0xab
#define TPS65224_REG_ADC_CTRL 0xac
#define TPS65224_REG_ADC_RESULT_REG_1 0xad
#define TPS65224_REG_ADC_RESULT_REG_2 0xae
#define TPS6594_REG_RTC_SECONDS 0xb5
#define TPS6594_REG_RTC_MINUTES 0xb6
#define TPS6594_REG_RTC_HOURS 0xb7
#define TPS6594_REG_RTC_DAYS 0xb8
#define TPS6594_REG_RTC_MONTHS 0xb9
#define TPS6594_REG_RTC_YEARS 0xba
#define TPS6594_REG_RTC_WEEKS 0xbb
#define TPS6594_REG_ALARM_SECONDS 0xbc
#define TPS6594_REG_ALARM_MINUTES 0xbd
#define TPS6594_REG_ALARM_HOURS 0xbe
#define TPS6594_REG_ALARM_DAYS 0xbf
#define TPS6594_REG_ALARM_MONTHS 0xc0
#define TPS6594_REG_ALARM_YEARS 0xc1
#define TPS6594_REG_RTC_CTRL_1 0xc2
#define TPS6594_REG_RTC_CTRL_2 0xc3
#define TPS65224_REG_STARTUP_CTRL 0xc3
#define TPS6594_REG_RTC_STATUS 0xc4
#define TPS6594_REG_RTC_INTERRUPTS 0xc5
#define TPS6594_REG_RTC_COMP_LSB 0xc6
#define TPS6594_REG_RTC_COMP_MSB 0xc7
#define TPS6594_REG_RTC_RESET_STATUS 0xc8
#define TPS6594_REG_SCRATCH_PAD_REG_1 0xc9
#define TPS6594_REG_SCRATCH_PAD_REG_2 0xca
#define TPS6594_REG_SCRATCH_PAD_REG_3 0xcb
#define TPS6594_REG_SCRATCH_PAD_REG_4 0xcc
#define TPS6594_REG_PFSM_DELAY_REG_1 0xcd
#define TPS6594_REG_PFSM_DELAY_REG_2 0xce
#define TPS6594_REG_PFSM_DELAY_REG_3 0xcf
#define TPS6594_REG_PFSM_DELAY_REG_4 0xd0
#define TPS65224_REG_ADC_GAIN_COMP_REG 0xd0
#define TPS65224_REG_CRC_CALC_CONTROL 0xef
#define TPS65224_REG_REGMAP_USER_CRC_LOW 0xf0
#define TPS65224_REG_REGMAP_USER_CRC_HIGH 0xf1
/* Registers for page 1 */
#define TPS6594_REG_SERIAL_IF_CONFIG 0x11a
#define TPS6594_REG_I2C1_ID 0x122
#define TPS6594_REG_I2C2_ID 0x123
/* Registers for page 4 */
#define TPS6594_REG_WD_ANSWER_REG 0x401
#define TPS6594_REG_WD_QUESTION_ANSW_CNT 0x402
#define TPS6594_REG_WD_WIN1_CFG 0x403
#define TPS6594_REG_WD_WIN2_CFG 0x404
#define TPS6594_REG_WD_LONGWIN_CFG 0x405
#define TPS6594_REG_WD_MODE_REG 0x406
#define TPS6594_REG_WD_QA_CFG 0x407
#define TPS6594_REG_WD_ERR_STATUS 0x408
#define TPS6594_REG_WD_THR_CFG 0x409
#define TPS6594_REG_DWD_FAIL_CNT_REG 0x40a
/* BUCKX_CTRL register field definition */
#define TPS6594_BIT_BUCK_EN BIT(0)
#define TPS6594_BIT_BUCK_FPWM BIT(1)
#define TPS6594_BIT_BUCK_FPWM_MP BIT(2)
#define TPS6594_BIT_BUCK_VSEL BIT(3)
#define TPS6594_BIT_BUCK_VMON_EN BIT(4)
#define TPS6594_BIT_BUCK_PLDN BIT(5)
#define TPS6594_BIT_BUCK_RV_SEL BIT(7)
/* TPS6594 BUCKX_CONF register field definition */
#define TPS6594_MASK_BUCK_SLEW_RATE GENMASK(2, 0)
#define TPS6594_MASK_BUCK_ILIM GENMASK(5, 3)
/* TPS65224 BUCKX_CONF register field definition */
#define TPS65224_MASK_BUCK_SLEW_RATE GENMASK(1, 0)
/* TPS6594 BUCKX_PG_WINDOW register field definition */
#define TPS6594_MASK_BUCK_OV_THR GENMASK(2, 0)
#define TPS6594_MASK_BUCK_UV_THR GENMASK(5, 3)
/* TPS65224 BUCKX_PG_WINDOW register field definition */
#define TPS65224_MASK_BUCK_VMON_THR GENMASK(1, 0)
/* TPS6594 BUCKX_VOUT register field definition */
#define TPS6594_MASK_BUCKS_VSET GENMASK(7, 0)
/* TPS65224 BUCKX_VOUT register field definition */
#define TPS65224_MASK_BUCK1_VSET GENMASK(7, 0)
#define TPS65224_MASK_BUCKS_VSET GENMASK(6, 0)
/* LDOX_CTRL register field definition */
#define TPS6594_BIT_LDO_EN BIT(0)
#define TPS6594_BIT_LDO_SLOW_RAMP BIT(1)
#define TPS6594_BIT_LDO_VMON_EN BIT(4)
#define TPS6594_MASK_LDO_PLDN GENMASK(6, 5)
#define TPS6594_BIT_LDO_RV_SEL BIT(7)
#define TPS65224_BIT_LDO_DISCHARGE_EN BIT(5)
/* LDORTC_CTRL register field definition */
#define TPS6594_BIT_LDORTC_DIS BIT(0)
/* LDOX_VOUT register field definition */
#define TPS6594_MASK_LDO123_VSET GENMASK(6, 1)
#define TPS6594_MASK_LDO4_VSET GENMASK(6, 0)
#define TPS6594_BIT_LDO_BYPASS BIT(7)
/* LDOX_PG_WINDOW register field definition */
#define TPS6594_MASK_LDO_OV_THR GENMASK(2, 0)
#define TPS6594_MASK_LDO_UV_THR GENMASK(5, 3)
/* LDOX_PG_WINDOW register field definition */
#define TPS65224_MASK_LDO_VMON_THR GENMASK(1, 0)
/* VCCA_VMON_CTRL register field definition */
#define TPS6594_BIT_VMON_EN BIT(0)
#define TPS6594_BIT_VMON1_EN BIT(1)
#define TPS6594_BIT_VMON1_RV_SEL BIT(2)
#define TPS6594_BIT_VMON2_EN BIT(3)
#define TPS6594_BIT_VMON2_RV_SEL BIT(4)
#define TPS6594_BIT_VMON_DEGLITCH_SEL BIT(5)
#define TPS65224_BIT_VMON_DEGLITCH_SEL GENMASK(7, 5)
/* VCCA_PG_WINDOW register field definition */
#define TPS6594_MASK_VCCA_OV_THR GENMASK(2, 0)
#define TPS6594_MASK_VCCA_UV_THR GENMASK(5, 3)
#define TPS65224_MASK_VCCA_VMON_THR GENMASK(1, 0)
#define TPS6594_BIT_VCCA_PG_SET BIT(6)
/* VMONX_PG_WINDOW register field definition */
#define TPS6594_MASK_VMONX_OV_THR GENMASK(2, 0)
#define TPS6594_MASK_VMONX_UV_THR GENMASK(5, 3)
#define TPS6594_BIT_VMONX_RANGE BIT(6)
/* VMONX_PG_WINDOW register field definition */
#define TPS65224_MASK_VMONX_THR GENMASK(1, 0)
/* GPIOX_CONF register field definition */
#define TPS6594_BIT_GPIO_DIR BIT(0)
#define TPS6594_BIT_GPIO_OD BIT(1)
#define TPS6594_BIT_GPIO_PU_SEL BIT(2)
#define TPS6594_BIT_GPIO_PU_PD_EN BIT(3)
#define TPS6594_BIT_GPIO_DEGLITCH_EN BIT(4)
#define TPS6594_MASK_GPIO_SEL GENMASK(7, 5)
#define TPS65224_MASK_GPIO_SEL GENMASK(6, 5)
#define TPS65224_MASK_GPIO_SEL_GPIO6 GENMASK(7, 5)
/* NPWRON_CONF register field definition */
#define TPS6594_BIT_NRSTOUT_OD BIT(0)
#define TPS6594_BIT_ENABLE_PU_SEL BIT(2)
#define TPS6594_BIT_ENABLE_PU_PD_EN BIT(3)
#define TPS6594_BIT_ENABLE_DEGLITCH_EN BIT(4)
#define TPS6594_BIT_ENABLE_POL BIT(5)
#define TPS6594_MASK_NPWRON_SEL GENMASK(7, 6)
/* POWER_ON_CONFIG register field definition */
#define TPS65224_BIT_NINT_ENDRV_PU_SEL BIT(0)
#define TPS65224_BIT_NINT_ENDRV_SEL BIT(1)
#define TPS65224_BIT_EN_PB_DEGL BIT(5)
#define TPS65224_MASK_EN_PB_VSENSE_CONFIG GENMASK(7, 6)
/* GPIO_OUT_X register field definition */
#define TPS6594_BIT_GPIOX_OUT(gpio_inst) BIT((gpio_inst) % 8)
/* GPIO_IN_X register field definition */
#define TPS6594_BIT_GPIOX_IN(gpio_inst) BIT((gpio_inst) % 8)
#define TPS6594_BIT_NPWRON_IN BIT(3)
/* GPIO_OUT_X register field definition */
#define TPS65224_BIT_GPIOX_OUT(gpio_inst) BIT((gpio_inst))
/* GPIO_IN_X register field definition */
#define TPS65224_BIT_GPIOX_IN(gpio_inst) BIT((gpio_inst))
/* RAIL_SEL_1 register field definition */
#define TPS6594_MASK_BUCK1_GRP_SEL GENMASK(1, 0)
#define TPS6594_MASK_BUCK2_GRP_SEL GENMASK(3, 2)
#define TPS6594_MASK_BUCK3_GRP_SEL GENMASK(5, 4)
#define TPS6594_MASK_BUCK4_GRP_SEL GENMASK(7, 6)
/* RAIL_SEL_2 register field definition */
#define TPS6594_MASK_BUCK5_GRP_SEL GENMASK(1, 0)
#define TPS6594_MASK_LDO1_GRP_SEL GENMASK(3, 2)
#define TPS6594_MASK_LDO2_GRP_SEL GENMASK(5, 4)
#define TPS6594_MASK_LDO3_GRP_SEL GENMASK(7, 6)
/* RAIL_SEL_3 register field definition */
#define TPS6594_MASK_LDO4_GRP_SEL GENMASK(1, 0)
#define TPS6594_MASK_VCCA_GRP_SEL GENMASK(3, 2)
#define TPS6594_MASK_VMON1_GRP_SEL GENMASK(5, 4)
#define TPS6594_MASK_VMON2_GRP_SEL GENMASK(7, 6)
/* FSM_TRIG_SEL_1 register field definition */
#define TPS6594_MASK_MCU_RAIL_TRIG GENMASK(1, 0)
#define TPS6594_MASK_SOC_RAIL_TRIG GENMASK(3, 2)
#define TPS6594_MASK_OTHER_RAIL_TRIG GENMASK(5, 4)
#define TPS6594_MASK_SEVERE_ERR_TRIG GENMASK(7, 6)
/* FSM_TRIG_SEL_2 register field definition */
#define TPS6594_MASK_MODERATE_ERR_TRIG GENMASK(1, 0)
/* FSM_TRIG_MASK_X register field definition */
#define TPS6594_BIT_GPIOX_FSM_MASK(gpio_inst) BIT(((gpio_inst) << 1) % 8)
#define TPS6594_BIT_GPIOX_FSM_MASK_POL(gpio_inst) BIT(((gpio_inst) << 1) % 8 + 1)
#define TPS65224_BIT_GPIOX_FSM_MASK(gpio_inst) BIT(((gpio_inst) << 1) % 6)
#define TPS65224_BIT_GPIOX_FSM_MASK_POL(gpio_inst) BIT(((gpio_inst) << 1) % 6 + 1)
/* MASK_BUCKX register field definition */
#define TPS6594_BIT_BUCKX_OV_MASK(buck_inst) BIT(((buck_inst) << 2) % 8)
#define TPS6594_BIT_BUCKX_UV_MASK(buck_inst) BIT(((buck_inst) << 2) % 8 + 1)
#define TPS6594_BIT_BUCKX_ILIM_MASK(buck_inst) BIT(((buck_inst) << 2) % 8 + 3)
/* MASK_LDOX register field definition */
#define TPS6594_BIT_LDOX_OV_MASK(ldo_inst) BIT(((ldo_inst) << 2) % 8)
#define TPS6594_BIT_LDOX_UV_MASK(ldo_inst) BIT(((ldo_inst) << 2) % 8 + 1)
#define TPS6594_BIT_LDOX_ILIM_MASK(ldo_inst) BIT(((ldo_inst) << 2) % 8 + 3)
/* MASK_VMON register field definition */
#define TPS6594_BIT_VCCA_OV_MASK BIT(0)
#define TPS6594_BIT_
|