dcl_pw.c
39.8 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
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
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
/*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used or disclosed except with the written
* permission of MediaTek Inc. (C) 2005
*
* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
* AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/
/*****************************************************************************
*
* Filename:
* ---------
* dcl_pw.c
*
* Project:
* --------
* Maui_Software
*
* Description:
* ------------
* This file is for power on init
*
* Author:
* -------
* -------
*
*============================================================================
* HISTORY
* Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*------------------------------------------------------------------------------
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
* removed!
* removed!
* removed!
*
*
*------------------------------------------------------------------------------
* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*============================================================================
****************************************************************************/
#include "reg_base.h"
#include "init.h"
#include "system_trc.h"
#include "init_trc_api.h"
#include "drv_features.h"
#include "drv_comm.h"
#include "intrctrl.h"
#include "adc.h"
#include "bmt.h"
#include "pw.h"
#include "custom_hw_default.h"
#ifdef __OTG_ENABLE__
#include "otg_if.h"
#endif // #ifdef __OTG_ENABLE__
#include "usb_drv.h"
#include "dcl.h"
#include "gpio_sw.h"
#ifdef __USB_UART_MULTIPLEXED_WITH_EXT_SWITCH__
extern const char gpio_usb_uart_switch_pin;
#endif
extern kal_bool is_init_log_enable;
#ifdef __MULTI_BOOT__
#include "kal_release.h"
#include "syscomp_config.h"
#include "multiboot_config.h"
#endif // #ifdef __MULTI_BOOT__
////////////////////////////////////DCL_PW internal use
//debug purpose
kal_uint32 pwic_powerOn_factor=0;
#define AUXADC_PDN_CLR() adc_pwrdown_enable()
#define AUXADC_PDN_SET() adc_pwrdown_disable()
#if defined(__KAL_RECORD_BOOTUP_LOG__) || defined(__KEYPAD_DEBUG_TRACE__)
//extern void kal_bootup_trace(trace_class_enum trc_class, kal_uint32 msg_index, const kal_char* arg_type, ...);
void pw_print_bootup_trace0(kal_uint32 msg_index, const char *arg_type)
{
kal_bootup_trace(TRACE_INFO, msg_index, arg_type);
}
void pw_print_bootup_trace1(kal_uint32 msg_index, const char *arg_type, kal_uint32 data1)
{
kal_bootup_trace(TRACE_INFO, msg_index, arg_type, data1);
}
#else // #if defined(__KAL_RECORD_BOOTUP_LOG__) || defined(__KEYPAD_DEBUG_TRACE__)
#define pw_print_bootup_trace0(...)
#define pw_print_bootup_trace1(...)
#endif // #if defined(__KAL_RECORD_BOOTUP_LOG__) || defined(__KEYPAD_DEBUG_TRACE__)
//////////////////////////////////////DCL_PW internal use
#if defined (__MTK_UL1_FDD__)
#if !defined (UL1_NOT_PRESENT)
/* under construction !*/
#endif /* #if !defined (UL1_NOT_PRESENT) */
#endif /* #if defined (__MTK_UL1_FDD__) */
#ifndef L1_NOT_PRESENT
extern void L1T_Exit(void);
#endif // #ifndef L1_NOT_PRESENT
//WDT interface
extern kal_bool WDT_RST;
kal_bool is_wdt_power=KAL_FALSE;
// WDT end
//BMT temp
extern BMTStruct BMT;
//power on reason
PW_CTRL_POWER_ON_REASON PWRon;
DCL_HANDLE pw_RtcHandler;
DCL_HANDLE pw_KeypadHandler;
DCL_HANDLE pw_AdcHandler;
extern void Drv_Deinit(void);
extern void pmu_long_press_shutdown_config(kal_uint32 enable);
extern DCL_UINT16 pmu_long_press_status_check();
extern void pmu_long_press_shutdown_reset();
extern void dump_RTC_EOSC32CON(void);
/*
* FUNCTION
* DRV_POWERON
*
* DESCRIPTION
* This function is to power on the targer.
*
* CALLS
*
* PARAMETERS
* None
*
* RETURNS
* KAL_TRUE: MS is first power on of RTC has been reset
* KAL_FALSE: otherwise.
*
* GLOBALS AFFECTED
* None
*/
static kal_bool DclPW_DRV_POWERON(void) /*PW_KEYPRESS*/
{
#if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
//kal_uint32 BBPU;
//kal_uint16 status;
kal_bool isFirstOn = KAL_FALSE;
#ifdef BMT_DEBUG
kal_uint32 count;
#endif // #ifdef BMT_DEBUG
#ifdef BMT_DEBUG
dbg_printWithTime("DRV_POWERON..\r\n");
#endif // #ifdef BMT_DEBUG
#ifdef _SIMULATION
isFirstOn = KAL_TRUE;
#else // #ifdef _SIMULATION
{
RTC_CTRL_IS_FIRST_ON_T IsFirstOn;
RTC_CTRL_IS_CONFIG_VALID_T IsConfigValid;
DclRTC_Control(pw_RtcHandler, RTC_CMD_IS_FIRST_ON, (DCL_CTRL_DATA_T *)&IsFirstOn);
DclRTC_Control(pw_RtcHandler, RTC_CMD_IS_CONFIG_VALID, (DCL_CTRL_DATA_T *)&IsConfigValid);
if (IsFirstOn.fgFirstOn ||(IsConfigValid.fgIsValid==DCL_FALSE))
{
isFirstOn = KAL_TRUE;
}
}
#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
#if defined(__LATCH_POWER_IN_BOOTLOADER__)
if (INT_IsFirstPowerOnFromBL(BL_INFO_FROM_RTC))
{
isFirstOn = KAL_TRUE;
}
#endif // #if defined(__LATCH_POWER_IN_BOOTLOADER__)
#endif // #if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
#endif // #ifdef _SIMULATION
if (KAL_TRUE == isFirstOn)
{
// PWIC Clear Plan(RTC)
// 1. Init RTC time if first power on
//isFirstOn = KAL_TRUE;
RTC_CTRL_PWIC_FIRST_POWERON_INIT_RTCTIME_T rtc_cmd_data5;
rtc_cmd_data5.u1Sec = 0;
rtc_cmd_data5.u1Min = 0;
rtc_cmd_data5.u1Hour = 0;
rtc_cmd_data5.u1Day = DEFAULT_HARDWARE_DAY;
rtc_cmd_data5.u1WDay = 1;
rtc_cmd_data5.u1Mon = DEFAULT_HARDWARE_MON;
rtc_cmd_data5.u1Year = DEFAULT_HARDWARE_YEAR;
DclRTC_Control(pw_RtcHandler, RTC_CMD_PWIC_FIRST_POWERON_INIT_RTCTIME, (DCL_CTRL_DATA_T *)&rtc_cmd_data5);
}
// Latch BB power (BBPU)
DclRTC_Control(pw_RtcHandler, RTC_CMD_PWIC_POWERON_RTC_INIT, (DCL_CTRL_DATA_T *)NULL);
return isFirstOn;
#else // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
return KAL_FALSE;
#endif // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
}
static void DclPW_DRV_POWEROFF(void) /*PW_KEYPRESS*/
{
#if defined(DRV_PWIC_6268_SERIES)
ilm_struct *poweroff_ilm;
kal_bool btmp;
#endif //#if defined(DRV_PWIC_6268_SERIES)
#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
kal_uint32 index;
Drv_Deinit();
dump_RTC_EOSC32CON();
#ifdef ORDNANCE
*IRQ_MASK = (kal_uint16)(~(1 << IRQ_KPAD_CODE));
#endif // #ifdef ORDNANCE
#if defined (__MTK_UL1_FDD__)
#if !defined (UL1_NOT_PRESENT)
/* under construction !*/
#endif
#endif
#if !defined (L1_NOT_PRESENT)
#if defined(DRV_PWIC_6268_SERIES)
if (kal_query_systemInit())
{
L1T_Exit();
}
else
{
if (kal_if_hisr() == KAL_TRUE || kal_if_lisr() == KAL_TRUE ) /*MAUI_00756114*/
{
ASSERT(0);
}
else
{
DRV_BuildPrimitive(poweroff_ilm,
stack_int_get_active_module_id(), // src module
MOD_L1, //dst module
MSG_ID_MPHC_POWER_OFF_REQ,
NULL);
btmp = msg_send_ext_queue(poweroff_ilm);
}
}
#else // #if defined(DRV_PWIC_6268_SERIES)
L1T_Exit();
#endif //#if defined(DRV_PWIC_6268_SERIES)
#endif // #ifndef L1_NOT_PRESENT
/* for BBPU can't be modify twice in a very short period*/
#if defined(DRV_RTC_NO_REG_COMM) || defined(FPGA)
if (BMT.EINT2STATE == DETECTCHROUT)
{
return;
}
#endif // #if defined(DRV_RTC_NO_REG_COMM) || defined(FPGA)
for (index=0;index<1000;index++);
#ifdef BMT_DEBUG
{
kal_uint32 count=0;
dbg_printWithTime("DRV_POWEROFF..\r\n");
while(count++ < 1000000);
}
#endif // #ifdef BMT_DEBUG
#if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
IRQMask(IRQ_RTC_CODE);
#endif // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
#endif //#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
// Do NOT include the setting in FOTA build, no need
// move to HAL PMU
#if defined(DRV_MISC_POWEROFF_VIO_2_96)
{
kal_uint16 val16;
kal_uint32 count;
// Turn off I bit
count = SaveAndSetIRQMask(); //prevent lint error and build error, use count to catch the return value.
// VIO register control
//val16 = *(volatile kal_uint16 *)(0x83010808);
val16 = PW_DRV_ReadReg16(0x83010808);
val16 &= 0xFF0F;
val16 |= 0x0080; // Set VIO to 2.96V
//*(volatile kal_uint16 *)(0x83010808) = val16;
PW_DRV_WriteReg16(0x83010808, val16);
count = drv_get_current_time();
while ( drv_get_duration_ms(count) <= 500 )
{
;
}
}
#endif // #if defined(DRV_MISC_POWEROFF_VIO_2_96)
#endif //#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
//Disable long presss shutdown feature to prevent alarm failed.
pmu_long_press_shutdown_config(KAL_FALSE);
#ifdef PMIC_PRESENT
#if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
// Normal power off,
// 1. clear/set PDN bits acrroding to power off reason
// 2. Control PPBU register
DclRTC_Control(pw_RtcHandler, RTC_CMD_PWIC_POWEROFF_RTC_INIT, (DCL_CTRL_DATA_T *)NULL);
#endif // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
#endif // #ifdef PMIC_PRESENT
}
#if (!defined(__FUE__) && !defined(__UBL__)) || defined(__FAST_LOGO__)
#if ( (!defined(__L1_STANDALONE__)) && (!defined(DRV_RTC_BBPU_AS_6208)) )
/*************************************************************************
* FUNCTION
* PW_is_RTC_expired
*
* DESCRIPTION
* Check if RTC alarm is expired.
*
* PARAMETERS
* None
*
* RETURNS
* KAL_TRUE: MS is powered on with RTC alarm expired.
* KAL_FALSE: vise versa,
* GLOBALS AFFECTED
*
*
*************************************************************************/
kal_bool DclPW_Is_RTC_Expired(void)
{
#if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
kal_uint32 currtime;
kal_uint32 al_currtime;
RTC_CTRL_GET_TIME_T time_current;
RTC_CTRL_GET_ALARM_TIME_T time_alarm;
RTC_CTRL_PWIC_CHECK_POWERON_T rtc_cmd_data14;
// PWIC Clear Plan(RTC)
// Check if RTC alarm power on condition
DclRTC_Control(pw_RtcHandler, RTC_CMD_PWIC_CHECK_POWERON, (DCL_CTRL_DATA_T *)&rtc_cmd_data14); // New API with CMD & DATA
if (rtc_cmd_data14.fgIsPowerOn)
{
DclRTC_Control(pw_RtcHandler, RTC_CMD_GET_TIME, (DCL_CTRL_DATA_T *)&time_current);
DclRTC_Control(pw_RtcHandler, RTC_CMD_GET_ALARM_TIME, (DCL_CTRL_DATA_T *)&time_alarm);
currtime = (kal_uint32)(time_current.u1Hour*3600+time_current.u1Min*60+time_current.u1Sec);
al_currtime = (kal_uint32)(time_alarm.u1Hour*3600+time_alarm.u1Min*60+time_alarm.u1Sec);
// current time >= (alarm time + 20 seconds )
if ((time_current.u1Year== time_alarm.u1Year) &&
(time_current.u1Mon== time_alarm.u1Mon) &&
(time_current.u1Day== time_alarm.u1Day) &&
(currtime >= (al_currtime)) &&
(currtime < (al_currtime+20))
)
{
#ifdef BMT_DEBUG
dbg_printWithTime("RTCPWRON\r\n");
#endif /*BMT_DEBUG*/
return KAL_TRUE;
}
}
#endif // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
return KAL_FALSE;
}
#endif //#if ( (!defined(__L1_STANDALONE__)) && (!defined(DRV_RTC_BBPU_AS_6208)) )
#endif //#if (!defined(__FUE__) && !defined(__UBL__)) || defined(__FAST_LOGO__)
#if !defined(__FUE__) && !defined(__UBL__)
/*************************************************************************
* FUNCTION
* PW_update_flags
*
* DESCRIPTION
* Update the current state of the nonvolatile flags.
*
* PARAMETERS
* None
*
* RETURNS
*
* GLOBALS AFFECTED
* DRV_COMM_REG2
*
*************************************************************************/
static void DclPW_Update_Flags(void)
{
#if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
kal_uint16 REG_COMM2;
RTC_CTRL_CONFIG_PDN_BIT_T rtc_cmd_data18;
// PWIC Clear Plan(RTC)
// Read/Write RTC PDN bit
rtc_cmd_data18.PDNIndex = DCL_RTC_PDN2;
DclRTC_Control(pw_RtcHandler, RTC_CMD_READ_PDN_BITS, (DCL_CTRL_DATA_T *)&rtc_cmd_data18); // New API with CMD & DATA
REG_COMM2 = rtc_cmd_data18.PDNValue;
if (PWRon == (kal_uint8)PWRKEYPWRON || PWRon == (kal_uint8)ABNRESET)
{
REG_COMM2 &= ~(DRV_COMM_REG2_NORMAL_RESET|DRV_COMM_REG2_CHRPWRON|DRV_COMM_REG2_RTCPWRON);
#if defined(__USB_ENABLE__)
REG_COMM2 &= ~(DRV_COMM_REG2_USBMS_PWRON);
#endif // #if defined(__USB_ENABLE__)
}
else if (PWRon == (kal_uint8)CHRPWRON)
{
REG_COMM2 &= ~(DRV_COMM_REG2_NORMAL_RESET|DRV_COMM_REG2_RTCPWRON);
#if defined(__USB_ENABLE__)
REG_COMM2 &= ~(DRV_COMM_REG2_USBMS_PWRON);
#endif // #if defined(__USB_ENABLE__)
REG_COMM2 |= DRV_COMM_REG2_CHRPWRON;
}
#if defined(__USB_ENABLE__)
else if (PWRon == (kal_uint8)USBPWRON)
{
// 1. set when selecting mass storage.
// 2. USB cable is plugged in and powered on.
REG_COMM2 &= ~(DRV_COMM_REG2_NORMAL_RESET|DRV_COMM_REG2_CHRPWRON|DRV_COMM_REG2_RTCPWRON);
REG_COMM2 |= DRV_COMM_REG2_USBMS_PWRON;
}
#endif // #if defined(__USB_ENABLE__)
else if (PWRon == (kal_uint8)RTCPWRON)
{
REG_COMM2 &= ~(DRV_COMM_REG2_NORMAL_RESET|DRV_COMM_REG2_CHRPWRON);
#if defined(__USB_ENABLE__)
REG_COMM2 &= ~(DRV_COMM_REG2_USBMS_PWRON);
#endif // #if defined(__USB_ENABLE__)
REG_COMM2 |= DRV_COMM_REG2_RTCPWRON;
}
// Clear Switch2Idle flag
REG_COMM2 &= ~(DRV_COMM_REG2_SWITCH2IDLE_PWRON);
// Write back new COMM_REG2 value
{
RTC_CTRL_CONFIG_PDN_BIT_T rtcPdnBit;
rtcPdnBit.PDNIndex = DCL_RTC_PDN2;
rtcPdnBit.fgConfigBit = REG_COMM2;
DclRTC_Control(pw_RtcHandler, RTC_CMD_WRITE_PDN_BITS, (DCL_CTRL_DATA_T *)&rtcPdnBit);
}
#endif // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
#ifdef BMT_DEBUG
if (PWRon == PWRKEYPWRON)
{
DRV_POWERON();
}
#endif // #ifdef BMT_DEBUG
#if defined(__DRV_ALLOW_BOOT_ON_WITHOUT_BATTERY__)
if (!bmt_is_bat_on())
{
DCL_HANDLE bmt_handle;
BMT_CTRL_CHARGE_T ChargeCtrl;
bmt_handle = DclBMT_Open(DCL_BMT, FLAGS_NONE);
ChargeCtrl.bEnable = DCL_TRUE;
DclBMT_Control(bmt_handle, BMT_CMD_CHARGE, (DCL_CTRL_DATA_T *)&ChargeCtrl);
DclBMT_Close(bmt_handle);
}
#endif // #if defined(__DRV_ALLOW_BOOT_ON_WITHOUT_BATTERY__)
}
#if ( (!defined(__L1_STANDALONE__)) && (!defined(DRV_RTC_BBPU_AS_6208)) )
/*************************************************************************
* FUNCTION
* PW_is_precharge_on
*
* DESCRIPTION
* check if phone is in precharge state
*
* PARAMETERS
* None
*
* RETURNS
* KAL_TRUE or KAL_FALSE
*
* GLOBALS AFFECTED
* DRV_COMM_REG2
*
*************************************************************************/
//extern kal_uint16 ADC_GetData(kal_uint8 sel);
#if !defined(__DRV_NO_USB_CHARGER__)
static kal_bool DclPW_Is_Precharge_On(void)
{
#if defined(__USB_ENABLE__)
USB_DRV_CTRL_PHY_FUNC_T dcl_data;
DCL_HANDLE usb_dcl_handle;
#endif // #if defined(__USB_ENABLE__)
#if defined(__DRV_NO_CABLE_DETECTION__)
return KAL_FALSE;
#endif // #if defined(__DRV_NO_CABLE_DETECTION__)
#ifndef __DRV_NO_CABLE_DETECTION__
kal_uint8 channel;
kal_uint16 adc;
kal_int32 volt;
ADC_CTRL_GET_PHYSICAL_CHANNEL_T adc_ch;
ADC_CTRL_TRANSFORM_INTO_VOLT_T adcTransV;
ADC_CTRL_GET_DATA_T adc_data;
#if defined(DRV_MISC_ADC_CH0_BUG_WA)
return KAL_FALSE;
#endif // #if defined(DRV_MISC_ADC_CH0_BUG_WA)
adc_ch.u2AdcName = DCL_VBAT_ADC_CHANNEL;
DclSADC_Control( pw_AdcHandler, ADC_CMD_GET_CHANNEL,(DCL_CTRL_DATA_T *)& adc_ch);
channel=adc_ch.u1AdcPhyCh;
if (channel >= ADC_MAX_CHANNEL)
{
// TTTTTT TBD, should we assert??
channel = 0;
}
#if defined(__USB_ENABLE__)
//USB_Phy_Enable(USB_PHY_OWNER_BMT);//USB_PowerControl(KAL_TRUE);
usb_dcl_handle = DclUSB_DRV_Open(DCL_USB, FLAGS_NONE);
dcl_data.owner = DCL_USB_PHY_OWNER_BMT;
DclUSB_DRV_Control(usb_dcl_handle, USB_DRV_CMD_PHY_ENABLE, (DCL_CTRL_DATA_T *)&dcl_data);
#endif // #if defined(__USB_ENABLE__)
#ifndef DRV_ADC_NOT_EXIST
adc_data.u1Channel = channel;
DclHADC_Control( pw_AdcHandler, ADC_CMD_GET_DATA,(DCL_CTRL_DATA_T *)& adc_data);
adc = (kal_uint16)adc_data.u4ADCData;
#endif // #ifndef DRV_ADC_NOT_EXIST
adcTransV.u1AdcPhyCh = channel;
adcTransV.d8AdcValue = adc;
DclSADC_Control(pw_AdcHandler, ADC_CMD_TRANSFORM_INTO_VOLT, (DCL_CTRL_DATA_T *)&adcTransV);
volt = adcTransV.u4Volt;
#if defined(__USB_ENABLE__)
//USB_Phy_Disable(USB_PHY_OWNER_BMT);//USB_PowerControl(KAL_FALSE);
DclUSB_DRV_Control(usb_dcl_handle, USB_DRV_CMD_PHY_DISABLE, (DCL_CTRL_DATA_T *)&dcl_data);
DclUSB_DRV_Close(usb_dcl_handle);
#endif // #if defined(__USB_ENABLE__)
if (volt<=BMT_PRECHARGE_THRESHOLD)
{
return KAL_TRUE;
}
else
{
return KAL_FALSE;
}
#endif // #ifndef __DRV_NO_CABLE_DETECTION__
}
#endif //#if !defined(__DRV_NO_USB_CHARGER__)
void DclPW_PowerInit(void)
{
#if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
#if defined(__LATCH_POWER_IN_BOOTLOADER__)
kal_bool pw_is_powered_latched_in_bl = KAL_FALSE;
kal_bool pw_is_rtc_first_on = KAL_FALSE;
#endif // #if defined(__LATCH_POWER_IN_BOOTLOADER__)
kal_uint8 RTC_Firston;
RTC_CTRL_IS_FIRST_ON_T IsFirstOn;
kal_uint16 REG_COMM2;
kal_bool factors[PWR_FACTOR_MAX] = {KAL_FALSE};
#if !defined(__DRV_NO_USB_CHARGER__)
CHR_DET_CTRL_QUERY_IS_CHR_IN_BY_PW CHRDETCtrlType;
#endif //#if !defined(__DRV_NO_USB_CHARGER__)
RTC_CTRL_CONFIG_PDN_BIT_T rtc_cmd_data18;
HKBD_CTRL_POWKEY_T powerkeyStatus;
#if defined(__FAST_LOGO__)
kal_uint8 power_detect_reason_bl;
power_detect_reason_bl = INT_GetSysStaByCmd(SYS_CMD_GET_PWN_STA, NULL);
#endif
#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
#if defined(__LATCH_POWER_IN_BOOTLOADER__)
if (INT_IsFirstPowerOnFromBL(BL_INFO_FROM_RTC))
{
pw_is_rtc_first_on = KAL_TRUE;
}
if (INT_IsPowerLatchedByBL())
{
pw_is_powered_latched_in_bl = KAL_TRUE;
}
#endif // #if defined(__LATCH_POWER_IN_BOOTLOADER__)
#endif // #if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
rtc_cmd_data18.PDNIndex = DCL_RTC_PDN2;
DclRTC_Control(pw_RtcHandler, RTC_CMD_READ_PDN_BITS, (DCL_CTRL_DATA_T *)&rtc_cmd_data18); // New API with CMD & DATA
REG_COMM2 = rtc_cmd_data18.PDNValue;
DclRTC_Control(pw_RtcHandler, RTC_CMD_IS_FIRST_ON, (DCL_CTRL_DATA_T *)&IsFirstOn);
// If RTC first on, reset PDN bits to normal reset
RTC_Firston = (kal_uint8)IsFirstOn.fgFirstOn;
#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
#if defined(__LATCH_POWER_IN_BOOTLOADER__)
RTC_Firston |= pw_is_rtc_first_on;
if (pw_is_rtc_first_on)
{
RTC_set_First_PowerOn(KAL_TRUE); //
}
#endif // #if defined(__LATCH_POWER_IN_BOOTLOADER__)
#endif // #if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
if (RTC_Firston)
{
RTC_CTRL_CONFIG_PDN_BIT_T rtcPdnBit;
REG_COMM2 = DRV_COMM_REG2_NORMAL_RESET; // REG_COMM2 will be refered in later check
rtcPdnBit.PDNIndex = DCL_RTC_PDN2;
rtcPdnBit.fgConfigBit = DRV_COMM_REG2_NORMAL_RESET; // REG_COMM2 will be refered in later check
DclRTC_Control(pw_RtcHandler, RTC_CMD_WRITE_PDN_BITS, (DCL_CTRL_DATA_T *)&rtcPdnBit);
}
#ifdef __MULTI_BOOT__
if ((INT_BootMode() != MTK_NORMAL_MODE)||(INT_IsBootForUSBAT() == KAL_TRUE)
//Force normal power on when enable usb bootup trace to avoid usb disconnect
//caused by switching D+/D- due to charger detection.
#if defined(__USB_BOOTUP_TRACE__)
||(is_init_log_enable == KAL_TRUE)
#endif
)
{
DCL_HANDLE dcl_bmt_handle = DclBMT_Open(DCL_BMT, FLAGS_NONE);
BMT_CTRL_CHARGE_T ChargeControl;
pw_print_bootup_trace0(SST_PW_POWERINIT_META_PWRON);
//§ï¦^PWIC interface !!
ChargeControl.bEnable = DCL_FALSE;
DclBMT_Control(dcl_bmt_handle, BMT_CMD_CHARGE, (DCL_CTRL_DATA_T *)&ChargeControl);
DclBMT_Close(dcl_bmt_handle);
//tempBMT_Charge(KAL_FALSE); // In BMT_Charge, we will decide whether to really enable or disable charge enable
//BMT.PWRon = (kal_uint8)PWRKEYPWRON;
PWRon=PWRKEYPWRON;
DclPW_DRV_POWERON();
return;
}
#endif /*__MULTI_BOOT__*/
// collect all factors
if (!RTC_Firston)
{
// check RTC expired
if (DclPW_Is_RTC_Expired())
{
factors[PWR_FACTOR_RTC_EXPIRE] = KAL_TRUE;
}
}
DclHKBD_Control(pw_KeypadHandler,HKBD_CMD_GET_POWER_KEY_STATUS , (DCL_CTRL_DATA_T*)&powerkeyStatus);
// check power key pressed
#if defined(__FAST_LOGO__)
if (powerkeyStatus.fgPKP || (power_detect_reason_bl & PWR_FACTOR_BL_POWER_KEY))
#else
if (powerkeyStatus.fgPKP)
#endif
{
factors[PWR_FACTOR_POWER_KEY] = KAL_TRUE;
}
// check charger or usb existence
#if !defined(__DRV_NO_USB_CHARGER__)
#ifdef __USB_UART_MULTIPLEXED_WITH_EXT_SWITCH__
GPIO_WriteIO(1, gpio_usb_uart_switch_pin); //switch to usb mode before USB/CHR detect
#endif
Dcl_Chr_Det_Control(NULL,CHR_DET_CMD_QUERY_IS_CHR_IN_BY_PW,(DCL_CTRL_DATA_T *)&CHRDETCtrlType);
switch (CHRDETCtrlType.Chr_det_type)
{
case PW_AC_CHR:
case PW_AC_NON_STD_CHR:
factors[PWR_FACTOR_CHARGER_IN] = KAL_TRUE;
break;
case PW_USB_CHR:
case PW_USB_CHARGING_HOST_CHR:
factors[PWR_FACTOR_USB_IN] = KAL_TRUE;
break;
case PW_NO_CHR:
break;
}
/*check Precharge*/
if (factors[PWR_FACTOR_CHARGER_IN]==KAL_TRUE)
{
if (DclPW_Is_Precharge_On())
{
factors[PWR_FACTOR_PRECHRPWRON_FLG] = KAL_TRUE;
}
}
#ifdef __USB_UART_MULTIPLEXED_WITH_EXT_SWITCH__
if(factors[PWR_FACTOR_USB_IN] != KAL_TRUE)
GPIO_WriteIO(0, gpio_usb_uart_switch_pin); //restore to UART mode
#endif
#endif /* !defined(__DRV_NO_USB_CHARGER__) */
// check watch dog reset
if (WDT_RST)
{
factors[PWR_FACTOR_WDT_RESET] = KAL_TRUE;
is_wdt_power=KAL_TRUE;/*for NFB*/
}
// check flags
if (REG_COMM2 & DRV_COMM_REG2_NORMAL_RESET)
{
factors[PWR_FACTOR_NORMAL_RESET_FLG] = KAL_TRUE;
}
if (REG_COMM2 & DRV_COMM_REG2_CHRPWRON)
{
factors[PWR_FACTOR_CHRPWRON_FLG] = KAL_TRUE;
}
if (REG_COMM2 & DRV_COMM_REG2_USBMS_PWRON)
{
factors[PWR_FACTOR_USBMS_PWRON_FLG] = KAL_TRUE;
}
if (REG_COMM2 & DRV_COMM_REG2_RTCPWRON)
{
factors[PWR_FACTOR_RTCPWRON_FLG] = KAL_TRUE;
}
if (REG_COMM2 & DRV_COMM_REG2_SWITCH2IDLE_PWRON)
{
factors[PWR_FACTOR_SWITCH2IDLE_FLG] = KAL_TRUE;
}
// check power on type
// priority: PWRKEYPWRON > ABNRESET > CHRPWRON > USBPWRON_WDT > USBPWRON > RTCPWRON
#if defined(DRV_MISC_PWIC_FORCE_RETURN_PWRKEY_POWERON)
{
kal_uint32 tmp_i;
for (tmp_i=0; tmp_i<PWR_FACTOR_MAX;tmp_i++){
factors[tmp_i] = KAL_FALSE;
}
factors[PWR_FACTOR_SWITCH2IDLE_FLG] = KAL_TRUE;
}
#endif // #if defined(DRV_MISC_PWIC_FORCE_RETURN_PWRKEY_POWERON)
#ifdef __CS_FAC_DET__
{
cs_fac_boot_mode_enum fac_boot_mode;
fac_boot_mode = cs_fac_det->factory_det_get_boot_mode();
switch (fac_boot_mode)
{
case CS_FAC_BOOT_IDLE:
factors[PWR_FACTOR_SWITCH2IDLE_FLG] = KAL_TRUE;
break;
case CS_FAC_BOOT_CHARGING:
factors[PWR_FACTOR_SWITCH2CHR_FLG] = KAL_TRUE;
break;
case CS_FAC_BOOT_USB_CHARGING:
factors[PWR_FACTOR_SWITCH2USB_FLG] = KAL_TRUE;
break;
default:
break;
}
}
#endif // #ifdef __CS_FAC_DET__
#if defined(__DRV_ALLOW_BOOT_ON_WITHOUT_BATTERY__)
//if (!pmic_adpt_is_bat_on())
if (!bmt_is_bat_on())
{
#if defined(__DRV_NO_BATTERY_FORCE_BOOT_TO_CHARGING__)
factors[PWR_FACTOR_SWITCH2CHR_FLG] = KAL_TRUE;
#endif // #if defined(__DRV_NO_BATTERY_FORCE_BOOT_TO_CHARGING__)
}
#endif // #if defined(__DRV_ALLOW_BOOT_ON_WITHOUT_BATTERY__)
if (0 != pmu_long_press_status_check())
{
factors[PWR_FACTOR_LONG_PRESS_SHUTDOWN] = KAL_TRUE;
pmu_long_press_shutdown_reset();
}
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_PWRKEY, factors[0]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_CHRIN, factors[1]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_USBIN, factors[2]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_RTCALARM, factors[3]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_WDT, factors[4]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_NORMAL_RST, factors[5]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_CHR_PWRON_FG, factors[6]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_USBMS_PWRON_FG, factors[7]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_RTC_PWRON_FG, factors[8]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_PRECHR_PWRON_FG, factors[9]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_FC2IDLE_FG, factors[10]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_FC2CHR_FG, factors[11]);
pw_print_bootup_trace1(SST_PW_POWERINIT_FACTOR_FC2USB_FG, factors[12]);
if(factors[PWR_FACTOR_PRECHRPWRON_FLG])
{
//BMT.PWRon = (kal_uint8)CHRPWRON;//PRECHRPWRON
PWRon=CHRPWRON;
}
else if (factors[PWR_FACTOR_SWITCH2IDLE_FLG])
{
//BMT.PWRon = (kal_uint8)PWRKEYPWRON;
PWRon=PWRKEYPWRON;
}
else if (factors[PWR_FACTOR_SWITCH2CHR_FLG])
{
//BMT.PWRon = (kal_uint8)CHRPWRON;
PWRon=CHRPWRON;
}
else if (factors[PWR_FACTOR_SWITCH2USB_FLG])
{
//BMT.PWRon = (kal_uint8)USBPWRON;
PWRon=USBPWRON;
}
else if ((factors[PWR_FACTOR_POWER_KEY]&& !factors[PWR_FACTOR_CHARGER_IN]&& !factors[PWR_FACTOR_USB_IN])||
(factors[PWR_FACTOR_POWER_KEY]&& factors[PWR_FACTOR_CHARGER_IN]&& factors[PWR_FACTOR_WDT_RESET]&& factors[PWR_FACTOR_CHRPWRON_FLG])||
(factors[PWR_FACTOR_POWER_KEY]&& factors[PWR_FACTOR_USB_IN]&& factors[PWR_FACTOR_WDT_RESET]&& factors[PWR_FACTOR_USBMS_PWRON_FLG])||
(factors[PWR_FACTOR_POWER_KEY]&& factors[PWR_FACTOR_CHARGER_IN]&& !factors[PWR_FACTOR_WDT_RESET])||
(factors[PWR_FACTOR_POWER_KEY]&& factors[PWR_FACTOR_USB_IN]&& !factors[PWR_FACTOR_WDT_RESET]))
{
//BMT.PWRon = (kal_uint8)PWRKEYPWRON;
PWRon=PWRKEYPWRON;
}
else if (factors[PWR_FACTOR_WDT_RESET]&&!factors[PWR_FACTOR_CHRPWRON_FLG]&&!factors[PWR_FACTOR_USBMS_PWRON_FLG]
&&!factors[PWR_FACTOR_RTCPWRON_FLG]&& !factors[PWR_FACTOR_NORMAL_RESET_FLG])
{
//BMT.PWRon = (kal_uint8)ABNRESET;
PWRon=ABNRESET;
}
#ifdef __MA_L1__
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif // #ifdef __MA_L1__
else if ((factors[PWR_FACTOR_CHARGER_IN]&&!factors[PWR_FACTOR_POWER_KEY])||
(factors[PWR_FACTOR_CHARGER_IN]&&factors[PWR_FACTOR_POWER_KEY]&&!factors[PWR_FACTOR_RTCPWRON_FLG]))
{
//BMT.PWRon = (kal_uint8)CHRPWRON;
PWRon=CHRPWRON;
}
#ifdef __USB_ENABLE__
else if ((factors[PWR_FACTOR_USB_IN]&&!factors[PWR_FACTOR_POWER_KEY]&&factors[PWR_FACTOR_WDT_RESET]&&
!factors[PWR_FACTOR_NORMAL_RESET_FLG]&&factors[PWR_FACTOR_USBMS_PWRON_FLG]))
{
#if defined(DRV_PW_NONE_USB_POWER_ON)
//BMT.PWRon = (kal_uint8)CHRPWRON;
PWRon=CHRPWRON;
#else //#if defined(DRV_PW_NONE_USB_POWER_ON)
//BMT.PWRon = (kal_uint8)USBPWRON_WDT;
PWRon=USBPWRON_WDT;
#endif //#if defined(DRV_PW_NONE_USB_POWER_ON)
}
else if ((factors[PWR_FACTOR_USB_IN]&&!factors[PWR_FACTOR_POWER_KEY])||
(factors[PWR_FACTOR_USB_IN]&&factors[PWR_FACTOR_POWER_KEY]&&!factors[PWR_FACTOR_USBMS_PWRON_FLG])
)
{
#if defined(DRV_PW_NONE_USB_POWER_ON)
//BMT.PWRon = (kal_uint8)CHRPWRON;
PWRon=CHRPWRON;
#else //#if defined(DRV_PW_NONE_USB_POWER_ON)
//BMT.PWRon = (kal_uint8)USBPWRON;
PWRon=USBPWRON;
#endif //#if defined(DRV_PW_NONE_USB_POWER_ON)
}
#endif // #ifdef __USB_ENABLE__
else if ((factors[PWR_FACTOR_RTC_EXPIRE]&&!factors[PWR_FACTOR_RTCPWRON_FLG]))
{
//BMT.PWRon = (kal_uint8)RTCPWRON;
PWRon=RTCPWRON;
}
#if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
#if defined(__LATCH_POWER_IN_BOOTLOADER__)
else if (pw_is_powered_latched_in_bl)
{
//BMT.PWRon = (kal_uint8)PWRKEYPWRON;
PWRon=PWRKEYPWRON;
}
#endif // #if defined(__LATCH_POWER_IN_BOOTLOADER__)
#endif // #if !defined(__FUE__) && !defined(__UBL__) /* !!CUATION!! for FOTA or bootloader support */
else
{
kal_uint32 wait = 0;
pw_print_bootup_trace0(SST_PW_POWERINIT_ABNORMAL_PWRON);
while(1)/*to cover crstal oscillates too late case*/
{
// PWIC Clear Plan(RTC)
// Abnormal power on, need to power off, disable RTC alarm
DclRTC_Control(pw_RtcHandler, RTC_CMD_PWIC_MASK_AL, (DCL_CTRL_DATA_T *)NULL);
DclPW_DRV_POWEROFF();
for(wait=0;wait<50000;wait++){};
}
}
pw_print_bootup_trace1(SST_PW_POWERINIT_PWRON_REASON, PWRon);
// reset flags
DclPW_Update_Flags();
{
kal_uint8 i;
for (i=0;i<PWR_FACTOR_MAX;i++)
{
pwic_powerOn_factor=pwic_powerOn_factor|factors[i]<<i;
}
}
#else // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
//BMT.PWRon = PWRKEYPWRON;
PWRon=PWRKEYPWRON;
#endif // #if !defined(DRV_RTC_NOT_EXIST) && !defined(DRV_RTC_OFF)
}
#endif //#if ( (!defined(__L1_STANDALONE__)) && (!defined(DRV_RTC_BBPU_AS_6208)) )
#endif //#if !defined(__FUE__) && !defined(__UBL__)
/*************************************************************************
* FUNCTION
* DclPMU_Initialize
*
* DESCRIPTION
* This function is to initialize PMU module
*
* PARAMETERS
* None
*
* RETURNS
* STATUS_OK
*
*************************************************************************/
#if defined(__MTK_TARGET__) && defined(__DCM_WITH_COMPRESSION_MAUI_INIT__)
#pragma push
#pragma arm section code="DYNAMIC_COMP_MAUIINIT_SECTION"
#endif
DCL_STATUS DclPW_Initialize(void)
{
if (pw_RtcHandler==DCL_HANDLE_NONE)
{
pw_RtcHandler= DclRTC_Open(DCL_RTC,FLAGS_NONE);
}
#if !defined(__FUE__) && !defined(__UBL__)
if (pw_KeypadHandler==DCL_HANDLE_NONE)
{
pw_KeypadHandler = DclHKBD_Open(DCL_KBD, FLAGS_NONE);
}
if (pw_AdcHandler==DCL_HANDLE_NONE)
{
pw_AdcHandler = DclSADC_Open(DCL_ADC, FLAGS_NONE);
}
#endif // #if !defined(__FUE__) && !defined(__UBL__)
return STATUS_OK;
}
#if defined(__MTK_TARGET__) && defined(__DCM_WITH_COMPRESSION_MAUI_INIT__)
#pragma arm section code
#pragma pop
#endif
/*************************************************************************
* FUNCTION
* DclPMU_Open
*
* DESCRIPTION
* This function is to open the PMU38 module and return a handle
*
* PARAMETERS
* dev: only valid for DCL_PMU
* flags: no sepcial flags is needed. Please use FLAGS_NONE
*
* RETURNS
* DCL_HANDLE_INVALID: Open failed.
* other value: a valid handle
*
*************************************************************************/
DCL_HANDLE DclPW_Open(DCL_DEV dev, DCL_FLAGS flags)
{
if (dev != DCL_PW)
{
ASSERT(0);
return DCL_HANDLE_INVALID;
}
return 1234;
}
/*************************************************************************
* FUNCTION
* DclPMU_ReadData
*
* DESCRIPTION
* This function is not supported for the PMU module now.
*
* PARAMETERS
* N/A
*
* RETURNS
* STATUS_UNSUPPORTED
*
*************************************************************************/
DCL_STATUS DclPW_ReadData(DCL_HANDLE handle, DCL_BUFF *buff, DCL_BUFF_LEN buf_len, DCL_OPTIONS options)
{
return STATUS_UNSUPPORTED;
}
/*************************************************************************
* FUNCTION
* DclPMU_WriteData
*
* DESCRIPTION
* This function is not supported for the PMU module now.
*
* PARAMETERS
* N/A
*
* RETURNS
* STATUS_UNSUPPORTED
*
*************************************************************************/
DCL_STATUS DclPW_WriteData(DCL_HANDLE handle, DCL_BUFF *buff, DCL_BUFF_LEN buf_len, DCL_OPTIONS options)
{
return STATUS_UNSUPPORTED;
}
/*************************************************************************
* FUNCTION
* DclPMU_Configure
*
* DESCRIPTION
* This function is not supported for the PMU module now.
*
* PARAMETERS
* N/A
*
* RETURNS
* STATUS_UNSUPPORTED
*
*************************************************************************/
DCL_STATUS DclPW_Configure(DCL_HANDLE handle, DCL_CONFIGURE_T *configure)
{
return STATUS_UNSUPPORTED;
}
/*************************************************************************
* FUNCTION
* DclPMU_RegisterCallback
*
* DESCRIPTION
* This function is to set callback function for the PMU module.
*
* PARAMETERS
* handle: the returned handle value of DclPMU_Open
* event: Supported events:
* EVENT_WDT_TIMEOUT: Watch dog time out interrupt
* callback: the callback function for registered events
*
* RETURNS
* STATUS_OK: Successfully register the callback function.
* STATUS_INVALID_HANDLE: It's a invalid handle.
* STATUS_NOT_OPENED: The module has not been opened.
* STATUS_INVALID_EVENT: The event parameter is invalid.
*
*************************************************************************/
DCL_STATUS DclPW_RegisterCallback(DCL_HANDLE handle, DCL_EVENT event, PFN_DCL_CALLBACK callback)
{
return STATUS_UNSUPPORTED;
}
/*************************************************************************
* FUNCTION
* DclPMU_Control
*
* DESCRIPTION
* This function is to send command to control the PMU module.
*
* PARAMETERS
* handle: The handle value returned from DclPMU_Open
* cmd: a control command for PMU module
* 1. WDT_CMD_ENABLE: to enable/disable WDT
* 2. WDT_CMD_SET_EXT_POL: to set ploarity of external pin when WDT expired
* data: The data of the control command
* 1. WDT_CMD_ENABLE: pointer to a WDT_CTRL_ENABLE_T structure
* 2. WDT_CMD_SET_EXT_POL: pointer to a WDT_CTRL_SET_EXT_POL_T structure
*
* RETURNS
* STATUS_OK: command is executed successfully.
* STATUS_FAIL: command is failed.
* STATUS_INVALID_CMD: It's a invalid command.
*
*************************************************************************/
DCL_STATUS DclPW_Control(DCL_HANDLE handle, DCL_CTRL_CMD cmd, DCL_CTRL_DATA_T *data)
{
RTC_CTRL_CONFIG_PDN_BIT_T rtcPdnBit;
switch(cmd)
{
case PW_CMD_SET_SWITCH_TO_IDLE:
{
rtcPdnBit.PDNIndex = DCL_RTC_PDN2;
rtcPdnBit.fgConfigBit = DRV_COMM_REG2_SWITCH2IDLE_PWRON;
DclRTC_Control(pw_RtcHandler, RTC_CMD_SET_PDN_BITS, (DCL_CTRL_DATA_T *)&rtcPdnBit);
}
break;
case PW_CMD_POWERON:
{
DclPW_DRV_POWERON();
}
break;
case PW_CMD_POWEROFF:
{
DclPW_DRV_POWEROFF();
}
break;
#if !defined(__FUE__) && !defined(__UBL__)
case PW_CMD_SET_POWERON_REASON:
{
PW_CTRL_SET_POWERON_REASON *pCtrlVal=&(data->rPWSetPowerOnReason);
PWRon = pCtrlVal->powerOnReason;
// PWIC Clear Plan(RTC)
// read/write PDN bit
if (PWRon == (kal_uint8)PWRKEYPWRON)
{
// Clear RTC power on bit
rtcPdnBit.PDNIndex = DCL_RTC_PDN2;
rtcPdnBit.fgConfigBit = DRV_COMM_REG2_RTCPWRON;
DclRTC_Control(pw_RtcHandler, RTC_CMD_CLEAR_PDN_BITS, (DCL_CTRL_DATA_T *)&rtcPdnBit);
}
}
break;
case PW_CMD_GET_POWERON_REASON:
{
PW_CTRL_GET_POWERON_REASON *pCtrlVal=&(data->rPWGetPowerOnReason);
pCtrlVal->powerOnReason=PWRon;
}
break;
case PW_CMD_CLEAR_SWITCH_TO_IDLE:
{
rtcPdnBit.PDNIndex = DCL_RTC_PDN2;
rtcPdnBit.fgConfigBit = DRV_COMM_REG2_SWITCH2IDLE_PWRON;
DclRTC_Control(pw_RtcHandler, RTC_CMD_CLEAR_PDN_BITS, (DCL_CTRL_DATA_T *)&rtcPdnBit);
}
break;
case PW_CMD_POWER_INIT:
{
#if ( (!defined(__L1_STANDALONE__)) && (!defined(DRV_RTC_BBPU_AS_6208)) )
DclPW_PowerInit();
#endif //#if ( (!defined(__L1_STANDALONE__)) && (!defined(DRV_RTC_BBPU_AS_6208)) )
}
break;
case PW_CMD_UPDATE_FLAGS:
{
DclPW_Update_Flags();
}
break;
case PW_CMD_NFB_POWERON:
{
#if defined(_NAND_FLASH_BOOTING_) || defined(__EMMC_BOOTING__)
if (PWRon == PWRKEYPWRON)
{
DclPW_DRV_POWERON();
}
#endif // #ifdef _NAND_FLASH_BOOTING_
}
break;
case PW_CMD_IS_USB_BOOT:
{
PW_CTRL_IS_USB_BOOT *pCtrlVal=&(data->rPWIsUsbBoot);
if ((PWRon == USBPWRON) || (PWRon ==USBPWRON_WDT))
{
pCtrlVal->val=DCL_TRUE;
}
else
{
pCtrlVal->val=DCL_FALSE;
}
}
break;
case PW_CMD_GET_CHARGER_BOOT_TYPE:
{
PW_CTRL_GET_CHARGER_TYPE *pCtrlVal=&(data->rPWChrType);
pCtrlVal->pw_chr_type = PWR_NONE;
if ((PWRon == CHRPWRON) || (PWRon ==PRECHRPWRON))
{
pCtrlVal->pw_chr_type = PWR_AC_CHR;
}
else if ((PWRon == USBPWRON) || (PWRon ==USBPWRON_WDT))
{
pCtrlVal->pw_chr_type = PWR_USB_CHR;
}
}
break;
#endif //#if !defined(__FUE__) && !defined(__UBL__)
default:
return STATUS_UNSUPPORTED;
}
return STATUS_OK;
}
/*************************************************************************
* FUNCTION
* DclPMU_Close
*
* DESCRIPTION
* This function is to close the PMU module.
*
* PARAMETERS
* handle: the returned handle value of DclPMU_Open
*
* RETURNS
* STATUS_OK
*
*************************************************************************/
DCL_STATUS DclPW_Close(DCL_HANDLE handle)
{
return STATUS_OK;
}