blob: f0ba1fc96920c9d806b3f5a02083c6eca0faba5b [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001/*****************************************************************************
2* Copyright Statement:
3* --------------------
4* This software is protected by Copyright and the information contained
5* herein is confidential. The software may not be copied and the information
6* contained herein may not be used or disclosed except with the written
7* permission of MediaTek Inc. (C) 2012
8*
9* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
10* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
11* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
12* AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
13* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
14* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
15* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
16* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
17* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
18* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
19* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
20* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
21*
22* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
23* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
24* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
25* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
26* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
27*
28* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
29* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
30* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
31* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
32* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
33*
34*****************************************************************************/
35
36/*******************************************************************************
37 * Filename:
38 * ---------
39 * ddm_l4bnw_struct.h
40 *
41 * Project:
42 * --------
43 *
44 *
45 * Description:
46 * ------------
47 *
48 *
49 * Author:
50 * -------
51 *
52 *
53 ****************************************************************************/
54
55
56#ifndef _DDM_L4BNW_STRUCT_H
57#define _DDM_L4BNW_STRUCT_H
58
59#include "kal_general_types.h"
60#include "kal_public_defs.h"
61#include "l3_inc_enums_public.h"
62#include "l3_inc_enums.h"
63#include "l4bnw_public_struct.h"
64#include "ps_public_enum.h"
65#include "nas_sv_struct.h"
66
67//typedef struct {
68// LOCAL_PARA_HDR
69
70 /** Only expects the below values from rat_enum:
71 * RAT_NONE = 0,
72 * RAT_GSM = 1,
73 * RAT_UMTS = 2,
74 * RAT_LTE = 4,
75 * RAT_C2K = 16,
76 * RAT_1xRTT = 32,
77 * RAT_HRPD = 64,
78 */
79// rat_enum currently_attached_rat;
80// l4bnw_public_attached_network_info_struct attached_network_info;
81//} ddm_l4bnw_attached_rat_ind_struct;
82
83
84typedef struct {
85 LOCAL_PARA_HDR
86 l4_ps_type_config_enum ps_type;
87 kal_bool follow_on_request; // TS 24.008 -FOR, make GMM prolong an established PS signalling connection
88} ddm_l4bnw_ps_type_config_req_struct;
89
90typedef struct {
91 LOCAL_PARA_HDR
92 l4_ps_config_result_enum result;
93} ddm_l4bnw_ps_type_config_cnf_struct;
94
95typedef struct {
96 LOCAL_PARA_HDR
97 kal_bool is_reattach;
98} ddm_l4bnw_ps_reattach_config_req_struct;
99
100typedef struct {
101 LOCAL_PARA_HDR
102 kal_uint16 cause;
103} ddm_l4bnw_ims_pdn_rej_ind_struct;
104
105typedef struct {
106 LOCAL_PARA_HDR
107 mmi_event_enum event_id; //mmi_event_enum
108} ddm_l4bnw_ps_event_report_ind_struct; // same as l4crac_ps_event_report_ind_struct
109
110typedef nas_sv_emm_t3402_stop_ind_struct ddm_l4bnw_t3402_stop_ind_struct;
111
112#endif /* _DDM_L4BNW_STRUCT_H */