l4c_context.h
33.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
/*****************************************************************************
* 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:
* ---------
* l4c_context.h
*
* Project:
* --------
* MAUI
*
* Description:
* ------------
* This file is intends for ...
*
* 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!
* 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!
* 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!!
*==============================================================================
*******************************************************************************/
/********************************************************************************
* Copyright Statement:
* --------------------
*
* This product has been developed using a protocol stack
* developed by Sasken Communication Technologies Limited.
*
********************************************************************************/
#ifndef _L4C_CONTEXT_H
#define _L4C_CONTEXT_H
#if !defined(__MOD_PHB__) || !defined(__MOD_SMU__) || !defined(__MOD_CSM__) || !defined(__MOD_SMSAL__) || !defined(__MOD_RAC__)
#include "l4_dummy.h"
#endif
#if 0 //hong_rhr
#ifndef _RMMI_CONTEXT_H
/* under construction !*/
#endif
#endif
//#include "rmmi_context.h"
//#include "kal_non_specific_general_types.h"
#include "app_ltlcom.h"
#include "l4c_common_enum.h"
//#include "event_shed.h"
//#include "stack_timer.h"
#include "stack_config.h"
#include "kal_general_types.h"
#include "ps_public_enum.h"
#include "kal_public_api.h"
#include "rmmi_common_enum.h"
#if !defined(__MTK_TARGET__) && defined(__RMMI_UT__)
#include "lcd_lqueue.h"
#endif
#if defined(__SIM_ME_LOCK__)
#include "smu_common_enums.h"
#endif
#ifndef __MMI_FMI__
#define __PHB_SORT_ENABLE__
#endif
#ifdef DATA_DOWNLOAD
//#include "fat_fs.h"
#define L4C_ENCODE_BYTE 2
#define L4C_MAX_DATA_DL_NAME_EXTENSION_WIDTH (5*L4C_ENCODE_BYTE) //NULL ermiante
#define L4C_MAX_DATA_DL_NAME_WIDTH ((13*L4C_ENCODE_BYTE) + L4C_MAX_DATA_DL_NAME_EXTENSION_WIDTH + L4C_ENCODE_BYTE)
typedef struct
{
kal_uint8 filename[L4C_MAX_DATA_DL_NAME_WIDTH];
kal_uint16 file_id;
}l4c_download_file_info;
#endif/* DATA_DOWNLOAD */
//#include "mmi_l3_enums.h"
//#include "mcd_l3_inc_struct.h"
#include "l4c_hz_context.h"
//#include "med_struct.h"
/* For GPRS_FLC_UT mtk02508 */
#if !defined(__MTK_TARGET__) && defined(__RMMI_UT__) && defined(__MOD_TCM__)
#include "lcd_lqueue.h"
#endif
#define MAX_CONCAT_SMS_NUM 4
//#define MAX_CEER_REPORT_LEN 80
#define L4C_STATES 3
//#define L4C_PTR LAYER4_PTR(l4c_ptr)
#define L4C_PTR l4c_ptr_g
//mtk01616_100419: to share SIM1/SIM2 L4C context in Gemini
#define L4C_COMM_PTR l4c_comm_ptr_g
#if defined(__GEMINI__)
#define L4C_ROOT_PTR l4c_root_ptr_g
#endif
#ifdef __HOMEZONE_SUPPORT__
#define HZ_PTR l4c_ptr_g->hz_ptr
#endif
extern peer_buff_struct *l4c_mcd_pack (kal_uint16 structid,
kal_uint8 *msg,
kal_uint8 hdr_size,
kal_uint8 tlr_size);
extern kal_uint16 l4c_mcd_unpack(kal_uint16 structid,
peer_buff_struct *peer_buff_ptr);
#define L4C_PACK_ALLOC(ALLOC_FUNC, STRUCTID, STRUCT, MSG_PTR) \
mcd_pseudo_alloc(STRUCTID, l4_pun_src_buff ,sizeof(l4_pun_src_buff)); \
MSG_PTR = (STRUCT*)l4_pun_src_buff
#define L4C_UNPACK_ALLOC(ALLOC_FUNC, STRUCTID, STRUCT, MSG_PTR)
#define L4C_PACK_DEALLOC(DEALLOC_FUNC, MSG_PTR)
#define L4C_UNPACK_DEALLOC(DEALLOC_FUNC, MSG_PTR)
#define L4C_PACK(PACK_FUNC, BITS_FUNC, STRUCTID, MSG_PTR, \
HDR_SIZE, TLR_SIZE) \
l4c_mcd_pack(STRUCTID, \
(kal_uint8*)MSG_PTR, \
HDR_SIZE, \
TLR_SIZE)
#define L4C_UNPACK(UNPACK_FUNC, STRUCTID, STRUCT, MSG_PTR, PEER_BUFF) \
l4c_mcd_unpack(STRUCTID, PEER_BUFF); \
MSG_PTR = (STRUCT*)l4_pun_dest_buff
#define REMAP_UNPACK_DATA(MSG_LEN, MSG_PTR) \
kal_mem_cpy (l4_pun_dest_buff, MSG_PTR, MSG_LEN)
#define COPY_UNPACK_DATA(MSG_LEN, MSG_PTR) \
ASSERT(MSG_LEN <2048); \
MSG_PTR = get_ctrl_buffer(MSG_LEN); \
kal_mem_cpy (MSG_PTR, l4_pun_dest_buff, MSG_LEN)
#define FREE_COPY_UNPACK_DATA(MSG_PTR) \
free_ctrl_buffer (MSG_PTR)
#define REMAP_PACK_DATA(MSG_LEN, MSG_PTR) \
kal_mem_cpy (l4_pun_src_buff, MSG_PTR, MSG_LEN)
#define COPY_PACK_DATA(MSG_LEN, MSG_PTR) \
MSG_PTR = get_ctrl_buffer(MSG_LEN); \
ASSERT(MSG_LEN <2048); \
kal_mem_cpy (MSG_PTR, l4_pun_src_buff, MSG_LEN)
#define FREE_COPY_PACK_DATA(MSG_PTR) \
free_ctrl_buffer (MSG_PTR)
#define SUBFIELD(PARENT, CHILD) PARENT->CHILD
typedef void (*L4C_MSG_FUNCTION) ( local_para_struct *,
peer_buff_struct * );
typedef void (*L4C_CMD_FUNCTION) ();
typedef struct
{
kal_uint16 length;
void *data;
} l4c_parameter_struct;
typedef struct
{
kal_bool is_valid;
kal_bool need_retry;
kal_uint16 length;
void *local_para;
void *peer_buff;
} l4c_concat_sms_buff_struct;
typedef struct
{
kal_uint8 type;
kal_uint8 length;
kal_uint8 number[MAX_CC_ADDR_LEN];
} l4_number_struct;
#if 0 //__CTM_SUPPORT__
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
typedef struct
{
kal_uint8 is_gsm_conn_exist;
kal_uint8 gsm_cipher_cond;
kal_uint8 gprs_cipher_cond;
} cipher_ind_msg_struct;
#ifdef __NBR_CELL_INFO__
typedef struct
{
kal_uint32 src_id;
kal_bool already_cnf;
}cell_info_reg_table_struct; /* Lexel: for Cell info */
#endif
typedef struct l4c_nw_sysconfig_struct
{
kal_uint8 rat_mode;
kal_uint8 prefer_rat;
kal_bool support_roaming;
kal_uint8 mobile_class;
} l4c_nw_sysconfig_struct;
typedef struct
{
/*************************************************************************/
/* Below context are placed in the front of L4C context */
/* to increase immediate offset access , to reduce ROM size */
/* Please KEEP the position for the following frequent used variables */
/*************************************************************************/
kal_bool route_thru_lmmi;
kal_uint8 route_thru_lmmi_user;
kal_bool retry_cc;
kal_bool retry_ss;
kal_uint8 retry_count;
kal_uint8 retry_src_id; //src_id that you want to retry
kal_uint8 cfun_state;
l4c_source_id_enum smu_user;
l4c_source_id_enum ss_user;
l4c_source_id_enum eq_user;
l4c_source_id_enum rac_user;
l4c_source_id_enum phb_user;
#ifdef __MOD_TCM__
l4c_source_id_enum tcm_user;
#endif
kal_uint16 smu_current_action; /*l4c_action_enum*/
kal_uint16 ss_current_action;
kal_uint16 eq_current_action;
kal_uint16 rac_current_action;
kal_uint16 phb_current_action;
#ifdef __MOD_TCM__
l4c_action_enum tcm_current_action;
#endif
event_scheduler *event_scheduler_ptr;
/* ============================== action ============================== */
kal_uint16 cc_current_action[MAX_SOURCE_NUM]; /*l4c_action_enum*/
l4c_state_enum cc_state[MAX_SOURCE_NUM]; /* l4c_state_enum */
kal_uint16 sms_current_action[MAX_SOURCE_NUM]; /*l4c_action_enum*/
//l4c_sub_state_enum cc_sub_state[MAX_SOURCE_NUM]; /* l4c_sub_state_enum */
/* ============================== ~action ============================== */
/* ============================== timer ============================== */
eventid event_id[8]; /* 0: keypad
1: gprs
2: gprs
3: retry
4: hz
5: dialup
6: RING repeat timer
7: SAT redial duration timer */
/* ============================== ~timer ============================== */
/* ss_parameter is using to save local parameter for ss retry using*/
l4c_parameter_struct ss_parameter; //MAUI_02354954 SS doesn't support concurrent multi-chnnel request
/* cc_parameter is using to save local parameter for cc retry using*/
l4c_parameter_struct cc_parameter[MAX_SOURCE_NUM];
/* we using this local context to save local parameter if we have to send one message,
but we have to do another thing before it, we have to save in this parameter*/
l4c_parameter_struct parameter[MAX_SOURCE_NUM];
/***********************************************************************/
/* Above context are placed in the front of L4C context */
/* to increase immediate offset access , to reduce ROM size */
/* Please try to KEEP the position for these frequent used variables */
/***********************************************************************/
#ifdef __SAT__ //MAUI_02354954
/* cc_peer_buf is using to save peer buffer for retry using*/
l4c_parameter_struct cc_peer_buf; //for cc now, it is used by SAT call only
#endif
#if defined(__TCPIP_OVER_CSD__)
l4c_parameter_struct csd_parameter;
#endif
#ifdef __RSAT__ //MAUI_02354954
/* parameter_sat is using to save SAT cc/ss/ussd/sms/dtmf local parameter using*/
l4c_parameter_struct parameter_sat;
#endif
/* this flag using to chek the retry mechineism working or not. so that we can ignore some message or clear*/
/* the queued message for retry */
/*retry timer timeout, sending queued message, rety_ongoing_flag will set as TRUE until receiving cnf*/
kal_bool cc_retry_ongoing_flag;
/* keep the retry count value */
kal_uint8 mo_call_id;
//#if !defined(__PHB_APPROVE_BY_MMI__)
kal_uint8 mo_call_ecc_info;
//#endif
l4c_ussd_version_enum ussd_version; //MO USSD change phase retry
#ifdef __ECC_RETRY_ENHANCEMENT__
kal_uint8 enhanced_ecc_id; //MAUI_02554068
#endif
/* ============================== ~queue/retry ============================== */
/* ============================== other context ============================== */
// rmmi_context_struct *rmmi_ptr;
#ifdef __HOMEZONE_SUPPORT__
l4c_hz_context_struct *hz_ptr;
#endif
/* ============================== ~other context ============================== */
/* ============================== flag ============================== */
/* this flag chek if rac is actived tru or fale , we can initila submodule, and can dial ECC call*/
kal_bool rac_activated;
#ifdef __MOD_TCM__
/* keep the value of GPRS PDP active form NW with auto answser mode */
kal_bool tcm_auto_answer;
#endif //mtk02285, 201003, 6251_ram
/* this flag using to identify the power on procedure with finish indcation, we can use it to chek */
/* if uper layer like to write sim as power on not finish, in reg_ind if power on not finish we need*/
/* inform MMI with attach_ind. however, if power on finish, we any reg_ind we will using reg_ind to*/
/* inform MMI with the registed stste changed. */
kal_bool power_on_not_finish;
/* this flag is using for RMMI setting some equiement value but route to LMMI , it means we LMMI tigger*/
/* the set request , but we have to inform RMMI and afer confirm we should clear L4C state to default.*/
/* this flag using for detect the plmn sel cnf and reg_ind message and cehck if it is first camp on this PLMN*/
/* if true, CFU for CPHS to and SMS memory available message may be send out to NW */
kal_bool first_camp_on;
/* this flag is using for SIM restart and wthin SIM_ERROR_IND with cause , we got to keep this value and when*/
/* security cnf will perform another proceure*/
kal_bool sim_refresh;
/* this flag using to make sure SIM has receive detach form NW when SIM refesh procedure is running*/
//kal_bool sim_reg_state_received;
/* This flag using to make sure SIM has read all reg required data and can be trigger RAC to reg*/
//kal_bool sim_security_received;
/**/
//kal_bool ph_reset;
kal_bool mt_call_incoming; //mtk00468 add for remember one mt call coming , any action should be response as command conflict
kal_bool adc_flag; /* using for active or deavtice EM ADC indication*/
#if defined(__MMI_FMI__)
kal_bool keypad_event_flag;/* using for engineer mode for keypad event use*/
#endif
/* sim_detected: sim inserted information after SMU start cnf
KAL_TRUE : SIM is inserted and SMU has loaded security information and SML
KAL_FALSE: otherwise
*/
kal_bool sim_detected;
kal_uint16 sim_error_cause;
kal_bool phb_ready_flag;
kal_bool sms_ready_flag;
kal_uint8 csm_state; //l4c_csm_state_enum
#ifdef __MOD_TCM__
kal_bool tcm_ready_flag;
#endif //mtk02285, 201003, 6251_ram
#if defined(__MMI_FMI__) && !defined(__UCM_SUPPORT__)
kal_bool mmi_ready_flag;
#endif
kal_bool sms_da_fdn_check; //using to check if da is approve now
kal_bool call_exist; /*copy from L4CCSM_CC_CALL_INFO_IND -> call_exist*/
// kal_bool ps_abm_act; /*ABM_ACT by PS: TRUE or FALSE*/
kal_bool csd_end_connect_race_flag; //this flag is using to avoid when we ever send connect indicatino to MMI
#ifdef __UCM_SUPPORT__
kal_uint8 data_call_end_race_flag; //mtk01616_090408:this flag is used to handle ath_req to end data call after call_setup_cnf
kal_bool csd_call_end; //MAUI_01801045 L4C local disconnects CSD call
#endif
// but before we send it to MMI , END key press. MMI will send ATH to end call
kal_bool call_alert; /*True: play alert tone, stop it when call connect or call release*/
//kal_bool cipher_ind; //from l4csmu_mmrr_ready_ind, true: enable , false: disable
kal_bool sim_poweroff; //ture: sim power off finished
kal_bool sms_init_sent; //true: MSG_ID_L4CSMSAL_INIT_REQ is sent
#ifdef __MOD_TCM__
kal_bool gprs_connection_timeout; /* Johnny 2006/01/12: KAL_TRUE: gprs connection timeout but can not dereg (due to command conflict) */
#endif //mtk02285, 201003, 6251_ram
//ALPS00029231 l4c_sat_ussr_enum represents the different SAT USSR scenarios
l4c_sat_ussr_enum sat_ussr_flag; //mtk01616 070325 :for SAT_USSD ,get ussr fac
kal_bool mmrr_ready_flag;//mtk01616 070426:mmrr_ready_flag is used only in rac_act_cnf_hdlr to check whether mmrr_ready_ind is already received
kal_uint8 sat_redial_flag; //mtk01616_100223: check if necessary to do sat redial
kal_uint32 sat_redial_duration; //mtk01616_100223: keep sat redial duration (time unit : ms , 0 if duration not present)
#ifdef __TCPIP__ /* ABM */
kal_uint8 disc_dialup_req;
#endif
#if !defined(__PHB_APPROVE_BY_MMI__) && (!defined(__MMI_FMI__) || defined(__ECUSD_SUPPORT__))
kal_bool phb_approve_ussd; //mtk02508_090304: set if phb is approving ussd
#endif
/* ============================== ~flag ============================== */
/* ============================== value ============================== */
/* save line number here so that l4c can prepare setup call type to CC according to this value*/
/* this value is set as default line 1 , but will be change when change line form MMI and keep */
/* right here.*/
kal_uint8 line_num; /*Line_1 Line_2*/
/* because we will active rac and smu at the same time, therefore, we have to keep*/
/* if smu being active so that we can perform normal plmn selection. */
kal_uint8 sms_num[MAX_SOURCE_NUM];
kal_uint8 smu_activated;/* L4C_SMU_INACTIVE, L4C_SMU_ACTIVE,L4C_SMU_ACTIVATE_FAIL*/
kal_uint8 sms_abort_ongoing;
#if defined(__MMI_FMI__)
kal_uint8 keypad_press_timer; //mtk00468 add for ckpd to simulate driver kedpad event using.
#endif
#ifdef __AUTO_CALL_REJECTION__
kal_uint8 present_call_id;
#endif
kal_uint8 mt_call_id; //keep the imcoimg call ID, this is make sure when release by NW we can clear the mt_call_imcoming flag correct
kal_uint8 crss_opcode;//MMI may using chld to accept one mt call , we need to keep it so that in crss cnf we can clear the above flag
#if defined(__VTS_LATE_RESPONSE__)
kal_uint8 dtmf_call_id;
#endif
/* keep the CLI vlaue here so that we can fill in setup message using this variable CLIR_INVOKE,
CLIR_SUPPRESS, CLIR_AUTO*/
kal_uint8 clir_flag;
#ifdef __MOD_TCM__
kal_uint32 gprs_em_send_data_size[3]; /* EM mode, GPRS send data left size */ //mtk02285, 20110506 //mtk00714 w0634
l4c_source_id_enum gprs_em_send_data_srcid[3]; /* EM mode, GPRS send data src id */ //mtk02285, 20110506
#endif //mtk02285, 201003, 6251_ram
// kal_uint8 ceer_report[MAX_CEER_REPORT_LEN];//this array save the last unsuccessful call
kal_uint16 ceer_report;
//setup or in call modification , the last call release.
void *sms_da_number;
//mtk01616_070910
//// l4c_concat_sms_buff_struct concat_sms[MAX_CONCAT_SMS_NUM];
//kal_uint16 ps_abm_current_action; /* L4C_NO_ACTION, ABM_ACT, ABM_DEACT*/ //mtk02285, 201003, 6251_ram
//l4c_sub_state_enum abm_sub_state; /* l4c_sub_state_enum */
#if defined(__MMI_FMI__)
kal_uint8 ekey_mode; /* 20040510 mtk00714 add +EKEY for Joseph: to enable testing +CKPD from Catcher during dial-up*/
#endif
kal_uint8 waiting_call_id; /*waiting call id for open/close waiting tone without MMI*/
#if defined(__MOD_TCM__) && defined(__INT_PDP_CONTEXT_ON__)
//bit7-> 0: not exist, 1: exist
//bit6 -bit0 -> profile id from abm
#ifndef __APP_SECONDARY_PDP_SUPPORT__
kal_uint8 pdp_context_id[MAX_INT_PDP_CONTEXT];
#else
kal_uint16 pdp_context_id[MAX_INT_PDP_CONTEXT];
#endif
#endif
#ifndef __CLOG_STORAGE_BY_MMI__
kal_uint8 last_number_seq; //if MAX_PHB_LN_ENTRY > 20, check seq_id = 1
#endif
l4_number_struct l4cphb_approve_req_string;
cipher_ind_msg_struct cipher_ind_msg; /* Johnny: L4C will save cipher_ind_msg additionally and send it to MMI after CALL_RING_IND */
#ifdef __MOD_TCM__ // mtk02126 wrap pending_latest_auto_attach in __MOD_TCM__ MAUI_02420439
/* Johnny:
if SET_GPRS_CON_TYPE command conflict with SET_GPRS_CON_TYPE,
L4C will return TRUE instead of FALSE but pending the latest auto_attach
and re-do it when clear SET_GPRS_CON_TYPE
l4c_gprs_connect_type_enum =>
L4C_WHEN_NEEDED,
L4C_ALWAYS,
L4C_GPRS_CONN_TYPE_UNKNOWN (init value)
*/
kal_uint8 pending_latest_auto_attach;
kal_uint8 cid_used_by_ppp;
kal_uint8 disc_ppp_src_id;
l4c_gprs_status_enum l4a_ps_gprs_last_status;
kal_uint8 l4a_ps_gprs_last_cell_support_egprs;
kal_uint8 l4a_ps_gprs_last_data_speed_support;
kal_uint8 l4a_ps_gprs_last_data_bearer_capability;
#endif //mtk02285, 201003, 6251_ram
#if defined(__SP_RIL_SUPPORT__) && defined(__MOD_TCM__) //mtk02285, 201003, 6251_ram
kal_bool ext_pdp_activating[MAX_EXT_PDP_CONTEXT+1];
kal_uint8 ext_pdp_src_id[MAX_EXT_PDP_CONTEXT+1];
#endif //mtk02285, DUMA00206863, abort_cgact_activation
/*mtk80396, Add for EM PS conformance test Menu, read from NVRAM when power on*/
/* ============================== ~value ============================== */
/* ============================== other ============================== */
#ifdef __IRDA_SUPPORT__
l4c_data_mode_enum uart_data_mode;
#endif
#if defined(__FWP_NC_LAI_INFO__)
kal_uint8 is_cell_lock_call;
#endif
kal_bool power_on_pin_check;
kal_bool data_signal_activate; /*indicate the CS signal path is setup or not for a data call*/
kal_uint8 max_retry_count;
#if 0 //__CTM_SUPPORT__
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
kal_uint8 rat_mode;
#if defined(__NAS_RAT_PREFER__) || defined(__UMTS_FDD_PREFER__)
l4c_prefer_rat_enum prefer_rat;
#endif
#ifdef __CSD_FAX__
kal_uint8 fax_src_id; //temp solution for fax
#endif /*__CSD_FAX__*/
kal_uint8 single_sim_inserted_status; //first updated by reset sim result
#if defined(__GEMINI__) && !defined(__MMI_FMI__)
rmmi_edsim_set_mode_state_enum dual_sim_mode_setting_command;
#endif /* __GEMINI__ but no __MMI_FMI__ */
#ifdef __AUTO_CALL_REJECTION__
kal_uint8 mt_call_approval;
#endif
kal_bool ongoing_csd_dialup; // MAUI_02284187, mtk02285
kal_bool disallow_gprs_and_csd; // karen
#ifdef __NBR_CELL_INFO__
cell_info_reg_table_struct cell_info_reg_table[10];
kal_uint8 cell_info_reg_index;
#endif
kal_bool sub_modules_ready;
/* [DUMA00005999], mtk02480
* has_deregistered is set to KAL_TRUE while we have dereg network or attach limited service only
* if has_deregistered=TRUE, we have to do reg_req before send PLMN_SEARCH_REQ
*/
kal_bool has_deregistered;
kal_uint8 csq_level; //rx_level, mtk02285
kal_uint8 ber;
kal_int32 rssi_in_qdbm;
kal_int32 RSCP_in_qdbm;
kal_int32 EcN0_in_qdbm;
l4c_data_bearer_capablility_enum max_data_bearer_capa;//hspa_mmi_h2
/* ============================== ~other ============================== */
/* For GPRS_FLC_UT MAUI_02419672 mtk02126 */
#if !defined(__MTK_TARGET__) && defined(__RMMI_UT__) && defined(__MOD_TCM__)
lcd_lqueue *gprs_flc_queue;
#endif
//evshed_create, mtk02285, 20110328: remove base timer
#if defined(__OP01__)
l4c_nw_sysconfig_struct *nw_sysconfig;
#endif
/* the TON of MO call number in SETUP request to CSM. between 128~255
Refers to TS 24.008 10.5.4.7 the octet 3 of Called party BCD number IE */
kal_uint8 cc_ton;
#ifdef __GEMINI_3G_SWITCH__
sim_interface_enum cur_3g_switch_map; /* store the mapping to physical SIMs*/
#endif
#if defined(__ENS_RAT_BALANCING__)
kal_uint8 is_valid_ef_rat_mode;
kal_uint8 ef_rat_mode;
#endif
kal_uint32 em_cell_lock_mode; /* Context for L4C EM cell lock feature, refer to em_cell_lock_mode_enum */
kal_uint8 file_changed_map;
#if defined(__DUAL_TALK_MODEM_SUPPORT__)
l4c_source_id_enum l1aud_spc_src_id;
#endif
} l4c_context_struct;
/* mtk01616_100419: L4C common context is created for RAM size optimization in Gemini platform
In Gemini, there will be two L4C context. However, some context can be shared in SIM1/SIM2.
Now we create L4C common context,there will be only one common context in Gemini
For context can be shared between SIM1/SIM2, please try to move to L4C common context. */
typedef struct
{
kal_uint32 cpi_mode;
kal_uint32 ps_conf_test_profile;
kal_uint8 ps_conf_test_mode;
kal_bool wap_init_flag;
kal_uint8 flightmode_state; //l4cmmi_flightmode_enum
/* 030618 mtk00468 add handle the power on mode in different mode , we have to keep this value.*/
/* when mode is not normal power , after uem_startup_cnf we dont need to initial other module*/
kal_uint8 poweron_mode; /* POWER_ON_KEYPAD 0 POWER_ON_ALARM 1 POWER_ON_CHARGER_IN 2 */
kal_uint8 poweroff_retry; // power off timer retry count
kal_uint8 usb_app; //remember usb app is USB_SWITCH_PORT_APP_DATA or USB_SWITCH_PORT_APP_DEBUG
#ifdef __IP_NUMBER__
kal_uint8 ip_string[21];
#endif
#ifdef __GEMINI__
kal_uint8 dual_sim_mode_setting;
kal_uint8 dual_sim_inserted_status;
kal_bool during_sim_mode_switch;
kal_bool is_dual_sim_ind_sent;
#endif
#ifdef __AGPS_CONTROL_PLANE__
module_type agps_cp_active_module;
#endif
#ifdef __GEMINI_3G_SWITCH__
kal_uint8 cur_3g_capability; /* bitmask, store the 3G capability setting*/
#endif
#ifdef __ETWS_SUPPORT__
kal_uint8 etws_setting;
#endif
#ifdef __ECALL_SUPPORT__
kal_bool l4c_use_tnum;
kal_bool l4c_use_rnum;
l4_addr_bcd_struct l4c_tnum;
l4_addr_bcd_struct l4c_rnum;
#endif
}l4c_common_context_struct;
/* -------------------------------------------------------
* L4C Root is the GEMINI controller in Dual SIM project.
* Control the power on/power off/SIM mode switching procedures.
* -------------------------------------------------------*/
#if defined(__GEMINI__)
typedef struct
{
kal_bool has_update_sim_statust;
kal_uint8 root_src_id;
kal_uint8 efun_state;
#if defined(__L4C_GEMINI_BT_HF__)
kal_uint8 last_dialed_sim;
#endif
#if defined(__SINGLE_AP_DUAL_MODEM__)
/* bitmap representing the power-on mode for each sim
0x01: SIM1 protocol is powered-on
0x02: SIM2 protocol is powered-on
0x04: SIM3 protocol is powered-on
0x08: SIM4 protocol is powered-on
*/
kal_uint8 sim_support_mode;
#endif
#if defined(__SIM_ME_LOCK__)
/* below context is for link_SML */
smu_pending_password_id_enum root_pending_password[MAX_SIM_NUM];
#endif
}l4c_root_context_struct;
#endif
extern l4c_context_struct *l4c_ptr_g;
extern l4c_common_context_struct *l4c_comm_ptr_g;
extern module_type l4c_current_mod_id;
extern l4c_context_struct l4c_cntxt_g[L4_MAX_SIM_NUM];
#ifdef __HOMEZONE_SUPPORT__
extern l4c_hz_context_struct l4c_hz_cntxt_g[L4_MAX_SIM_NUM];
#endif
#if defined(__GEMINI__)
extern l4c_root_context_struct l4c_root_cntxt_g;
extern l4c_root_context_struct *l4c_root_ptr_g;
#endif
#endif /* l4c_context.h */