blob: 5ade16a8eb1c628678391026787bc9e279f519ca [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 * nwsel_eval_enums.h
40 *
41 * Project:
42 * --------
43 * MOLY
44 *
45 * Description:
46 * ------------
47 * common enum definition between NWSEL and EVAL module
48 *
49 * Author:
50 * -------
51 * -------
52 *
53 * ==========================================================================
54 * $Log$
55 *
56 * 06 24 2016 mw.hsu
57 * [MOLY00186459] [MT6293] [NWSEL] UMOLY merge to UMOLYA.
58 *
59 * 04 26 2016 sherry.kuo
60 * [MOLY00175925] sync LR11 to UMOLY
61 * .
62 *
63 * 03 31 2016 justin.li
64 * [MOLY00172070] Gen92 cross core interface migration
65 * .
66 *
67 * 10 05 2015 panu.peisa
68 * [MOLY00142657] [VzW][VZ_REQ_e911_30203] RAL and MRU cell band info update implementation to 6291
69 * Integrated CLs 1690397 and 1690428 from LR11_VzW.
70 *
71 * 09 30 2015 marko.akselin
72 * [MOLY00142657][VzW] VZ_REQ_e911_30203 - Add band information into NWSEL - EVAL interface.
73 * .
74 *
75 * 04 16 2015 james-chi-ju.chang
76 * [MOLY00078264] [UMOLY][R10][R11] NAS check-in from CBr to 6291_DEV
77 * .
78 *
79 * 03 27 2013 benjamin.kuo
80 * [MOLY00011934] LTE MM IT CBr merge to MOLY
81 * .
82 *
83 * 01 23 2013 sherry.kuo
84 * [MOLY00009250] [LTE Multimode] NWSEL check in
85 * nwsel related files check in.
86 *
87 * 11 06 2012 yu.huang
88 * [MOLY00005322] TATAKA merge to MOLY
89 * [EVAL] Add EVAL related interfaces and common strust
90 ****************************************************************************/
91
92
93#ifndef _NWSEL_EVAL_ENUMS_INC
94#define _NWSEL_EVAL_ENUMS_INC
95
96/***** common enum definition *****/
97typedef enum
98{
99 EPS_ATTACH_UPDATE_RESULT_NONE = 0x00,
100 EPS_ONLY = 0x01,
101 COMBINED_EPS_IMSI_ATTACH = 0x02,
102 TA_UPDATED = 0x10,
103 COMBINED_TA_LA_UPDATED = 0x11,
104 TA_UPDATED_ISR_ACTIVATED = 0x14,
105 COMBINED_TA_LA_UPDATED_ISR_ACTIVATED = 0x15
106} eps_attach_update_result_enum;
107
108/* move to l3_inc_enum_public.h */
109#if 0
110/* under construction !*/
111/* under construction !*/
112/* under construction !*/
113/* under construction !*/
114/* under construction !*/
115/* under construction !*/
116/* under construction !*/
117/* under construction !*/
118/* under construction !*/
119/* under construction !*/
120/* under construction !*/
121/* under construction !*/
122/* under construction !*/
123#endif
124#endif /* ----- #ifndef _NWSEL_EVAL_ENUMS_INC ----- */
125