l4c2smsal_struct.h
26.3 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
/*****************************************************************************
* 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:
* ---------
* l4c2smsal_struct.h
*
* Project:
* --------
* MAUI
*
* Description:
* ------------
*
* 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!
*
*------------------------------------------------------------------------------
* 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.
*
********************************************************************************/
/*******************************************************************************
* 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) 2002
*
*******************************************************************************
* FILENAME : l4c2smsal_struct.h
* SYNOPSIS : Functions for encoding/decoding.
*
* R E V I S I O N H I S T O R Y
*
*/
#ifndef _L4C2SMSAL_STRUCT_H
#define _L4C2SMSAL_STRUCT_H
#include "ps_public_struct.h"
//#include "l4c_aux_struct.h"
#include "mcd_l4_common.h"
//#include "kal_non_specific_general_types.h"
#include "kal_general_types.h"
typedef struct
{
kal_uint8 fo;
kal_uint8 pid;
kal_uint8 dcs;
kal_uint8 ori_dcs;
kal_uint8 vp_format;
kal_uint8 vp;
kal_uint16 no_msg_data;
l4_addr_bcd_struct sca;
l4_addr_bcd_struct da;
} smsal_submit_msg_hdr_struct;
/* to replace smsal_submit_msg_struct */
typedef struct
{
kal_uint8 fo;
kal_uint8 pid;
kal_uint8 dcs;
kal_uint8 ori_dcs;
kal_uint8 pading;
kal_uint8 scts[7];
kal_uint16 no_msg_data;
l4_addr_bcd_struct sca;
l4_addr_bcd_struct oa;
} smsal_deliver_msg_hdr_struct;
/* to replace smsal_deliver_msg_struct */
typedef struct
{
kal_uint8 fo;
kal_uint8 pid;
kal_uint8 dcs;
kal_uint8 ori_dcs;
kal_uint8 mr;
kal_uint8 scts[7];
kal_uint16 no_msg_data;
l4_addr_bcd_struct ra;
kal_uint8 dt[7];
kal_uint8 st;
} smsal_status_report_msg_hdr_struct;
/* to replace smsal_status_report_msg_struct; */
typedef struct
{
kal_uint8 fo;
kal_uint8 ct;
kal_uint8 mn;
kal_uint8 pid;
kal_uint16 no_msg_data;
l4_addr_bcd_struct da;
} smsal_command_msg_hdr_struct;
/* to replace smsal_command_msg_struct; */
typedef struct
{
kal_uint8 profile_no_tag;
kal_uint8 profile_no;
kal_uint16 para_ind;
kal_uint8 pid;
kal_uint8 dcs;
kal_uint8 vp;
kal_uint8 udhi;
kal_uint8 tp_srr;
kal_uint8 tp_rp;
kal_uint8 da_tag;
l4_addr_bcd_struct da;
l4_addr_bcd_struct sc_addr;
} smsal_send_msg_req_hdr_struct;
/* to replace smsal_send_msg_req_struct */
typedef struct
{
kal_uint16 para_ind;
kal_uint8 tp_mms;
kal_uint8 tp_rp;
kal_uint8 tp_udhi;
kal_uint8 tp_sri;
kal_uint8 pid;
kal_uint8 dcs;
kal_uint8 tp_scts[7];
l4_addr_bcd_struct oa;
l4_addr_bcd_struct sc_addr;
} smsal_receive_msg_hdr_struct;
typedef union {
smsal_deliver_msg_hdr_struct deliver;
smsal_submit_msg_hdr_struct submit;
smsal_status_report_msg_hdr_struct status_rep;
} smsal_header_info_union;
typedef struct {
kal_uint8 mt; /* MT Service Mode*/
kal_uint8 mo; /* MO Service Mode*/
kal_uint8 bm; /* Broadcast Message Service Mode*/
} smsal_service_mode_struct;
typedef struct {
kal_uint8 mode; /* Buffering Mode*/
kal_uint8 mt; /* MT Message Route Mode*/
kal_uint8 ds; /* Status Report Route Mode*/
kal_uint8 bm; /* Broadcast Message Route Mode*/
} smsal_mt_msg_route_struct;
typedef struct {
kal_uint8 mem1; /* Storage type for Memory1*/
kal_uint8 mem2; /* Storage type for Memory2*/
kal_uint8 mem3; /* Storage type for Memory3*/
} smsal_select_mem_struct;
typedef struct {
l4_name_struct name;
l4_addr_bcd_struct addr;
kal_uint8 capability_id;
kal_uint8 extension_id;
} smsal_mailbox_addr_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id; /* Source Code*/
kal_uint8 is_sim_change; /* TRUE: if last IMSI changed */
kal_uint8 init_type;
} l4csmsal_init_req_struct;
typedef l4csmsal_init_req_struct l4csmsal_init_me_sms_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
} l4csmsal_de_init_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id; /* Source Code*/
kal_uint8 req_type; /* Request Type*/
kal_uint8 status; /* Status*/
kal_uint8 change_status; /* change status*/
kal_uint16 index; /* Message Index*/
} l4csmsal_read_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 dest_no; /* Specify set target, profile_no or line_no*/
kal_uint16 para_ind; /* Specify which parameters shall be set*/
kal_uint8 fo;
kal_uint8 support_concat;
kal_uint8 direct_display;
kal_uint8 bearer_serivce;
smsal_select_mem_struct prefer_mem;
smsal_mailbox_addr_struct mailbox_addr;
kal_uint8 vp;
kal_uint8 pid;
kal_uint8 dcs;
l4_addr_bcd_struct sca;
l4_name_struct profile_name;
kal_uint8 cbch_req;
kal_bool is_all_language_on;
} l4csmsal_set_parameter_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 profile_no; //if para_ind=SMSAL_PARA_SAVE_PROFILE, only this field is available. (For AT only)
kal_uint16 para_ind; /* Specify which parameters shall be set*/
kal_uint8 pid; //SMSAL_PARA_PID
kal_uint8 dcs; //SMSAL_PARA_DCS
kal_uint8 vp; //SMSAL_PARA_VP
l4_addr_bcd_struct sca; //SMSAL_PARA_SCA
l4_name_struct profile_name; //SMSAL_PARA_PROFILE_NAME
} l4csmsal_set_profile_para_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 dest_no; /* index of mailbox list based on smsal_get_mailbox_addr */
kal_uint16 para_ind; /* Specify which parameters shall be set*/
kal_uint8 fo; //SMSAL_COM_PARA_FO
kal_uint8 bearer_serivce; //SMSAL_COM_PARA_BEARER
kal_uint8 status_report; //SMSAL_COM_STATUS_REP
kal_uint8 reply_path; //SMSAL_COM_REPLY_PATH
kal_uint8 cbch_req; //SMSAL_COM_CBCH_REQ
kal_uint8 is_all_language_on; //SMSAL_COM_PARA_ALL_CB_LANG
smsal_select_mem_struct prefer_mem; //SMSAL_COM_PARA_PREFER_MEM
smsal_mailbox_addr_struct mailbox_addr; //SMSAL_COM_PARA_MAILBOX_ADDR
kal_uint8 msp_no;
smsal_mbi_struct mbi;
} l4csmsal_set_common_para_req_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 line_no; /* message waiting line no */
kal_uint8 waiting_num; /* message waiting number */
kal_uint8 ind_type; /* message waiting type */
}l4csmsal_set_msg_waiting_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 req_type;
kal_uint8 seq_num;
kal_uint8 fdn_check; //true: FDN enable
kal_uint8 mms_mode;
kal_uint16 reply_index;
kal_uint16 message_len; /* Length of Message*/
union {
smsal_send_msg_req_hdr_struct submit;
smsal_command_msg_hdr_struct command;
} msg_header;
} l4csmsal_send_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 seq_num;
} l4csmsal_send_abort_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 seq_num;
kal_uint8 fdn_check; //true: FDN enable
kal_uint16 index;
kal_uint16 reply_index;
kal_uint8 da_tag; /* Indicate whether to use da as destination address*/
l4_addr_bcd_struct da; /* Destination Address*/
kal_uint8 profile_no_tag;
kal_uint8 profile_no;
} l4csmsal_send_from_storage_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 status;
kal_uint8 scts[7];
kal_uint16 replace_index;
kal_uint16 message_len; /* Length of Message*/
union{
smsal_receive_msg_hdr_struct mt_sms_hdr;
smsal_send_msg_req_hdr_struct mo_sms_hdr;
}hdr;
} l4csmsal_write_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 del_flag;
kal_uint16 index;
kal_uint8 msg_bitmap[480]; /* length is not final value */
} l4csmsal_delete_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 seq_num;
kal_uint8 is_sms_packed_required;
l4_addr_bcd_struct sc_addr;
kal_uint8 tpdu_length;
kal_uint8 tpdu[175];
} l4csmsal_sat_send_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
} l4csmsal_init_cnf_struct;
typedef l4csmsal_init_cnf_struct l4csmsal_init_me_sms_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
} l4csmsal_de_init_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 line_no; /* Number of Line*/
kal_uint8 msp_no;
kal_uint8 waiting_num;
kal_uint8 ind_type;
kal_bool is_show_num;
kal_bool is_clear;
kal_bool is_from_storage;
kal_uint8 ext_indicator; // indicate how many "message waiting" follows
l4csmsal_msg_waiting_ind_ext_struct msg_waiting[5];
} l4csmsal_msg_waiting_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest; /* Destination Code*/
kal_uint8 storage_type;
kal_uint16 index; /* Message Index*/
kal_uint16 dest_port;
kal_uint16 src_port;
smsal_concat_struct concat_info; /* Concat. Info*/
l4_addr_bcd_struct oa; /* Originating Address */
kal_uint8 mti;
kal_uint8 scts[7];
} l4csmsal_new_msg_index_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest; /* Destination Code*/
kal_uint8 id; /* Id for distinguish CNMA*/
kal_uint8 mti; /* Message Type Identifier*/
kal_uint16 message_len; /* Length of Message*/
} l4csmsal_new_msg_pdu_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest; /* Destination Code*/
kal_uint8 id; /* Id for distinguish CNMA*/
kal_uint16 index;
kal_uint8 mti; /* Message Type Identifier*/
kal_uint8 rmi_use_hex;
kal_uint8 display_type;
kal_uint8 storage_type;
kal_uint16 dest_port;
kal_uint16 src_port;
kal_uint16 message_len; /* Length of Message*/
smsal_concat_struct concat_info; /* Concat. Info*/
smsal_header_info_union msg_header;
} l4csmsal_new_msg_text_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 status; /* Message Status*/
kal_uint8 new_status; /* For +CMGR and sync. to MMI */
kal_uint8 mti; /* Message Type Identifier*/
kal_uint8 storage_type;
kal_uint8 rmi_use_hex;
kal_uint16 index; /* For +CMGL*/
kal_uint16 next_index; /* Indicate the next index*/
kal_uint16 dest_port;
kal_uint16 src_port;
kal_uint8 scts[7];
kal_uint8 padding;
kal_uint16 message_len; /* Length of Message*/
smsal_concat_struct concat_info; /* Concat. Info*/
smsal_header_info_union msg_header;
} l4csmsal_read_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 profile;
} l4csmsal_set_parameter_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 profile;
} l4csmsal_set_profile_para_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 profile;
} l4csmsal_set_common_para_cnf_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_bool result;
kal_uint16 cause;
kal_uint8 src_id;
kal_uint8 line_no; /* message waiting line no */
kal_uint8 waiting_num; /* message waiting number */
kal_uint8 ind_type; /* message waiting type */
}l4csmsal_set_msg_waiting_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 mr; /* Message reference*/
kal_uint8 seq_num;
kal_uint8 scts[7];
smsal_concat_struct concat_info; /* Concat. Info*/
} l4csmsal_send_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint16 index;
kal_uint8 status; /* status of msg */
kal_uint8 storage_type;
} l4csmsal_write_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint16 index;
kal_uint8 del_flag;
kal_uint8 storage_type;
kal_uint8 msg_bitmap[480]; /* length is not final value */
} l4csmsal_delete_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 seq_num;
}l4csmsal_send_abort_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 type;
} l4csmsal_mem_full_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 type;
} l4csmsal_mem_exceed_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 type;
} l4csmsal_mem_available_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint16 length; //length of peer buf data; unit:byte
kal_uint8 access_id;
} l4csmsal_sms_depersonalization_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 response;
kal_uint8 cause_present;
kal_uint16 cause;
kal_uint16 length; //length of peer buf data; unit:byte
kal_uint8 access_id; //SMU piggy-back
} l4csmsal_sms_depersonalization_rsp_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 res; /* SAT response code*/
kal_uint8 cause; /* Error Cause*/
} l4csmsal_sat_send_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 cbch_req;
} l4csmsal_cbch_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint16 mi[40]; // = [SMSAL_MMI_CBMI_MAX_ENTRY]
kal_uint16 dcs[30]; // = [SMSAL_CB_MAX_ENTRY]
kal_bool mi_mask[40]; // = [SMSAL_MMI_CBMI_MAX_ENTRY]
kal_bool dcs_mask[30]; // = [SMSAL_CB_MAX_ENTRY]
/* follows added by Kevin */
kal_bool mir_mask[30]; // = [SMSAL_CB_MAX_ENTRY]
kal_uint16 mir[60]; // = [SMSAL_CB_MAX_ENTRY*2]
kal_uint8 is_all_language_on;
kal_uint8 para_ind;/* smsal_cb_para_enum */
} l4csmsal_cb_update_req_struct;
/* CB UPDATE CNF added by Kevin */
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
} l4csmsal_cb_update_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint16 mi;
kal_uint8 dcs;
kal_uint16 msg_length; /* max length is 93 x 15 = 1395 */
kal_uint8 msg_data[1];
} l4csmsal_cb_msg_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest; /* RMMI or LMMI*/
kal_uint16 sn;
kal_uint16 mi;
kal_uint8 dcs;
kal_uint8 page;
kal_uint8 pages;
kal_uint8 rmi_use_hex;
kal_uint16 msg_length; /* max length is 93 x 15 = 1395 */
kal_uint8 msg_data[1];
} l4csmsal_cb_msg_text_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 geography_type;
} l4csmsal_cb_gs_change_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest;
kal_uint16 msg_length;
kal_uint8 msg_data[1];
} l4csmsal_cb_msg_pdu_ind_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint16 dest_mod_id;
kal_uint16 dest_port;
kal_uint16 src_port;
kal_uint8 dcs;
kal_uint8 mti; /* Message Type Identifier*/
kal_uint8 scts[7];
smsal_concat_struct concat_info; /* Concat. Info*/
l4_addr_bcd_struct oa; /* Originating Address */
kal_uint16 message_len; /* Length of Message*/
}l4csmsal_app_data_ind_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest; /* Destination Code*/
kal_uint8 startup_seq_num;
kal_uint8 mti; /* Message Type Identifier*/
kal_uint8 status;
kal_uint8 storage_type;
kal_uint8 scts[7];
kal_uint8 padding;
kal_uint16 index;
kal_uint16 message_len; /* Length of Message*/
kal_uint16 dest_port;
kal_uint16 src_port;
smsal_concat_struct concat_info; /* Concat. Info*/
smsal_header_info_union msg_header;
} l4csmsal_startup_read_msg_ind_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 access_id;
l4_addr_bcd_struct sc_addr;
l4_addr_bcd_struct da;
} l4csmsal_fdn_check_ind_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 result; //true: in FDN list(send), false: not in FDN list
kal_uint16 cause; //PHB_L4C_ERROR
} l4csmsal_fdn_check_rsp_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 action;
kal_uint8 dst_storage;
kal_uint16 src_index;
kal_uint8 src_id;
}l4csmsal_copy_msg_req_struct;
/* __UNIFIED_MESSAGE_BACKGROUND_SEND_SUPPORT__ */
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 new_status; /* smsal_status_enum */
kal_uint16 index;
kal_uint8 src_id;
}l4csmsal_set_status_req_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 action;
kal_uint8 dst_storage;
kal_uint16 src_index;
kal_uint16 dst_index;
kal_uint8 src_id;
}l4csmsal_copy_msg_cnf_struct;
/* __UNIFIED_MESSAGE_BACKGROUND_SEND_SUPPORT__ */
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint16 index;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 src_id;
}l4csmsal_set_status_cnf_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 action;
}l4csmsal_hz_cb_act_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 dest; /* not used */
kal_uint16 sn;
kal_uint16 mi;
kal_uint8 dcs;
kal_uint8 page;
kal_uint8 pages;
kal_uint8 rmi_use_hex; /* not used */
kal_uint16 msg_length;
kal_uint8 msg_data[1];
} l4csmsal_hz_cb_msg_ind_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
}l4csmsal_get_mailbox_num_req_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 result; /* Result Code*/
kal_uint16 error_cause; /* Error Cause*/
kal_uint8 src_id;
}l4csmsal_get_mailbox_num_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint16 index; // Message Index
} l4csmsal_read_raw_data_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; // Result Code
kal_uint16 error_cause; // Error Cause
kal_uint16 index; // Message Index
kal_uint8 status; // Status of msg
kal_uint8 storage_type; // SMSAL_SM or SMSAL_ME
kal_uint16 data_len; // Message length
} l4csmsal_read_raw_data_cnf_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 storage_type; // SMSAL_SM or SMSAL_ME
} l4csmsal_write_raw_data_req_struct;
typedef struct {
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result; // Result Code
kal_uint16 error_cause; // Error Cause
kal_uint16 index; // Message Index
kal_uint8 status; // Status of msg
kal_uint8 storage_type; // SMSAL_SM or SMSAL_ME
} l4csmsal_write_raw_data_cnf_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result;
kal_uint32 error_cause;
kal_uint8 uid;
}l4csmsal_send_deliver_report_req_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint8 result;
kal_uint32 error_cause;
kal_uint8 uid;
}l4csmsal_send_deliver_report_cnf_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 src_id;
kal_uint32 sm_max_num;
kal_uint32 sm_current_num;
kal_uint32 me_max_num;
kal_uint32 me_current_num;
kal_uint32 sr_max_num;
kal_uint32 sr_current_num;
}l4csmsal_sync_msg_storage_req_struct;
typedef struct
{
kal_uint8 ref_count;
kal_uint16 msg_len;
kal_uint8 result;
kal_uint32 cause;
}l4csmsal_mt_sms_final_ack_ind_struct;
// typedef smsal_evmi_struct l4csmsal_enhanced_voice_mail_ind_struct;
// l4csmsal_enhanced_voice_mail_ind_struct should be the same as smsal_evmi_struct
typedef struct
{
kal_uint8 evm_pdu_type;
kal_uint8 multi_sub_profile;
kal_uint8 is_store;
kal_uint8 vm_almost_full;
kal_uint8 vm_full;
kal_uint8 vm_status_ext_flg;
l4_addr_bcd_struct vm_access_addr;
kal_uint8 number_of_vm_unread; // should be stored in (U)SIM
kal_uint8 number_of_vm_notify; // max 15
kal_uint8 number_of_vm_delete; // max 31
kal_uint8 l4_status; // 0:init, 1: sent to MMI, 2:free
kal_uint8 vm_status_ext_len;
kal_uint8 *vm_status_ext_data;
smsal_evmi_msg_struct *vm_msg[32];
}l4csmsal_enhanced_voice_mail_ind_struct;
#endif