dcl_chr_det.c
46.2 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
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
/*****************************************************************************
* 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_chr_det.c
*
* Project:
* --------
* Maui_Software
*
* Description:
* ------------
* This Module defines ADC scheduler.
*
* 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!
*
*
*------------------------------------------------------------------------------
* Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
*============================================================================
****************************************************************************/
#include "drv_features.h"
#include "reg_base.h"
#include "drv_comm.h"
#include "init.h"
#include "dcl.h"
#include "usb_drv.h"
#include "eint.h"
#include "bmt.h"
#include "dcl_pmu_sw.h"
#include "gpio_sw.h"
#include "bmt_trc.h"
#include "bmt_chr_setting.h"
#include "bmt_utility.h"
kal_uint8 gCHRDET_EINT_NO = 0xFF;
#if defined(__USB_ENABLE__)
kal_uint8 gUSB_EINT_NO;
#endif // #if defined(__USB_ENABLE__)
CHR_DET_TYPE_ENUM pw_chr_type;
CHARGER_IN_OUT_STATUS chr_plug_status = CHARGER_UNINIT;
#if defined(PMIC_CHR_USB_DETECT_THROUGH_USB)
DCL_HANDLE chrDet_UsbHandler;
#endif
DCL_HANDLE chrDet_PmuHandler;
kal_uint8 ChrDet_status; /*Main BMT struct*/
#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
CHR_USB_DET_MGR_T chr_usb_det_mgr;
chr_usb_detect_struct chr_usb_detect;
#endif //#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
#if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
static kal_uint8 g_usb_eint_no;
#endif
#ifdef PMIC_PMIC_SERIES
extern void dcl_pmic6326_ChrDet_Registration(chr_callback_type type, void (*Callback)(void));
#endif
#if defined(PMIC_6326_REG_API)
void dcl_pmic6326_HISR(void);
#endif //#if defined(PMIC_6326_REG_API)
#if defined(__MODEM_COMPONENT__)
#define PMIC_CHR_DETECT_NONE
#endif
#if !defined(PMIC_CHR_DETECT_NONE)
#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
extern void CHRDET_HISR(void);
#endif //#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
#if defined(__DRV_EXT_CHARGER_DETECTION__)
bmt_ext_charger_det *ext_charger_det;
#endif // #if defined(__DRV_EXT_CHARGER_DETECTION__)
#ifdef __USB_UART_MULTIPLEXED_WITH_EXT_SWITCH__
extern const char gpio_usb_uart_switch_pin;
#endif
extern ilm_struct *allocate_ilm(module_type module_id);
extern kal_bool msg_send_ext_queue(ilm_struct *ilm_ptr);
void chrdet_level_config(kal_uint8 state)
{
#if defined(__DRV_EXT_CHARGER_DETECTION__)
return ; // For external charger detection mechanism, we leave the setting in det driver
#endif // #if defined(__DRV_EXT_CHARGER_DETECTION__)
if (state != DETECTCHRIN)
{
/*lint -e64*/
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
EINT_Set_Polarity(gCHRDET_EINT_NO,LEVEL_LOW);
#else
EINT_Set_Polarity(gCHRDET_EINT_NO,LEVEL_HIGH);
#endif //#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
/*lint +e64*/
}
else
{
/*lint -e64*/
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
EINT_Set_Polarity(gCHRDET_EINT_NO,LEVEL_HIGH);
#else
EINT_Set_Polarity(gCHRDET_EINT_NO,LEVEL_LOW);
#endif //#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
/*lint +e64*/
}
#if defined(PMIC_6326_REG_API)
ASSERT(0); // For MT6326, we should ASSERT
#endif // #if defined(PMIC_6326_REG_API)
}
void chr_det_hisr_sendMes2BMT(module_type srcid, msg_type msgid)
{
ilm_struct *BMT_ilm;
DRV_BuildPrimitive(BMT_ilm,
srcid,
MOD_BMT,
msgid,
NULL);
msg_send_ext_queue(BMT_ilm);
}
/*
* FUNCTION
* CHRDET_HISR
*
* DESCRIPTION
* This function is the interrupt handler for EINT1
*
* CALLS
*
* PARAMETERS
* None
*
* RETURNS
* None
*
* GLOBALS AFFECTED
* None
*/
void CHRDET_HISR(void)
{
kal_uint32 state;
#if defined(PMIC_6326_REG_API)
static kal_bool chr_status = KAL_FALSE;
#endif // #if defined(PMIC_6326_REG_API)
#if defined(PMIC_6326_REG_API)
{
PMU_CTRL_CHR_GET_CHR_DET_STATUS chrStatus;
DclPMU_Control(chrDet_PmuHandler, CHR_GET_CHR_DET_STATUS, (DCL_CTRL_DATA_T *)&chrStatus);
DclPMU_Close(chrDet_PmuHandler);
if (chr_status == chrStatus.enable){
#if ( (!defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)) && defined(PMIC_6326_REG_API) )
#if (!defined(__DRV_EXT_CHARGER_DETECTION__))
EINT_UnMask(gCHRDET_EINT_NO);
#endif // #if (!defined(__DRV_EXT_CHARGER_DETECTION__))
#endif // #if ( (!defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)) && defined(PMIC_6326_REG_API) )
return;
}
}
chr_status =(kal_bool)(!((kal_uint8)chr_status));
if (chr_status == KAL_TRUE){
state = DETECTCHRIN;
}else{
state = DETECTCHROUT;
}
// Should PMIC6326 update the flag?
ChrDet_status = !state;
#else // #if defined(PMIC_6326_REG_API)
state = ChrDet_status;
ChrDet_status = !ChrDet_status;
#if (!defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__) )
#if (!defined(__DRV_EXT_CHARGER_DETECTION__))
chrdet_level_config(ChrDet_status);
#endif // #if (!defined(__DRV_EXT_CHARGER_DETECTION__))
#endif // #if ( (!defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)) && ( defined(PMIC_6305_REG_API) || defined(PMIC_6223_REG_API)|| defined(PMIC_6238_REG_API) || defined(PMIC_6253_REG_API) || defined(PMIC_6236_REG_API) || defined(PMIC_6251_REG_API)) )
#endif // #if defined(PMIC_6326_REG_API)
if (state == DETECTCHRIN)
{
chr_plug_status = CHARGER_PLUG_IN;
//DclPMU_Control(chrDet_PmuHandler, CHR_SET_CV_DETECTION_VOLTAGE_CALIBRATION, NULL);
}
else
{
chr_plug_status = CHARGER_PLUG_OUT;
}
chr_det_hisr_sendMes2BMT(MOD_EINT_HISR/*MOD_BMT*/,MSG_ID_BMT_CHARGER_IND);
#if ( (!defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)) )
#if (!defined(__DRV_EXT_CHARGER_DETECTION__))
EINT_UnMask(gCHRDET_EINT_NO);
#endif // #if (!defined(__DRV_EXT_CHARGER_DETECTION__))
#endif // #if ( (!defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)) )
}
#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
kal_uint8 chr_usb_eint_mask = 0;
kal_uint8 chr_usb_eint_owner_mask = 0;
kal_bool CHR_USB_EINT_UnMask(CHR_DET_EINT_OWNER Owner)
{
kal_uint32 savedMask;
kal_uint32 eint;
#if (!defined(DRV_MISC_CHR_USB_EINT_CENTRAL_UNMASK))
// If CENTRAL control is NOT enabled, we filter out USB owner control
// ==> Just ignore USB request, the EINT unmask control is controlled by PMIC only
if (Owner == CHR_DET_EINT_OWNER_USB){
return KAL_FALSE;
}else{
EINT_UnMask(chr_usb_detect.chr_usb_eint);
return KAL_TRUE;
}
#endif // #if defined(DRV_MISC_CHR_USB_EINT_CENTRAL_UNMASK)
eint = (kal_uint32)chr_usb_detect.chr_usb_eint;
// Force to unmask EINT
// For some cases, our driver may trigger the EINT (Ex: OTG)
// In this situation, we do NOT need central control
// Because it is a false alarm trigger
savedMask = SaveAndSetIRQMask();
if (Owner == USB_DET_EINT_OWNER_FORCE_UNMASK)
{
chr_usb_eint_mask = 0;
EINT_UnMask((kal_uint8)eint);
}
else
{
chr_usb_eint_mask |= (kal_uint8)Owner;
if (chr_usb_eint_mask == chr_usb_eint_owner_mask)
{
EINT_UnMask((kal_uint8)eint);
// Reset the flag
chr_usb_eint_mask = 0;
}
}
RestoreIRQMask(savedMask);
return (chr_usb_eint_mask==0?KAL_TRUE:KAL_FALSE);
}
// This function is to set OWNER mask
// When one ot the owners wants to un-mask EINT, we compare the value with owner_mask
// When the value matchs owner_mask, then we un-mask EINT
void CHR_USB_EINT_Owner_SetMask(CHR_DET_EINT_OWNER Owner){
#if !defined(__USB_ENABLE__)
return;
#endif // #if !defined(__USB_ENABLE__)
#if (!defined(DRV_MISC_CHR_USB_EINT_CENTRAL_UNMASK))
// Not allow for USB to set
if (Owner == CHR_DET_EINT_OWNER_USB){
return;
}
#endif // #if (!defined(DRV_MISC_CHR_USB_EINT_CENTRAL_UNMASK))
chr_usb_eint_owner_mask |= Owner;
}
// Clear owner_mask, this should be called when cable is plugged-in every time
void CHR_USB_EINT_Owner_ClrMask(void){
chr_usb_eint_owner_mask = 0;
}
static void CHR_USB_PLUG_OUT(void)
{
//kal_prompt_trace(MOD_BMT,"CHR_USB OUT");
//kal_brief_trace( TRACE_STATE,BMT_CABLE_OUT_TRC);
drv_trace0( TRACE_STATE,BMT_CABLE_OUT_TRC);
if(chr_usb_detect.chr_usb_present == NO_PRESENT)
{
ASSERT(0);
}
CHRDET_HISR();
#if defined(__USB_ENABLE__)
if (chr_usb_detect.chr_usb_present == USB_PRESENT)
{
chr_usb_det_mgr.usb_det_hisr();
}
#endif
chr_usb_detect.chr_usb_present = NO_PRESENT;
pw_chr_type = PW_NO_CHR;
CHR_USB_EINT_UnMask(CHR_DET_EINT_OWNER_BMT); // EINT_UnMask(chr_usb_detect.chr_usb_eint);
}
void CHR_USB_Det_EINT_Return(CHR_DET_TYPE_ENUM state)
{
DCL_HANDLE pmu_handle;
PW_CTRL_GET_CHARGER_TYPE CtrlVal;
static kal_uint8 firstDetect = KAL_TRUE;
if(KAL_TRUE == firstDetect) // only sync with power on reason on fisrt charger detection
{
pmu_handle = DclPW_Open(DCL_PW, FLAGS_NONE);
DclPW_Control(pmu_handle, PW_CMD_GET_CHARGER_BOOT_TYPE, (DCL_CTRL_DATA_T *)&CtrlVal);
DclPW_Close(pmu_handle);
// to avoid pweron reason is different from charger type, so sync charger type to power on reason.
if((PWR_AC_CHR == CtrlVal.pw_chr_type) && (PW_USB_CHR == state || PW_USB_CHARGING_HOST_CHR == state))
state = PW_AC_CHR;
else if((PWR_USB_CHR == CtrlVal.pw_chr_type) && (PW_AC_CHR == state || PW_AC_NON_STD_CHR == state))
state = PW_USB_CHR;
firstDetect = KAL_FALSE;
}
if ( state == PW_USB_CHR || state == PW_USB_CHARGING_HOST_CHR)
{
// kal_prompt_trace(MOD_BMT,"USB IN");
if(state == PW_USB_CHR)
{
drv_trace0( TRACE_STATE,BMT_USB_IN_TRC);
}
else
{
drv_trace0( TRACE_STATE,BMT_USB_CHARGING_HOST_IN_TRC);
}
chr_usb_detect.chr_usb_present = USB_PRESENT;
// Set central control owner bit
CHR_USB_EINT_Owner_SetMask(CHR_DET_EINT_OWNER_BMT);
CHR_USB_EINT_Owner_SetMask(CHR_DET_EINT_OWNER_USB);
CHRDET_HISR();
#if defined(__USB_ENABLE__)
chr_usb_det_mgr.usb_det_hisr();
#endif // #if defined(__USB_ENABLE__)
}
else if (state == PW_AC_CHR || state==PW_AC_NON_STD_CHR)
{
if(state == PW_AC_CHR)
{
drv_trace0( TRACE_STATE,BMT_AC_IN_TRC);
chr_usb_detect.chr_usb_present = CHARGER_PRESENT;
}
else // non standard charger
{
drv_trace0( TRACE_STATE,BMT_NON_AC_IN_TRC);
chr_usb_detect.chr_usb_present = CHARGER_PRESENT_NON;
}
CHR_USB_EINT_Owner_SetMask(CHR_DET_EINT_OWNER_BMT);
CHRDET_HISR();
#if ( defined(__USB_AND_UART_WITH_ONE_GPIO__) || defined(__USB_AND_UART_WITH_ONE_PORT__) )
/* We must call this function in chr_usb_det_mgr.usb_det_hisr() in the case that USB and UART with one GPIO */
//USB_UART_Share(KAL_TRUE);
{
DCL_HANDLE usb_dcl_handle;
DCL_BOOL dcl_data;
usb_dcl_handle = DclUSB_DRV_Open(DCL_USB, FLAGS_NONE);
dcl_data = DCL_TRUE;
DclUSB_DRV_Control(usb_dcl_handle, USB_DRV_CMD_USB_UART_SHARE, (DCL_CTRL_DATA_T *)&dcl_data);
DclUSB_DRV_Close(usb_dcl_handle);
}
#endif // #if ( defined(__USB_AND_UART_WITH_ONE_GPIO__) || defined(__USB_AND_UART_WITH_ONE_PORT__) )
}
CHR_USB_EINT_UnMask(CHR_DET_EINT_OWNER_BMT); // EINT_UnMask(chr_usb_detect.chr_usb_eint);
}
/*************************************************************************
* FUNCTION
* CHRDET_USB_HISR
*
* DESCRIPTION
* 1. HISR of charger and usb external interrupt
*
* PARAMETERS
* None
*
* RETURNS
* None
*
* GLOBALS AFFECTED
*
*************************************************************************/
static void CHR_USB_EINT_HISR(void)
{
#ifdef __OTG_ENABLE__
static kal_bool g_usb_host_turn_on_vbus = KAL_FALSE;
#endif // #ifdef __OTG_ENABLE__
//#if defined(PMIC_6305_REG_API) || defined(PMIC_6318_REG_API) || defined(PMIC_6238_REG_API) || defined(PMIC_6326_REG_API) || defined(PMIC_6253_REG_API) || defined(PMIC_6236_REG_API) || defined(PMIC_6276_REG_API) || defined(PMIC_6255_REG_API)
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
EINT_Set_Polarity(chr_usb_detect.chr_usb_eint, (kal_bool)(chr_usb_detect.chr_usb_state));
#endif // #if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_LOW)
EINT_Set_Polarity(chr_usb_detect.chr_usb_eint, (kal_bool)(!chr_usb_detect.chr_usb_state));
#endif // #if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_LOW)
#if defined(PMIC_6326_REG_API)
//if (pmic_chrdet_status() == chr_usb_detect.chr_usb_state){
// ASSERT(0); // There is problem!!!! Because whenever the program goes here, we should get invert state
// // In => Out => In => Out
//}
{
PMU_CTRL_CHR_GET_CHR_DET_STATUS chrStatus;
DclPMU_Control(chrDet_PmuHandler, CHR_GET_CHR_DET_STATUS, (DCL_CTRL_DATA_T *)&chrStatus);
if (chrStatus.enable== chr_usb_detect.chr_usb_state)
{
// When the detected status is same as the current state, do nothing!
//kal_prompt_trace(MOD_BMT,"CHRDet status is same as chr_usb_state");
EINT_UnMask(chr_usb_detect.chr_usb_eint); // unmask eint here, otherwise it never comes interrupt again.
//CHR_USB_EINT_Owner_SetMask(CHR_DET_EINT_OWNER_BMT); // Set owner mask flag of BMT
//CHR_USB_EINT_UnMask(CHR_DET_EINT_OWNER_BMT); // EINT_UnMask(chr_usb_detect.chr_usb_eint);
return;
}
}
#endif // #if defined(PMIC_6326_REG_API)
chr_usb_detect.chr_usb_state = (kal_bool)(!((kal_uint8)chr_usb_detect.chr_usb_state));
if (chr_usb_detect.chr_usb_state)
{
//kal_prompt_trace(MOD_BMT,"CHR_USB IN");
//kal_brief_trace( TRACE_STATE,BMT_CABLE_IN_TRC);
drv_trace0(TRACE_STATE,BMT_CABLE_IN_TRC);
#ifdef __USB_UART_MULTIPLEXED_WITH_EXT_SWITCH__
GPIO_WriteIO(1, gpio_usb_uart_switch_pin); //switch to usb mode
#endif
#ifdef __OTG_ENABLE__
{
DCL_HANDLE otg_dcl_handle;
DCL_BOOL dcl_data;
kal_bool b_is_host_on_vbus;
otg_dcl_handle = DclOTG_DRV_Open(DCL_USB, FLAGS_NONE);
DclOTG_DRV_Control(otg_dcl_handle, OTG_DRV_CMD_IS_HOST_TURN_ON_VBUS, (DCL_CTRL_DATA_T *)&dcl_data);
b_is_host_on_vbus = (kal_bool)dcl_data;
DclOTG_DRV_Close(otg_dcl_handle);
if (b_is_host_on_vbus== KAL_TRUE)
{
g_usb_host_turn_on_vbus = KAL_TRUE;
// Force to unmask EINT for OTG case
CHR_USB_EINT_UnMask(USB_DET_EINT_OWNER_FORCE_UNMASK); // EINT_UnMask(chr_usb_detect.chr_usb_eint);
return;
}
}
#endif // #ifdef __OTG_ENABLE__
// Clear EINT owner bit mask
CHR_USB_EINT_Owner_ClrMask();
ASSERT(chr_usb_det_mgr.pw_is_charger_usb_det_eint != NULL);
chr_usb_det_mgr.pw_is_charger_usb_det_eint();
}
else
{
#ifdef __USB_UART_MULTIPLEXED_WITH_EXT_SWITCH__
GPIO_WriteIO(0, gpio_usb_uart_switch_pin); //switch to uart mode
#endif
#ifdef __OTG_ENABLE__
if (g_usb_host_turn_on_vbus == KAL_TRUE)
{
g_usb_host_turn_on_vbus = KAL_FALSE;
// Force to unmask EINT for OTG case
CHR_USB_EINT_UnMask(USB_DET_EINT_OWNER_FORCE_UNMASK); // EINT_UnMask(chr_usb_detect.chr_usb_eint);
return;
}
#endif // #ifdef __OTG_ENABLE__
CHR_USB_PLUG_OUT();
}
}
#if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
extern void USB_Charger_Detect_Init(void);
extern void USB_Check_Standard_Charger(void);
extern kal_bool USB_Check_DP_Value_Is_High(void);
extern kal_bool USB_Check_DM_Value_Is_High(void);
extern void USB_Charger_Detect_Release(void);
extern charger_usb_present_enum pw_charger_usb_det_PMU_BC11(void);
extern DCL_STATUS pmu_set_chr(PMU_FLAGS_LIST_ENUM flagname,DCL_UINT32 val);
extern DCL_UINT16 pmu_get_chr(PMU_FLAGS_LIST_ENUM flagname);
DCL_HANDLE pmu_bc11_usb_charger_detect_handle = 0x7F;
kal_uint8 BC11_Status;
#define BC11_STEP_A 0
#define BC11_STEP_A_RESULT_GROUP_B 1
#define BC11_STEP_A_RESULT_GROUP_C 2
/* for SQC Bmt 2.0 architecture on MT6255, MT6256 */
#if defined(MT6255PMU) || defined(MT6256PMU)
#define RG_BC11_VREF_VTH BC11_VREF_VTH
#define RG_BC11_CMP_EN BC11_CMP_EN
#define RG_BC11_BIAS_EN BC11_BIAS_EN
#define RG_BC11_VSRC_EN BC11_VSRC_EN
#define RG_BC11_IPU_EN BC11_IPU_EN
#define RG_BC11_IPD_EN BC11_IPD_EN
#define RGS_BC11_CMP_OUT BC11_CMP_OUT
#endif
void pmu_bc11_delay_us(kal_uint32 us)
{
kal_uint32 tmp;
kal_uint32 tick_count;
tick_count = us>>5; // The unit is 32us
//tick_count = us/32; // The unit is 32us
tmp = drv_get_current_time();
while (drv_get_duration_tick(tmp, drv_get_current_time()) < tick_count)
{
;
}
}
DCL_BOOL pmu_bc11_is_USB_DM_state_high()
{
DCL_BOOL ret = KAL_FALSE;
#if defined(__DRV_BC11_USE_USB_LINE_STATUS_API__)
ret = USB_Check_DM_Value_Is_High();
#else // __DRV_BC11_USE_USB_LINE_STATUS_API__
//chr_bc11_comp_vth(CHR, COMP_VTH_01_200000);
pmu_set_chr(RG_BC11_VREF_VTH,COMP_VTH_01_200000);
//chr_bc11_comp_en_ctrl(CHR, COMP_EN_ON_DM);
pmu_set_chr(RG_BC11_CMP_EN,COMP_EN_ON_DM);
pmu_bc11_delay_us(200);
//ret = chr_bc11_get_cmp_out(CHR);
ret =pmu_get_chr(RGS_BC11_CMP_OUT);
//chr_bc11_comp_en_ctrl(CHR, COMP_DISABLE);
pmu_set_chr(RG_BC11_CMP_EN,COMP_DISABLE);
#endif // #if defined(__DRV_BC11_USE_USB_LINE_STATUS_API__)
return ret;
}
void pmu_bc11_detect_init(void)
{
#if defined(__DRV_UPMU_BC11_V1__)
//chr_bc11_bias_enable(CHR, KAL_TRUE);
pmu_set_chr(RG_BC11_BIAS_EN,KAL_TRUE);
//chr_bc11_vsrc_en_ctrl(CHR, VSRC_DISABLE);
pmu_set_chr(RG_BC11_VSRC_EN,VSRC_DISABLE);
//chr_bc11_comp_vth(CHR, COMP_VTH_00_325000);
pmu_set_chr(RG_BC11_VREF_VTH,COMP_VTH_00_325000);
//chr_bc11_comp_en_ctrl(CHR, COMP_DISABLE);
pmu_set_chr(RG_BC11_CMP_EN,COMP_DISABLE);
//chr_bc11_ipu_en_ctrl(CHR, IPU_DISABLE);
pmu_set_chr(RG_BC11_IPU_EN,IPU_DISABLE);
//chr_bc11_ipd_en_ctrl(CHR, IPD_DISABLE);
pmu_set_chr(RG_BC11_IPD_EN,IPD_DISABLE);
USB_Charger_Detect_Init();
#endif // #if defined(__DRV_UPMU_BC11_V1__)
}
// Partition GroupB (Standard charger or Charging host) or GroupC(Standard host or Non-standard charger)
void pmu_bc11_stepA(void)
{
#if defined(__DRV_UPMU_BC11_V1__)
//chr_bc11_vsrc_en_ctrl(CHR, VSRC_EN_ON_DP);
pmu_set_chr(RG_BC11_VSRC_EN,VSRC_EN_ON_DP);
//chr_bc11_ipd_en_ctrl(CHR, IPD_EN_ON_DM);
pmu_set_chr(RG_BC11_IPD_EN,IPD_EN_ON_DM);
//chr_bc11_comp_vth(CHR, COMP_VTH_00_325000);
pmu_set_chr(RG_BC11_VREF_VTH,COMP_VTH_00_325000);
//chr_bc11_comp_en_ctrl(CHR, COMP_EN_ON_DM);
pmu_set_chr(RG_BC11_CMP_EN,COMP_EN_ON_DM);
#endif // #if defined(__DRV_UPMU_BC11_V1__)
}
kal_uint32 pmu_bc11_get_stepA_result(void)
{
kal_uint32 result = BC11_STEP_A_RESULT_GROUP_B;
DCL_BOOL cmp_out = KAL_TRUE;
#if defined(__DRV_UPMU_BC11_V1__)
//cmp_out = chr_bc11_get_cmp_out(CHR);
cmp_out =pmu_get_chr(RGS_BC11_CMP_OUT);
//chr_bc11_vsrc_en_ctrl(CHR, VSRC_DISABLE);
pmu_set_chr(RG_BC11_VSRC_EN,VSRC_DISABLE);
//chr_bc11_ipd_en_ctrl(CHR, IPD_DISABLE);
pmu_set_chr(RG_BC11_IPD_EN,IPD_DISABLE);
//chr_bc11_comp_en_ctrl(CHR, COMP_DISABLE);
pmu_set_chr(RG_BC11_CMP_EN,COMP_DISABLE);
if (cmp_out)
{
result = BC11_STEP_A_RESULT_GROUP_B;
}
else
{
result = BC11_STEP_A_RESULT_GROUP_C;
}
#endif // #if defined(__DRV_UPMU_BC11_V1__)
return result;
}
// Identify Standard charger or Charging host
//#define DEBUG_STEP_B
#if defined(DEBUG_STEP_B)
kal_bool use_bc11_ipu = KAL_FALSE;
#endif // #if defined(DEBUG_STEP_B)
void pmu_bc11_stepB(void)
{
#if defined(DEBUG_STEP_B)
if (use_bc11_ipu)
{
//chr_bc11_ipu_en_ctrl(CHR, IPU_EN_ON_DP);
pmu_set_chr(RG_BC11_IPU_EN,IPU_EN_ON_DP);
}
else
{
USB_Check_Standard_Charger();
}
#endif // #if defined(DEBUG_STEP_B)
#if !defined(DEBUG_STEP_B)
#if defined(__DRV_UPMU_BC11_V1__)
#if defined(__DRV_BC11_USE_USB_100_K_RESISTOR_4_GROUP_B__)
USB_Check_Standard_Charger();
#else // #if defined(__DRV_BC11_USE_USB_100_K_RESISTOR_4_GROUP_B__)
//chr_bc11_ipu_en_ctrl(CHR, IPU_EN_ON_DP);
pmu_set_chr(RG_BC11_IPU_EN,IPU_EN_ON_DP);
#endif // #if defined(__DRV_BC11_USE_USB_100_K_RESISTOR_4_GROUP_B__)
#endif // #if defined(__DRV_UPMU_BC11_V1__)
#endif // #if !defined(DEBUG_STEP_B)
}
CHR_DET_TYPE_ENUM pmu_bc11_get_stepB_result(void)
{
CHR_DET_TYPE_ENUM chr_type = PW_AC_CHR;
#if defined(__DRV_UPMU_BC11_V1__)
if (pmu_bc11_is_USB_DM_state_high())
{
chr_type = PW_AC_CHR;
}
else
{
chr_type = PW_USB_CHARGING_HOST_CHR;
}
#endif // #if defined(__DRV_UPMU_BC11_V1__)
//chr_bc11_ipu_en_ctrl(CHR, IPU_DISABLE);
pmu_set_chr(RG_BC11_IPU_EN,IPU_DISABLE);
return chr_type;
}
// Identify Standard host or Non-standard charger
void pmu_bc11_stepC(void)
{
#if defined(__DRV_UPMU_BC11_V1__)
//chr_bc11_ipu_en_ctrl(CHR, IPU_EN_ON_DM);
pmu_set_chr(RG_BC11_IPU_EN,IPU_EN_ON_DM);
#endif // #if defined(__DRV_UPMU_BC11_V1__)
}
CHR_DET_TYPE_ENUM pmu_bc11_get_stepC_result(void)
{
CHR_DET_TYPE_ENUM chr_type = PW_USB_CHR;
#if defined(__DRV_UPMU_BC11_V1__)
if (pmu_bc11_is_USB_DM_state_high())
{
chr_type = PW_AC_NON_STD_CHR;
}
else
{
chr_type = PW_USB_CHR;
}
#endif // #if defined(__DRV_UPMU_BC11_V1__)
return chr_type;
}
void pmu_bc11_detect_deinit(void)
{
#if defined(__DRV_UPMU_BC11_V1__)
//chr_bc11_vsrc_en_ctrl(CHR, VSRC_DISABLE);
pmu_set_chr(RG_BC11_VSRC_EN,VSRC_DISABLE);
//chr_bc11_comp_vth(CHR, COMP_VTH_00_325000);
pmu_set_chr(RG_BC11_VREF_VTH,COMP_VTH_00_325000);
//chr_bc11_comp_en_ctrl(CHR, COMP_DISABLE);
pmu_set_chr(RG_BC11_CMP_EN,COMP_DISABLE);
//chr_bc11_ipu_en_ctrl(CHR, IPU_DISABLE);
pmu_set_chr(RG_BC11_IPU_EN,IPU_DISABLE);
//chr_bc11_ipd_en_ctrl(CHR, IPD_DISABLE);
pmu_set_chr(RG_BC11_IPD_EN,IPD_DISABLE);
//chr_bc11_bias_enable(CHR, KAL_FALSE);
pmu_set_chr(RG_BC11_BIAS_EN,KAL_FALSE);
USB_Charger_Detect_Release();
#endif // #if defined(__DRV_UPMU_BC11_V1__)
}
static void pmu_bc11_check_next_step(DCL_UINT16 u2Tick, void (*pfCallback)(void *))
{
SGPT_CTRL_START_T start;
start.u2Tick=u2Tick;
start.pfCallback=pfCallback;
start.vPara=NULL;
DclSGPT_Control(pmu_bc11_usb_charger_detect_handle,SGPT_CMD_START,(DCL_CTRL_DATA_T*)&start);
}
static void pmu_bc11_check_charger_or_usb_step4(void *parameter)
{
if (BC11_Status == BC11_STEP_A_RESULT_GROUP_B)
{
// Step B
pw_chr_type = pmu_bc11_get_stepB_result();
}
else if (BC11_Status == BC11_STEP_A_RESULT_GROUP_C)
{
// Step C
pw_chr_type = pmu_bc11_get_stepC_result();
}
pmu_bc11_detect_deinit();
// Stop GPT
DclSGPT_Control(pmu_bc11_usb_charger_detect_handle,SGPT_CMD_STOP,0);
DclSGPT_Close(&pmu_bc11_usb_charger_detect_handle);
// handle race condition by this function .
CHR_USB_Det_EINT_Return(pw_chr_type);
}
static void pmu_bc11_check_charger_or_usb_step3(void *parameter)
{
if (BC11_Status == BC11_STEP_A_RESULT_GROUP_B)
{
// Step B
pmu_bc11_stepB();
}
else if (BC11_Status == BC11_STEP_A_RESULT_GROUP_C)
{
// Step C
pmu_bc11_stepC();
}
pmu_bc11_check_next_step(2,pmu_bc11_check_charger_or_usb_step4);
}
static void pmu_bc11_check_charger_or_usb_step2(void *parameter)
{
// Check to go Step B or Step C
BC11_Status = pmu_bc11_get_stepA_result();
pmu_bc11_check_next_step(7,pmu_bc11_check_charger_or_usb_step3);
}
static void pmu_bc11_check_charger_or_usb_step1(void *parameter)
{
// Init BC11 component
BC11_Status=BC11_STEP_A;
pmu_bc11_detect_init();
// Step A (Partition Group B (Standard charger or charging host) and Group C(Standard host or Non-standard charger)
pmu_bc11_stepA();
pmu_bc11_check_next_step(7,pmu_bc11_check_charger_or_usb_step2);
}
#define bc11_stepDelay 80000 // unit:us 80000=80ms
CHR_DET_TYPE_ENUM DclPW_charger_usb_det_PMU_BC11(void)
{
kal_uint32 stepA_result;
// Init BC11 component
pmu_bc11_detect_init();
// Step A (Partition Group B (Standard charger or charging host) and Group C(Standard host or Non-standard charger)
pmu_bc11_stepA();
// Wait 200 us
pmu_bc11_delay_us(bc11_stepDelay);
// Check to go Step B or Step C
stepA_result = pmu_bc11_get_stepA_result();
if (stepA_result == BC11_STEP_A_RESULT_GROUP_B)
{
// Step B
pmu_bc11_stepB();
// Wait 200 us ==> 6.25 * 32us
pmu_bc11_delay_us(bc11_stepDelay);
pw_chr_type = pmu_bc11_get_stepB_result();
}
else if (stepA_result == BC11_STEP_A_RESULT_GROUP_C)
{
// Step C
pmu_bc11_stepC();
// Wait 200 us ==> 6.25 * 32us
pmu_bc11_delay_us(bc11_stepDelay);
pw_chr_type = pmu_bc11_get_stepC_result();
}
pmu_bc11_detect_deinit();
return pw_chr_type;
}
void DclPW_charger_usb_det_eint_PMU_BC11(void)
{
#if defined(__USB_ENABLE__)
if (INT_IsBootForUSBAT()==KAL_TRUE)
{
pw_chr_type = PW_USB_CHR;
CHR_USB_Det_EINT_Return(PW_USB_CHR);
return;
}
#endif //#if defined(__USB_ENABLE__)
if (pmu_bc11_usb_charger_detect_handle == 0x7F)
{
pmu_bc11_usb_charger_detect_handle=DclSGPT_Open(DCL_GPT_CB,0);
}
pmu_bc11_check_next_step(1,pmu_bc11_check_charger_or_usb_step1);
}
#endif // #if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
#if defined(PMIC_CHR_USB_DETECT_THROUGH_USB)
#define USB_IP_V3_DETECT_ITEM_USB_CHARGER 0
#define USB_IP_V3_DETECT_ITEM_CHARGER 1
DCL_HANDLE usb_charger_detect_handle=0x7F;
static void USB_IP_V3_check_charger_or_usb(void *parameter)
{
CHR_DET_TYPE_ENUM state = PW_NO_CHR;
if (parameter == USB_IP_V3_DETECT_ITEM_USB_CHARGER)
{
// Detect USB/Charger
if (USB_Detect_Is_Charger_In())
{
// Standard/Non-standard charger detection init setting
USB_Check_Standard_Charger();
// After init setting, we need debounce time
// Perform Standard/Non-standard charger detection after 10ms
{
SGPT_CTRL_START_T start;
start.u2Tick=1;
start.pfCallback=USB_IP_V3_check_charger_or_usb;
start.vPara=(void *)USB_IP_V3_DETECT_ITEM_CHARGER;
DclSGPT_Control(usb_charger_detect_handle,SGPT_CMD_START,(DCL_CTRL_DATA_T*)&start);
}
return;
}
else
{
// USB
state = PW_USB_CHR;
// Finish detection
USB_Charger_Detect_Release();
// Stop GPT
DclSGPT_Control(usb_charger_detect_handle,SGPT_CMD_STOP,0);
DclSGPT_Close(&usb_charger_detect_handle);
}
}
else //if ((kal_uint32)parameter == USB_IP_V3_DETECT_ITEM_CHARGER)
{
// Detect standard/non-standard charger
if (USB_Detect_Is_Standard_Charger_In())
{
// Standard charger
state = PW_AC_CHR;
}
else
{
// Non-standard charger
state = PW_AC_NON_STD_CHR;
}
// Finish detection
USB_Charger_Detect_Release();
// Stop GPT
DclSGPT_Control(usb_charger_detect_handle,SGPT_CMD_STOP,0);
DclSGPT_Close(&usb_charger_detect_handle);
}
pw_chr_type = state;
CHR_USB_Det_EINT_Return(state);
}
CHR_DET_TYPE_ENUM DclPW_charger_usb_det_USB(void)
{
#if defined(__USB_ENABLE__)
kal_uint32 i;
CHR_DET_TYPE_ENUM state = PW_NO_CHR;
// Call this function to init USB H/W
DclUSB_DRV_Control(chrDet_UsbHandler, USB_DRV_CMD_INITIALIZE_DRV_PHASE_1, NULL);
//USB_Initialize_Drv_Phase1();
// Detect init setting
USB_Charger_Detect_Init();
// Init setting debounce
for (i=0;i<1000000;i++){
;
}
// Check USB or Charger
if (USB_Detect_Is_Charger_In()){
// Charger
// Init setting to detect Standard/Non-standard charger
USB_Check_Standard_Charger();
// Init setting debounce
for (i=0;i<10000;i++){
;
}
if (USB_Detect_Is_Standard_Charger_In()){
// Standard charger
state = PW_AC_CHR;
}else{
// Non-standard charger
state = PW_AC_NON_STD_CHR;
}
}
else
{
// USB
state = PW_USB_CHR;
}
USB_Charger_Detect_Release();
return state;
#else // #if defined(__USB_ENABLE__)
return PW_NO_CHR;
#endif // #if defined(__USB_ENABLE__)
}
void DclPW_charger_usb_det_eint_USB(void)
{
#if defined(__USB_ENABLE__)
if (INT_IsBootForUSBAT()==KAL_TRUE)
{
pw_chr_type = PW_USB_CHR;
CHR_USB_Det_EINT_Return(PW_USB_CHR);
return;
}
if (usb_charger_detect_handle == 0x7F)
{
usb_charger_detect_handle=DclSGPT_Open(DCL_GPT_CB,0);
}
// Init setting for detecting
USB_Charger_Detect_Init();
// After init setting, we need debounce time
// Perform USB/Charger detection after 10ms
{
SGPT_CTRL_START_T start;
start.u2Tick=1;
start.pfCallback=USB_IP_V3_check_charger_or_usb;
start.vPara=USB_IP_V3_DETECT_ITEM_USB_CHARGER;
DclSGPT_Control(usb_charger_detect_handle,SGPT_CMD_START,(DCL_CTRL_DATA_T*)&start);
}
#else
ASSERT(0); // Assert here, need to check whether the configuration is correct or NOT
#endif // #if defined(__USB_ENABLE__)
}
#endif // #if defined(PMIC_CHR_USB_DETECT_THROUGH_USB)
#if defined(PMIC_CHR_USB_DETECT_THROUGH_ADC)
charger_usb_present_enum pw_charger_usb_det_ADC(void)
{
kal_uint16 adc=0;
kal_int32 volt;
charger_usb_present_enum state;
kal_uint8 adc_channel;
extern charger_usb_present_enum bmt_check_ac_usb(kal_int32 vol);
adc_channel = chr_usb_detect.chr_usb_adc;
// use adc to distinguish between charger & usb
USB_Phy_Enable(USB_PHY_OWNER_BMT);//USB_PowerControl(KAL_TRUE);
// Add delay, We found there may be unstable effect when turn on USB power; need de-bounce time
{
volatile kal_uint32 debounce;
for (debounce=0;debounce<10000;debounce++){
;
}
}
//DRV_Reg(DRVPDN_CON2_CLR) = DRVPDN_CON2_AUXADC;
AUXADC_PDN_CLR();
if (adc_channel<ADC_MAX_CHANNEL)
{
adc = ADC_GetData(adc_channel);
}
//DRV_Reg(DRVPDN_CON2_SET) = DRVPDN_CON2_AUXADC;
AUXADC_PDN_SET();
/*lint -e661*/
//volt = (kal_int32)((adc_adc2vol(adc_channel, (double)adc)/100)*bmt_charing_para->adc_volt_factor[adc_channel]);
volt = (kal_int32)adc_adc2vol(adc_channel, (double)adc);
/*lint +e661*/
USB_Phy_Disable(USB_PHY_OWNER_BMT);//USB_PowerControl(KAL_FALSE);
state = bmt_check_ac_usb(volt);
//if (volt < chr_usb_detect.chr_usb_volt)
return state;
}
void pw_charger_usb_det_eint_ADC(void)
{
USB_Phy_Enable(USB_PHY_OWNER_BMT);//USB_PowerControl(KAL_TRUE);
if (bmt_event_sche_active == 1){
if (usb_charger_eint_reg_handle == 0xFF){
GPTI_GetHandle(&usb_charger_eint_reg_handle);
}
GPTI_StartItem(usb_charger_eint_reg_handle,
1,
usb_charger_eint_reg_adc_measurement_cb,
NULL);
}else{
// bmt task is NOT setting event scheduler, we can set directly
//adc_sche_set_timer_page_align(KAL_FALSE);
adc_sche_add_item(chr_usb_detect.chr_usb_adc_logical_id,check_charger_or_usb,adc_sche_measure);
}
}
#endif // #if defined(PMIC_CHR_USB_DETECT_THROUGH_ADC)
#endif //#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
//called by drv_init_phase1
void Dcl_Chr_Det_reg_charger_usb_eint(void)
{
#if !defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#if defined(PMIC_FIXED_CHR_EINT)
gCHRDET_EINT_NO = CHR_DET_EINT_PIN;
#else
gCHRDET_EINT_NO = custom_eint_get_channel(chrdet_eint_chann);
#endif
#if defined(__USB_ENABLE__)
gUSB_EINT_NO = custom_eint_get_channel(usb_eint_chann);
#endif
#endif
#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
#if defined(PMIC_FIXED_CHR_EINT)
chr_usb_detect.chr_usb_eint = CHR_DET_EINT_PIN;
#else
chr_usb_detect.chr_usb_eint = custom_eint_get_channel(chr_usb_eint_chann);
#endif
#if defined(PMIC_CHR_USB_DETECT_THROUGH_ADC)
{
DCL_HANDLE adc_handle;
ADC_CTRL_GET_PHYSICAL_CHANNEL_T adc_ch;
adc_handle = DclSADC_Open(DCL_ADC, FLAGS_NONE);
adc_ch.u2AdcName = DCL_CHR_USB_ADC_CHANNEL;
DclSADC_Control(adc_handle, ADC_CMD_GET_CHANNEL, (DCL_CTRL_DATA_T *)&adc_ch);
chr_usb_detect.chr_usb_adc = adc_ch.u1AdcPhyCh;
chr_usb_detect.chr_usb_volt = bmt_get_chr_usb_detect_volt();
}
#endif
#endif
}
// called by DclPW
CHR_DET_TYPE_ENUM Dcl_Chr_Det_is_charger_usb_present(void)
{
//PMU_CTRL_CHR_GET_CHR_DET_STATUS val;
CHR_DET_TYPE_ENUM state = PW_NO_CHR;
DCL_BOOL status = DCL_FALSE;
//DclPMU_Control(chrDet_PmuHandler, CHR_GET_CHR_DET_STATUS, (DCL_CTRL_DATA_T *)&val);
bmt_charging_control_handler(BMT_CHARGING_CMD_GET_CHR_DET_STATUS, &status);
if (status ==DCL_TRUE)
{
#if defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
if (chr_usb_det_mgr.pw_is_charger_usb_det != NULL)
{
state = chr_usb_det_mgr.pw_is_charger_usb_det();
}
#else
state = PW_AC_CHR;
#endif
}
return state;
}
void Dcl_chr_det_reg_chr_usb(void)
{
#if defined(__MAUI_BASIC__) || defined(PMIC_CHR_DETECT_NONE)
// In Basic load, we do NOT perform cable detection, just return
return;
#elif defined(__DRV_EXT_CHARGER_DETECTION__)
#ifndef IC_MODULE_TEST // When module test, we don't want to perform cable detection (For saving module time)
#if defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#if defined(__USB_ENABLE__)
ext_charger_det->reg_usb_hisr(chr_usb_det_mgr.usb_det_hisr);
#endif // #if defined(__USB_ENABLE__)
#endif // #if defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
ext_charger_det->reg_chr_hisr(CHRDET_HISR);
ext_charger_det->set_chr_deb_time(40);
ext_charger_det->enable_intr();
#endif // #ifndef IC_MODULE_TEST // When module test, we don't want to perform cable detection (For saving module time)
return; // Return immediately here to avoid running to original PMU setting, which may make confusion
#elif defined(PMIC_PMU_SERIES)
#if !defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
// Register gCHRDET_EINT_NO with CHRDET_HISR directly
EINT_SW_Debounce_Modify(gCHRDET_EINT_NO, 40); // Set de-bounce time
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
EINT_Registration(gCHRDET_EINT_NO, KAL_TRUE, LEVEL_HIGH, CHRDET_HISR, KAL_FALSE);
#endif //defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_LOW)
EINT_Registration(gCHRDET_EINT_NO, KAL_TRUE, LEVEL_LOW, CHRDET_HISR, KAL_FALSE);
#endif //defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_LOW)
#endif // #if !defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#if defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#ifndef IC_MODULE_TEST // When module test, we don't want to perform cable detection (For saving module time)
EINT_SW_Debounce_Modify(chr_usb_detect.chr_usb_eint, 10); // Set de-bounce time
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
EINT_Registration(chr_usb_detect.chr_usb_eint, KAL_TRUE, LEVEL_HIGH, CHR_USB_EINT_HISR, KAL_FALSE);
#endif //defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_HIGH)
#if defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_LOW)
EINT_Registration(chr_usb_detect.chr_usb_eint, KAL_TRUE, LEVEL_LOW, CHR_USB_EINT_HISR, KAL_FALSE);
#endif //defined(PMIC_CHR_USB_DET_EINT_LEVEL_ACTIVE_LOW)
#endif // #ifndef IC_MODULE_TEST
#endif // #if defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
{
#ifndef IC_MODULE_TEST // When module test, we don't want to perform cable detection (For saving module time)
//PMU_CTRL_CHR_GET_CHR_DET_STATUS chrStatus;
//DclPMU_Control(chrDet_PmuHandler, CHR_GET_CHR_DET_STATUS, (DCL_CTRL_DATA_T *)&chrStatus);
DCL_BOOL status;
bmt_charging_control_handler(BMT_CHARGING_CMD_GET_CHR_DET_STATUS, &status);
if (status == DCL_TRUE)
{
kal_prompt_trace(MOD_BMT,"execute CHR_USB_EINT_HISR in BMT task");
#if !defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
CHRDET_HISR();
#else
EINT_Mask((kal_uint8)chr_usb_detect.chr_usb_eint);
chr_usb_detect.chr_usb_state = KAL_FALSE;
CHR_USB_EINT_HISR();
#endif //#if !defined (__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
}
#endif
}
#elif defined(PMIC_PMIC_SERIES)
/*PMIC uses charger's interrupt*/
#if defined(PMIC_6326_REG_API)
#if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
// TTTTTTTTT
dcl_pmic6326_ChrDet_Registration(AC_CHR, CHRDET_HISR);
EINT_SW_Debounce_Modify(gCHRDET_EINT_NO, 40);
/*lint -e64*/
EINT_Registration(gCHRDET_EINT_NO,KAL_TRUE,LEVEL_HIGH,dcl_pmic6326_HISR, KAL_FALSE);
/*lint +e64*/
#endif // #if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#if defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
dcl_pmic6326_ChrDet_Registration(AC_CHR_CALLBACK, CHR_USB_EINT_HISR);
// PMIC6326 can only detect chr in, can NOT distinguish Charger or USB
//if (pmic_is_chr_det(AC_CHR)){
// TTTTTTTTTTTTTTTTTTTTTTTTT
chr_usb_detect.chr_usb_state = KAL_FALSE;
// If we nsert USB cable and serviced the intr, then re-boot device
// PMIC6326 won't assert intr because the cable status is NOT changed
// Then we need to check the cable status at boot time
// If cable is inserted, we manually call HISR to handle
if (dcl_pmic6326_chrdet_status()){
//PMIC_CHRDET.pmic_ac_det();
dcl_pmic6326_HISR();
}
EINT_SW_Debounce_Modify(chr_usb_detect.chr_usb_eint, 40);
//EINT_SW_Debounce_Modify(chr_usb_detect.chr_usb_eint, gDebounceTime);
/*lint -e64*/
EINT_Registration(chr_usb_detect.chr_usb_eint,KAL_TRUE,LEVEL_HIGH,dcl_pmic6326_HISR, KAL_FALSE);
/*lint +e64*/
#endif // #if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#endif //defined(PMIC_6326_REG_API)
#endif //#if defined(__MAUI_BASIC__) || defined(PMIC_CHR_DETECT_NONE)
}
void DclPW_reg_usb(kal_bool ACT_Polarity, void (reg_hisr)(void))
{
#if defined(__MAUI_BASIC__) || defined(PMIC_CHR_DETECT_NONE)
return;
#elif defined(__DRV_EXT_CHARGER_DETECTION__)
if (ext_charger_det->support_usb_det() == KAL_TRUE)
{
ext_charger_det->reg_usb_hisr(reg_hisr);
}
else
{
#if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
EINT_Registration(g_usb_eint_no, KAL_TRUE, ACT_Polarity, reg_hisr, KAL_TRUE);
#endif // #if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
}
return;
#elif defined(PMIC_PMIC_SERIES)
#if defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
dcl_pmic6326_ChrDet_Registration(USB_CHR_CALLBACK, reg_hisr);
#else // #if defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
EINT_Registration(g_usb_eint_no, KAL_TRUE, ACT_Polarity, reg_hisr, KAL_TRUE);
#endif // #if !defined(__CHARGER_USB_DETECT_WIHT_ONE_EINT__)
#endif // #if defined(__MAUI_BASIC__) || defined(PMIC_CHR_DETECT_NONE)
}
#endif //#if !defined(PMIC_CHR_DETECT_NONE)
/*************************************************************************
* 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 Dcl_Chr_Det_Initialize(void)
{
#if !defined(PMIC_CHR_DETECT_NONE)
#if defined(PMIC_CHR_USB_DETECT_THROUGH_USB)
if (chrDet_UsbHandler==DCL_HANDLE_NONE);
chrDet_UsbHandler=DclUSB_DRV_Open(DCL_USB, FLAGS_NONE);
#endif
if (chrDet_PmuHandler==DCL_HANDLE_NONE)
chrDet_PmuHandler=DclPMU_Open(DCL_PMU, FLAGS_NONE);
#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
chr_usb_det_mgr.pw_is_charger_usb_det = NULL;
chr_usb_det_mgr.pw_is_charger_usb_det_eint = NULL;
#if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
chr_usb_det_mgr.pw_is_charger_usb_det = DclPW_charger_usb_det_PMU_BC11;
chr_usb_det_mgr.pw_is_charger_usb_det_eint = DclPW_charger_usb_det_eint_PMU_BC11;
#elif defined(PMIC_CHR_USB_DETECT_THROUGH_USB) // #if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
chr_usb_det_mgr.pw_is_charger_usb_det = DclPW_charger_usb_det_USB;
chr_usb_det_mgr.pw_is_charger_usb_det_eint = DclPW_charger_usb_det_eint_USB;
#elif defined(PMIC_CHR_USB_DETECT_THROUGH_ADC) // #if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
chr_usb_det_mgr.pw_is_charger_usb_det = DclPW_charger_usb_det_ADC;
chr_usb_det_mgr.pw_is_charger_usb_det_eint = DclPW_charger_usb_det_eint_ADC;
#else // #if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
// TTTT
#endif // #if defined(PMIC_CHR_USB_DETECT_THROUGH_PMU_BC11)
#endif //#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
#endif //#if !defined(PMIC_CHR_DETECT_NONE)
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 Dcl_Chr_Det_Open(DCL_DEV dev, DCL_FLAGS flags)
{
return STATUS_OK;
}
/*************************************************************************
* FUNCTION
* DclPMU_ReadData
*
* DESCRIPTION
* This function is not supported for the PMU module now.
*
* PARAMETERS
* N/A
*
* RETURNS
* STATUS_UNSUPPORTED
*
*************************************************************************/
DCL_STATUS Dcl_Chr_Det_ReadData(DCL_HANDLE handle, DCL_BUFF *buff, DCL_BUFF_LEN buf_len, DCL_OPTIONS options)
{
return STATUS_OK;
}
/*************************************************************************
* FUNCTION
* DclPMU_WriteData
*
* DESCRIPTION
* This function is not supported for the PMU module now.
*
* PARAMETERS
* N/A
*
* RETURNS
* STATUS_UNSUPPORTED
*
*************************************************************************/
DCL_STATUS Dcl_Chr_Det_WriteData(DCL_HANDLE handle, DCL_BUFF *buff, DCL_BUFF_LEN buf_len, DCL_OPTIONS options)
{
return STATUS_OK;
}
/*************************************************************************
* FUNCTION
* DclPMU_Configure
*
* DESCRIPTION
* This function is not supported for the PMU module now.
*
* PARAMETERS
* N/A
*
* RETURNS
* STATUS_UNSUPPORTED
*
*************************************************************************/
DCL_STATUS Dcl_Chr_Det_Configure(DCL_HANDLE handle, DCL_CONFIGURE_T *configure)
{
return STATUS_OK;
}
/*************************************************************************
* 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 Dcl_Chr_Det_RegisterCallback(DCL_HANDLE handle, DCL_EVENT event, PFN_DCL_CALLBACK callback)
{
return STATUS_OK;
}
/*************************************************************************
* 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 Dcl_Chr_Det_Control(DCL_HANDLE handle, DCL_CTRL_CMD cmd, DCL_CTRL_DATA_T *data)
{
switch(cmd)
{
#if !defined(PMIC_CHR_DETECT_NONE)
case CHR_DET_CMD_QUERY_IS_CHR_IN_BY_PW:
{
CHR_DET_CTRL_QUERY_IS_CHR_IN_BY_PW *pCtrlType=&(data->rChrDetQueryIsChrInByPW);
pCtrlType->Chr_det_type=Dcl_Chr_Det_is_charger_usb_present();
}
break;
case CHR_DET_CMD_QUERY_CHR_TYPE:
{
CHR_DET_CTRL_QUERY_CHR_TYPE *pCtrlType=&(data->rChrDetQueryChrType);
pCtrlType->Chr_det_type=pw_chr_type;
}
break;
case CHR_DET_CMD_REGISTER_CHR_USB:
{
Dcl_chr_det_reg_chr_usb();
}
break;
case CHR_DET_CMD_UNMASK_EINT:
{
#ifdef __CHARGER_USB_DETECT_WIHT_ONE_EINT__
CHR_USB_EINT_UnMask(CHR_DET_EINT_OWNER_USB);
#endif
}
break;
case CHR_DET_CMD_REGISTER_CHR_USB_EINT:
{
Dcl_Chr_Det_reg_charger_usb_eint();
}
break;
case CHR_DET_CMD_REGISTER_USB_HISR:
{
#if defined(__USB_ENABLE__)
CHR_DET_CTRL_REGISTER_USB_HISR *prRegisterCompleteCB;
prRegisterCompleteCB = &(data->rChrDetUSBHISR);
chr_usb_det_mgr.usb_det_hisr = prRegisterCompleteCB->usb_det_hisr;
#endif
}
break;
case CHR_DET_CMD_GET_CHR_STATUS:
{
CHR_DET_CTRL_GET_CHR_STATUS *pCtrlType=&(data->rChrDetGetChrStatus);
pCtrlType->charger_plug_status = chr_plug_status;
}
break;
#endif
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 Dcl_Chr_Det_Close(DCL_HANDLE handle)
{
return STATUS_OK;
}