blob: bf0db93a2310b0ececddc2544df63c7b44442d90 [file] [log] [blame]
yu.dongc33b3072024-08-21 23:14:49 -07001#ifndef SBP_DATA_DEF
2#define SBP_DATA_DEF(ID, FEATURE, ATTR, DESC)
3#endif
4#ifndef SBP_DATA_DEF_VAL
5#define SBP_DATA_DEF_VAL(VAL, DESC)
6#endif
7#ifndef SBP_DATA_DEF_END
8#define SBP_DATA_DEF_END
9#endif
10
11#ifndef SBP_DATA_DEF_BIT_VAL
12#define SBP_DATA_DEF_BIT_VAL(NAME, DESC, DESC_V0, DESC_V1)
13#endif
14#ifndef SBP_DATA_DEF_BIT
15#define SBP_DATA_DEF_BIT(ID, FEATURE, ATTR)
16#endif
17#ifndef SBP_DATA_DEF_BIT_END
18#define SBP_DATA_DEF_BIT_END
19#endif
20
21#ifndef SBP_DATA_DEFAULT_VAL
22#define SBP_DATA_DEFAULT_VAL(DEFAULT_VALUE)
23#endif
24
25/* Please remember to modify the following NVRAM VERNO when your modification will change NVRAM*/
26#ifdef SBP_DEFINE_NVRAM_VERNO
27 #define NVRAM_EF_SBP_MODEM_DATA_CONFIG_LID_VERNO "140"
28 #define NVRAM_EF_SBP_MODEM_DATA_CONFIG_LID_HASH 0xC71E7757
29#endif
30
31/*
32 * Format:
33 *
34 * SBP_DATA_DEF(ID, FEATURE, ATTR, DESC) // define a SBP DATA
35 * SBD_DATA_DEF_VAL(VAL, VAL_DESC) // define the possible value of this SBP DATA and the description of this value.
36 * ... // there could be 0 or multiple SBP_DATA_DEF_VAL
37 * SBP_DATA_DEFAULT_VAL(DEFAULT_VAL) // define the default value of this SBP DATA, there is one and only one default value for this SBP DATA
38 * SBP_DATA_DEF_END // END of the definition for this SBP DATA
39 *
40 * Meaning:
41 * - ID: the real value of the SBP Data enum
42 * - FEATURE: the SBP Data enum
43 * - ATTR:
44 * SBP_ATTR_NONE = 0,
45 * SBP_ATTR_NOT_SUPPORT_DYNAMIC_SBP = 0x01, // bit 1 is for current SBP NV will keep when Dynamic SBP change
46 * SBP_ATTR_ALL = 0xff,
47 *
48 * - DESC: the field description in sbp_nvram_editor.h for this SBP DATA
49 * - VAL: the possible value for this SBP Data which will be defined in the sbp_nvram_editor.h
50 * - VAL_DESC: the description of the corresponding possible value for this SBP Data which will be defined in the sbp_nvram_editor.h
51 * - DEFAULT_VAL: the default value defined in nvram_data_items.c (the value may be replaced by sbp_utility.c)
52 *
53 * Note: ifdef/ifndef is supported but only for SBP_DATA_DEFAULT_VAL or adding different ATTR
54 *
55 */
56
57/******* SBP Doc Info Begin *******
58<SBP_DOC_INFO>
59 <HISTORY>
60 </HISTORY>
61</SBP_DOC_INFO>
62******* SBP Doc End ********/
63
64 /*0~7*/
65 /****** SBP Document BEGIN ************************************************************************
66<SBP title="SBP_DATA_VAMOS - VAMOS(Voice services over Adaptive Multi-user Channels on One Slot)">
67 <DESCRIPTION>
68 This feature is defined in 3GPP TS45.001 Ch.13(after R9).
69 If the MS support VAMOS, the VAMOS level could be VAMOS-I or VAMOS-II.
70 The MS will report its capability on the CLASSMARK to the network and the NW may assign channel mode with VAMOS mode.
71 </DESCRIPTION>
72 <CATEGORY>GAS</CATEGORY>
73 <CONFIG>
74 <VALUE value="0">Not Supported(Doc)</VALUE>
75 <VALUE value="1">VAMOS_1 Supported(Doc)</VALUE>
76 <VALUE value="2">VAMOS_2 Supported(Doc)</VALUE>
77 </CONFIG>
78 <DEFAULT>2 (VAMOS-II)</DEFAULT>
79 <OP>N/A</OP>
80 <DEPENDENCY>
81 The VAMOS_SUPPORT flag in makefile shall always be TRUE. (non-switchable)
82 <PARAG>
83 If VAMOS_SUPPORT set to FALSE, this VAMOS feature will be set to not support.
84 </PARAG>
85 </DEPENDENCY>
86 <NOTE>N/A</NOTE>
87 <AUTHOR>mtk09470</AUTHOR>
88</SBP>
89******* SBP Document END **************************************************************************/
90 SBP_DATA_DEF(0, SBP_DATA_VAMOS, SBP_ATTR_NONE, "support of VAMOS level is defined")
91 SBP_DATA_DEF_VAL(0x00, "Not Supported")
92 SBP_DATA_DEF_VAL(0x01, "VAMOS_1 Supported")
93 SBP_DATA_DEF_VAL(0x02, "VAMOS_2 Supported")
94 /* The first Hex is for FDD and the second is for TDD. */
95 #if defined(__TC10__) || defined(__DISABLE_VAMOS__)
96 SBP_DATA_DEFAULT_VAL(0x00 | 0x00)
97 #else
98 #if defined(__VAMOS_2__)
99 SBP_DATA_DEFAULT_VAL(0x02 | 0x00)
100 #elif defined(__VAMOS_1__)
101 SBP_DATA_DEFAULT_VAL(0x01 | 0x00)
102 #else
103 SBP_DATA_DEFAULT_VAL(0x00 | 0x00)
104 #endif
105 #endif
106 SBP_DATA_DEF_END
107
108 /****** SBP Document BEGIN ************************************************************************
109<SBP title="SBP_IDC_EN - IDC(In-device Coexistence)">
110 <DESCRIPTION>
111 <PARAG>
112 This feature is used to cooperate with CONSYS to eliminate interference between LTE and CONSYS(WiFi, BT, GPS).
113 If IDC is enabled, it will apply TDM, FDM or Power backoff according to LTE serving frequency and CONSYS frequency.
114 </PARAG>
115 </DESCRIPTION>
116 <CATEGORY>EAS</CATEGORY>
117 <CONFIG>
118 <VALUE value="0">IDC is not enabled</VALUE>
119 <VALUE value="1">IDC is enabled, Interference mitigation between LTE and CONSYS will be applied</VALUE>
120 </CONFIG>
121 <DEFAULT>
122 1 (IDC is enabled)
123 </DEFAULT>
124 <OP>
125 N/A
126 </OP>
127 <DEPENDENCY>
128 N/A
129 </DEPENDENCY>
130 <NOTE>
131 N/A
132 </NOTE>
133 <AUTHOR>mtk13382</AUTHOR>
134</SBP>
135******* SBP Document END **************************************************************************/
136 SBP_DATA_DEF(1, SBP_IDC_EN, SBP_ATTR_NONE, "Enable IDC feature")
137 SBP_DATA_DEF_VAL(0x00, "IDC disable")
138 SBP_DATA_DEF_VAL(0x01, "IDC enable")
139 #if defined(__DISABLE_IDC__)
140 SBP_DATA_DEFAULT_VAL(0x00)
141 #else
142 SBP_DATA_DEFAULT_VAL(0x01)
143 #endif
144 SBP_DATA_DEF_END
145
146 /****** SBP Document BEGIN ************************************************************************
147<SBP title="SBP_IDC_IM_LTE_TX_PWR">
148 <DESCRIPTION>
149 <PARAG>
150 The value is applied to LTE Tx max power after CONSYS notifies LTE to reduce Tx max power
151 </PARAG>
152 </DESCRIPTION>
153 <CATEGORY>EAS</CATEGORY>
154 <CONFIG>
155 <VALUE value="1">LTE max Tx power is set to 1 dBm</VALUE>
156 <VALUE value="2">LTE max Tx power is set to 2 dBm</VALUE>
157 <VALUE value="3">LTE max Tx power is set to 3 dBm</VALUE>
158 <VALUE value="4">LTE max Tx power is set to 4 dBm</VALUE>
159 <VALUE value="5">LTE max Tx power is set to 5 dBm</VALUE>
160 <VALUE value="6">LTE max Tx power is set to 6 dBm</VALUE>
161 <VALUE value="7">LTE max Tx power is set to 7 dBm</VALUE>
162 <VALUE value="8">LTE max Tx power is set to 8 dBm</VALUE>
163 <VALUE value="9">LTE max Tx power is set to 9 dBm</VALUE>
164 <VALUE value="10">LTE max Tx power is set to 10 dBm</VALUE>
165 <VALUE value="11">LTE max Tx power is set to 11 dBm</VALUE>
166 <VALUE value="12">LTE max Tx power is set to 12 dBm</VALUE>
167 <VALUE value="13">LTE max Tx power is set to 13 dBm</VALUE>
168 <VALUE value="14">LTE max Tx power is set to 14 dBm</VALUE>
169 <VALUE value="15">LTE max Tx power is set to 15 dBm</VALUE>
170 <VALUE value="16">LTE max Tx power is set to 16 dBm</VALUE>
171 <VALUE value="17">LTE max Tx power is set to 17 dBm</VALUE>
172 <VALUE value="18">LTE max Tx power is set to 18 dBm</VALUE>
173 <VALUE value="19">LTE max Tx power is set to 19 dBm</VALUE>
174 <VALUE value="20">LTE max Tx power is set to 20 dBm</VALUE>
175 <VALUE value="21">LTE max Tx power is set to 21 dBm</VALUE>
176 <VALUE value="22">LTE max Tx power is set to 22 dBm</VALUE>
177 <VALUE value="23">LTE max Tx power is set to 23 dBm</VALUE>
178 </CONFIG>
179 <DEFAULT>17 (LTE max Tx power is set to 17 dBm when CONSYS notifies LTE to deduce LTE max Tx power)</DEFAULT>
180 <OP>
181 N/A
182 </OP>
183 <DEPENDENCY>
184 N/A
185 </DEPENDENCY>
186 <NOTE>
187 N/A
188 </NOTE>
189 <AUTHOR>mtk13382</AUTHOR>
190</SBP>
191******* SBP Document END **************************************************************************/
192 SBP_DATA_DEF(2, SBP_IDC_IM_LTE_TX_PWR, SBP_ATTR_NONE, "Set LTE max Tx power when IDC is enabled")
193 SBP_DATA_DEF_VAL(0x01, "TX_PWR_1")
194 SBP_DATA_DEF_VAL(0x02, "TX_PWR_2")
195 SBP_DATA_DEF_VAL(0x03, "TX_PWR_3")
196 SBP_DATA_DEF_VAL(0x04, "TX_PWR_4")
197 SBP_DATA_DEF_VAL(0x05, "TX_PWR_5")
198 SBP_DATA_DEF_VAL(0x06, "TX_PWR_6")
199 SBP_DATA_DEF_VAL(0x07, "TX_PWR_7")
200 SBP_DATA_DEF_VAL(0x08, "TX_PWR_8")
201 SBP_DATA_DEF_VAL(0x09, "TX_PWR_9")
202 SBP_DATA_DEF_VAL(0x0a, "TX_PWR_10")
203 SBP_DATA_DEF_VAL(0x0b, "TX_PWR_11")
204 SBP_DATA_DEF_VAL(0x0c, "TX_PWR_12")
205 SBP_DATA_DEF_VAL(0x0d, "TX_PWR_13")
206 SBP_DATA_DEF_VAL(0x0e, "TX_PWR_14")
207 SBP_DATA_DEF_VAL(0x0f, "TX_PWR_15")
208 SBP_DATA_DEF_VAL(0x10, "TX_PWR_16")
209 SBP_DATA_DEF_VAL(0x11, "TX_PWR_17")
210 SBP_DATA_DEF_VAL(0x12, "TX_PWR_18")
211 SBP_DATA_DEF_VAL(0x13, "TX_PWR_19")
212 SBP_DATA_DEF_VAL(0x14, "TX_PWR_20")
213 SBP_DATA_DEF_VAL(0x15, "TX_PWR_21")
214 SBP_DATA_DEF_VAL(0x16, "TX_PWR_22")
215 SBP_DATA_DEF_VAL(0x17, "TX_PWR_23")
216 SBP_DATA_DEFAULT_VAL(0x11)
217 SBP_DATA_DEF_END
218
219 /****** SBP Document BEGIN ************************************************************************
220<SBP title="SBP_IDC_GPS_BLANK_EN">
221 <DESCRIPTION>
222 <PARAG>
223 This feature is used to notify GPS that there will have LTE Tx, and GPS should ignore signals received in the notified subframes.
224 </PARAG>
225 </DESCRIPTION>
226 <CATEGORY>EAS</CATEGORY>
227 <CONFIG>
228 <VALUE value="0">GPS_BLANK is not enabled. LTE will not notify GPS that if there is any LTE Tx later</VALUE>
229 <VALUE value="1">GPS_BLANK is enabled. LTE will notify GPS that if there is any LTE Tx later</VALUE>
230 </CONFIG>
231 <DEFAULT>
232 0 (GPS_BLANK is disable)
233 </DEFAULT>
234 <OP>
235 N/A
236 </OP>
237 <DEPENDENCY>
238 N/A
239 </DEPENDENCY>
240 <NOTE>
241 N/A
242 </NOTE>
243 <AUTHOR>mtk13382</AUTHOR>
244</SBP>
245******* SBP Document END **************************************************************************/
246 SBP_DATA_DEF(3, SBP_IDC_GPS_BLANK_EN, SBP_ATTR_NONE, "Enable GPS blanking feature")
247 SBP_DATA_DEF_VAL(0x00, "GPS_BLANK is disabled")
248 SBP_DATA_DEF_VAL(0x01, "GPS_BLANK is enabled")
249 #if defined(MT6739)
250 SBP_DATA_DEFAULT_VAL(0x00) //Disable GPS blanking
251 #else
252 SBP_DATA_DEFAULT_VAL(0x00) //Disable GPS blanking
253 #endif
254 SBP_DATA_DEF_END
255
256 /****** SBP Document BEGIN ************************************************************************
257<SBP title="SBP_IDC_802_ANT_ISOLATION - Set antenna isolation between LTE and WiFi">
258 <DESCRIPTION>
259 It is used to set the antenna isolation between LTE and WiFi. This sbp is reserved for future usage. Currently, MD load will not apply this value.
260 </DESCRIPTION>
261 <CATEGORY>EAS</CATEGORY>
262 <CONFIG>
263 <VALUE value="7">Antenna isolation between LTE and WiFi is 7dBm</VALUE>
264 <VALUE value="8">Antenna isolation between LTE and WiFi is 8dBm</VALUE>
265 <VALUE value="9">Antenna isolation between LTE and WiFi is 9dBm</VALUE>
266 <VALUE value="10">Antenna isolation between LTE and WiFi is 10dBm</VALUE>
267 <VALUE value="11">Antenna isolation between LTE and WiFi is 11dBm</VALUE>
268 <VALUE value="12">Antenna isolation between LTE and WiFi is 12dBm</VALUE>
269 <VALUE value="13">Antenna isolation between LTE and WiFi is 13dBm</VALUE>
270 <VALUE value="14">Antenna isolation between LTE and WiFi is 14dBm</VALUE>
271 <VALUE value="15">Antenna isolation between LTE and WiFi is 15dBm</VALUE>
272 <VALUE value="16">Antenna isolation between LTE and WiFi is 16dBm</VALUE>
273 <VALUE value="17">Antenna isolation between LTE and WiFi is 17dBm</VALUE>
274 <VALUE value="18">Antenna isolation between LTE and WiFi is 18dBm</VALUE>
275 <VALUE value="19">Antenna isolation between LTE and WiFi is 19dBm</VALUE>
276 <VALUE value="20">Antenna isolation between LTE and WiFi is 20dBm</VALUE>
277 <VALUE value="21">Antenna isolation between LTE and WiFi is 21dBm</VALUE>
278 <VALUE value="22">Antenna isolation between LTE and WiFi is 22dBm</VALUE>
279 <VALUE value="23">Antenna isolation between LTE and WiFi is 23dBm</VALUE>
280 <VALUE value="24">Antenna isolation between LTE and WiFi is 24dBm</VALUE>
281 </CONFIG>
282 <DEFAULT>
283 1 (Antenna isolation between LTE and WiFi is 12dBm)
284 </DEFAULT>
285 <OP>
286 N/A
287 </OP>
288 <DEPENDENCY>
289 N/A
290 </DEPENDENCY>
291 <NOTE>
292 N/A
293 </NOTE>
294 <AUTHOR>mtk13382</AUTHOR>
295</SBP>
296******* SBP Document END **************************************************************************/
297 SBP_DATA_DEF(4, SBP_IDC_802_ANT_ISOLATION, SBP_ATTR_NONE, "Set antenna isolation between LTE and WiFi")
298 SBP_DATA_DEF_VAL(0x07, "ANT_ISOLATION_7")
299 SBP_DATA_DEF_VAL(0x08, "ANT_ISOLATION_8")
300 SBP_DATA_DEF_VAL(0x09, "ANT_ISOLATION_9")
301 SBP_DATA_DEF_VAL(0x0a, "ANT_ISOLATION_10")
302 SBP_DATA_DEF_VAL(0x0b, "ANT_ISOLATION_11")
303 SBP_DATA_DEF_VAL(0x0c, "ANT_ISOLATION_12")
304 SBP_DATA_DEF_VAL(0x0d, "ANT_ISOLATION_13")
305 SBP_DATA_DEF_VAL(0x0e, "ANT_ISOLATION_14")
306 SBP_DATA_DEF_VAL(0x0f, "ANT_ISOLATION_15")
307 SBP_DATA_DEF_VAL(0x10, "ANT_ISOLATION_16")
308 SBP_DATA_DEF_VAL(0x11, "ANT_ISOLATION_17")
309 SBP_DATA_DEF_VAL(0x12, "ANT_ISOLATION_18")
310 SBP_DATA_DEF_VAL(0x13, "ANT_ISOLATION_19")
311 SBP_DATA_DEF_VAL(0x14, "ANT_ISOLATION_20")
312 SBP_DATA_DEF_VAL(0x15, "ANT_ISOLATION_21")
313 SBP_DATA_DEF_VAL(0x16, "ANT_ISOLATION_22")
314 SBP_DATA_DEF_VAL(0x17, "ANT_ISOLATION_23")
315 SBP_DATA_DEF_VAL(0x18, "ANT_ISOLATION_24")
316 SBP_DATA_DEFAULT_VAL(0x0c)
317 SBP_DATA_DEF_END
318
319/****** SBP Document BEGIN ************************************************************************
320<SBP title="SBP_IDC_DISABLE_CUSTOM - Set whether to apply MTK solution or not">
321 <DESCRIPTION>
322 It is used to set whether IDC should force to apply MTK solution or not.
323 </DESCRIPTION>
324 <CATEGORY>EAS</CATEGORY>
325 <CONFIG>
326 <VALUE value="0"> WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: not force, Intermodulation: not force</VALUE>
327 <VALUE value="1"> WiFi sidelobe: force, BT sidelobe: not force, Harmonic: not force, Intermodulation: not force</VALUE>
328 <VALUE value="2"> WiFi sidelobe: not force, BT sidelobe: force, Harmonic: not force, Intermodulation: not force</VALUE>
329 <VALUE value="3"> WiFi sidelobe: force, BT sidelobe: force, Harmonic: not force, Intermodulation: not force</VALUE>
330 <VALUE value="4"> WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: force, Intermodulation: not force</VALUE>
331 <VALUE value="5"> WiFi sidelobe: force, BT sidelobe: not force, Harmonic: force, Intermodulation: not force</VALUE>
332 <VALUE value="6"> WiFi sidelobe: not force, BT sidelobe: force, Harmonic: force, Intermodulation: not force</VALUE>
333 <VALUE value="7"> WiFi sidelobe: force, BT sidelobe: force, Harmonic: force, Intermodulation: not force</VALUE>
334 <VALUE value="8"> WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: not force, Intermodulation: force</VALUE>
335 <VALUE value="9"> WiFi sidelobe: force, BT sidelobe: not force, Harmonic: not force, Intermodulation: force</VALUE>
336 <VALUE value="10">WiFi sidelobe: not force, BT sidelobe: force, Harmonic: not force, Intermodulation: force</VALUE>
337 <VALUE value="11">WiFi sidelobe: force, BT sidelobe: force, Harmonic: not force, Intermodulation: force</VALUE>
338 <VALUE value="12">WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: force, Intermodulation: force</VALUE>
339 <VALUE value="13">WiFi sidelobe: force, BT sidelobe: not force, Harmonic: force, Intermodulation: force</VALUE>
340 <VALUE value="14">WiFi sidelobe: not force, BT sidelobe: force, Harmonic: force, Intermodulation: force</VALUE>
341 <VALUE value="15">WiFi sidelobe: force, BT sidelobe: force, Harmonic: force, Intermodulation: force</VALUE>
342 </CONFIG>
343 <DEFAULT>N/A</DEFAULT>
344 <OP>
345 N/A
346 </OP>
347 <DEPENDENCY>
348 N/A
349 </DEPENDENCY>
350 <NOTE>
351 N/A
352 </NOTE>
353 <AUTHOR>mtk13382</AUTHOR>
354</SBP>
355******* SBP Document END **************************************************************************/
356 SBP_DATA_DEF(5, SBP_IDC_DISABLE_CUSTOM, SBP_ATTR_NONE, "Set whether to apply MTK solution or not")
357 SBP_DATA_DEF_VAL(0x00, "WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: not force, Intermodulation: not force")
358 SBP_DATA_DEF_VAL(0x01, "WiFi sidelobe: force, BT sidelobe: not force, Harmonic: not force, Intermodulation: not force")
359 SBP_DATA_DEF_VAL(0x02, "WiFi sidelobe: not force, BT sidelobe: force, Harmonic: not force, Intermodulation: not force")
360 SBP_DATA_DEF_VAL(0x03, "WiFi sidelobe: force, BT sidelobe: force, Harmonic: not force, Intermodulation: not force")
361 SBP_DATA_DEF_VAL(0x04, "WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: force, Intermodulation: not force")
362 SBP_DATA_DEF_VAL(0x05, "WiFi sidelobe: force, BT sidelobe: not force, Harmonic: force, Intermodulation: not force")
363 SBP_DATA_DEF_VAL(0x06, "WiFi sidelobe: not force, BT sidelobe: force, Harmonic: force, Intermodulation: not force")
364 SBP_DATA_DEF_VAL(0x07, "WiFi sidelobe: force, BT sidelobe: force, Harmonic: force, Intermodulation: not force")
365 SBP_DATA_DEF_VAL(0x08, "WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: not force, Intermodulation: force")
366 SBP_DATA_DEF_VAL(0x09, "WiFi sidelobe: force, BT sidelobe: not force, Harmonic: not force, Intermodulation: force")
367 SBP_DATA_DEF_VAL(0x0a, "WiFi sidelobe: not force, BT sidelobe: force, Harmonic: not force, Intermodulation: force")
368 SBP_DATA_DEF_VAL(0x0b, "WiFi sidelobe: force, BT sidelobe: force, Harmonic: not force, Intermodulation: force")
369 SBP_DATA_DEF_VAL(0x0c, "WiFi sidelobe: not force, BT sidelobe: not force, Harmonic: force, Intermodulation: force")
370 SBP_DATA_DEF_VAL(0x0d, "WiFi sidelobe: force, BT sidelobe: not force, Harmonic: force, Intermodulation: force")
371 SBP_DATA_DEF_VAL(0x0e, "WiFi sidelobe: not force, BT sidelobe: force, Harmonic: force, Intermodulation: force")
372 SBP_DATA_DEF_VAL(0x0f, "WiFi sidelobe: force, BT sidelobe: force, Harmonic: force, Intermodulation: force")
373 SBP_DATA_DEFAULT_VAL(0x00)
374 SBP_DATA_DEF_END
375
376/****** SBP Document BEGIN ************************************************************************
377<SBP title="SBP_GERAN_TO_EUTRAN_SUPPORT_IN_GERAN_PTM - GERAN to E-UTRA support in GERAN packet transfer mode">
378 <DESCRIPTION>
379 This feature is used to configure GERAN to E-UTRA support in GERAN packet transfer mode in MS Radio Access capability
380 UE report this capability to network in MS Radio Access capability IE and based on UE capability value, Network will take further action.
381 </DESCRIPTION>
382 <CATEGORY>GAS</CATEGORY>
383 <CONFIG>
384 <VALUE value="0x00">None</VALUE>
385 <VALUE value="0x01">
386 E-UTRAN Neighbour Cell measurements and MS autonomous cell reselection to E-UTRAN supported
387 </VALUE>
388 <VALUE value="0x02">
389 CCN towards E-UTRAN, E-UTRAN Neighbour Cell measurement reporting and Network controlled cell reselection
390 to E-UTRAN supported in addition to capabilities indicated by '0x01'
391 </VALUE>
392 <VALUE value="0x03">
393 PS Handover to EUTRAN supported in addition to capabilities indicated by 0x01 and 0x10 (currently not supported)'
394 </VALUE>
395 </CONFIG>
396 <DEFAULT>
397 0x02
398 </DEFAULT>
399 <OP>
400 N/A
401 </OP>
402 <DEPENDENCY>
403 N/A
404 </DEPENDENCY>
405 <NOTE>
406 N/A
407 </NOTE>
408 <AUTHOR>mtk11618</AUTHOR>
409</SBP>
410******* SBP Document END **************************************************************************/
411
412 SBP_DATA_DEF(6, SBP_GERAN_TO_EUTRAN_SUPPORT_IN_GERAN_PTM, SBP_ATTR_NONE, "GERAN to EUTRAN support in GERAN PTM capability")
413 SBP_DATA_DEF_VAL(0x00, "None")
414 SBP_DATA_DEF_VAL(0x01, "EUTRAN neighbor cell measurements and MS autonomous cell reselection to E-UTRAN supported")
415 SBP_DATA_DEF_VAL(0x02, "CCN towards E-UTRAN, E-UTRAN neighbor cell measurement reporting and network controlled cell reselection to EUTRAN supported in addition to capabilities indicated by 0x01")
416 SBP_DATA_DEF_VAL(0x03, "PS Handover to EUTRAN supported in addition to capabilities indicated by 0x01 and 0x10 (currently not supported)")
417 SBP_DATA_DEFAULT_VAL(0x02)
418 SBP_DATA_DEF_END
419
420/****** SBP Document BEGIN ************************************************************************
421<SBP title="SBP_DATA_LTE_EDDA - define if UE supports LTE EDDA and with which periodical timer">
422 <DESCRIPTION>
423 To define whether UE support eDDA and with which periodical timer(to query current power preference).
424 <LI>If turn on EDDA, UE can include powerPrefIndicationConfig-r11 in UECapabilityInformation to NW.</LI>
425 <LI>When UE is configured by RRCConnectionReconfiguration with powerPrefIndicationConfig,
426 UE send UEAssistanceInformation(set powerPrefIndication) to NW according to TS36.331.</LI>
427 </DESCRIPTION>
428 <CATEGORY>EAS</CATEGORY>
429 <CONFIG>
430 <VALUE value="0x00">Not Supported.</VALUE>
431 <VALUE value="0x01">Turn on EDDA with periodical timer 1</VALUE>
432 <VALUE value="0x02">Turn on EDDA with periodical timer 2</VALUE>
433 <VALUE value="0x03">Turn on EDDA with periodical timer 3</VALUE>
434 <VALUE value="0x04">Turn on EDDA with periodical timer 4</VALUE>
435 <VALUE value="0x05">Turn on EDDA with periodical timer 5</VALUE>
436 <VALUE value="0x06">Turn on EDDA with no periodical timer</VALUE>
437 </CONFIG>
438 <DEFAULT>
439 0x00
440 </DEFAULT>
441 <OP>
442 N/A
443 </OP>
444 <DEPENDENCY>
445 default 0x04, when both compile option __LTE_R11__ and __LTE_A_EDDA__ are defined.
446 </DEPENDENCY>
447 <NOTE>
448 This feature is available since R11 UMOLY.
449 </NOTE>
450 <AUTHOR>mtk08088</AUTHOR>
451</SBP>
452******* SBP Document END **************************************************************************/
453 SBP_DATA_DEF(7, SBP_DATA_LTE_EDDA, SBP_ATTR_NONE, "define if UE supports LTE EDDA and with which periodical timer")
454 SBP_DATA_DEF_VAL(0x00, "Not Supported")
455 SBP_DATA_DEF_VAL(0x01, "Turn on EDDA with periodical timer 1")
456 SBP_DATA_DEF_VAL(0x02, "Turn on EDDA with periodical timer 2")
457 SBP_DATA_DEF_VAL(0x03, "Turn on EDDA with periodical timer 3")
458 SBP_DATA_DEF_VAL(0x04, "Turn on EDDA with periodical timer 4")
459 SBP_DATA_DEF_VAL(0x05, "Turn on EDDA with periodical timer 5")
460 SBP_DATA_DEF_VAL(0x06, "Turn on EDDA with no periodical timer")
461 #if defined(__LTE_R11__) && defined(__LTE_A_EDDA__)
462 SBP_DATA_DEFAULT_VAL(0x04) //LTE_EDDA ON
463 #else
464 SBP_DATA_DEFAULT_VAL(0x00) //LTE_EDDA OFF
465 #endif
466 SBP_DATA_DEF_END
467
468 /*8~15*/
469/****** SBP Document BEGIN ************************************************************************
470<SBP title="SBP_WORLD_MODE - World mode id configuration for universal bin">
471 <DESCRIPTION>
472 <PARAG>
473 This SBP define the world mode id for universal bin feature,
474 modem will use this value to decide modem's RAT combination.
475 </PARAG>
476 <PARAG>
477 IMPORTANT NOTICE: Please do not change this setting manually, AP will auto configure this value when modem start up.
478 </PARAG>
479 </DESCRIPTION>
480 <CATEGORY>NWSEL</CATEGORY>
481 <CONFIG>
482 <VALUE value="0x13">Change UE world mode to LTE-TDD/UMTS-TDD/GSM</VALUE>
483 <VALUE value="0x17">Change UE world mode to LTE-TDD/UMTS-TDD/GSM/CDMA</VALUE>
484 <VALUE value="0x19">Change UE world mode to LTE-TDD/UMTS-FDD/GSM</VALUE>
485 <VALUE value="0x1d">Change UE world mode to LTE-TDD/UMTS-FDD/GSM/CDMA</VALUE>
486 <VALUE value="0x23">Change UE world mode to LTE-FDD/UMTS-TDD/GSM</VALUE>
487 <VALUE value="0x27">Change UE world mode to LTE-FDD/UMTS-TDD/GSM/CDMA</VALUE>
488 <VALUE value="0x29">Change UE world mode to LTE-FDD/UMTS-FDD/GSM</VALUE>
489 <VALUE value="0x2d">Change UE world mode to LTE-FDD/UMTS-FDD/GSM/CDMA</VALUE>
490 <VALUE value="0x33">Change UE world mode to LTE-FDD/LTE-TDD/UMTS-TDD/GSM</VALUE>
491 <VALUE value="0x37">Change UE world mode to LTE-FDD/LTE-TDD/UMTS-TDD/GSM/CDMA</VALUE>
492 <VALUE value="0x39">Change UE world mode to LTE-FDD/LTE-TDD/UMTS-FDD/GSM</VALUE>
493 <VALUE value="0x3b">Change UE world mode to LTE-FDD/LTE-TDD/UMTS-FDD/UMTS-TDD/GSM</VALUE>
494 <VALUE value="0x3d">Change UE world mode to LTE-FDD/LTE-TDD/UMTS-FDD/GSM/CDMA</VALUE>
495 <VALUE value="0x3f">Change UE world mode to LTE-FDD/LTE-TDD/UMTS-FDD/UMTS-TDD/GSM/CDMA</VALUE>
496 </CONFIG>
497 <DEFAULT>AP will auto configure this value when modem start up.</DEFAULT>
498 <OP>N/A</OP>
499 <DEPENDENCY>N/A</DEPENDENCY>
500 <NOTE>N/A</NOTE>
501 <AUTHOR>mtk06816</AUTHOR>
502</SBP>
503******* SBP Document END **************************************************************************/
504 SBP_DATA_DEF_BIT(8, SBP_WORLD_MODE, SBP_ATTR_NOT_SUPPORT_DYNAMIC_SBP)
505 SBP_DATA_DEF_BIT_VAL(WORLD_MODE_G, "World Mode: GSM", "Not Supported", "Supported")
506 SBP_DATA_DEF_BIT_VAL(WORLD_MODE_T, "World Mode: UMTS-TDD", "Not Supported", "Supported")
507 SBP_DATA_DEF_BIT_VAL(WORLD_MODE_C, "World Mode: CDMA", "Not Supported", "Supported")
508 SBP_DATA_DEF_BIT_VAL(WORLD_MODE_W, "World Mode: UMTS-FDD", "Not Supported", "Supported")
509 SBP_DATA_DEF_BIT_VAL(WORLD_MODE_LT, "World Mode: LTE-TDD", "Not Supported", "Supported")
510 SBP_DATA_DEF_BIT_VAL(WORLD_MODE_LF, "World Mode: LTE-FDD", "Not Supported", "Supported")
511 SBP_DATA_DEFAULT_VAL(DEFAULT_WORLD_MODE_ID)
512 SBP_DATA_DEF_BIT_END
513
514/****** SBP Document BEGIN ************************************************************************
515<SBP title="SBP_DATA_HIF_MTU_256BYTES_BASE - Packet Filtering Size" obsolete="1">
516 <AUTHOR>mtk10494</AUTHOR>
517</SBP>
518******* SBP Document END **************************************************************************/
519 SBP_DATA_DEF(9,SBP_DATA_HIF_MTU_256BYTES_BASE, SBP_ATTR_NONE, "Obsolete from all generations")
520 SBP_DATA_DEFAULT_VAL(0x00) // 0x00=1500 Bytes. Otherwise, times of 256 Bytes
521 SBP_DATA_DEF_END
522
523/****** SBP Document BEGIN ************************************************************************
524<SBP title="SBP_EUTRAN_DISABLE_TIMER_VALUE - EUTRAN disable timer value">
525 <DESCRIPTION>
526 <PARAG>TS 24.301:</PARAG>
527 <PARAG>As an implementation option, the UE may start a timer for enabling E-UTRA when the UE's attach attempt
528 counter or tracking area updating attempt counter reaches 5 and the UE disables E-UTRA capability for cases described
529 in subclauses 5.5.1.2.6, 5.5.1.3.4.3, 5.5.1.3.6, 5.5.3.2.6, 5.5.3.3.4.3 and 5.5.3.3.6.</PARAG>
530 <PARAG>For other cases, it is up to the UE implementation when to enable the E-UTRA capability.</PARAG>
531 <PARAG>Since this timer value is up to UE implementation, we provide this SBP for customization.</PARAG>
532 </DESCRIPTION>
533 <CONFIG>
534 <VALUE value="1"> 1 minute</VALUE>
535 <VALUE value="2"> 2 minutes</VALUE>
536 <VALUE value="3"> 3 minutes</VALUE>
537 <VALUE value="4"> 4 minutes</VALUE>
538 <VALUE value="N"> N minutes</VALUE>
539 <VALUE value="255"> Use default value 12 min. If T3402 is available, use T3402 value instead. </VALUE>
540 </CONFIG>
541 <CATEGORY>NWSEL</CATEGORY>
542 <DEFAULT>0xFF</DEFAULT>
543 <OP>N/A</OP>
544 <DEPENDENCY>N/A</DEPENDENCY>
545 <NOTE>For Softbank requirement, this value is set to 54 minutes.</NOTE>
546 <AUTHOR>mtk01591</AUTHOR>
547</SBP>
548******* SBP Document END **************************************************************************/
549 SBP_DATA_DEF(10,SBP_EUTRAN_DISABLE_TIMER_VALUE, SBP_ATTR_NONE, "EUTRAN Disable timer value, N means N minutes while 255 means that we use the default value 12 minutes.")
550 SBP_DATA_DEFAULT_VAL(0xFF) // 0xFF means no preference, use default 12min.
551 SBP_DATA_DEF_END
552
553/****** SBP Document BEGIN ************************************************************************
554<SBP title="SBP_SS_DISABLE_AFR_TIMER_PERIOD- SS disable AFR timer value">
555 <DESCRIPTION>
556 <PARAG>
557 If CSFB is triggered by CS-SS(Supplementary Service), disable AFR for a period defined by SBP_SS_DISABLE_AFR_TIMER_PERIOD.
558 </PARAG>
559 </DESCRIPTION>
560 <CATEGORY>NAS</CATEGORY>
561 <CONFIG>
562 <VALUE value="0x00">not to disable AFR</VALUE>
563 <VALUE value="0x03">Disable AFR for 3 seconds</VALUE>
564 <VALUE value="0x04">Disable AFR for 4 seconds</VALUE>
565 <VALUE value="0x05">Disable AFR for 5 seconds</VALUE>
566 <VALUE value="0x06">Disable AFR for 6 seconds</VALUE>
567 <VALUE value="0x07">Disable AFR for 7 seconds</VALUE>
568 <VALUE value="0x08">Disable AFR for 8 seconds</VALUE>
569 <VALUE value="0x09">Disable AFR for 9 seconds</VALUE>
570 <VALUE value="0x0A">Disable AFR for 10 seconds</VALUE>
571 <VALUE value="0x0B">Disable AFR for 11 seconds</VALUE>
572 <VALUE value="0x0C">Disable AFR for 12 seconds</VALUE>
573 <VALUE value="0x0D">Disable AFR for 13 seconds</VALUE>
574 <VALUE value="0x0E">Disable AFR for 14 seconds</VALUE>
575 <VALUE value="0x0F">Disable AFR for 15 seconds</VALUE>
576 </CONFIG>
577 <DEFAULT>0x04</DEFAULT>
578 <OP>N/A</OP>
579 <DEPENDENCY>N/A</DEPENDENCY>
580 <NOTE>
581 This feature is only used to disable AFR for a period, UE may go back to 4G for reasons other than AFR (ex: reselection) before timer expiry.
582 When timer expired, it is not guaranteed UE can go back to 4G in a short period because there might be some other connection or Network behavior which keeps UE staying in 2/3G.
583 </NOTE>
584 <AUTHOR>mtk10708</AUTHOR>
585</SBP>
586******* SBP Document END **************************************************************************/
587
588 SBP_DATA_DEF(11,SBP_SS_DISABLE_AFR_TIMER_PERIOD, SBP_ATTR_NONE, "SS disable AFR timer value")
589 SBP_DATA_DEF_VAL(0x00, "not to disable AFR")
590 SBP_DATA_DEF_VAL(0x03, "3s")
591 SBP_DATA_DEF_VAL(0x04, "4s")
592 SBP_DATA_DEF_VAL(0x05, "5s")
593 SBP_DATA_DEF_VAL(0x06, "6s")
594 SBP_DATA_DEF_VAL(0x07, "7s")
595 SBP_DATA_DEF_VAL(0x08, "8s")
596 SBP_DATA_DEF_VAL(0x09, "9s")
597 SBP_DATA_DEF_VAL(0x0a, "10s")
598 SBP_DATA_DEF_VAL(0x0b, "11s")
599 SBP_DATA_DEF_VAL(0x0c, "12s")
600 SBP_DATA_DEF_VAL(0x0d, "13s")
601 SBP_DATA_DEF_VAL(0x0e, "14s")
602 SBP_DATA_DEF_VAL(0x0f, "15s")
603 SBP_DATA_DEFAULT_VAL(0x04)
604 SBP_DATA_DEF_END
605
606/****** SBP Document BEGIN ************************************************************************
607<SBP title="SBP_SMS_MAX_TL_RETRY- Maximum retry count for SMS at TL layer">
608 <DESCRIPTION>
609 <PARAG> This provides the value for the maximum count of the retries allowed at TL layer for the SMS pdu.
610 If any SMS is failed due to some temporary cause as per MTK design we retry the SMS.
611 This SBP value specifies the number of times the retry needs to be done.
612 Customer can modify it according to them but we recommend to use the default value only.
613 Anyway customer can use any value above 3 sec but we suggest to use from the ones provided below.
614 While modifying this customer should note that increasing retry count will increase the response time for sending the SMS in case of multiple failures.
615 </PARAG>
616 </DESCRIPTION>
617 <CATEGORY>SMS</CATEGORY>
618 <CONFIG>
619 <VALUE value="0">No Retry</VALUE>
620 <VALUE value="1">1 Retry</VALUE>
621 <VALUE value="2">2 Retries</VALUE>
622 <VALUE value="3">3 Retries</VALUE>
623 </CONFIG>
624 <DEFAULT>0x01</DEFAULT>
625 <OP>N/A</OP>
626 <DEPENDENCY>N/A</DEPENDENCY>
627 <NOTE>N/A</NOTE>
628 <AUTHOR>mtk08505</AUTHOR>
629</SBP>
630******* SBP Document END **************************************************************************/
631 SBP_DATA_DEF(12,SBP_SMS_MAX_TL_RETRY, SBP_ATTR_NONE, "SMS max TL retry")
632 SBP_DATA_DEFAULT_VAL(0x01)
633 SBP_DATA_DEF_END
634
635/****** SBP Document BEGIN ************************************************************************
636<SBP title="SBP_SMS_TL_RETRY_TIMER- Timeout value for the TL retry timer (in seconds)">
637 <DESCRIPTION>
638 <PARAG> This provides the value of the TL Retry timer (in seconds).
639 If any SMS is failed due to some temporary cause as per MTK design we retry the SMS.
640 This SBP value specifies the time(in sec) after which the retry needs to be done.
641 Customer can modify it according to them but we recommend to use the default value only.
642 Anyway customer can use any value above 3 sec but we suggest to use from the ones provided below.
643 </PARAG>
644 </DESCRIPTION>
645 <CATEGORY>SMS</CATEGORY>
646 <CONFIG>
647 <VALUE value="4">Timeout Value 4 seconds</VALUE>
648 <VALUE value="5">Timeout Value 5 seconds</VALUE>
649 <VALUE value="6">Timeout Value 6 seconds</VALUE>
650 <VALUE value="7">Timeout Value 7 seconds</VALUE>
651 <VALUE value="...">.... seconds</VALUE>
652 <VALUE value="30">Timeout Value 30 seconds</VALUE>
653 </CONFIG>
654 <DEFAULT>12 sec</DEFAULT>
655 <OP>N/A</OP>
656 <DEPENDENCY>N/A</DEPENDENCY>
657 <NOTE>N/A</NOTE>
658 <AUTHOR>mtk08505</AUTHOR>
659</SBP>
660******* SBP Document END **************************************************************************/
661 SBP_DATA_DEF(13,SBP_SMS_TL_RETRY_TIMER, SBP_ATTR_NONE, "SMS TL retry timer (in second)")
662 SBP_DATA_DEFAULT_VAL(0x0c)
663 SBP_DATA_DEF_END
664
665/****** SBP Document BEGIN ************************************************************************
666<SBP title="SBP_EUTRAN_DISABLE_TD_TIMER_VALUE - EUTRAN disable TD timer value">
667 <DESCRIPTION>
668 <PARAG>TS 23.122:</PARAG>
669 <PARAG>If MS that has disabled its E-UTRA capability re-enables it when PLMN selection is performed,
670 then the MS should, for duration of timer TD, memorize the PLMNs where E-UTRA capability was disabled
671 as PLMNs where voice service was not possible.</PARAG>
672 <PARAG>The value of timer TD is MS implementation specific, but shall not exceed the maximum possible value of
673 background scanning timer T as specified in subclause 4.4.3.3.1.</PARAG>
674 <PARAG>Since this timer value is up to UE implementation, we provide this SBP for customization.</PARAG>
675 </DESCRIPTION>
676 <CONFIG>
677 <VALUE value="1"> 1 minute</VALUE>
678 <VALUE value="2"> 2 minutes</VALUE>
679 <VALUE value="3"> 3 minutes</VALUE>
680 <VALUE value="4"> 4 minutes</VALUE>
681 <VALUE value="N"> N minutes</VALUE>
682 <VALUE value="255"> Use default value of high priority search period T. </VALUE>
683 </CONFIG>
684 <CATEGORY>NWSEL</CATEGORY>
685 <DEFAULT>0xFF</DEFAULT>
686 <OP>N/A</OP>
687 <DEPENDENCY>N/A</DEPENDENCY>
688 <NOTE>For Softbank requirement, this value is set to 54 minutes.</NOTE>
689 <AUTHOR>mtk01591</AUTHOR>
690</SBP>
691******* SBP Document END **************************************************************************/
692 SBP_DATA_DEF(14,SBP_EUTRAN_DISABLE_TD_TIMER_VALUE, SBP_ATTR_NONE, "EUTRAN Disable TD timer value, N means N minutes while 255 means that we use the default value, high priority search period T.")
693 SBP_DATA_DEFAULT_VAL(0xFF) // 0xFF means no preference. Use default value, high priority search period T
694 SBP_DATA_DEF_END
695
696/****** SBP Document BEGIN ************************************************************************
697<SBP title="SBP_ECBM_MODE_TIMER_SEC - Emergency callback mode timer (in second)" obsolete="1">
698 <AUTHOR>mtk09297</AUTHOR>
699</SBP>
700******* SBP Document END **************************************************************************/
701 SBP_DATA_DEF(15,SBP_ECBM_MODE_TIMER_SEC, SBP_ATTR_NONE, "Obsolete after UMOLY.")
702 SBP_DATA_DEFAULT_VAL(0x00)
703 SBP_DATA_DEF_END
704
705 /*16~23*/
706 /****** SBP Document BEGIN ************************************************************************
707<SBP title="SBP_ECBM_MODE_TIMER_MIN - Emergency callback mode timer (in minute)" obsolete="1">
708 <AUTHOR>mtk09297</AUTHOR>
709</SBP>
710******* SBP Document END **************************************************************************/
711 SBP_DATA_DEF(16,SBP_ECBM_MODE_TIMER_MIN, SBP_ATTR_NONE, "Obsolete after UMOLY.")
712 SBP_DATA_DEFAULT_VAL(0x00)
713 SBP_DATA_DEF_END
714
715 /****** SBP Document BEGIN ************************************************************************
716<SBP title="SBP_2G_PWR_SCAN_PRD_IN_VM - 2G power scan period in virtual mode">
717 <DESCRIPTION>
718 This control the GSM power scan period in virtual mode
719 </DESCRIPTION>
720 <CATEGORY>GAS</CATEGORY>
721 <CONFIG>
722 <VALUE value="0x00">Use MTK Default value (51 or 102 frames)</VALUE>
723 <VALUE value="0x01">Period: 1 GSM TDMA frame</VALUE>
724 <VALUE value="0x02">Period: 2 GSM TDMA frame</VALUE>
725 </CONFIG>
726 <DEFAULT>0</DEFAULT>
727 <OP>
728 N/A
729 </OP>
730 <DEPENDENCY>
731 N/A
732 </DEPENDENCY>
733 <NOTE>
734 N/A
735 </NOTE>
736 <AUTHOR>mtk11225</AUTHOR>
737</SBP>
738******* SBP Document END **************************************************************************/
739 SBP_DATA_DEF(17,SBP_2G_PWR_SCAN_PRD_IN_VM, SBP_ATTR_NONE, "2G power scan period in virtual mode")
740 SBP_DATA_DEF_VAL(0x00, "Use MTK Default value (51 or 102 frames)")
741 SBP_DATA_DEF_VAL(0x01, "Period: 1 GSM TDMA frame")
742 SBP_DATA_DEF_VAL(0x02, "Period: 2 GSM TDMA frames, and so on.")
743 SBP_DATA_DEFAULT_VAL(0x00)
744 SBP_DATA_DEF_END
745
746/****** SBP Document BEGIN ************************************************************************
747<SBP title="SBP_2G_SCAN_NUM_PER_PRD_IN_VM - 2G power scan, number of frames to be scanned in virtual mode per period">
748 <DESCRIPTION>
749 This control the number of frames to be scanned in virtual mode per period in GSM
750 </DESCRIPTION>
751 <CATEGORY>GAS</CATEGORY>
752 <CONFIG>
753 <VALUE value="0x00">Use MTK Default value (4 or 8 frames)</VALUE>
754 <VALUE value="0x01">Period: 1 GSM TDMA frame</VALUE>
755 <VALUE value="0x02">Period: 2 GSM TDMA frame</VALUE>
756 </CONFIG>
757 <DEFAULT>0</DEFAULT>
758 <OP>
759 N/A
760 </OP>
761 <DEPENDENCY>
762 N/A
763 </DEPENDENCY>
764 <NOTE>
765 N/A
766 </NOTE>
767 <AUTHOR>mtk11225</AUTHOR>
768</SBP>
769******* SBP Document END **************************************************************************/
770 SBP_DATA_DEF(18,SBP_2G_SCAN_NUM_PER_PRD_IN_VM, SBP_ATTR_NONE, "2G power scan, number of frames to be scanned in virtual mode per period")
771 SBP_DATA_DEF_VAL(0x00, "Use MTK Default value (4 or 8 frames)")
772 SBP_DATA_DEF_VAL(0x01, "Scan 1 GSM TDMA frame")
773 SBP_DATA_DEF_VAL(0x02, "Scan 2 GSM TDMA frames, and so on.")
774 SBP_DATA_DEFAULT_VAL(0x00)
775 SBP_DATA_DEF_END
776
777/****** SBP Document BEGIN ************************************************************************
778<SBP title="SBP_2G_FB_DECODE_INTV_IN_VM - 2G FB/SB decode interval, number of frames between two FB/SB decode attempt">
779 <DESCRIPTION>
780 This control GSM FB/SB decode interval, number of frames between two FB/SB decode attempt
781 </DESCRIPTION>
782 <CATEGORY>GAS</CATEGORY>
783 <CONFIG>
784 <VALUE value="0x00">Use MTK Default value (16 frames)</VALUE>
785 <VALUE value="0x01">Period: 1 GSM TDMA frame</VALUE>
786 <VALUE value="0x02">Period: 2 GSM TDMA frame</VALUE>
787 </CONFIG>
788 <DEFAULT>0</DEFAULT>
789 <OP>
790 N/A
791 </OP>
792 <DEPENDENCY>
793 N/A
794 </DEPENDENCY>
795 <NOTE>
796 N/A
797 </NOTE>
798 <AUTHOR>mtk11225</AUTHOR>
799</SBP>
800******* SBP Document END **************************************************************************/
801 SBP_DATA_DEF(19,SBP_2G_FB_DECODE_INTV_IN_VM, SBP_ATTR_NONE, "2G FB/SB decode interval, number of frames between two FB/SB decode attempt")
802 SBP_DATA_DEF_VAL(0x00, "Use MTK Default value (16 frames)")
803 SBP_DATA_DEF_VAL(0x01, "1 GSM TDMA frame")
804 SBP_DATA_DEF_VAL(0x02, "2 GSM TDMA frames, and so on.")
805 SBP_DATA_DEFAULT_VAL(0x00)
806 SBP_DATA_DEF_END
807
808/****** SBP Document BEGIN ************************************************************************
809<SBP title="SBP_MDVSIM_KI_IDX - MDVSIM Private Keys Configuration Parameters - Index of Ki">
810 <DESCRIPTION>
811 <PARAG>Provide the index of Secret Key (Ki) needed for (U)SIM authentication in modem virtual SIM environment.</PARAG>
812 <LI>Configured together with Operator Variant Algorithm Configuration Field (OPc) by user through
813 proprietary AT command AT+EVSIMKEY=\<op\>,\<profileid\>[,\<keylen\>,"\<Ki_OPc\>"]</LI>
814 </DESCRIPTION>
815 <CATEGORY>SIM_SAT</CATEGORY>
816 <CONFIG>
817 <VALUE value="n, n=0~16">Index of Ki is [n] (Ki has length of 16 bytes).</VALUE>
818 </CONFIG>
819 <DEFAULT>0</DEFAULT>
820 <OP>N/A</OP>
821 <DEPENDENCY>N/A</DEPENDENCY>
822 <NOTE>MDVSIM feature is disabled by default under compilation switch __MDVSIM__.</NOTE>
823 <AUTHOR>mtk02674</AUTHOR>
824</SBP>
825******* SBP Document END **************************************************************************/
826 SBP_DATA_DEF(20,SBP_MDVSIM_KI_IDX, SBP_ATTR_NONE, "MDVSIM Ki start index value")
827 SBP_DATA_DEF_VAL(0x00, "Default Ki start index:0")
828 SBP_DATA_DEFAULT_VAL(0x00) // MDVSIM Ki(16 Bytes) Byte[0~15]
829 SBP_DATA_DEF_END
830
831/****** SBP Document BEGIN ************************************************************************
832<SBP title="SBP_MDVSIM_OPC_IDX - MDVSIM Private Keys Configuration Parameters - Index of OPc">
833 <DESCRIPTION>
834 <PARAG>Provide the index of Operator Variant Algorithm Configuration Field (OPc) needed for (U)SIM authentication in modem virtual SIM environment.</PARAG>
835 <LI>Configured together with Secret Key (Ki) by user through proprietary AT command AT+EVSIMKEY=\<op\>,\<profileid\>[,\<keylen\>,"\<Ki_OPc\>"]</LI>
836 </DESCRIPTION>
837 <CATEGORY>SIM_SAT</CATEGORY>
838 <CONFIG>
839 <VALUE value="n, n=0~16">Index of OPc is [n] (OPc has length of 16 bytes).</VALUE>
840 </CONFIG>
841 <DEFAULT>16</DEFAULT>
842 <OP>N/A</OP>
843 <DEPENDENCY>N/A</DEPENDENCY>
844 <NOTE>MDVSIM feature is disabled by default under compilation switch __MDVSIM__.</NOTE>
845 <AUTHOR>mtk02674</AUTHOR>
846</SBP>
847******* SBP Document END **************************************************************************/
848 SBP_DATA_DEF(21,SBP_MDVSIM_OPC_IDX, SBP_ATTR_NONE, "MDVSIM OPc start index value")
849 SBP_DATA_DEF_VAL(0x10, "Default OPc start index:16")
850 SBP_DATA_DEFAULT_VAL(0x10) // MDVSIM OPc (16 Bytes) Byte[16~31]
851 SBP_DATA_DEF_END
852
853/****** SBP Document BEGIN ************************************************************************
854<SBP title="SBP_SDM_RETRY_TIMER - SDM SMS retry timer (in second) for both 3GPP/3GPP2 SMS" obsolete="1">
855 <AUTHOR>mtk12265</AUTHOR>
856</SBP>
857******* SBP Document END **************************************************************************/
858 SBP_DATA_DEF(22,SBP_SDM_RETRY_TIMER, SBP_ATTR_NONE, "Obsolete. Please refer to NVRAM_EF_SDM_ADS_PROFILE_LID for same funtionality")
859 SBP_DATA_DEFAULT_VAL(0x00)
860 SBP_DATA_DEF_END
861
862/****** SBP Document BEGIN ************************************************************************
863<SBP title="SBP_HVOLTE_MODE - Default hVoLTE Mode">
864 <DESCRIPTION>
865 <PARAG>
866 This SBP define the default hVoLTE mode (SRLTE mode or LTE-Only mode)
867 </PARAG>
868 </DESCRIPTION>
869 <CATEGORY>NWSEL</CATEGORY>
870 <CONFIG>
871 <VALUE value="0">hVoLTE SRLTE mode</VALUE>
872 <VALUE value="1">hVoLTE LTE only mode</VALUE>
873 </CONFIG>
874 <DEFAULT>1</DEFAULT>
875 <OP>Verizon</OP>
876 <DEPENDENCY>This SBP only available when SBP_STATUS_HVOLTE is enabled</DEPENDENCY>
877 <NOTE>N/A</NOTE>
878 <AUTHOR>mtk06816</AUTHOR>
879</SBP>
880******* SBP Document END **************************************************************************/
881 SBP_DATA_DEF(23,SBP_HVOLTE_MODE, SBP_ATTR_NONE, "Default hVoLTE Mode")
882 SBP_DATA_DEF_VAL(0x00, "hVoLTE SRLTE mode")
883 SBP_DATA_DEF_VAL(0x01, "hVoLTE LTE only mode")
884 SBP_DATA_DEFAULT_VAL(0x01) // 0: SRLTE_MODE, 1: LTE-only mode
885 SBP_DATA_DEF_END
886
887 /*24~31*/
888 /****** SBP Document BEGIN ************************************************************************
889 <SBP title="SBP_LTE_CONN_RACH_FAIL- Decide RACH failure handling">
890 <DESCRIPTION>
891 <PARAG> If UE establishs connection but the connection cannot be established due to RACH failure, the behavior will
892 be different depend on different setting
893 </PARAG>
894 <LI> value = 0x00
895 <PARAG> If UE establishs connection for ATTACH/TAU/SR but the connection cannot be established due to RACH failure,
896 UE will retry to establish connection immediately.
897 </PARAG>
898 </LI>
899 <LI> value = 0x01, LTE_CONN_RACH_FAIL_PROFILE_1
900 <PARAG> If UE establishs connection for ATTACH/TAU/SR but the connection cannot be established due to RACH failure,
901 the UE's behavior will follow TS 24.301 5.5.1.2.6(b) /5.5.3.2.6(b) /5.6.1.6(b) according to its procedure. It is
902 the same behavior as SBP_EMM_CONN_FAIL_ABNORMAL_B.
903 </PARAG>
904 </LI>
905 <LI> value = 0x02, LTE_CONN_RACH_FAIL_PROFILE_2
906 <PARAG> This is for Korea KT operator.</PARAG>
907 <PARAG> If UE establishs connection for ATTACH but the connection cannot be established due to RACH failure,
908 the UE's behavior will follow TS 24.301 5.5.1.2.6 (b) to increase attach attempt counter. If 5 consecutive times
909 RACH failure for ATTACH, UE will disable EUTRAN and the length of disable EUTRAN timer is the same as that of T3402.
910 </PARAG>
911 <PARAG> If UE establishs connection for TAU but the connection cannot be established due to RACH failure,
912 the UE's behavior will follow TS 24.301 5.5.3.2.6 (b) to increase tau attempt counter. If 5 consecutive times RACH
913 failure for TAU, UE will disable EUTRAN and the length of disable EUTRAN timer is the same as that of T3402.
914 </PARAG>
915 </LI>
916 <LI> value = 0x03, LTE_CONN_RACH_FAIL_PROFILE_3
917 <PARAG> This is for Korea SKT operator.</PARAG>
918 <PARAG> If UE establishs connection for ATTACH but the connection cannot be established due to RACH failure,
919 the UE's behavior will follow TS 24.301 5.5.1.2.6 (b) to increase attach attempt counter. If 5 consecutive times
920 RACH failure for ATTACH, UE will disable EUTRAN and the length of disable EUTRAN timer is 1/3 length of T3402.
921 </PARAG>
922 <PARAG> If UE establishs connection for TAU but the connection cannot be established due to RACH failure,
923 the UE's behavior will follow TS 24.301 5.5.3.2.6 (b) to increase tau attempt counter. If 5 consecutive times
924 RACH failure for TAU, UE will disable EUTRAN and the length of disable EUTRAN timer is 1/3 length of T3402.
925 </PARAG>
926
927 </LI>
928 <LI> value = 0x04, LTE_CONN_RACH_FAIL_PROFILE_4
929 <PARAG> This is for Korea LGU+ operator.</PARAG>
930 <PARAG> If UE which is LTE single mode establishs connection for TAU but the connection cannot be established
931 due to RACH failure, the UE's behavior will follow TS 24.301 5.5.3.2.6 (b) to increase tau attempt counter.
932 If 5 consecutive times RACH failure for TAU, UE will start T3402 but its length is 2 minute.
933 </PARAG>
934 </LI>
935 </DESCRIPTION>
936 <CATEGORY>NAS</CATEGORY>
937 <CONFIG>
938 <VALUE value="0">Not Support</VALUE>
939 <VALUE value="1">LTE_CONN_RACH_FAIL_PROFILE_1, see doc description</VALUE>
940 <VALUE value="2">LTE_CONN_RACH_FAIL_PROFILE_2, see doc description</VALUE>
941 <VALUE value="3">LTE_CONN_RACH_FAIL_PROFILE_3, see doc description</VALUE>
942 <VALUE value="4">LTE_CONN_RACH_FAIL_PROFILE_4, see doc description</VALUE>
943 </CONFIG>
944 <DEFAULT>0</DEFAULT>
945 <OP>KT/SKT/LGU+</OP>
946 <DEPENDENCY>User could use compile option __SBP_EMM_CONN_FAIL_ABNORMAL_B__ to turn on PROFILE_1. </DEPENDENCY>
947 <NOTE>This feature is available on all MTK modem.</NOTE>
948 <AUTHOR>mtk05301</AUTHOR>
949</SBP>
950******* SBP Document END **************************************************************************/
951 SBP_DATA_DEF(24,SBP_LTE_CONN_RACH_FAIL, SBP_ATTR_NONE, "Decide RACH failure handling")
952 SBP_DATA_DEF_VAL(0x00, "Not Supported")
953 SBP_DATA_DEF_VAL(0x01, "LTE_CONN_RACH_FAIL_PROFILE_1")
954 SBP_DATA_DEF_VAL(0x02, "LTE_CONN_RACH_FAIL_PROFILE_2")
955 SBP_DATA_DEF_VAL(0x03, "LTE_CONN_RACH_FAIL_PROFILE_3")
956 SBP_DATA_DEF_VAL(0x04, "LTE_CONN_RACH_FAIL_PROFILE_4")
957 #if defined(__EMM_CONN_FAIL_ABNORMAL_B__)
958 SBP_DATA_DEFAULT_VAL(0x01)
959 #else
960 SBP_DATA_DEFAULT_VAL(0x00)
961 #endif
962 SBP_DATA_DEF_END
963
964/****** SBP Document BEGIN ************************************************************************
965<SBP title="SBP_VDM_ADS_SEL_ALGO_MASK_WFCP_VDP_PRIORITY_GROUP1 - VDM ads selection algorithm mask of WFCP and VDP priority group1 (WFCP=Cellular Only and WIFI Only)" obsolete="1">
966 <AUTHOR>mtk09297</AUTHOR>
967</SBP>
968******* SBP Document END **************************************************************************/
969 SBP_DATA_DEF(25,SBP_VDM_ADS_SEL_ALGO_MASK_WFCP_VDP_PRIORITY_GROUP1, SBP_ATTR_NONE, "Obsolete after UMOLY.")
970 SBP_DATA_DEFAULT_VAL(0xFF)
971 SBP_DATA_DEF_END
972
973/****** SBP Document BEGIN ************************************************************************
974<SBP title="SBP_VDM_ADS_SEL_ALGO_MASK_WFCP_VDP_PRIORITY_GROUP2 - VDM ads selection algorithm mask of WFCP and VDP priority group1 (WFCP=Cellular Preferred and WIFI Preferred)" obsolete="1">
975 <AUTHOR>mtk09297</AUTHOR>
976</SBP>
977******* SBP Document END **************************************************************************/
978 SBP_DATA_DEF(26,SBP_VDM_ADS_SEL_ALGO_MASK_WFCP_VDP_PRIORITY_GROUP2, SBP_ATTR_NONE, "Obsolete after UMOLY.")
979 SBP_DATA_DEFAULT_VAL(0xFE)
980 SBP_DATA_DEF_END
981
982/****** SBP Document BEGIN ************************************************************************
983<SBP title="SBP_BAR_CELL_TIME - Bar timer for the RA failure weak signal cell (in second)">
984 <DESCRIPTION>
985 When UE RA error occurred on a weak signal cell,UE may bar this cell for SBP_BAR_CELL_TIME seconds.
986 <LI>when cell SINR \<= SBP_BAR_CELL_SINR_THRESHOLD, and</LI>
987 <LI>cell RSRP \<= SBP_BAR_CELL_RSRP_THRESHOLD.</LI>
988 </DESCRIPTION>
989 <CATEGORY>EAS</CATEGORY>
990 <CONFIG>
991 <VALUE value="1">1 second</VALUE>
992 <VALUE value="2">2 seconds</VALUE>
993 <VALUE value="3">3 seconds</VALUE>
994 <VALUE value="...">... seconds</VALUE>
995 <VALUE value="30">30 seconds</VALUE>
996 </CONFIG>
997 <DEFAULT>5 (seconds)</DEFAULT>
998 <OP>
999 N/A
1000 </OP>
1001 <DEPENDENCY>
1002 N/A
1003 </DEPENDENCY>
1004 <NOTE>
1005 This feature is available in LR11.W1552.MD.TC10.SP, LR11.W1630.MD.MP, and since LR12.
1006 </NOTE>
1007 <AUTHOR>mtk08088</AUTHOR>
1008</SBP>
1009******* SBP Document END **************************************************************************/
1010 SBP_DATA_DEF(27,SBP_BAR_CELL_TIME, SBP_ATTR_NONE, "Bar timer for the RA failure weak signal cell (in second)")
1011 SBP_DATA_DEF_VAL(0x01, "1 seconds")
1012 SBP_DATA_DEF_VAL(0x02, "2 seconds")
1013 SBP_DATA_DEF_VAL(0x03, "3 seconds")
1014 SBP_DATA_DEF_VAL(0x04, "4 seconds")
1015 SBP_DATA_DEF_VAL(0x05, "5 seconds")
1016 SBP_DATA_DEF_VAL(0x06, "6 seconds")
1017 SBP_DATA_DEF_VAL(0x07, "7 seconds")
1018 SBP_DATA_DEF_VAL(0x08, "8 seconds")
1019 SBP_DATA_DEF_VAL(0x09, "9 seconds")
1020 SBP_DATA_DEF_VAL(0x0a, "10 seconds")
1021 SBP_DATA_DEF_VAL(0x0b, "11 seconds")
1022 SBP_DATA_DEF_VAL(0x0c, "12 seconds")
1023 SBP_DATA_DEF_VAL(0x0d, "13 seconds")
1024 SBP_DATA_DEF_VAL(0x0e, "14 seconds")
1025 SBP_DATA_DEF_VAL(0x0f, "15 seconds")
1026 SBP_DATA_DEF_VAL(0x10, "16 seconds")
1027 SBP_DATA_DEF_VAL(0x11, "17 seconds")
1028 SBP_DATA_DEF_VAL(0x12, "18 seconds")
1029 SBP_DATA_DEF_VAL(0x13, "19 seconds")
1030 SBP_DATA_DEF_VAL(0x14, "20 seconds")
1031 SBP_DATA_DEF_VAL(0x15, "21 seconds")
1032 SBP_DATA_DEF_VAL(0x16, "22 seconds")
1033 SBP_DATA_DEF_VAL(0x17, "23 seconds")
1034 SBP_DATA_DEF_VAL(0x18, "24 seconds")
1035 SBP_DATA_DEF_VAL(0x19, "25 seconds")
1036 SBP_DATA_DEF_VAL(0x1a, "26 seconds")
1037 SBP_DATA_DEF_VAL(0x1b, "27 seconds")
1038 SBP_DATA_DEF_VAL(0x1c, "28 seconds")
1039 SBP_DATA_DEF_VAL(0x1d, "29 seconds")
1040 SBP_DATA_DEF_VAL(0x1e, "30 seconds")
1041 SBP_DATA_DEFAULT_VAL(0x05)
1042 SBP_DATA_DEF_END
1043
1044/****** SBP Document BEGIN ************************************************************************
1045<SBP title="SBP_BAR_CELL_SINR_THRESHOLD - SINR threshold (in dB) to bar a RA failure cell">
1046 <DESCRIPTION>
1047 When UE RA error occurred on a weak signal cell,UE may bar this cell for SBP_BAR_CELL_TIME seconds.
1048 <LI>when cell SINR \<= SBP_BAR_CELL_SINR_THRESHOLD, and</LI>
1049 <LI>cell RSRP \<= SBP_BAR_CELL_RSRP_THRESHOLD.</LI>
1050 </DESCRIPTION>
1051 <CATEGORY>EAS</CATEGORY>
1052 <CONFIG>
1053 <VALUE value="0x00">0 dB</VALUE>
1054 <VALUE value="0x05">-5 dB</VALUE>
1055 <VALUE value="0x0a">-10 dB</VALUE>
1056 <VALUE value="0x0f">-15 dB</VALUE>
1057 <VALUE value="0x14">-20 dB</VALUE>
1058 <VALUE value="0x19">-25 dB</VALUE>
1059 <VALUE value="0x1e">-30 dB</VALUE>
1060 <VALUE value="0x23">-35 dB</VALUE>
1061 <VALUE value="0x28">-40 dB</VALUE>
1062 </CONFIG>
1063 <DEFAULT>0x0a (-10 dB)</DEFAULT>
1064 <OP>
1065 N/A
1066 </OP>
1067 <DEPENDENCY>
1068 N/A
1069 </DEPENDENCY>
1070 <NOTE>
1071 This feature is available in LR11.W1552.MD.TC10.SP, LR11.W1630.MD.MP, and since LR12.
1072 </NOTE>
1073 <AUTHOR>mtk08088</AUTHOR>
1074</SBP>
1075******* SBP Document END **************************************************************************/
1076 SBP_DATA_DEF(28,SBP_BAR_CELL_SINR_THRESHOLD, SBP_ATTR_NONE, "SINR threshold (in dB) to bar a RA failure cell")
1077 SBP_DATA_DEF_VAL(0x00, "0 dB")
1078 SBP_DATA_DEF_VAL(0x05, "-5 dB")
1079 SBP_DATA_DEF_VAL(0x0a, "-10 dB")
1080 SBP_DATA_DEF_VAL(0x0f, "-15 dB")
1081 SBP_DATA_DEF_VAL(0x14, "-20 dB")
1082 SBP_DATA_DEF_VAL(0x19, "-25 dB")
1083 SBP_DATA_DEF_VAL(0x1e, "-30 dB")
1084 SBP_DATA_DEF_VAL(0x23, "-35 dB")
1085 SBP_DATA_DEF_VAL(0x28, "-40 dB")
1086 SBP_DATA_DEFAULT_VAL(0x0a)
1087 SBP_DATA_DEF_END
1088
1089/****** SBP Document BEGIN ************************************************************************
1090<SBP title="SBP_BAR_CELL_RSRP_THRESHOLD - RSRP threshold (in dBm) to bar a RA failure cell">
1091 <DESCRIPTION>
1092 When UE RA error occurred on a weak signal cell,UE may bar this cell for SBP_BAR_CELL_TIME seconds.
1093 <LI>when cell SINR \<= SBP_BAR_CELL_SINR_THRESHOLD, and</LI>
1094 <LI>cell RSRP \<= SBP_BAR_CELL_RSRP_THRESHOLD.</LI>
1095 </DESCRIPTION>
1096 <CATEGORY>EAS</CATEGORY>
1097 <CONFIG>
1098 <VALUE value="0x32">-50 dBm</VALUE>
1099 <VALUE value="0x37">-55 dBm</VALUE>
1100 <VALUE value="0x3C">-60 dBm</VALUE>
1101 <VALUE value="0x41">-65 dBm</VALUE>
1102 <VALUE value="0x46">-70 dBm</VALUE>
1103 <VALUE value="0x4B">-75 dBm</VALUE>
1104 <VALUE value="0x50">-80 dBm</VALUE>
1105 <VALUE value="0x55">-85 dBm</VALUE>
1106 <VALUE value="0x5A">-90 dBm</VALUE>
1107 </CONFIG>
1108 <DEFAULT>0x46 (-70 dBm)</DEFAULT>
1109 <OP>
1110 N/A
1111 </OP>
1112 <DEPENDENCY>
1113 N/A
1114 </DEPENDENCY>
1115 <NOTE>
1116 This feature is available in LR11.W1552.MD.TC10.SP, LR11.W1630.MD.MP, and since LR12.
1117 </NOTE>
1118 <AUTHOR>mtk08088</AUTHOR>
1119</SBP>
1120******* SBP Document END **************************************************************************/
1121 SBP_DATA_DEF(29,SBP_BAR_CELL_RSRP_THRESHOLD, SBP_ATTR_NONE, "RSRP threshold (in dBm) to bar a RA failure cell")
1122 SBP_DATA_DEF_VAL(0x32, "50 dBm")
1123 SBP_DATA_DEF_VAL(0x37, "-55 dBm")
1124 SBP_DATA_DEF_VAL(0x3c, "-60 dBm")
1125 SBP_DATA_DEF_VAL(0x41, "-65 dBm")
1126 SBP_DATA_DEF_VAL(0x46, "-70 dBm")
1127 SBP_DATA_DEF_VAL(0x4B, "-75 dBm")
1128 SBP_DATA_DEF_VAL(0x50, "-80 dBm")
1129 SBP_DATA_DEF_VAL(0x55, "-85 dBm")
1130 SBP_DATA_DEF_VAL(0x5A, "-90 dBm")
1131 SBP_DATA_DEFAULT_VAL(0x46)
1132 SBP_DATA_DEF_END
1133
1134 /****** SBP Document BEGIN ************************************************************************
1135<SBP title="SBP_IRAT_IN_VIRTUAL_MODE- IRAT Measure/Reselect in Virtual Mode">
1136 <DESCRIPTION>
1137 Originally in DSDS design, SIM in virtual mode does not perform IRAT measurement and thus no IRAT reselection happens in virtual mode.
1138 After introducing this feature, SIM in virtual mode can perform IRAT measurement and thus IRAT reselection can happen in virtual mode.
1139 </DESCRIPTION>
1140 <CATEGORY>EAS</CATEGORY>
1141 <CONFIG>
1142 <VALUE value="0">No IRAT measurement/reselection in virtual mode.</VALUE>
1143 <VALUE value="1">2/3G can measure/reselect to 2/3/4G in virtual mode, but 4G can not measure/reselect to 2/3G.</VALUE>
1144 <VALUE value="2">2/3/4G can measure/reselect to 2/3/4G in virtual mode.</VALUE>
1145 </CONFIG>
1146 <DEFAULT>1</DEFAULT>
1147 <OP>N/A</OP>
1148 <DEPENDENCY>default value is "1" if with compile option __SBP_IRAT_IN_VIRTUAL_MODE_1__, is "2" when with __SBP_IRAT_IN_VIRTUAL_MODE_2__.</DEPENDENCY>
1149 <NOTE>N/A</NOTE>
1150 <AUTHOR>mtk04119</AUTHOR>
1151</SBP>
1152******* SBP Document END **************************************************************************/
1153 SBP_DATA_DEF(30,SBP_IRAT_IN_VIRTUAL_MODE, SBP_ATTR_NONE, "IRAT Measure/Reselect in Virtual Mode")
1154 SBP_DATA_DEF_VAL(0x00, "All off")
1155 SBP_DATA_DEF_VAL(0x01, "Partial on: 2G measure/reselect 3/4G and 3G measure/reselect 2/4G")
1156 SBP_DATA_DEF_VAL(0x02, "All on: 2G measure/reselect 3/4G, 3G measure/reselect 2/4G, 4G measure/reselect 2/3G")
1157 #if defined(__SBP_IRAT_IN_VIRTUAL_MODE_1__)
1158 SBP_DATA_DEFAULT_VAL(0x01) /* 2G mreasure/reselect 3/4G, 3G measure/reselect 3/4G */
1159 #elif defined(__SBP_IRAT_IN_VIRTUAL_MODE_2__)
1160 SBP_DATA_DEFAULT_VAL(0x02) /* all on */
1161 #else
1162 SBP_DATA_DEFAULT_VAL(0x01) /* Default : 2G measure/reselect 3/4G, 3G measure/reselect 2/4G */
1163 #endif
1164 SBP_DATA_DEF_END
1165
1166/****** SBP Document BEGIN ************************************************************************
1167<SBP title="SBP_DATA_SUPPORT_NAM_COUNT- modem of C2K rat supported NAM number">
1168 <DESCRIPTION>
1169 C2K supported NAM number.
1170 </DESCRIPTION>
1171 <CATEGORY>C2K</CATEGORY>
1172 <CONFIG>
1173 <VALUE value="1">1 NAM supported.</VALUE>
1174 <VALUE value="2">2 NAMs supported.</VALUE>
1175 </CONFIG>
1176 <DEFAULT>1</DEFAULT>
1177 <OP>N/A</OP>
1178 <DEPENDENCY>N/A</DEPENDENCY>
1179 <NOTE>Currently only 1 NAM is supported.</NOTE>
1180 <AUTHOR>mtk08601</AUTHOR>
1181</SBP>
1182******* SBP Document END **************************************************************************/
1183 SBP_DATA_DEF(31,SBP_DATA_SUPPORT_NAM_COUNT, SBP_ATTR_NONE, "modem of C2K rat supported NAM number")
1184 SBP_DATA_DEF_VAL(0x01, "1")
1185 SBP_DATA_DEFAULT_VAL(0x01) /* 0 - all off */
1186 SBP_DATA_DEF_END
1187
1188 /*32~39*/
1189/****** SBP Document BEGIN ************************************************************************
1190<SBP title="SBP_DATA_RUIM - MDVSIM Private Keys Configuration Parameters - Index of Ki">
1191 <DESCRIPTION>
1192 <PARAG>provide the way to config whehthe use real sim card or emulator card data in NVRAM to register network.</PARAG>
1193 </DESCRIPTION>
1194 <CATEGORY>C2K</CATEGORY>
1195 <CONFIG>
1196 <VALUE value="0">use emulator card data in NVRAM to register network in lab.</VALUE>
1197 <VALUE value="1">use read card data in SIM to register network.</VALUE>
1198 </CONFIG>
1199 <DEFAULT>1</DEFAULT>
1200 <OP>N/A</OP>
1201 <DEPENDENCY>if want to use real sim card configuration, must keep the byte 1 of NVRAM_EF_C2K_UICC_LID is 0</DEPENDENCY>
1202 <NOTE>if the value is 0,this configuration only can be used in CDMA modem only test in the lab.LR12 6M project has already support this feature</NOTE>
1203 <AUTHOR>mtk08652</AUTHOR>
1204</SBP>
1205******* SBP Document END **************************************************************************/
1206 SBP_DATA_DEF(32,SBP_DATA_RUIM, SBP_ATTR_NOT_SUPPORT_DYNAMIC_SBP, "SBP_DATA_RUIM")
1207 SBP_DATA_DEF_VAL(0x00, "0")
1208 SBP_DATA_DEF_VAL(0x01, "1")
1209 SBP_DATA_DEFAULT_VAL(0x01) /* 0 - all off */
1210 SBP_DATA_DEF_END
1211
1212/****** SBP Document BEGIN ************************************************************************
1213<SBP title="SBP_2G_STANDBY_MEAS_PRD_IN_VM- 2G measurement period for 2G measurements in Virtual standby mode">
1214 <DESCRIPTION>
1215 This SBP is used to give measurement configurations to GL1 by GSM RR when UE is camped on other than 2G RAT
1216 and other SIM is doing data transfer (current SIM is in virtual mode). In virtual mode, 2G cannot do continuous
1217 measurements, hence, measurement period (in frames) is provided to GL1 by GRR via SBP.
1218 </DESCRIPTION>
1219 <CATEGORY>GAS</CATEGORY>
1220 <CONFIG>
1221 <VALUE value="0">Follow normal IDLE mode measurements (51 or 102 frames)</VALUE>
1222 <VALUE value="1">2G can measure in every 51 frame period in flight mode</VALUE>
1223 <VALUE value="2">2G can measure in every 102 frame period in standby state</VALUE>
1224 </CONFIG>
1225 <DEFAULT>0</DEFAULT>
1226 <OP>N/A</OP>
1227 <DEPENDENCY>N/A</DEPENDENCY>
1228 <NOTE>N/A</NOTE>
1229 <AUTHOR>mtk09537</AUTHOR>
1230</SBP>
1231******* SBP Document END **************************************************************************/
1232 SBP_DATA_DEF(33,SBP_2G_STANDBY_MEAS_PRD_IN_VM, SBP_ATTR_NONE, "2G standby measurement period in virtual mode")
1233 SBP_DATA_DEF_VAL(0x00, "Use MTK Default value (51 or 102 frames)")
1234 SBP_DATA_DEF_VAL(0x01, "Period: 1 GSM TDMA frame")
1235 SBP_DATA_DEF_VAL(0x02, "Period: 2 GSM TDMA frames, and so on.")
1236 SBP_DATA_DEFAULT_VAL(0x00)
1237 SBP_DATA_DEF_END
1238
1239/****** SBP Document BEGIN ************************************************************************
1240<SBP title="SBP_2G_STANDBY_MEAS_NUM_PER_PRD_IN_VM- 2G measurement length for 2G measurements in Virtual standby mode">
1241 <DESCRIPTION>
1242 This SBP is used to give measurement configurations to GL1 by GSM RR when UE is camped on other than 2G RAT
1243 and other SIM is doing data transfer (current SIM is in virtual mode). In virtual mode, 2G cannot do continuous
1244 measurements, hence, measurement length (in frames) is provided to GL1 by GRR via SBP.
1245 </DESCRIPTION>
1246 <CATEGORY>GAS</CATEGORY>
1247 <CONFIG>
1248 <VALUE value="0">Follow normal IDLE mode measurements (4 or 8 frames)</VALUE>
1249 <VALUE value="1">2G can measure 8 frames in given frame period in flight mode</VALUE>
1250 <VALUE value="2">2G can measure 4 frames in given frame period in standby state</VALUE>
1251 </CONFIG>
1252 <DEFAULT>0</DEFAULT>
1253 <OP>N/A</OP>
1254 <DEPENDENCY>N/A</DEPENDENCY>
1255 <NOTE>N/A</NOTE>
1256 <AUTHOR>mtk09537</AUTHOR>
1257</SBP>
1258******* SBP Document END **************************************************************************/
1259 SBP_DATA_DEF(34,SBP_2G_STANDBY_MEAS_NUM_PER_PRD_IN_VM, SBP_ATTR_NONE, "2G standby measurement, number of frames to be scanned in virtual mode per period")
1260 SBP_DATA_DEF_VAL(0x00, "Use MTK Default value (4 or 8 frames)")
1261 SBP_DATA_DEF_VAL(0x01, "Scan 1 GSM TDMA frame")
1262 SBP_DATA_DEF_VAL(0x02, "Scan 2 GSM TDMA frames, and so on.")
1263 SBP_DATA_DEFAULT_VAL(0x00)
1264 SBP_DATA_DEF_END
1265
1266/****** SBP Document BEGIN ************************************************************************
1267<SBP title="SBP_2G_STANDBY_MEAS_FB_DECODE_INTV_IN_VM- 2G measurement FB decode intervals for 2G measurements in Virtual standby mode">
1268 <DESCRIPTION>
1269 This SBP is used to give measurement configurations to GL1 by GSM RR when UE is camped on other than 2G RAT
1270 and other SIM is doing data transfer (current SIM is in virtual mode). In virtual mode, 2G cannot do continuous
1271 measurements, hence, measurement FB decode intervals (in frames) is provided to GL1 by GRR via SBP.
1272 </DESCRIPTION>
1273 <CATEGORY>GAS</CATEGORY>
1274 <CONFIG>
1275 <VALUE value="0">Follow normal IDLE mode measurements</VALUE>
1276 <VALUE value="1">Attempt 2G BSIC decoding every 16 frames in virtual mode</VALUE>
1277 </CONFIG>
1278 <DEFAULT>0</DEFAULT>
1279 <OP>N/A</OP>
1280 <DEPENDENCY>N/A</DEPENDENCY>
1281 <NOTE>N/A</NOTE>
1282 <AUTHOR>mtk09537</AUTHOR>
1283</SBP>
1284******* SBP Document END **************************************************************************/
1285 SBP_DATA_DEF(35,SBP_2G_STANDBY_MEAS_FB_DECODE_INTV_IN_VM, SBP_ATTR_NONE, "2G standby measurement FB/SB decode interval, number of frames between two FB/SB decode attempt")
1286 SBP_DATA_DEF_VAL(0x00, "Use MTK Default value (16 frames)")
1287 SBP_DATA_DEF_VAL(0x01, "1 GSM TDMA frame")
1288 SBP_DATA_DEF_VAL(0x02, "2 GSM TDMA frames, and so on.")
1289 SBP_DATA_DEFAULT_VAL(0x00)
1290 SBP_DATA_DEF_END
1291
1292/****** SBP Document BEGIN ************************************************************************
1293<SBP title="SBP_MDT_UI_LOCATION_OFF_STORE_REPORT_MODE- MDT store location report mode when UI location setting disable">
1294 <DESCRIPTION>
1295 <PARAG>
1296 If UE always activates GPS positioning when network send MDT request to UE, it might increase the power consumption.
1297 This SBP provides flexable configuration for MDT feature. According ERRC air message, UE might be requested to report
1298 current store location information or activate GPS positioning. This SBP is for store loaction information request.
1299 </PARAG>
1300 </DESCRIPTION>
1301 <CATEGORY>AGPS</CATEGORY>
1302 <CONFIG>
1303 <VALUE value="0x00">Not report location information</VALUE>
1304 <VALUE value="0x01">Report the lastest stored location</VALUE>
1305 </CONFIG>
1306 <DEFAULT>0x01</DEFAULT>
1307 <OP>N/A</OP>
1308 <DEPENDENCY>N/A</DEPENDENCY>
1309 <NOTE>This feature needs corresponding AP load to provide UI location setting. </NOTE>
1310 <AUTHOR>mtk07961</AUTHOR>
1311</SBP>
1312******* SBP Document END **************************************************************************/
1313 SBP_DATA_DEF(36,SBP_MDT_UI_LOCATION_OFF_STORE_REPORT_MODE, SBP_ATTR_NONE, "MDT store location reporting mode- when UI location setting OFF")
1314 SBP_DATA_DEF_VAL(0x00, "Not report")
1315 SBP_DATA_DEF_VAL(0x01, "Report the lastest stored location")
1316 SBP_DATA_DEFAULT_VAL(0x01)
1317 SBP_DATA_DEF_END
1318
1319/****** SBP Document BEGIN ************************************************************************
1320<SBP title="SBP_MDT_UI_LOCATION_OFF_GPS_REPORT_MODE- MDT GPS location report mode when UI location setting disable">
1321 <DESCRIPTION>
1322 <PARAG>
1323 If UE always activates GPS positioning when network send MDT request to UE, it might increase the power consumption.
1324 This SBP provides flexable configuration for MDT feature. According ERRC air message, UE might be requested to report
1325 current store location information or activate GPS positioning. This SBP is for GPS positioning request.
1326 </PARAG>
1327 </DESCRIPTION>
1328 <CATEGORY>AGPS</CATEGORY>
1329 <CONFIG>
1330 <VALUE value="0x00">Not report location information</VALUE>
1331 <VALUE value="0x01">Report the lastest stored location</VALUE>
1332 <VALUE value="0x02">Open GPS chip to get and report location information</VALUE>
1333 </CONFIG>
1334 <DEFAULT>0x01</DEFAULT>
1335 <OP>N/A</OP>
1336 <DEPENDENCY>N/A</DEPENDENCY>
1337 <NOTE>This feature needs corresponding AP load to provide UI location setting.</NOTE>
1338 <AUTHOR>mtk07961</AUTHOR>
1339</SBP>
1340******* SBP Document END **************************************************************************/
1341 SBP_DATA_DEF(37,SBP_MDT_UI_LOCATION_OFF_GPS_REPORT_MODE, SBP_ATTR_NONE, "MDT GPS location reporting mode- when UI location setting OFF")
1342 SBP_DATA_DEF_VAL(0x00, "Not report")
1343 SBP_DATA_DEF_VAL(0x01, "Report the lastest stored location")
1344 SBP_DATA_DEF_VAL(0x02, "Open GPS chip to get and report location information")
1345 SBP_DATA_DEFAULT_VAL(0x01)
1346 SBP_DATA_DEF_END
1347
1348/****** SBP Document BEGIN ************************************************************************
1349<SBP title="SBP_SMS_MAX_TL_RETRY_COUNT_DURING_CALL- Maximum retry count for SMS at TL layer when call is ongoing on other protocol stack">
1350 <DESCRIPTION>
1351 <PARAG> This provides the value for the maximum count of the retries allowed at TL layer for the SMS pdu when a call is ongoing on the other protocol stack.
1352 When the SMS is ongoing on one protocol stack, and request for the call comes on the other protocol stack, the SMS will be affected by the call.
1353 So in that case we provide this SBP to customize the number of retries when the SMS is interrupted by the call on the other protocol stack.
1354 </PARAG>
1355 </DESCRIPTION>
1356 <CATEGORY>SMS</CATEGORY>
1357 <CONFIG>
1358 <VALUE value="0">No Retry</VALUE>
1359 <VALUE value="1">1 Retry</VALUE>
1360 <VALUE value="2">2 Retries</VALUE>
1361 <VALUE value="3">3 Retries</VALUE>
1362 </CONFIG>
1363 <DEFAULT>0x01</DEFAULT>
1364 <OP>N/A</OP>
1365 <DEPENDENCY>This SBP is dependent on other compilation switch __ALLOW_CALL_DURING_SMS_IN_OTHER_STACK__</DEPENDENCY>
1366 <NOTE>N/A</NOTE>
1367 <AUTHOR>mtk08505</AUTHOR>
1368</SBP>
1369******* SBP Document END **************************************************************************/
1370 SBP_DATA_DEF(38,SBP_SMS_MAX_TL_RETRY_COUNT_DURING_CALL, SBP_ATTR_NONE, "SMS max TL retry count when call ongoing on peer Protocol Stack")
1371 SBP_DATA_DEFAULT_VAL(0x01)
1372 SBP_DATA_DEF_END
1373
1374/****** SBP Document BEGIN ************************************************************************
1375<SBP title="SBP_SMS_TL_RETRY_TIMER_DURING_CALL- SMS TL retry timer (in second) when call ongoing on peer Protocol Stack">
1376 <DESCRIPTION>
1377 <PARAG> This provides the value for the SMS TL retry timer when a call is ongoing on the other protocol stack.
1378 When the SMS is ongoing on one protocol stack, and request for the call comes on the other protocol stack, the SMS will be affected by the call.
1379 So in that case we provide this SBP to customize the SMS TL retry timer when the SMS is interrupted by the call on the other protocol stack.
1380 </PARAG>
1381 </DESCRIPTION>
1382 <CATEGORY>SMS</CATEGORY>
1383 <CONFIG>
1384 <VALUE value="1">Timeout Value 10 seconds</VALUE>
1385 <VALUE value="2">Timeout Value 20 seconds</VALUE>
1386 <VALUE value="3">Timeout Value 30 seconds</VALUE>
1387 <VALUE value="4">Timeout Value 40 seconds</VALUE>
1388 <VALUE value="...">.... seconds</VALUE>
1389 <VALUE value="30">Timeout Value 300 seconds</VALUE>
1390 </CONFIG>
1391 <DEFAULT>2</DEFAULT>
1392 <OP>N/A</OP>
1393 <DEPENDENCY>This SBP is dependent on other compilation switch __ALLOW_CALL_DURING_SMS_IN_OTHER_STACK__</DEPENDENCY>
1394 <NOTE>Please note that the minimum value of this timer is 10 sec. Also when the value for this SBP is set to x, the timer runs for x*10 secs</NOTE>
1395 <AUTHOR>mtk08505</AUTHOR>
1396</SBP>
1397******* SBP Document END **************************************************************************/
1398 SBP_DATA_DEF(39,SBP_SMS_TL_RETRY_TIMER_DURING_CALL, SBP_ATTR_NONE, "SMS TL retry timer (in second) when call ongoing on peer Protocol Stack")
1399 SBP_DATA_DEF_VAL(0x02, "Timeout Value 20 seconds")
1400 SBP_DATA_DEF_VAL(0x1e, "Timeout Value 300 seconds")
1401#if defined(__TC10__)
1402 SBP_DATA_DEFAULT_VAL(0x1e)
1403#else
1404 SBP_DATA_DEFAULT_VAL(0x02)
1405#endif
1406 SBP_DATA_DEF_END
1407
1408 /*40~47*/
1409/****** SBP Document BEGIN ************************************************************************
1410 <SBP title="SBP_EMERGENCY_CALLBACK_MODE - define the working mode of emergency call back mode">
1411 <DESCRIPTION>
1412 <PARAG>
1413 from customer's requirement: need to provide 3 options for the mode of ECBM.
1414 </PARAG>
1415 </DESCRIPTION>
1416 <CATEGORY>C2K</CATEGORY>
1417 <CONFIG>
1418 <VALUE value="0">C2K will enter ECBM mode after ECC is disconnected</VALUE>
1419 <VALUE value="1">C2K will not enter ECBM mode after ECC is disconnected</VALUE>
1420 <VALUE value="2">C2K will not enter ECBM mode after ECC is disconnected in CHINA, BUT will enter ECBM mode after ECC is disconnected outside of CHINA</VALUE>
1421 </CONFIG>
1422 <DEFAULT>1</DEFAULT>
1423 <OP>N/A</OP>
1424 <DEPENDENCY>
1425 N/A
1426 </DEPENDENCY>
1427 <NOTE>
1428 This feature is available in UMOLYA/LR12A and branches after them.
1429 </NOTE>
1430 <AUTHOR>mtk08624</AUTHOR>
1431</SBP>
1432******* SBP Document END **************************************************************************/
1433 SBP_DATA_DEF(40,SBP_EMERGENCY_CALLBACK_MODE, SBP_ATTR_NONE, "configure the mode of emergency call back mode to determine if UE need to enter ECBM mode or not after ECC is terminated")
1434 SBP_DATA_DEF_VAL(0x00, "C2K will not enter ECBM mode after ECC is disconnected")
1435 SBP_DATA_DEF_VAL(0x01, "C2K will enter ECBM mode after ECC is disconnected")
1436 SBP_DATA_DEF_VAL(0x02, "C2K will not enter ECBM mode after ECC is disconnected in CHINA, BUT will enter ECBM mode after ECC is disconnected outside of CHINA")
1437 #if defined(__TURN_OFF_ECBM_MODE_IN_CHINA__)
1438 SBP_DATA_DEFAULT_VAL(0x02)
1439 #else
1440 SBP_DATA_DEFAULT_VAL(0x00)
1441 #endif
1442 SBP_DATA_DEF_END
1443
1444/****** SBP Document BEGIN ************************************************************************
1445<SBP title="SBP_LPP_SERVER_UNSYNC_WITH_ENB_MFBI_WORKAROUND- Covert LPP server configuration OTDOA band to synchronize with eNB">
1446 <DESCRIPTION>
1447 <PARAG>
1448 This SBP is to workaround network LPP server issue. When eNB support MFBI(Multi Frequency Band Indicator), UE identify the band through eNB MFBI setting.
1449 When network LPP server is unsynchronized with eNB, it will send OTDOA measurement request with wrong band setting that conflict with eNB setting.
1450 To workaround this network issue, UE converts LPP server configured band based on eNB setting and performs OTDOA measurement.
1451 </PARAG>
1452 </DESCRIPTION>
1453 <CATEGORY>AGPS</CATEGORY>
1454 <CONFIG>
1455 <VALUE value="0x00">Disable MFBI workaround</VALUE>
1456 <VALUE value="0x01">Convert network configure band to measure OTDOA but report results as network configured band</VALUE>
1457 <VALUE value="0x02">Convert network configure band to measure OTDOA and report results as convered band</VALUE>
1458 </CONFIG>
1459 <DEFAULT>0x01</DEFAULT>
1460 <OP>N/A</OP>
1461 <DEPENDENCY>N/A</DEPENDENCY>
1462 <NOTE>N/A</NOTE>
1463 <AUTHOR>mtk07961</AUTHOR>
1464</SBP>
1465******* SBP Document END **************************************************************************/
1466 SBP_DATA_DEF(41,SBP_LPP_SERVER_UNSYNC_WITH_ENB_MFBI_WORKAROUND, SBP_ATTR_NONE, "Convert band setting when LPP OTDOA measurement request band setting is unsynchronized with eNB MFBI setting")
1467 SBP_DATA_DEF_VAL(0x00, "Not convert LPP server OTDOA measurement request band setting")
1468 SBP_DATA_DEF_VAL(0x01, "Convert LPP server OTDOA measurement request band setting and report network originally configured band in measurement result")
1469 SBP_DATA_DEF_VAL(0x02, "Convert LPP server OTDOA measurement request band setting and report converted band in measurement result")
1470 SBP_DATA_DEFAULT_VAL(0x01)
1471 SBP_DATA_DEF_END
1472
1473/****** SBP Document BEGIN ************************************************************************
1474<SBP title="SBP_MDT_BATTERY_LEVEL - Minimum battery level for MDT open GPS">
1475 <DESCRIPTION>
1476 <PARAG>
1477 This SBP is to control the minimum battery level for MDT (Minimization of Drive Tests) open GPS.
1478 Open GPS will consumes UE power, but when the available battery power is below a certain threshold, user may want to prevent MDT from opening GPS to extend the usage time.
1479 </PARAG>
1480 </DESCRIPTION>
1481 <CATEGORY>AGPS</CATEGORY>
1482 <CONFIG>
1483 <VALUE value="0x00">Do not check battery level</VALUE>
1484 <VALUE value="0x0A">10% of available battery</VALUE>
1485 <VALUE value="0x14">20% of available battery</VALUE>
1486 </CONFIG>
1487 <DEFAULT>0x0A</DEFAULT>
1488 <OP>N/A</OP>
1489 <DEPENDENCY>N/A</DEPENDENCY>
1490 <NOTE>
1491 This feature is available on LR12A.R3.MP and newer generation MTK modems.
1492 </NOTE>
1493 <AUTHOR>mtk00699</AUTHOR>
1494</SBP>
1495******* SBP Document END **************************************************************************/
1496 SBP_DATA_DEF(42,SBP_MDT_BATTERY_LEVEL, SBP_ATTR_NONE, "Minimum battery level to open GPS for MDT request")
1497 SBP_DATA_DEF_VAL(0x00, "Do not check battery level")
1498 SBP_DATA_DEF_VAL(0x0A, "10% of available battery")
1499 SBP_DATA_DEF_VAL(0x14, "20% of available battery")
1500 SBP_DATA_DEFAULT_VAL(0x0A)
1501 SBP_DATA_DEF_END
1502
1503/****** SBP Document BEGIN ************************************************************************
1504<SBP title="SBP_3G_SIB_SKIP_ENABLE_FOR_ALL_PLMN- Read only essential SIBs during camping for all PLMNs">
1505 <DESCRIPTION>
1506 <PARAG>
1507 This SBP provides flexable configuration for SIB SKIP feature. Even if NW does not configure DMCR in SIB3,
1508 UE shall skip reading non-essential SIBs during camping time to speed up camping. UE will read the non-essential
1509 SIBs later on.
1510 </PARAG>
1511 </DESCRIPTION>
1512 <CATEGORY>UAS</CATEGORY>
1513 <CONFIG>
1514 <VALUE value="0x00">Disabled</VALUE>
1515 <VALUE value="0x01">Enabled only for CSFB calls</VALUE>
1516 <VALUE value="0x02">Enabled unconditionally</VALUE>
1517 </CONFIG>
1518 <DEFAULT>0x00</DEFAULT>
1519 <OP>N/A</OP>
1520 <DEPENDENCY>Default value is "1" if with compile option __3G_SIB_SKIP_FOR_CSFB__, is "2" when with __3G_SIB_SKIP_FOR_ALL__</DEPENDENCY>
1521 <NOTE>N/A</NOTE>
1522 <AUTHOR>mtk09178</AUTHOR>
1523</SBP>
1524******* SBP Document END **************************************************************************/
1525 SBP_DATA_DEF(43,SBP_3G_SIB_SKIP_ENABLE_FOR_ALL_PLMN, SBP_ATTR_NONE, "Enable SIB Skip for all PLMNs")
1526 SBP_DATA_DEF_VAL(0x00, "Disabled")
1527 SBP_DATA_DEF_VAL(0x01, "Enable SIB Skip for all PLMNs, only for CSFB")
1528 SBP_DATA_DEF_VAL(0x02, "Enable SIB Skip for all PLMNs")
1529#if defined(__3G_SIB_SKIP_FOR_CSFB__)
1530 SBP_DATA_DEFAULT_VAL(0x01)
1531#elif defined(__3G_SIB_SKIP_FOR_ALL__)
1532 SBP_DATA_DEFAULT_VAL(0x02)
1533#else
1534 SBP_DATA_DEFAULT_VAL(0x00)
1535#endif
1536 SBP_DATA_DEF_END
1537
1538/****** SBP Document BEGIN ************************************************************************
1539<SBP title="SBP_MODIFY_RLC_FOR_SACCH_DECODE- Modify the Value of RLF for TMO US ">
1540 <DESCRIPTION>
1541 <PARAG>
1542 This SBP is used to modify the value of RLF. when Network sends specfic value, when UE decodes and stored it into its context, at this time,
1543 the value of RLF in RR context is modified based on the SBP value set.
1544 </PARAG>
1545 </DESCRIPTION>
1546 <CATEGORY>GAS</CATEGORY>
1547 <CONFIG>
1548 <VALUE value="0x00">default RLC value from Nw</VALUE>
1549 <VALUE value="0x01">RLC received from n/w + 4</VALUE>
1550 <VALUE value="0x02">RLC received from n/w + 12</VALUE>
1551 <VALUE value="0x03">RLC received from n/w + 16</VALUE>
1552 <VALUE value="0x04">RLC received from n/w + 20</VALUE>
1553 <VALUE value="0x05">RLC received from n/w + 24</VALUE>
1554 <VALUE value="0x06">RLC received from n/w + 28</VALUE>
1555 <VALUE value="0x07">RLC received from n/w + 32</VALUE>
1556 <VALUE value="0x08">RLC received from n/w + 36</VALUE>
1557 </CONFIG>
1558 <DEFAULT>0x00</DEFAULT>
1559 <OP>TMO-US</OP>
1560 <DEPENDENCY>N/A</DEPENDENCY>
1561 <NOTE>N/A</NOTE>
1562 <AUTHOR>mtk12655</AUTHOR>
1563</SBP>
1564******* SBP Document END **************************************************************************/
1565 SBP_DATA_DEF(44,SBP_MODIFY_RLC_FOR_SACCH_DECODE, SBP_ATTR_NONE, "To increase 2G Dedi RLC counter Value")
1566 SBP_DATA_DEF_VAL(0x00, "default RLC value from Nw") /* If the default value is 40 set SBP as 6 to make RLC as 64 */
1567 SBP_DATA_DEF_VAL(0x01, "RLC received from n/w +4")
1568 SBP_DATA_DEF_VAL(0x02, "RLC received from n/w +8")
1569 SBP_DATA_DEF_VAL(0x03, "RLC received from n/w +12")
1570 SBP_DATA_DEF_VAL(0x04, "RLC received from n/w +16")
1571 SBP_DATA_DEF_VAL(0x05, "RLC received from n/w +20")
1572 SBP_DATA_DEF_VAL(0x06, "RLC received from n/w +24")
1573 SBP_DATA_DEF_VAL(0x07, "RLC received from n/w +28")
1574 SBP_DATA_DEF_VAL(0x08, "RLC received from n/w +32")
1575 SBP_DATA_DEF_VAL(0x09, "RLC received from n/w +36")
1576 SBP_DATA_DEFAULT_VAL(0x00)
1577 SBP_DATA_DEF_END
1578
1579/****** SBP Document BEGIN ************************************************************************
1580<SBP title="SBP_LCSP_RSP_TIME_ADJ - Location service response time adjustment">
1581 <DESCRIPTION>
1582 <PARAG>
1583 This SBP is to control the locaion service response time in order to compensate for network latency.
1584 When set as a non-zero value, the protocol stack will first reduce the response time value by the offset set here before begin of operation.
1585 </PARAG>
1586 </DESCRIPTION>
1587 <CATEGORY>AGPS</CATEGORY>
1588 <CONFIG>
1589 <VALUE value="0x00">Do not adjust response time</VALUE>
1590 <VALUE value="0x02">Reduce UE internal response time by 2s</VALUE>
1591 <VALUE value="0x03">Reduce UE internal response time by 3s</VALUE>
1592 </CONFIG>
1593 <DEFAULT>0</DEFAULT>
1594 <OP>N/A</OP>
1595 <DEPENDENCY>N/A</DEPENDENCY>
1596 <NOTE>
1597 This feature is available on LR12A.R3.MP and newer generation MTK modems.
1598 </NOTE>
1599 <AUTHOR>mtk00699</AUTHOR>
1600</SBP>
1601******* SBP Document END **************************************************************************/
1602 SBP_DATA_DEF(45, SBP_LCSP_RSP_TIME_ADJ, SBP_ATTR_NONE, "Location service response time adjustment to compensate for network latency")
1603 SBP_DATA_DEF_VAL(0x00, "Do not adjust response time")
1604 SBP_DATA_DEF_VAL(0x02, "Reduce UE internal response time by 2s")
1605 SBP_DATA_DEF_VAL(0x03, "Reduce UE internal response time by 3s")
1606#ifdef __LCSP_RSP_TIME_ADJ__
1607 SBP_DATA_DEFAULT_VAL(0x02)
1608#else
1609 SBP_DATA_DEFAULT_VAL(0x00)
1610#endif
1611 SBP_DATA_DEF_END
1612
1613/****** SBP Document BEGIN ************************************************************************
1614<SBP title="SBP_LCSP_RSP_TIME_LB - Location service response time adjustment lower bound">
1615 <DESCRIPTION>
1616 <PARAG>
1617 This SBP is to control the lower bound of locaion service response time.
1618 When the protocol stack needs to adjust the response time to compensate for network latency, the minimum value after adjustment will be the value set here.
1619 If original value given by network is already smaller than this value, no adjustement will be performed at all.
1620 Please be noted it is not suggested to set a value smaller than 14 unless you have a strong reason to do so or the GPS performance may be downgraded due to not enough response time.
1621 </PARAG>
1622 </DESCRIPTION>
1623 <CATEGORY>AGPS</CATEGORY>
1624 <CONFIG>
1625 <VALUE value="0x0e">Response time adjustment lower bound is 14s</VALUE>
1626 <VALUE value="0x0f">Response time adjustment lower bound is 15s</VALUE>
1627 <VALUE value="0x10">Response time adjustment lower bound is 16s</VALUE>
1628 <VALUE value="0x11">Response time adjustment lower bound is 17s</VALUE>
1629 <VALUE value="0x12">Response time adjustment lower bound is 18s</VALUE>
1630 <VALUE value="0x13">Response time adjustment lower bound is 19s</VALUE>
1631 <VALUE value="0x14">Response time adjustment lower bound is 20s</VALUE>
1632 </CONFIG>
1633 <DEFAULT>0x0f</DEFAULT>
1634 <OP>N/A</OP>
1635 <DEPENDENCY>N/A</DEPENDENCY>
1636 <NOTE>
1637 This feature is available on LR12A.R3.MP and newer generation MTK modems.
1638 </NOTE>
1639 <AUTHOR>mtk00699</AUTHOR>
1640</SBP>
1641******* SBP Document END **************************************************************************/
1642 SBP_DATA_DEF(46, SBP_LCSP_RSP_TIME_LB, SBP_ATTR_NONE, "Location service response time adjustment lower bound")
1643 SBP_DATA_DEF_VAL(0x0e, "Response time adjustment lower bound is 14s")
1644 SBP_DATA_DEF_VAL(0x0f, "Response time adjustment lower bound is 15s")
1645 SBP_DATA_DEF_VAL(0x10, "Response time adjustment lower bound is 16s")
1646 SBP_DATA_DEF_VAL(0x11, "Response time adjustment lower bound is 17s")
1647 SBP_DATA_DEF_VAL(0x12, "Response time adjustment lower bound is 18s")
1648 SBP_DATA_DEF_VAL(0x13, "Response time adjustment lower bound is 19s")
1649 SBP_DATA_DEF_VAL(0x14, "Response time adjustment lower bound is 20s")
1650 SBP_DATA_DEFAULT_VAL(0x0f)
1651 SBP_DATA_DEF_END
1652
1653/****** SBP Document BEGIN ************************************************************************
1654<SBP title="SBP_DISPLAY_NOT_SELECTABLE_PLMN - Display Not-Selectable PLMN ID when PLMN list">
1655 <DESCRIPTION>
1656 <PARAG>
1657 This SBP is to control the ways to show the result of PLMN list.
1658 In legacy design, all PLMN IDs including those are barred or reserved for operator use will be showed in the UI.
1659 If customers do not expect this behavior, we could configure the SBP data to change the way of showing these PLMN IDs in PLMN list.
1660 </PARAG>
1661 </DESCRIPTION>
1662 <CATEGORY>EAS</CATEGORY>
1663 <CONFIG>
1664 <VALUE value="0x00">Do not display this PLMN when all cells are not selectable</VALUE>
1665 <VALUE value="0x01">Display this PLMN even all cells are barred</VALUE>
1666 <VALUE value="0x02">Display this PLMN even all cells are reserved-for-operator-use</VALUE>
1667 <VALUE value="0x03">Display this PLMN even all cells are barred or reserved-for-operator-use</VALUE>
1668 </CONFIG>
1669 <DEFAULT>0x03</DEFAULT>
1670 <OP>N/A</OP>
1671 <DEPENDENCY>N/A</DEPENDENCY>
1672 <NOTE>
1673 This feature is available on LR12A.R3.MP and newer generation MTK modems.
1674 </NOTE>
1675 <AUTHOR>mtk02481</AUTHOR>
1676</SBP>
1677******* SBP Document END **************************************************************************/
1678 SBP_DATA_DEF(47,SBP_DISPLAY_NOT_SELECTABLE_PLMN, SBP_ATTR_NONE, "Display Not-Selectable PLMN when PLMN List")
1679 SBP_DATA_DEF_VAL(0x00, "do not display this PLMN when all cells are not selectable")
1680 SBP_DATA_DEF_VAL(0x01, "display this PLMN even all cells are barred")
1681 SBP_DATA_DEF_VAL(0x02, "display this PLMN even all cells are reserved-for-operator-use")
1682 SBP_DATA_DEF_VAL(0x03, "display this PLMN even all cells are barred or reserved-for-operator-use")
1683 #if defined(__DISPLAY_SELECTABLE_PLMN_ONLY__)
1684 SBP_DATA_DEFAULT_VAL(0x00)
1685 #else
1686 SBP_DATA_DEFAULT_VAL(0x03)
1687 #endif
1688 SBP_DATA_DEF_END
1689
1690 SBP_DATA_DEF(48,SBP_L2_REEST_TMR_THRESHOLD, SBP_ATTR_NONE, "CHR timer threshold")
1691
1692 SBP_DATA_DEF_VAL(0x1E, "30 seconds")
1693 SBP_DATA_DEF_VAL(0x23, "35 seconds")
1694 SBP_DATA_DEF_VAL(0x28, "40 seconds")
1695 SBP_DATA_DEF_VAL(0x2D, "45 seconds")
1696 SBP_DATA_DEF_VAL(0x32, "50 seconds")
1697 SBP_DATA_DEF_VAL(0x37, "55 seconds")
1698 SBP_DATA_DEF_VAL(0x3C, "60 seconds")
1699
1700 SBP_DATA_DEFAULT_VAL(0x3C)
1701 SBP_DATA_DEF_END
1702
1703 SBP_DATA_DEF(49,SBP_L2_REEST_CNT_THRESHOLD, SBP_ATTR_NONE, "CHR count threshold")
1704
1705 SBP_DATA_DEF_VAL(0x02, "L2 REEST counter thershold 2")
1706 SBP_DATA_DEF_VAL(0x03, "L2 REEST counter thershold 3")
1707 SBP_DATA_DEF_VAL(0x04, "L2 REEST counter thershold 4")
1708 SBP_DATA_DEF_VAL(0x05, "L2 REEST counter thershold 5")
1709 SBP_DATA_DEF_VAL(0x06, "L2 REEST counter thershold 6")
1710
1711 SBP_DATA_DEFAULT_VAL(0x03)
1712 SBP_DATA_DEF_END
1713/****** SBP Document BEGIN ************************************************************************
1714<SBP title="SBP_EMM_PROC_FAIL_HANDLING_EXT - Extension options for EMM procedure fail handling">
1715 <DESCRIPTION>
1716 <PARAG>
1717 This SBP provides exntension option for SBP_EMM_PROC_FAIL_HANDLING feature.
1718 </PARAG>
1719 <PARAG>
1720 Option 1: Provide the functionality to bar strange cell in CMCC network that will always
1721 give Attach/TAU result as EPS only and cause #16. So that can avoid DUT disable E-UTRAN
1722 according to spec, and disturb user experience. This is only effective when
1723 SBP_EMM_PROC_FAIL_HANDLING is enabled.
1724
1725 Option 2: Provide the functionality to bar strange cell that keep giving Attach Reject
1726 with cause#12 without integrity protected.
1727 </PARAG>
1728 </DESCRIPTION>
1729 <CATEGORY>NAS</CATEGORY>
1730 <CONFIG>
1731 <VALUE value="0x00">All disabled</VALUE>
1732 <VALUE value="0x01">Enable extension: 1</VALUE>
1733 <VALUE value="0x02">Enable extension: 2</VALUE>
1734 <VALUE value="0x03">Enable extension: 1 and 2</VALUE>
1735 </CONFIG>
1736 <DEFAULT>0x00</DEFAULT>
1737 <OP>N/A</OP>
1738 <DEPENDENCY>N/A</DEPENDENCY>
1739 <NOTE>N/A</NOTE>
1740 <AUTHOR>mtk07903</AUTHOR>
1741</SBP>
1742******* SBP Document END **************************************************************************/
1743 SBP_DATA_DEF(50, SBP_EMM_PROC_FAIL_HANDLING_EXT, SBP_ATTR_NONE, "Extension options for EMM procedure fail handling.")
1744
1745 SBP_DATA_DEF_VAL(0x00, "All disabled")
1746 SBP_DATA_DEF_VAL(0x01, "Enable extension: 1")
1747 SBP_DATA_DEF_VAL(0x02, "Enable extension: 2")
1748 SBP_DATA_DEF_VAL(0x03, "Enable extension: 1, 2")
1749
1750#if defined(__EMM_PROC_FAIL_HANDLING_EXT_1__)
1751 #if defined(__EMM_PROC_FAIL_HANDLING_EXT_2__)
1752 SBP_DATA_DEFAULT_VAL(0x03)
1753 #else
1754 SBP_DATA_DEFAULT_VAL(0x01)
1755 #endif
1756#else
1757 #if defined(__EMM_PROC_FAIL_HANDLING_EXT_2__)
1758 SBP_DATA_DEFAULT_VAL(0x02)
1759 #else
1760 SBP_DATA_DEFAULT_VAL(0x00)
1761 #endif
1762#endif
1763 SBP_DATA_DEF_END
1764
1765 SBP_DATA_DEF(51,SBP_NWSEL_LOCATION_BASED_ALTERNATIVE, SBP_ATTR_NONE, "location based alternative")
1766
1767 SBP_DATA_DEF_VAL(0x00, "Disable location-based")
1768 SBP_DATA_DEF_VAL(0x01, "Enable Stored OP band sequence")
1769 SBP_DATA_DEF_VAL(0x02, "Enable Stored Stored sequence")
1770
1771 SBP_DATA_DEFAULT_VAL(0x01)
1772 SBP_DATA_DEF_END
1773
1774 /*49~55*/
1775 /****** SBP Document BEGIN ************************************************************************
1776<SBP title="SBP_ECC_FULL_BAND_SEARCH_RAT_ORDER - RAT order when full band searching for limited service ">
1777 <DESCRIPTION>
1778 <PARAG>
1779 This SBP provides different RAT order when full band searching for limited service.
1780 </PARAG>
1781 <PARAG>
1782 0x00: CNLWG
1783 0x01: CLWGN
1784 0x02: CWGLN
1785 0x03: CWGNL
1786 0x04: NLWGC
1787 0x05: LWGNC
1788 0x06: WGLNC
1789 0x07: WGLCN
1790 0x08: WGCLN
1791 </PARAG>
1792 </DESCRIPTION>
1793 <CATEGORY>NAS</CATEGORY>
1794 <CONFIG>
1795 <VALUE value="0x00">0: CNLWG</VALUE>
1796 <VALUE value="0x01">1: CLWGN</VALUE>
1797 <VALUE value="0x02">2: CWGNL</VALUE>
1798 <VALUE value="0x03">3: CWGLN</VALUE>
1799 <VALUE value="0x04">4: NLWGC</VALUE>
1800 <VALUE value="0x05">5: LWGNC</VALUE>
1801 <VALUE value="0x06">6: WGLNC</VALUE>
1802 <VALUE value="0x07">7: WGLCN</VALUE>
1803 <VALUE value="0x08">8: WGCLN</VALUE>
1804 </CONFIG>
1805 <DEFAULT>0x03</DEFAULT>
1806 <OP>N/A</OP>
1807 <DEPENDENCY>N/A</DEPENDENCY>
1808 <NOTE>N/A</NOTE>
1809 <AUTHOR>mtk0361</AUTHOR>
1810</SBP>
1811******* SBP Document END **************************************************************************/
1812 SBP_DATA_DEF(52, SBP_ECC_FULL_BAND_SEARCH_RAT_ORDER, SBP_ATTR_NONE, "RAT order when full band searching for limited service.")
1813
1814 SBP_DATA_DEF_VAL(0x00, "0: CNLWG")
1815 SBP_DATA_DEF_VAL(0x01, "1: CLWGN")
1816 SBP_DATA_DEF_VAL(0x02, "2: CWGNL")
1817 SBP_DATA_DEF_VAL(0x03, "3: CWGLN")
1818 SBP_DATA_DEF_VAL(0x04, "4: NLWGC")
1819 SBP_DATA_DEF_VAL(0x05, "5: LWGNC")
1820 SBP_DATA_DEF_VAL(0x06, "6: WGLNC")
1821 SBP_DATA_DEF_VAL(0x07, "7: WGLCN")
1822 SBP_DATA_DEF_VAL(0x08, "8: WGCLN")
1823 SBP_DATA_DEFAULT_VAL(0x03)
1824 SBP_DATA_DEF_END
1825
1826/****** SBP Document BEGIN ************************************************************************
1827<SBP title="SBP_2G_AFR_PREFER_OVER_NW_REDIRECT - AFR is preferred over Network redirection for 2G RAT">
1828 <DESCRIPTION>
1829 <PARAG>
1830 This SBP provides priority to AFR when redirection information present in channel release
1831 message for 2G RAT.
1832 </PARAG>
1833 <PARAG>
1834 bit 0: Indicates AFR is priority over 2G redirection
1835 bit 1: Indicates AFR is priority over 3G redirection
1836 bit 2: Indicates AFR is priority over 4G redirection
1837 bit 3: Spare bit value always 0
1838 bit 4: Spare bit value always 0
1839 bit 5: Spare bit value always 0
1840 bit 6: Spare bit value always 0
1841 bit 7: Spare bit value always 0
1842 </PARAG>
1843 </DESCRIPTION>
1844 <CATEGORY>AS</CATEGORY>
1845 <CONFIG>
1846 <VALUE value="0x00">Any RAT Redirection is priority over AFR </VALUE>
1847 <VALUE value="0x01">AFR is priority over 2G redirection, 3G and LTE redirection is priority over AFR </VALUE>
1848 <VALUE value="0x02">AFR is priority over 3G redirection, 2G and LTE redirection is priority over AFR </VALUE>
1849 <VALUE value="0x03">AFR is priority over 2G and 3G redirection, LTE redirection is priority over AFR </VALUE>
1850 <VALUE value="0x04">AFR is priority over LTE redirection, 2G and 3G redirection is priority over AFR </VALUE>
1851 <VALUE value="0x05">AFR is priority over LTE and 2G redirection, 3G redirection is priority over AFR </VALUE>
1852 <VALUE value="0x06">AFR is priority over LTE and 3G redirection, 2G redirection is priority over AFR </VALUE>
1853 <VALUE value="0x07">AFR is priority over any RAT redirection </VALUE>
1854 </CONFIG>
1855 <DEFAULT>0x07</DEFAULT>
1856 <OP>N/A</OP>
1857 <DEPENDENCY>N/A</DEPENDENCY>
1858 <NOTE>This SBP is avilable from GEN97 onwards</NOTE>
1859 <AUTHOR>mtk16132</AUTHOR>
1860</SBP>
1861******* SBP Document END **************************************************************************/
1862 SBP_DATA_DEF(53, SBP_2G_AFR_PREFER_OVER_NW_REDIRECT, SBP_ATTR_NONE, "AFR is preferred over Network redirection on 2G 3G RAT")
1863 SBP_DATA_DEF_VAL(0x00, "Any RAT Redirection is priority over AFR")
1864 SBP_DATA_DEF_VAL(0x01, "AFR is priority over 2G redirection, 3G and LTE redirection is priority over AFR")
1865 SBP_DATA_DEF_VAL(0x02, "AFR is priority over 3G redirection, 2G and LTE redirection is priority over AFR")
1866 SBP_DATA_DEF_VAL(0x03, "AFR is priority over 2G and 3G redirection, LTE redirection is priority over AFR")
1867 SBP_DATA_DEF_VAL(0x03, "AFR is priority over 2G and 3G redirection, LTE redirection is priority over AFR")
1868 SBP_DATA_DEF_VAL(0x04, "AFR is priority over LTE redirection, 2G and 3G redirection is priority over AFR")
1869 SBP_DATA_DEF_VAL(0x05, "AFR is priority over LTE and 2G redirection, 3G redirection is priority over AFR")
1870 SBP_DATA_DEF_VAL(0x06, "AFR is priority over LTE and 3G redirection, 2G redirection is priority over AFR")
1871 SBP_DATA_DEF_VAL(0x07, "AFR is priority over any RAT redirection")
1872 SBP_DATA_DEFAULT_VAL(0x07)
1873 SBP_DATA_DEF_END
1874/****** SBP Document BEGIN ************************************************************************
1875<SBP title="SBP_3G_AFR_PREFER_OVER_NW_REDIRECT - AFR is preferred over Network redirection for 2G RAT">
1876 <DESCRIPTION>
1877 <PARAG>
1878 This SBP provides priority to AFR when redirection information present in rrc connection release
1879 message in 3G.
1880 </PARAG>
1881 <PARAG>
1882 bit 0: used by 3G indicated AFR is priority over 2G redirection
1883 bit 1: used by 3G indicated AFR is priority over 3G redirection
1884 bit 2: used by 3G indicated AFR is priority over 4G redirection
1885 bit 3: Spare bit value always 0
1886 bit 4: Spare bit value always 0
1887 bit 5: Spare bit value always 0
1888 bit 6: Spare bit value always 0
1889 bit 7: Spare bit value always 0
1890 </PARAG>
1891 </DESCRIPTION>
1892 <CATEGORY>AS</CATEGORY>
1893 <CONFIG>
1894 <VALUE value="0x00">Any Redirection is priority over AFR </VALUE>
1895 <VALUE value="0x01">AFR is priority over 2G redirection, 3G and LTE redirection is priority over AFR </VALUE>
1896 <VALUE value="0x02">AFR is priority over 3G redirection, 2G and LTE redirection is priority over AFR </VALUE>
1897 <VALUE value="0x03">AFR is priority over 2G and 3G redirection, LTE redirection is priority over AFR </VALUE>
1898 <VALUE value="0x04">AFR is priority over LTE redirection, 2G and 3G redirection is priority over AFR </VALUE>
1899 <VALUE value="0x05">AFR is priority over LTE and 2G redirection, 3G redirection is priority over AFR </VALUE>
1900 <VALUE value="0x06">AFR is priority over LTE and 3G redirection, 2G redirection is priority over AFR </VALUE>
1901 <VALUE value="0x07">AFR is priority over any redirection </VALUE>
1902 </CONFIG>
1903 <DEFAULT>0x07</DEFAULT>
1904 <OP>N/A</OP>
1905 <DEPENDENCY>N/A</DEPENDENCY>
1906 <NOTE>This SBP is avilable from GEN97 onwards</NOTE>
1907 <AUTHOR>mtk16132</AUTHOR>
1908</SBP>
1909******* SBP Document END **************************************************************************/
1910 SBP_DATA_DEF(54, SBP_3G_AFR_PREFER_OVER_NW_REDIRECT, SBP_ATTR_NONE, "AFR is preferred over Network redirection on 2G 3G RAT")
1911 SBP_DATA_DEF_VAL(0x00, "Any Redirection is priority over AFR")
1912 SBP_DATA_DEF_VAL(0x01, "AFR is priority over 2G redirection, 3G and LTE redirection is priority over AFR")
1913 SBP_DATA_DEF_VAL(0x02, "AFR is priority over 3G redirection, 2G and LTE redirection is priority over AFR")
1914 SBP_DATA_DEF_VAL(0x03, "AFR is priority over 2G and 3G redirection, LTE redirection is priority over AFR")
1915 SBP_DATA_DEF_VAL(0x03, "AFR is priority over 2G and 3G redirection, LTE redirection is priority over AFR")
1916 SBP_DATA_DEF_VAL(0x04, "AFR is priority over LTE redirection, 2G and 3G redirection is priority over AFR")
1917 SBP_DATA_DEF_VAL(0x05, "AFR is priority over LTE and 2G redirection, 3G redirection is priority over AFR")
1918 SBP_DATA_DEF_VAL(0x06, "AFR is priority over LTE and 3G redirection, 2G redirection is priority over AFR")
1919 SBP_DATA_DEF_VAL(0x07, "AFR is priority over any redirection")
1920 SBP_DATA_DEFAULT_VAL(0x07)
1921 SBP_DATA_DEF_END
1922
1923/****** SBP Document BEGIN ************************************************************************
1924<SBP title="SBP_EMM_CONTROL_DCNR_BIT - Enabled/Disabled DCNR bit for FT testing">
1925 <DESCRIPTION>
1926 <PARAG>
1927 This SBP provides tester to control DCNR bit in UE network capability IE and UE additional security capability IE would whether to be included or not in attach/TAU request.
1928 </PARAG>
1929 <PARAG>
1930 0xFF: the content of IE is decided by the UE's capability and blacklist instead of be controlled by tester
1931 0x00: disable DCNR bit even if UE supports ENDC
1932 0x01: enable DCNR bit if UE supports DCNR
1933 </PARAG>
1934 </DESCRIPTION>
1935 <CATEGORY>NAS</CATEGORY>
1936 <CONFIG>
1937 <VALUE value="0xFF">Normal Setting</VALUE>
1938 <VALUE value="0x00">Disable DCNR bit</VALUE>
1939 <VALUE value="0x01">Enable DCNR bit</VALUE>
1940 </CONFIG>
1941 <DEFAULT>0xFF</DEFAULT>
1942 <OP>N/A</OP>
1943 <DEPENDENCY>N/A</DEPENDENCY>
1944 <NOTE>N/A</NOTE>
1945 <AUTHOR>mtk13129</AUTHOR>
1946</SBP>
1947******* SBP Document END **************************************************************************/
1948 SBP_DATA_DEF(55, SBP_EMM_CONTROL_DCNR_BIT, SBP_ATTR_NONE, "Enabled/Disabled DCNR bit for FT testing")
1949 SBP_DATA_DEF_VAL(0xFF, "Normal Setting")
1950 SBP_DATA_DEF_VAL(0x00, "Disable DCNR bit")
1951 SBP_DATA_DEF_VAL(0x01, "Enable DCNR bit")
1952#if defined(__EMM_CONTROL_DCNR_BIT_DISABLE__)
1953 SBP_DATA_DEFAULT_VAL(0x00)
1954#elif defined(__EMM_CONTROL_DCNR_BIT_ENABLE__)
1955 SBP_DATA_DEFAULT_VAL(0x01)
1956#else
1957 SBP_DATA_DEFAULT_VAL(0xFF)
1958#endif
1959 SBP_DATA_DEF_END
1960
1961/****** SBP Document BEGIN ************************************************************************
1962<SBP title="SBP_EMM_CONTROL_N1_MODE_BIT - Enabled/Disabled N1 mode bit for FT testing">
1963 <DESCRIPTION>
1964 <PARAG>
1965 This SBP provides tester to control N1 mode bit in UE network capability IE and UE additional security capability IE would whether to be included or not in attach/TAU request.
1966 </PARAG>
1967 <PARAG>
1968 0xFF: the content of IE is decided by the UE's capability and blacklist instead of be controlled by tester
1969 0x00: disable N1 mode bit even if N1 mode UE
1970 0x01: enable N1 mode bit if N1 mode UE
1971 </PARAG>
1972 </DESCRIPTION>
1973 <CATEGORY>NAS</CATEGORY>
1974 <CONFIG>
1975 <VALUE value="0xFF">Normal Setting</VALUE>
1976 <VALUE value="0x00">Disable N1 mode bit</VALUE>
1977 <VALUE value="0x01">Enable N1 mode bit</VALUE>
1978 </CONFIG>
1979 <DEFAULT>0xFF</DEFAULT>
1980 <OP>N/A</OP>
1981 <DEPENDENCY>N/A</DEPENDENCY>
1982 <NOTE>N/A</NOTE>
1983 <AUTHOR>mtk13129</AUTHOR>
1984</SBP>
1985******* SBP Document END **************************************************************************/
1986 SBP_DATA_DEF(56, SBP_EMM_CONTROL_N1_MODE_BIT, SBP_ATTR_NONE, "Enabled/Disabled N1 mode bit for FT testing")
1987 SBP_DATA_DEF_VAL(0xFF, "Normal Setting")
1988 SBP_DATA_DEF_VAL(0x00, "Disable N1 mode bit")
1989 SBP_DATA_DEF_VAL(0x01, "Enable N1 mode bit")
1990#if defined(__EMM_CONTROL_N1_MODE_BIT_DISABLE__)
1991 SBP_DATA_DEFAULT_VAL(0x00)
1992#elif defined(__EMM_CONTROL_N1_MODE_BIT_ENABLE__)
1993 SBP_DATA_DEFAULT_VAL(0x01)
1994#else
1995 SBP_DATA_DEFAULT_VAL(0xFF)
1996#endif
1997 SBP_DATA_DEF_END
1998
1999/****** SBP Document BEGIN ************************************************************************
2000<SBP title="SBP_EMM_CONTROL_EPCO_BIT - Enabled/Disabled Extended PCO bit for FT testing">
2001 <DESCRIPTION>
2002 <PARAG>
2003 This SBP provides tester to control Extended PCO bit in UE network capability IE would whether to be included or not in attach/TAU request.
2004 </PARAG>
2005 <PARAG>
2006 0xFF: the content of IE is decided by the UE's capability and blacklist instead of be controlled by tester
2007 0x00: disable Extended PCO bit even if N1 mode UE
2008 0x01: enable Extended PCO bit if N1 mode UE
2009 </PARAG>
2010 </DESCRIPTION>
2011 <CATEGORY>NAS</CATEGORY>
2012 <CONFIG>
2013 <VALUE value="0xFF">Normal Setting</VALUE>
2014 <VALUE value="0x00">Disable Extended PCO bit</VALUE>
2015 <VALUE value="0x01">Enable Extended PCO bit</VALUE>
2016 </CONFIG>
2017 <DEFAULT>0xFF</DEFAULT>
2018 <OP>N/A</OP>
2019 <DEPENDENCY>N/A</DEPENDENCY>
2020 <NOTE>N/A</NOTE>
2021 <AUTHOR>mtk13129</AUTHOR>
2022</SBP>
2023******* SBP Document END **************************************************************************/
2024 SBP_DATA_DEF(57, SBP_EMM_CONTROL_EPCO_BIT, SBP_ATTR_NONE, "Enabled/Disabled Extended PCO bit for FT testing")
2025 SBP_DATA_DEF_VAL(0xFF, "Normal Setting")
2026 SBP_DATA_DEF_VAL(0x00, "Disable Extended PCO bit")
2027 SBP_DATA_DEF_VAL(0x01, "Enable Extended PCO bit")
2028#if defined(__EMM_CONTROL_EPCO_BIT_DISABLE__)
2029 SBP_DATA_DEFAULT_VAL(0x00)
2030#elif defined(__EMM_CONTROL_EPCO_BIT_ENABLE__)
2031 SBP_DATA_DEFAULT_VAL(0x01)
2032#else
2033 SBP_DATA_DEFAULT_VAL(0xFF)
2034#endif
2035 SBP_DATA_DEF_END
2036
2037/****** SBP Document BEGIN ************************************************************************
2038<SBP title="SBP_EMM_CONTROL_UE_STATUS_IE - Enabled/Disabled UE status IE for FT testing">
2039 <DESCRIPTION>
2040 <PARAG>
2041 This SBP provides tester to control UE status IE would whether to be included or not in attach/TAU request.
2042 </PARAG>
2043 <PARAG>
2044 0xFF: the content of IE is decided by the UE's capability and blacklist instead of be controlled by tester
2045 0x00: disable UE status IE even if UE has 5G-GUTI
2046 0x01: enable UE status IE if UE has 5G-GUTI
2047 </PARAG>
2048 </DESCRIPTION>
2049 <CATEGORY>NAS</CATEGORY>
2050 <CONFIG>
2051 <VALUE value="0xFF">Normal Setting</VALUE>
2052 <VALUE value="0x00">Disable UE status IE</VALUE>
2053 <VALUE value="0x01">Enable UE status IE</VALUE>
2054 </CONFIG>
2055 <DEFAULT>0xFF</DEFAULT>
2056 <OP>N/A</OP>
2057 <DEPENDENCY>N/A</DEPENDENCY>
2058 <NOTE>N/A</NOTE>
2059 <AUTHOR>mtk13129</AUTHOR>
2060</SBP>
2061******* SBP Document END **************************************************************************/
2062 SBP_DATA_DEF(58, SBP_EMM_CONTROL_UE_STATUS_IE, SBP_ATTR_NONE, "Enabled/Disabled UE status IE for FT testing")
2063 SBP_DATA_DEF_VAL(0xFF, "Normal Setting")
2064 SBP_DATA_DEF_VAL(0x00, "Disable UE status IE")
2065 SBP_DATA_DEF_VAL(0x01, "Enable UE status IE")
2066#if defined(__EMM_CONTROL_UE_STATUS_IE_DISABLE__)
2067 SBP_DATA_DEFAULT_VAL(0x00)
2068#elif defined(__EMM_CONTROL_UE_STATUS_IE_ENABLE__)
2069 SBP_DATA_DEFAULT_VAL(0x01)
2070#else
2071 SBP_DATA_DEFAULT_VAL(0xFF)
2072#endif
2073 SBP_DATA_DEF_END
2074
2075/****** SBP Document BEGIN ************************************************************************
2076<SBP title="SBP_IGNORE_IR_REDIRECT_TO_LTE_WHEN_NO_CELL_THRESHOLD - Ignore IR Redirect to LTE when no cell">
2077 <DESCRIPTION>
2078 <PARAG>
2079 <LI>If NW redirects from 2/3G to LTE but LTE find no suitable cells around, UE would record the failure count.</LI>
2080 <LI>Once the redirect failure count is >= threshold, then inter-RAT redirection to LTE would be ignored.</LI>
2081 <LI>When UE camp on LTE cell successfully, the count will be reset to 0.</LI>
2082 </PARAG>
2083 </DESCRIPTION>
2084 <CATEGORY>EAS</CATEGORY>
2085 <CONFIG>
2086 <VALUE value="0x00">Disabled</VALUE>
2087 <VALUE value="0x01">Threshold: 1 time</VALUE>
2088 <VALUE value="0x02">Threshold: 2 times</VALUE>
2089 <VALUE value="0x03">Threshold: 3 times</VALUE>
2090 <VALUE value="0x04">Threshold: 4 times</VALUE>
2091 <VALUE value="...">....</VALUE>
2092 <VALUE value="0x14">Threshold: 20 times</VALUE>
2093 </CONFIG>
2094 <DEFAULT>0x00</DEFAULT>
2095 <OP>N/A</OP>
2096 <DEPENDENCY>N/A</DEPENDENCY>
2097 <NOTE>N/A</NOTE>
2098 <AUTHOR>mtk12544</AUTHOR>
2099</SBP>
2100******* SBP Document END **************************************************************************/
2101 SBP_DATA_DEF(59, SBP_IGNORE_IR_REDIRECT_TO_LTE_WHEN_NO_CELL_THRESHOLD, SBP_ATTR_NONE, "Extension options for EMM procedure fail handling.")
2102
2103 SBP_DATA_DEF_VAL(0x00, "All disabled")
2104 SBP_DATA_DEF_VAL(0x01, "Threshold: 1 time")
2105 SBP_DATA_DEF_VAL(0x02, "Threshold: 2 times")
2106 SBP_DATA_DEF_VAL(0x03, "Threshold: 3 times")
2107 SBP_DATA_DEF_VAL(0x04, "Threshold: 4 times")
2108 SBP_DATA_DEF_VAL(0x05, "Threshold: 5 times")
2109 SBP_DATA_DEF_VAL(0x06, "Threshold: 6 times")
2110 SBP_DATA_DEF_VAL(0x07, "Threshold: 7 times")
2111 SBP_DATA_DEF_VAL(0x08, "Threshold: 8 times")
2112 SBP_DATA_DEF_VAL(0x09, "Threshold: 9 times")
2113 SBP_DATA_DEF_VAL(0x0A, "Threshold: 10 times")
2114 SBP_DATA_DEF_VAL(0x0B, "Threshold: 11 time")
2115 SBP_DATA_DEF_VAL(0x0C, "Threshold: 12 times")
2116 SBP_DATA_DEF_VAL(0x0D, "Threshold: 13 times")
2117 SBP_DATA_DEF_VAL(0x0E, "Threshold: 14 times")
2118 SBP_DATA_DEF_VAL(0x0F, "Threshold: 15 times")
2119 SBP_DATA_DEF_VAL(0x10, "Threshold: 16 times")
2120 SBP_DATA_DEF_VAL(0x11, "Threshold: 17 times")
2121 SBP_DATA_DEF_VAL(0x12, "Threshold: 18 times")
2122 SBP_DATA_DEF_VAL(0x13, "Threshold: 19 times")
2123 SBP_DATA_DEF_VAL(0x14, "Threshold: 20 times")
2124
2125#if defined(__IGNORE_IR_REDIRECT_TO_LTE_WHEN_NO_CELL__)
2126 SBP_DATA_DEFAULT_VAL(0x05)
2127#else
2128 SBP_DATA_DEFAULT_VAL(0x00)
2129#endif
2130 SBP_DATA_DEF_END
2131
2132 /*56~63*/
2133 /****** SBP Document BEGIN ************************************************************************
2134<SBP title="SBP_MCF_ETWS_CONTROL_SWITCH- MCF support for ETWS settings">
2135 <DESCRIPTION>
2136 <PARAG>
2137 This acts as bit map which controls ETWS settings.
2138 </PARAG>
2139 </DESCRIPTION>
2140 <CATEGORY>SMS</CATEGORY>
2141 <CONFIG>
2142 <VALUE value="0x00">ETWS is not controlled by MCF</VALUE>
2143 <VALUE value="0x07">ETWS is controlled by MCF</VALUE>
2144 </CONFIG>
2145 <DEFAULT>0x07</DEFAULT>
2146 <OP>N/A</OP>
2147 <DEPENDENCY>N/A</DEPENDENCY>
2148 <NOTE>N/A</NOTE>
2149 <AUTHOR>mtk15232</AUTHOR>
2150</SBP>
2151******* SBP Document END **************************************************************************/
2152 SBP_DATA_DEF(60,SBP_MCF_ETWS_CONTROL_SWITCH, SBP_ATTR_NONE, "ETWS MCF SETTINGS")
2153 SBP_DATA_DEF_VAL(0x00, "ETWS is not controlled by MCF")
2154 SBP_DATA_DEF_VAL(0x07, "ETWS is controlled by MCF")
2155 #if defined(__ETWS_CONTROLLED_BY_MCF__)
2156 SBP_DATA_DEFAULT_VAL(0x00)
2157 #else
2158 SBP_DATA_DEFAULT_VAL(0x07)
2159 #endif
2160 SBP_DATA_DEF_END
2161
2162 /****** SBP Document BEGIN ************************************************************************
2163<SBP title="SBP_POS_MODE_CAPABILITY_SWITCH - Switch the positioning mode in UE reporting AGPS/AGNSS positioning capability to NW">
2164 <DESCRIPTION>
2165 <PARAG>
2166 This SBP can switch the positioning mode in UE reporting AGPS/AGNSS positioning capability to NW.
2167 </PARAG>
2168 </DESCRIPTION>
2169 <CATEGORY>AGPS</CATEGORY>
2170 <CONFIG>
2171 <VALUE value="0x00">UE does not support AGPS/AGNSS</VALUE>
2172 <VALUE value="0x01">UE-Based</VALUE>
2173 <VALUE value="0x02">UE-Assisted</VALUE>
2174 <VALUE value="0x03">Both UE-Based and UE-Assisted</VALUE>
2175 </CONFIG>
2176 <DEFAULT>0x03</DEFAULT>
2177 <OP>N/A</OP>
2178 <DEPENDENCY>N/A</DEPENDENCY>
2179 <NOTE>N/A</NOTE>
2180 <AUTHOR>mtk15441</AUTHOR>
2181</SBP>
2182******* SBP Document END **************************************************************************/
2183 SBP_DATA_DEF(61, SBP_POS_MODE_CAPABILITY_SWITCH, SBP_ATTR_NONE, "Switch the positioning mode in UE reporting AGPS/AGNSS positioning capability to NW.")
2184
2185 SBP_DATA_DEF_VAL(0x00, "UE does not support AGPS/AGNSS")
2186 SBP_DATA_DEF_VAL(0x01, "UE-Based")
2187 SBP_DATA_DEF_VAL(0x02, "UE-Assisted")
2188 SBP_DATA_DEF_VAL(0x03, "Both UE-Based and UE-Assisted")
2189
2190#if defined(__AGPS_SUPPORT__)
2191 SBP_DATA_DEFAULT_VAL(0x03)
2192#else
2193 SBP_DATA_DEFAULT_VAL(0x00)
2194#endif
2195 SBP_DATA_DEF_END
2196
2197
2198
2199
2200/****** SBP Document BEGIN ************************************************************************
2201<SBP title="SBP_SMART_IDLE_MONITOR_LEVEL - Monitor level of Smart Idle feature">
2202 <DESCRIPTION>
2203 <PARAG>
2204 <LI>Monitor level determines how modem judges there is any data activity</LI>
2205 </PARAG>
2206 </DESCRIPTION>
2207 <CATEGORY>LTE AS</CATEGORY>
2208 <CONFIG>
2209 <VALUE value="0x00">Feature off</VALUE>
2210 <VALUE value="0x01">Monitor DRB only</VALUE>
2211 <VALUE value="0x02">Monitor SRB and DRB</VALUE>
2212 </CONFIG>
2213 <DEFAULT>0x01</DEFAULT>
2214 <OP>N/A</OP>
2215 <DEPENDENCY>N/A</DEPENDENCY>
2216 <NOTE>N/A</NOTE>
2217 <AUTHOR>mtk02713</AUTHOR>
2218</SBP>
2219******* SBP Document END **************************************************************************/
2220 SBP_DATA_DEF(62, SBP_SMART_IDLE_MONITOR_LEVEL, SBP_ATTR_NONE, "Monitor level of Smart Idle feature")
2221
2222 SBP_DATA_DEF_VAL(0x00, "Feature off")
2223 SBP_DATA_DEF_VAL(0x01, "Monitor DRB only")
2224 SBP_DATA_DEF_VAL(0x02, "Monitor SRB and DRB")
2225 SBP_DATA_DEFAULT_VAL(0x01)
2226 SBP_DATA_DEF_END
2227
2228/****** SBP Document BEGIN ************************************************************************
2229<SBP title="SBP_SMART_IDLE_MAXIMUM_T_RAND - Maximum value of T_rand of Smart Idle feature">
2230 <DESCRIPTION>
2231 <PARAG>
2232 <LI>This is upper bound of T_rand value of Smart Idle feature (in second)</LI>
2233 </PARAG>
2234 </DESCRIPTION>
2235 <CATEGORY>LTE AS</CATEGORY>
2236 <CONFIG>
2237 <VALUE value="0x00">0 second</VALUE>
2238 <VALUE value="0x01">1 second</VALUE>
2239 <VALUE value="0x02">2 seconds</VALUE>
2240 <VALUE value="...">....</VALUE>
2241 <VALUE value="0x30">30 seconds</VALUE>
2242 </CONFIG>
2243 <DEFAULT>0x02</DEFAULT>
2244 <OP>N/A</OP>
2245 <DEPENDENCY>N/A</DEPENDENCY>
2246 <NOTE>N/A</NOTE>
2247 <AUTHOR>mtk02713</AUTHOR>
2248</SBP>
2249******* SBP Document END **************************************************************************/
2250 SBP_DATA_DEF(63, SBP_SMART_IDLE_MAXIMUM_T_RAND, SBP_ATTR_NONE, "Maximum value of T_rand of Smart Idle feature")
2251
2252 SBP_DATA_DEF_VAL(0x00, "0 second")
2253 SBP_DATA_DEF_VAL(0x01, "1 second")
2254 SBP_DATA_DEF_VAL(0x02, "2 seconds")
2255 SBP_DATA_DEF_VAL(0x03, "3 seconds")
2256 SBP_DATA_DEF_VAL(0x04, "4 seconds")
2257 SBP_DATA_DEF_VAL(0x05, "5 seconds")
2258 SBP_DATA_DEF_VAL(0x06, "6 seconds")
2259 SBP_DATA_DEF_VAL(0x07, "7 seconds")
2260 SBP_DATA_DEF_VAL(0x08, "8 seconds")
2261 SBP_DATA_DEF_VAL(0x09, "9 seconds")
2262 SBP_DATA_DEF_VAL(0x010, "10 seconds")
2263 SBP_DATA_DEF_VAL(0x011, "11 seconds")
2264 SBP_DATA_DEF_VAL(0x012, "12 seconds")
2265 SBP_DATA_DEF_VAL(0x013, "13 seconds")
2266 SBP_DATA_DEF_VAL(0x014, "14 seconds")
2267 SBP_DATA_DEF_VAL(0x015, "15 seconds")
2268 SBP_DATA_DEF_VAL(0x016, "16 seconds")
2269 SBP_DATA_DEF_VAL(0x017, "17 seconds")
2270 SBP_DATA_DEF_VAL(0x018, "18 seconds")
2271 SBP_DATA_DEF_VAL(0x019, "19 seconds")
2272 SBP_DATA_DEF_VAL(0x020, "20 seconds")
2273 SBP_DATA_DEF_VAL(0x021, "21 seconds")
2274 SBP_DATA_DEF_VAL(0x022, "22 seconds")
2275 SBP_DATA_DEF_VAL(0x023, "23 seconds")
2276 SBP_DATA_DEF_VAL(0x024, "24 seconds")
2277 SBP_DATA_DEF_VAL(0x025, "25 seconds")
2278 SBP_DATA_DEF_VAL(0x026, "26 seconds")
2279 SBP_DATA_DEF_VAL(0x027, "27 seconds")
2280 SBP_DATA_DEF_VAL(0x028, "28 seconds")
2281 SBP_DATA_DEF_VAL(0x029, "29 seconds")
2282 SBP_DATA_DEF_VAL(0x030, "30 seconds")
2283 SBP_DATA_DEFAULT_VAL(0x02)
2284 SBP_DATA_DEF_END
2285
2286/*64~71*/
2287/****** SBP Document BEGIN ************************************************************************
2288<SBP title="SBP_SMART_IDLE_T_WAIT - Value of T_wait of Smart Idle feature">
2289 <DESCRIPTION>
2290 <PARAG>
2291 <LI>T_wait value of Smart Idle feature (in second)</LI>
2292 </PARAG>
2293 </DESCRIPTION>
2294 <CATEGORY>LTE AS</CATEGORY>
2295 <CONFIG>
2296 <VALUE value="0x00">0 second</VALUE>
2297 <VALUE value="0x01">1 second</VALUE>
2298 <VALUE value="0x02">2 seconds</VALUE>
2299 <VALUE value="...">....</VALUE>
2300 <VALUE value="0x30">30 seconds</VALUE>
2301 </CONFIG>
2302 <DEFAULT>0x02</DEFAULT>
2303 <OP>N/A</OP>
2304 <DEPENDENCY>N/A</DEPENDENCY>
2305 <NOTE>N/A</NOTE>
2306 <AUTHOR>mtk02713</AUTHOR>
2307</SBP>
2308******* SBP Document END **************************************************************************/
2309 SBP_DATA_DEF(64, SBP_SMART_IDLE_T_WAIT, SBP_ATTR_NONE, "Value of T_wait of Smart Idle feature")
2310
2311 SBP_DATA_DEF_VAL(0x00, "0 second")
2312 SBP_DATA_DEF_VAL(0x01, "1 second")
2313 SBP_DATA_DEF_VAL(0x02, "2 seconds")
2314 SBP_DATA_DEF_VAL(0x03, "3 seconds")
2315 SBP_DATA_DEF_VAL(0x04, "4 seconds")
2316 SBP_DATA_DEF_VAL(0x05, "5 seconds")
2317 SBP_DATA_DEF_VAL(0x06, "6 seconds")
2318 SBP_DATA_DEF_VAL(0x07, "7 seconds")
2319 SBP_DATA_DEF_VAL(0x08, "8 seconds")
2320 SBP_DATA_DEF_VAL(0x09, "9 seconds")
2321 SBP_DATA_DEF_VAL(0x010, "10 seconds")
2322 SBP_DATA_DEF_VAL(0x011, "11 seconds")
2323 SBP_DATA_DEF_VAL(0x012, "12 seconds")
2324 SBP_DATA_DEF_VAL(0x013, "13 seconds")
2325 SBP_DATA_DEF_VAL(0x014, "14 seconds")
2326 SBP_DATA_DEF_VAL(0x015, "15 seconds")
2327 SBP_DATA_DEF_VAL(0x016, "16 seconds")
2328 SBP_DATA_DEF_VAL(0x017, "17 seconds")
2329 SBP_DATA_DEF_VAL(0x018, "18 seconds")
2330 SBP_DATA_DEF_VAL(0x019, "19 seconds")
2331 SBP_DATA_DEF_VAL(0x020, "20 seconds")
2332 SBP_DATA_DEF_VAL(0x021, "21 seconds")
2333 SBP_DATA_DEF_VAL(0x022, "22 seconds")
2334 SBP_DATA_DEF_VAL(0x023, "23 seconds")
2335 SBP_DATA_DEF_VAL(0x024, "24 seconds")
2336 SBP_DATA_DEF_VAL(0x025, "25 seconds")
2337 SBP_DATA_DEF_VAL(0x026, "26 seconds")
2338 SBP_DATA_DEF_VAL(0x027, "27 seconds")
2339 SBP_DATA_DEF_VAL(0x028, "28 seconds")
2340 SBP_DATA_DEF_VAL(0x029, "29 seconds")
2341 SBP_DATA_DEF_VAL(0x030, "30 seconds")
2342 SBP_DATA_DEFAULT_VAL(0x02)
2343 SBP_DATA_DEF_END
2344
2345/****** SBP Document BEGIN ************************************************************************
2346<SBP title="SBP_EAS_POWER_LEVEL_IND_PERIOD_IN_MS_IDLE - Control POWER_LEVEL_IND sending frequency in idle by SBP_ID">
2347 <DESCRIPTION>
2348 <PARAG>
2349 This SBP controls the POWER_LEVEL_IND sending frequency in idle mode.
2350 </PARAG>
2351 </DESCRIPTION>
2352 <CATEGORY>ERRC</CATEGORY>
2353 <CONFIG>
2354 <VALUE value="0x00">1000 ms</VALUE>
2355 <VALUE value="0x01">1500 ms</VALUE>
2356 <VALUE value="0x02">2000 ms</VALUE>
2357 <VALUE value="...">...</VALUE>
2358 <VALUE value="0x12">10000 ms</VALUE>
2359 </CONFIG>
2360 <DEFAULT>0x08</DEFAULT>
2361 <OP>N/A</OP>
2362 <DEPENDENCY>N/A</DEPENDENCY>
2363 <NOTE>N/A</NOTE>
2364 <AUTHOR>mtk15708</AUTHOR>
2365</SBP>
2366******* SBP Document END **************************************************************************/
2367 SBP_DATA_DEF(65, SBP_EAS_POWER_LEVEL_IND_PERIOD_IDLE, SBP_ATTR_NONE, "Control POWER_LEVEL_IND sending frequency in idle by SBP_ID.")
2368
2369 SBP_DATA_DEF_VAL(0x00, "EAS_POWER_LEVEL_IND_PERIOD_CONN 1000")
2370 SBP_DATA_DEF_VAL(0x01, "EAS_POWER_LEVEL_IND_PERIOD_CONN 1500")
2371 SBP_DATA_DEF_VAL(0x02, "EAS_POWER_LEVEL_IND_PERIOD_CONN 2000")
2372 SBP_DATA_DEF_VAL(0x03, "EAS_POWER_LEVEL_IND_PERIOD_CONN 2500")
2373 SBP_DATA_DEF_VAL(0x04, "EAS_POWER_LEVEL_IND_PERIOD_CONN 3000")
2374 SBP_DATA_DEF_VAL(0x05, "EAS_POWER_LEVEL_IND_PERIOD_CONN 3500")
2375 SBP_DATA_DEF_VAL(0x06, "EAS_POWER_LEVEL_IND_PERIOD_CONN 4000")
2376 SBP_DATA_DEF_VAL(0x07, "EAS_POWER_LEVEL_IND_PERIOD_CONN 4500")
2377 SBP_DATA_DEF_VAL(0x08, "EAS_POWER_LEVEL_IND_PERIOD_CONN 5000")
2378 SBP_DATA_DEF_VAL(0x09, "EAS_POWER_LEVEL_IND_PERIOD_CONN 5500")
2379 SBP_DATA_DEF_VAL(0x0a, "EAS_POWER_LEVEL_IND_PERIOD_CONN 6000")
2380 SBP_DATA_DEF_VAL(0x0b, "EAS_POWER_LEVEL_IND_PERIOD_CONN 6500")
2381 SBP_DATA_DEF_VAL(0x0c, "EAS_POWER_LEVEL_IND_PERIOD_CONN 7000")
2382 SBP_DATA_DEF_VAL(0x0d, "EAS_POWER_LEVEL_IND_PERIOD_CONN 7500")
2383 SBP_DATA_DEF_VAL(0x0e, "EAS_POWER_LEVEL_IND_PERIOD_CONN 8000")
2384 SBP_DATA_DEF_VAL(0x0f, "EAS_POWER_LEVEL_IND_PERIOD_CONN 8500")
2385 SBP_DATA_DEF_VAL(0x10, "EAS_POWER_LEVEL_IND_PERIOD_CONN 9000")
2386 SBP_DATA_DEF_VAL(0x11, "EAS_POWER_LEVEL_IND_PERIOD_CONN 9500")
2387 SBP_DATA_DEF_VAL(0x12, "EAS_POWER_LEVEL_IND_PERIOD_CONN 10000")
2388
2389#if defined(__TC10__)
2390 SBP_DATA_DEFAULT_VAL(0x00)
2391#else
2392 SBP_DATA_DEFAULT_VAL(0x08)
2393#endif
2394 SBP_DATA_DEF_END
2395
2396/****** SBP Document BEGIN ************************************************************************
2397<SBP title="SBP_EAS_POWER_LEVEL_IND_PERIOD_IN_MS_CONN - Control POWER_LEVEL_IND sending frequency in connected by SBP_ID">
2398 <DESCRIPTION>
2399 <PARAG>
2400 This SBP controls the POWER_LEVEL_IND sending frequency in connected mode.
2401 </PARAG>
2402 </DESCRIPTION>
2403 <CATEGORY>ERRC</CATEGORY>
2404 <CONFIG>
2405 <VALUE value="0x00">1000 ms</VALUE>
2406 <VALUE value="0x01">1500 ms</VALUE>
2407 <VALUE value="0x02">2000 ms</VALUE>
2408 <VALUE value="...">...</VALUE>
2409 <VALUE value="0x12">10000 ms</VALUE>
2410 </CONFIG>
2411 <DEFAULT>0x03</DEFAULT>
2412 <OP>N/A</OP>
2413 <DEPENDENCY>N/A</DEPENDENCY>
2414 <NOTE>N/A</NOTE>
2415 <AUTHOR>mtk15708</AUTHOR>
2416</SBP>
2417******* SBP Document END **************************************************************************/
2418 SBP_DATA_DEF(66, SBP_EAS_POWER_LEVEL_IND_PERIOD_CONN, SBP_ATTR_NONE, "Control POWER_LEVEL_IND sending frequency in connected by SBP_ID.")
2419
2420 SBP_DATA_DEF_VAL(0x00, "EAS_POWER_LEVEL_IND_PERIOD_CONN 1000")
2421 SBP_DATA_DEF_VAL(0x01, "EAS_POWER_LEVEL_IND_PERIOD_CONN 1500")
2422 SBP_DATA_DEF_VAL(0x02, "EAS_POWER_LEVEL_IND_PERIOD_CONN 2000")
2423 SBP_DATA_DEF_VAL(0x03, "EAS_POWER_LEVEL_IND_PERIOD_CONN 2500")
2424 SBP_DATA_DEF_VAL(0x04, "EAS_POWER_LEVEL_IND_PERIOD_CONN 3000")
2425 SBP_DATA_DEF_VAL(0x05, "EAS_POWER_LEVEL_IND_PERIOD_CONN 3500")
2426 SBP_DATA_DEF_VAL(0x06, "EAS_POWER_LEVEL_IND_PERIOD_CONN 4000")
2427 SBP_DATA_DEF_VAL(0x07, "EAS_POWER_LEVEL_IND_PERIOD_CONN 4500")
2428 SBP_DATA_DEF_VAL(0x08, "EAS_POWER_LEVEL_IND_PERIOD_CONN 5000")
2429 SBP_DATA_DEF_VAL(0x09, "EAS_POWER_LEVEL_IND_PERIOD_CONN 5500")
2430 SBP_DATA_DEF_VAL(0x0a, "EAS_POWER_LEVEL_IND_PERIOD_CONN 6000")
2431 SBP_DATA_DEF_VAL(0x0b, "EAS_POWER_LEVEL_IND_PERIOD_CONN 6500")
2432 SBP_DATA_DEF_VAL(0x0c, "EAS_POWER_LEVEL_IND_PERIOD_CONN 7000")
2433 SBP_DATA_DEF_VAL(0x0d, "EAS_POWER_LEVEL_IND_PERIOD_CONN 7500")
2434 SBP_DATA_DEF_VAL(0x0e, "EAS_POWER_LEVEL_IND_PERIOD_CONN 8000")
2435 SBP_DATA_DEF_VAL(0x0f, "EAS_POWER_LEVEL_IND_PERIOD_CONN 8500")
2436 SBP_DATA_DEF_VAL(0x10, "EAS_POWER_LEVEL_IND_PERIOD_CONN 9000")
2437 SBP_DATA_DEF_VAL(0x11, "EAS_POWER_LEVEL_IND_PERIOD_CONN 9500")
2438 SBP_DATA_DEF_VAL(0x12, "EAS_POWER_LEVEL_IND_PERIOD_CONN 10000")
2439
2440#if defined(__TC10__)
2441 SBP_DATA_DEFAULT_VAL(0x00)
2442#else
2443 SBP_DATA_DEFAULT_VAL(0x03)
2444#endif
2445 SBP_DATA_DEF_END
2446
2447/****** SBP Document BEGIN ************************************************************************
2448<SBP title="SBP_SIM_POLL_TIMER_VALUE- SIM Poll timer value">
2449 <DESCRIPTION>
2450 <PARAG>As per ETSI 102.221 clause 14.6.2 and 3GPP 31.102 clause 5.1.9, the terminal shall
2451 send STATUS command to UICC within 30 seconds of inactivity. As per current implementation
2452 UE uses default timer value set as 26.5 seconds.</PARAG>
2453 <PARAG>It is up to the UE implementation to choose timer value within 30 seconds.</PARAG>
2454 <PARAG>Since this timer value is up to UE implementation, we provide this SBP for customization.</PARAG>
2455 </DESCRIPTION>
2456 <CATEGORY>SIM_SAT</CATEGORY>
2457 <DEFAULT>0x00</DEFAULT>
2458 <OP>N/A</OP>
2459 <DEPENDENCY>N/A</DEPENDENCY>
2460 <NOTE>For Softbank requirement, this value needs to set to 30 seconds.</NOTE>
2461 <AUTHOR>mtk10708</AUTHOR>
2462</SBP>
2463******* SBP Document END **************************************************************************/
2464 SBP_DATA_DEF(67, SBP_SIM_POLL_TIMER_VALUE, SBP_ATTR_NONE, "SIM Poll timer value")
2465 SBP_DATA_DEF_VAL(0x00, "Feature Disabled")
2466 SBP_DATA_DEF_VAL(0x19, "25 seconds")
2467 SBP_DATA_DEF_VAL(0x1a, "26 seconds")
2468 SBP_DATA_DEF_VAL(0x1b, "27 seconds")
2469 SBP_DATA_DEF_VAL(0x1c, "28 seconds")
2470 SBP_DATA_DEF_VAL(0x1d, "29 seconds")
2471 SBP_DATA_DEF_VAL(0x1e, "30 seconds")
2472 SBP_DATA_DEFAULT_VAL(0x00)
2473 SBP_DATA_DEF_END
2474
2475/****** SBP Document BEGIN ************************************************************************
2476<SBP title="SBP_IDC_TDM_LTE_WINDOW">
2477 <DESCRIPTION>
2478 <PARAG>
2479 The value is applied to LTE TDM window duration after CONSYS notifies LTE to do TDM solution.
2480 </PARAG>
2481 </DESCRIPTION>
2482 <CATEGORY>EAS</CATEGORY>
2483 <CONFIG>
2484 <VALUE value="10">LTE TDM window duration is set to 10 ms</VALUE>
2485 <VALUE value="20">LTE TDM window duration is set to 20 ms</VALUE>
2486 <VALUE value="30">LTE TDM window duration is set to 30 ms</VALUE>
2487 <VALUE value="40">LTE TDM window duration is set to 40 ms</VALUE>
2488 <VALUE value="50">LTE TDM window duration is set to 50 ms</VALUE>
2489 <VALUE value="60">LTE TDM window duration is set to 60 ms</VALUE>
2490 <VALUE value="70">LTE TDM window duration is set to 70 ms</VALUE>
2491 <VALUE value="80">LTE TDM window duration is set to 80 ms</VALUE>
2492 <VALUE value="90">LTE TDM window duration is set to 90 ms</VALUE>
2493 <VALUE value="100">LTE TDM window duration is set to 100 ms</VALUE>
2494 <VALUE value="110">LTE TDM window duration is set to 110 ms</VALUE>
2495 <VALUE value="120">LTE TDM window duration is set to 120 ms</VALUE>
2496 <VALUE value="130">LTE TDM window duration is set to 130 ms</VALUE>
2497 <VALUE value="140">LTE TDM window duration is set to 140 ms</VALUE>
2498 <VALUE value="150">LTE TDM window duration is set to 150 ms</VALUE>
2499 <VALUE value="160">LTE TDM window duration is set to 160 ms</VALUE>
2500 <VALUE value="170">LTE TDM window duration is set to 170 ms</VALUE>
2501 <VALUE value="180">LTE TDM window duration is set to 180 ms</VALUE>
2502 <VALUE value="190">LTE TDM window duration is set to 190 ms</VALUE>
2503 <VALUE value="200">LTE TDM window duration is set to 200 ms</VALUE>
2504 </CONFIG>
2505 <DEFAULT>100 (LTE TDM window is 100 ms when CONSYS notifies LTE to do TDM solution)</DEFAULT>
2506 <OP>
2507 N/A
2508 </OP>
2509 <DEPENDENCY>
2510 N/A
2511 </DEPENDENCY>
2512 <NOTE>
2513 N/A
2514 </NOTE>
2515 <AUTHOR>mtk13042</AUTHOR>
2516</SBP>
2517******* SBP Document END **************************************************************************/
2518 SBP_DATA_DEF(68, SBP_IDC_TDM_LTE_WINDOW, SBP_ATTR_NONE, "Set LTE TDM window duration when IDC is enabled")
2519 SBP_DATA_DEF_VAL(0x0a, "LTE_WINDOW_10")
2520 SBP_DATA_DEF_VAL(0x14, "LTE_WINDOW_20")
2521 SBP_DATA_DEF_VAL(0x1e, "LTE_WINDOW_30")
2522 SBP_DATA_DEF_VAL(0x28, "LTE_WINDOW_40")
2523 SBP_DATA_DEF_VAL(0x32, "LTE_WINDOW_50")
2524 SBP_DATA_DEF_VAL(0x3c, "LTE_WINDOW_60")
2525 SBP_DATA_DEF_VAL(0x46, "LTE_WINDOW_70")
2526 SBP_DATA_DEF_VAL(0x50, "LTE_WINDOW_80")
2527 SBP_DATA_DEF_VAL(0x5a, "LTE_WINDOW_90")
2528 SBP_DATA_DEF_VAL(0x64, "LTE_WINDOW_100")
2529 SBP_DATA_DEF_VAL(0x6e, "LTE_WINDOW_110")
2530 SBP_DATA_DEF_VAL(0x78, "LTE_WINDOW_120")
2531 SBP_DATA_DEF_VAL(0x82, "LTE_WINDOW_130")
2532 SBP_DATA_DEF_VAL(0x8c, "LTE_WINDOW_140")
2533 SBP_DATA_DEF_VAL(0x96, "LTE_WINDOW_150")
2534 SBP_DATA_DEF_VAL(0xa0, "LTE_WINDOW_160")
2535 SBP_DATA_DEF_VAL(0xaa, "LTE_WINDOW_170")
2536 SBP_DATA_DEF_VAL(0xb4, "LTE_WINDOW_180")
2537 SBP_DATA_DEF_VAL(0xbe, "LTE_WINDOW_190")
2538 SBP_DATA_DEF_VAL(0xc8, "LTE_WINDOW_200")
2539 SBP_DATA_DEFAULT_VAL(0x64)
2540 SBP_DATA_DEF_END
2541
2542/****** SBP Document BEGIN ************************************************************************
2543<SBP title="SBP_IDC_TDM_LTE_CONSYS_WINDOW">
2544 <DESCRIPTION>
2545 <PARAG>
2546 The value is applied to CONSYS TDM window duration after CONSYS notifies LTE to do TDM solution.
2547 </PARAG>
2548 </DESCRIPTION>
2549 <CATEGORY>EAS</CATEGORY>
2550 <CONFIG>
2551 <VALUE value="10">CONSYS TDM window duration is set to 10 ms</VALUE>
2552 <VALUE value="20">CONSYS TDM window duration is set to 20 ms</VALUE>
2553 <VALUE value="30">CONSYS TDM window duration is set to 30 ms</VALUE>
2554 <VALUE value="40">CONSYS TDM window duration is set to 40 ms</VALUE>
2555 <VALUE value="50">CONSYS TDM window duration is set to 50 ms</VALUE>
2556 <VALUE value="60">CONSYS TDM window duration is set to 60 ms</VALUE>
2557 <VALUE value="70">CONSYS TDM window duration is set to 70 ms</VALUE>
2558 <VALUE value="80">CONSYS TDM window duration is set to 80 ms</VALUE>
2559 <VALUE value="90">CONSYS TDM window duration is set to 90 ms</VALUE>
2560 <VALUE value="100">CONSYS TDM window duration is set to 100 ms</VALUE>
2561 <VALUE value="110">CONSYS TDM window duration is set to 110 ms</VALUE>
2562 <VALUE value="120">CONSYS TDM window duration is set to 120 ms</VALUE>
2563 <VALUE value="130">CONSYS TDM window duration is set to 130 ms</VALUE>
2564 <VALUE value="140">CONSYS TDM window duration is set to 140 ms</VALUE>
2565 <VALUE value="150">CONSYS TDM window duration is set to 150 ms</VALUE>
2566 <VALUE value="160">CONSYS TDM window duration is set to 160 ms</VALUE>
2567 <VALUE value="170">CONSYS TDM window duration is set to 170 ms</VALUE>
2568 <VALUE value="180">CONSYS TDM window duration is set to 180 ms</VALUE>
2569 <VALUE value="190">CONSYS TDM window duration is set to 190 ms</VALUE>
2570 <VALUE value="200">CONSYS TDM window duration is set to 200 ms</VALUE>
2571 </CONFIG>
2572 <DEFAULT>120 (CONSYS TDM window is 120 ms when CONSYS notifies LTE to do TDM solution)</DEFAULT>
2573 <OP>
2574 N/A
2575 </OP>
2576 <DEPENDENCY>
2577 N/A
2578 </DEPENDENCY>
2579 <NOTE>
2580 N/A
2581 </NOTE>
2582 <AUTHOR>mtk13042</AUTHOR>
2583</SBP>
2584******* SBP Document END **************************************************************************/
2585 SBP_DATA_DEF(69, SBP_IDC_TDM_LTE_CONSYS_WINDOW, SBP_ATTR_NONE, "Set CONSYS TDM window duration with LTE when IDC is enabled")
2586 SBP_DATA_DEF_VAL(0x0a, "LTE_CONSYS_WINDOW_10")
2587 SBP_DATA_DEF_VAL(0x14, "LTE_CONSYS_WINDOW_20")
2588 SBP_DATA_DEF_VAL(0x1e, "LTE_CONSYS_WINDOW_30")
2589 SBP_DATA_DEF_VAL(0x28, "LTE_CONSYS_WINDOW_40")
2590 SBP_DATA_DEF_VAL(0x32, "LTE_CONSYS_WINDOW_50")
2591 SBP_DATA_DEF_VAL(0x3c, "LTE_CONSYS_WINDOW_60")
2592 SBP_DATA_DEF_VAL(0x46, "LTE_CONSYS_WINDOW_70")
2593 SBP_DATA_DEF_VAL(0x50, "LTE_CONSYS_WINDOW_80")
2594 SBP_DATA_DEF_VAL(0x5a, "LTE_CONSYS_WINDOW_90")
2595 SBP_DATA_DEF_VAL(0x64, "LTE_CONSYS_WINDOW_100")
2596 SBP_DATA_DEF_VAL(0x6e, "LTE_CONSYS_WINDOW_110")
2597 SBP_DATA_DEF_VAL(0x78, "LTE_CONSYS_WINDOW_120")
2598 SBP_DATA_DEF_VAL(0x82, "LTE_CONSYS_WINDOW_130")
2599 SBP_DATA_DEF_VAL(0x8c, "LTE_CONSYS_WINDOW_140")
2600 SBP_DATA_DEF_VAL(0x96, "LTE_CONSYS_WINDOW_150")
2601 SBP_DATA_DEF_VAL(0xa0, "LTE_CONSYS_WINDOW_160")
2602 SBP_DATA_DEF_VAL(0xaa, "LTE_CONSYS_WINDOW_170")
2603 SBP_DATA_DEF_VAL(0xb4, "LTE_CONSYS_WINDOW_180")
2604 SBP_DATA_DEF_VAL(0xbe, "LTE_CONSYS_WINDOW_190")
2605 SBP_DATA_DEF_VAL(0xc8, "LTE_CONSYS_WINDOW_200")
2606 SBP_DATA_DEFAULT_VAL(0x78)
2607 SBP_DATA_DEF_END
2608
2609/****** SBP Document BEGIN ************************************************************************
2610<SBP title="SBP_IDC_TDM_NR_WINDOW">
2611 <DESCRIPTION>
2612 <PARAG>
2613 The value is applied to NR TDM window duration after CONSYS notifies NR to do TDM solution.
2614 </PARAG>
2615 </DESCRIPTION>
2616 <CATEGORY>EAS</CATEGORY>
2617 <CONFIG>
2618 <VALUE value="10">NR TDM window duration is set to 10 ms</VALUE>
2619 <VALUE value="20">NR TDM window duration is set to 20 ms</VALUE>
2620 <VALUE value="30">NR TDM window duration is set to 30 ms</VALUE>
2621 <VALUE value="40">NR TDM window duration is set to 40 ms</VALUE>
2622 <VALUE value="50">NR TDM window duration is set to 50 ms</VALUE>
2623 <VALUE value="60">NR TDM window duration is set to 60 ms</VALUE>
2624 <VALUE value="70">NR TDM window duration is set to 70 ms</VALUE>
2625 <VALUE value="80">NR TDM window duration is set to 80 ms</VALUE>
2626 <VALUE value="90">NR TDM window duration is set to 90 ms</VALUE>
2627 <VALUE value="100">NR TDM window duration is set to 100 ms</VALUE>
2628 <VALUE value="110">NR TDM window duration is set to 110 ms</VALUE>
2629 <VALUE value="120">NR TDM window duration is set to 120 ms</VALUE>
2630 <VALUE value="130">NR TDM window duration is set to 130 ms</VALUE>
2631 <VALUE value="140">NR TDM window duration is set to 140 ms</VALUE>
2632 <VALUE value="150">NR TDM window duration is set to 150 ms</VALUE>
2633 <VALUE value="160">NR TDM window duration is set to 160 ms</VALUE>
2634 <VALUE value="170">NR TDM window duration is set to 170 ms</VALUE>
2635 <VALUE value="180">NR TDM window duration is set to 180 ms</VALUE>
2636 <VALUE value="190">NR TDM window duration is set to 190 ms</VALUE>
2637 <VALUE value="200">NR TDM window duration is set to 200 ms</VALUE>
2638 </CONFIG>
2639 <DEFAULT>100 (NR TDM window is 100 ms when CONSYS notifies NR to do TDM solution)</DEFAULT>
2640 <OP>
2641 N/A
2642 </OP>
2643 <DEPENDENCY>
2644 N/A
2645 </DEPENDENCY>
2646 <NOTE>
2647 N/A
2648 </NOTE>
2649 <AUTHOR>mtk13042</AUTHOR>
2650</SBP>
2651******* SBP Document END **************************************************************************/
2652 SBP_DATA_DEF(70, SBP_IDC_TDM_NR_WINDOW, SBP_ATTR_NONE, "Set NR TDM window duration when IDC is enabled")
2653 SBP_DATA_DEF_VAL(0x0a, "NR_WINDOW_10")
2654 SBP_DATA_DEF_VAL(0x14, "NR_WINDOW_20")
2655 SBP_DATA_DEF_VAL(0x1e, "NR_WINDOW_30")
2656 SBP_DATA_DEF_VAL(0x28, "NR_WINDOW_40")
2657 SBP_DATA_DEF_VAL(0x32, "NR_WINDOW_50")
2658 SBP_DATA_DEF_VAL(0x3c, "NR_WINDOW_60")
2659 SBP_DATA_DEF_VAL(0x46, "NR_WINDOW_70")
2660 SBP_DATA_DEF_VAL(0x50, "NR_WINDOW_80")
2661 SBP_DATA_DEF_VAL(0x5a, "NR_WINDOW_90")
2662 SBP_DATA_DEF_VAL(0x64, "NR_WINDOW_100")
2663 SBP_DATA_DEF_VAL(0x6e, "NR_WINDOW_110")
2664 SBP_DATA_DEF_VAL(0x78, "NR_WINDOW_120")
2665 SBP_DATA_DEF_VAL(0x82, "NR_WINDOW_130")
2666 SBP_DATA_DEF_VAL(0x8c, "NR_WINDOW_140")
2667 SBP_DATA_DEF_VAL(0x96, "NR_WINDOW_150")
2668 SBP_DATA_DEF_VAL(0xa0, "NR_WINDOW_160")
2669 SBP_DATA_DEF_VAL(0xaa, "NR_WINDOW_170")
2670 SBP_DATA_DEF_VAL(0xb4, "NR_WINDOW_180")
2671 SBP_DATA_DEF_VAL(0xbe, "NR_WINDOW_190")
2672 SBP_DATA_DEF_VAL(0xc8, "NR_WINDOW_200")
2673 SBP_DATA_DEFAULT_VAL(0x64)
2674 SBP_DATA_DEF_END
2675
2676/****** SBP Document BEGIN ************************************************************************
2677<SBP title="SBP_IDC_TDM_NR_CONSYS_WINDOW">
2678 <DESCRIPTION>
2679 <PARAG>
2680 The value is applied to CONSYS TDM window duration after CONSYS notifies NR to do TDM solution.
2681 </PARAG>
2682 </DESCRIPTION>
2683 <CATEGORY>EAS</CATEGORY>
2684 <CONFIG>
2685 <VALUE value="10">CONSYS TDM window duration is set to 10 ms</VALUE>
2686 <VALUE value="20">CONSYS TDM window duration is set to 20 ms</VALUE>
2687 <VALUE value="30">CONSYS TDM window duration is set to 30 ms</VALUE>
2688 <VALUE value="40">CONSYS TDM window duration is set to 40 ms</VALUE>
2689 <VALUE value="50">CONSYS TDM window duration is set to 50 ms</VALUE>
2690 <VALUE value="60">CONSYS TDM window duration is set to 60 ms</VALUE>
2691 <VALUE value="70">CONSYS TDM window duration is set to 70 ms</VALUE>
2692 <VALUE value="80">CONSYS TDM window duration is set to 80 ms</VALUE>
2693 <VALUE value="90">CONSYS TDM window duration is set to 90 ms</VALUE>
2694 <VALUE value="100">CONSYS TDM window duration is set to 100 ms</VALUE>
2695 <VALUE value="110">CONSYS TDM window duration is set to 110 ms</VALUE>
2696 <VALUE value="120">CONSYS TDM window duration is set to 120 ms</VALUE>
2697 <VALUE value="130">CONSYS TDM window duration is set to 130 ms</VALUE>
2698 <VALUE value="140">CONSYS TDM window duration is set to 140 ms</VALUE>
2699 <VALUE value="150">CONSYS TDM window duration is set to 150 ms</VALUE>
2700 <VALUE value="160">CONSYS TDM window duration is set to 160 ms</VALUE>
2701 <VALUE value="170">CONSYS TDM window duration is set to 170 ms</VALUE>
2702 <VALUE value="180">CONSYS TDM window duration is set to 180 ms</VALUE>
2703 <VALUE value="190">CONSYS TDM window duration is set to 190 ms</VALUE>
2704 <VALUE value="200">CONSYS TDM window duration is set to 200 ms</VALUE>
2705 </CONFIG>
2706 <DEFAULT>120 (CONSYS TDM window is 120 ms when CONSYS notifies NR to do TDM solution)</DEFAULT>
2707 <OP>
2708 N/A
2709 </OP>
2710 <DEPENDENCY>
2711 N/A
2712 </DEPENDENCY>
2713 <NOTE>
2714 N/A
2715 </NOTE>
2716 <AUTHOR>mtk13042</AUTHOR>
2717</SBP>
2718******* SBP Document END **************************************************************************/
2719 SBP_DATA_DEF(71, SBP_IDC_TDM_NR_CONSYS_WINDOW, SBP_ATTR_NONE, "Set CONSYS TDM window duration with NR when IDC is enabled")
2720 SBP_DATA_DEF_VAL(0x0a, "NR_CONSYS_WINDOW_10")
2721 SBP_DATA_DEF_VAL(0x14, "NR_CONSYS_WINDOW_20")
2722 SBP_DATA_DEF_VAL(0x1e, "NR_CONSYS_WINDOW_30")
2723 SBP_DATA_DEF_VAL(0x28, "NR_CONSYS_WINDOW_40")
2724 SBP_DATA_DEF_VAL(0x32, "NR_CONSYS_WINDOW_50")
2725 SBP_DATA_DEF_VAL(0x3c, "NR_CONSYS_WINDOW_60")
2726 SBP_DATA_DEF_VAL(0x46, "NR_CONSYS_WINDOW_70")
2727 SBP_DATA_DEF_VAL(0x50, "NR_CONSYS_WINDOW_80")
2728 SBP_DATA_DEF_VAL(0x5a, "NR_CONSYS_WINDOW_90")
2729 SBP_DATA_DEF_VAL(0x64, "NR_CONSYS_WINDOW_100")
2730 SBP_DATA_DEF_VAL(0x6e, "NR_CONSYS_WINDOW_110")
2731 SBP_DATA_DEF_VAL(0x78, "NR_CONSYS_WINDOW_120")
2732 SBP_DATA_DEF_VAL(0x82, "NR_CONSYS_WINDOW_130")
2733 SBP_DATA_DEF_VAL(0x8c, "NR_CONSYS_WINDOW_140")
2734 SBP_DATA_DEF_VAL(0x96, "NR_CONSYS_WINDOW_150")
2735 SBP_DATA_DEF_VAL(0xa0, "NR_CONSYS_WINDOW_160")
2736 SBP_DATA_DEF_VAL(0xaa, "NR_CONSYS_WINDOW_170")
2737 SBP_DATA_DEF_VAL(0xb4, "NR_CONSYS_WINDOW_180")
2738 SBP_DATA_DEF_VAL(0xbe, "NR_CONSYS_WINDOW_190")
2739 SBP_DATA_DEF_VAL(0xc8, "NR_CONSYS_WINDOW_200")
2740 SBP_DATA_DEFAULT_VAL(0x78)
2741 SBP_DATA_DEF_END
2742
2743
2744/*72~79*/
2745/****** SBP Document BEGIN ************************************************************************
2746<SBP title="SBP_IDC_IM_NR_TX_PWR">
2747 <DESCRIPTION>
2748 <PARAG>
2749 The value is applied to NR Tx max power after CONSYS notifies NR to reduce Tx max power
2750 </PARAG>
2751 </DESCRIPTION>
2752 <CATEGORY>EAS</CATEGORY>
2753 <CONFIG>
2754 <VALUE value="1">NR max Tx power is set to 1 dBm</VALUE>
2755 <VALUE value="2">NR max Tx power is set to 2 dBm</VALUE>
2756 <VALUE value="3">NR max Tx power is set to 3 dBm</VALUE>
2757 <VALUE value="4">NR max Tx power is set to 4 dBm</VALUE>
2758 <VALUE value="5">NR max Tx power is set to 5 dBm</VALUE>
2759 <VALUE value="6">NR max Tx power is set to 6 dBm</VALUE>
2760 <VALUE value="7">NR max Tx power is set to 7 dBm</VALUE>
2761 <VALUE value="8">NR max Tx power is set to 8 dBm</VALUE>
2762 <VALUE value="9">NR max Tx power is set to 9 dBm</VALUE>
2763 <VALUE value="10">NR max Tx power is set to 10 dBm</VALUE>
2764 <VALUE value="11">NR max Tx power is set to 11 dBm</VALUE>
2765 <VALUE value="12">NR max Tx power is set to 12 dBm</VALUE>
2766 <VALUE value="13">NR max Tx power is set to 13 dBm</VALUE>
2767 <VALUE value="14">NR max Tx power is set to 14 dBm</VALUE>
2768 <VALUE value="15">NR max Tx power is set to 15 dBm</VALUE>
2769 <VALUE value="16">NR max Tx power is set to 16 dBm</VALUE>
2770 <VALUE value="17">NR max Tx power is set to 17 dBm</VALUE>
2771 <VALUE value="18">NR max Tx power is set to 18 dBm</VALUE>
2772 <VALUE value="19">NR max Tx power is set to 19 dBm</VALUE>
2773 <VALUE value="20">NR max Tx power is set to 20 dBm</VALUE>
2774 <VALUE value="21">NR max Tx power is set to 21 dBm</VALUE>
2775 <VALUE value="22">NR max Tx power is set to 22 dBm</VALUE>
2776 <VALUE value="23">NR max Tx power is set to 23 dBm</VALUE>
2777 </CONFIG>
2778 <DEFAULT>17 (NR max Tx power is set to 17 dBm when CONSYS notifies NR to deduce NR max Tx power)</DEFAULT>
2779 <OP>
2780 N/A
2781 </OP>
2782 <DEPENDENCY>
2783 N/A
2784 </DEPENDENCY>
2785 <NOTE>
2786 N/A
2787 </NOTE>
2788 <AUTHOR>mtk13042</AUTHOR>
2789</SBP>
2790******* SBP Document END **************************************************************************/
2791 SBP_DATA_DEF(72, SBP_IDC_IM_NR_TX_PWR, SBP_ATTR_NONE, "Set NR max Tx power when IDC is enabled")
2792 SBP_DATA_DEF_VAL(0x01, "TX_PWR_1")
2793 SBP_DATA_DEF_VAL(0x02, "TX_PWR_2")
2794 SBP_DATA_DEF_VAL(0x03, "TX_PWR_3")
2795 SBP_DATA_DEF_VAL(0x04, "TX_PWR_4")
2796 SBP_DATA_DEF_VAL(0x05, "TX_PWR_5")
2797 SBP_DATA_DEF_VAL(0x06, "TX_PWR_6")
2798 SBP_DATA_DEF_VAL(0x07, "TX_PWR_7")
2799 SBP_DATA_DEF_VAL(0x08, "TX_PWR_8")
2800 SBP_DATA_DEF_VAL(0x09, "TX_PWR_9")
2801 SBP_DATA_DEF_VAL(0x0a, "TX_PWR_10")
2802 SBP_DATA_DEF_VAL(0x0b, "TX_PWR_11")
2803 SBP_DATA_DEF_VAL(0x0c, "TX_PWR_12")
2804 SBP_DATA_DEF_VAL(0x0d, "TX_PWR_13")
2805 SBP_DATA_DEF_VAL(0x0e, "TX_PWR_14")
2806 SBP_DATA_DEF_VAL(0x0f, "TX_PWR_15")
2807 SBP_DATA_DEF_VAL(0x10, "TX_PWR_16")
2808 SBP_DATA_DEF_VAL(0x11, "TX_PWR_17")
2809 SBP_DATA_DEF_VAL(0x12, "TX_PWR_18")
2810 SBP_DATA_DEF_VAL(0x13, "TX_PWR_19")
2811 SBP_DATA_DEF_VAL(0x14, "TX_PWR_20")
2812 SBP_DATA_DEF_VAL(0x15, "TX_PWR_21")
2813 SBP_DATA_DEF_VAL(0x16, "TX_PWR_22")
2814 SBP_DATA_DEF_VAL(0x17, "TX_PWR_23")
2815 SBP_DATA_DEFAULT_VAL(0x11)
2816 SBP_DATA_DEF_END
2817
2818/****** SBP Document BEGIN ************************************************************************
2819<SBP title="SBP_IDC_INT_DETECT">
2820 <DESCRIPTION>
2821 This feature is used to notify CONSYS that whether LTE rx needs CONSYS's tx to do TDM or not.
2822 </DESCRIPTION>
2823 <CATEGORY>EAS</CATEGORY>
2824 <CONFIG>
2825 <VALUE value="0">IDC interference detector at MD side is not supported</VALUE>
2826 <VALUE value="1">IDC interference detector at MD side is supported</VALUE>
2827 </CONFIG>
2828 <DEFAULT>
2829 1 (IDC interference detector at MD side is supported)
2830 </DEFAULT>
2831 <OP>
2832 N/A
2833 </OP>
2834 <DEPENDENCY>
2835 N/A
2836 </DEPENDENCY>
2837 <NOTE>
2838 N/A
2839 </NOTE>
2840 <AUTHOR>mtk05361</AUTHOR>
2841</SBP>
2842******* SBP Document END **************************************************************************/
2843 SBP_DATA_DEF(73, SBP_IDC_INT_DETECT, SBP_ATTR_NONE, "Enable IDC interference detector at MD side")
2844 SBP_DATA_DEF_VAL(0x00, "Disable IDC interference detector at MD side")
2845 SBP_DATA_DEF_VAL(0x01, "Enable IDC interference detector at MD side")
2846 SBP_DATA_DEFAULT_VAL(0x01)
2847 SBP_DATA_DEF_END
2848
2849/****** SBP Document BEGIN ************************************************************************
2850<SBP title="SBP_SMS_GUARD_TIMER - Defines the value for SMS Guard timer">
2851 <DESCRIPTION>
2852 <PARAG>
2853 This SBP data value acts as a guard timer for MO SMS operation.
2854 </PARAG>
2855 </DESCRIPTION>
2856 <CATEGORY>SMS</CATEGORY>
2857 <CONFIG>
2858 <VALUE value="0xb4">Default value for MO SMS guard timer - 180 sec</VALUE>
2859 </CONFIG>
2860 <DEFAULT>180</DEFAULT>
2861 <OP>N/A</OP>
2862 <DEPENDENCY>N/A</DEPENDENCY>
2863 <NOTE>
2864 N/A
2865 </NOTE>
2866 <AUTHOR>mtk15232</AUTHOR>
2867</SBP>
2868******* SBP Document END **************************************************************************/
2869SBP_DATA_DEF(74, SBP_SMS_GUARD_TIMER, SBP_ATTR_NONE, "Guard timer for SMS operation")
2870 SBP_DATA_DEFAULT_VAL(0xb4)
2871SBP_DATA_DEF_END
2872
2873/****** SBP Document BEGIN ************************************************************************
2874<SBP title="SBP_CUSTOM_SMS_MMS_TIMER - Defines the value for SMS_MMS timer">
2875 <DESCRIPTION>
2876 <PARAG>
2877 This SBP data value is for SMS_MMS timer(which determines how long SMS module wait before releasing radio connection).
2878 </PARAG>
2879 </DESCRIPTION>
2880 <CATEGORY>SMS</CATEGORY>
2881 <CONFIG>
2882 <VALUE value="0x01">Custom value for SMS_MMS timer </VALUE>
2883 </CONFIG>
2884 <DEFAULT>1</DEFAULT>
2885 <OP>N/A</OP>
2886 <DEPENDENCY>N/A</DEPENDENCY>
2887 <NOTE>
2888 N/A
2889 </NOTE>
2890 <AUTHOR>mtk15232</AUTHOR>
2891</SBP>
2892******* SBP Document END **************************************************************************/
2893SBP_DATA_DEF(75, SBP_SMS_MMS_TIMER, SBP_ATTR_NONE, "Guard timer for SMS operation")
2894 SBP_DATA_DEFAULT_VAL(0x01)
2895SBP_DATA_DEF_END
2896
2897/****** SBP Document BEGIN ************************************************************************
2898<SBP title="SBP_POS_VZW_MODE - This SBP indicates which NW performs positioning">
2899 <DESCRIPTION>
2900 <PARAG>
2901 This SBP indicates which NW performs positioning.
2902 </PARAG>
2903 </DESCRIPTION>
2904 <CATEGORY>AGPS</CATEGORY>
2905 <CONFIG>
2906 <VALUE value="0">Non-VzW network</VALUE>
2907 <VALUE value="1">VzW network</VALUE>
2908 </CONFIG>
2909 <DEFAULT>0</DEFAULT>
2910 <OP>N/A</OP>
2911 <DEPENDENCY>N/A</DEPENDENCY>
2912 <NOTE>N/A</NOTE>
2913 <AUTHOR>mtk12419</AUTHOR>
2914</SBP>
2915******* SBP Document END **************************************************************************/
2916 SBP_DATA_DEF(76, SBP_POS_VZW_MODE, SBP_ATTR_NONE, "This SBP indicates which NW performs positioning.")
2917
2918 SBP_DATA_DEF_VAL(0, "Non-VzW network")
2919 SBP_DATA_DEF_VAL(1, "VzW network")
2920 SBP_DATA_DEFAULT_VAL(0)
2921
2922SBP_DATA_DEF_END
2923
2924/****** SBP Document BEGIN ************************************************************************
2925<SBP title="SBP_NR_CA_MAX_CC_NUM - Defines the maximum number of supported NR CCs">
2926 <DESCRIPTION>
2927 <PARAG>
2928 This SBP defines the maximum number of supported NR CCs.
2929 </PARAG>
2930 </DESCRIPTION>
2931 <CATEGORY>NR AS</CATEGORY>
2932 <CONFIG>
2933 <VALUE value="1">1 NR CC</VALUE>
2934 <VALUE value="2">2 NR CC</VALUE>
2935 </CONFIG>
2936 <DEFAULT>1</DEFAULT>
2937 <OP>N/A</OP>
2938 <DEPENDENCY>N/A</DEPENDENCY>
2939 <NOTE>
2940 N/A
2941 </NOTE>
2942 <AUTHOR>mtk09385</AUTHOR>
2943</SBP>
2944******* SBP Document END **************************************************************************/
2945 SBP_DATA_DEF(77, SBP_NR_CA_MAX_CC_NUM, SBP_ATTR_NONE, "Maximum number of supported NR CCs")
2946#ifdef __NR_CA_DL_2CC__
2947 SBP_DATA_DEFAULT_VAL(2)
2948#else
2949 SBP_DATA_DEFAULT_VAL(1)
2950#endif
2951 SBP_DATA_DEF_END
2952
2953/****** SBP Document BEGIN ************************************************************************
2954<SBP title="SBP_NR_CA_MAX_BW - Defines the maximum aggregated NR CA bandwidth">
2955 <DESCRIPTION>
2956 <PARAG>
2957 This SBP defines the maximum aggregated NR CA bandwidth.
2958 </PARAG>
2959 </DESCRIPTION>
2960 <CATEGORY>NR AS</CATEGORY>
2961 <CONFIG>
2962 <VALUE value="10">100 MHz BW</VALUE>
2963 <VALUE value="12">120 MHz BW</VALUE>
2964 <VALUE value="13">130 MHz BW</VALUE>
2965 <VALUE value="20">200 MHz BW</VALUE>
2966 </CONFIG>
2967 <DEFAULT>10</DEFAULT>
2968 <OP>N/A</OP>
2969 <DEPENDENCY>N/A</DEPENDENCY>
2970 <NOTE>
2971 N/A
2972 </NOTE>
2973 <AUTHOR>mtk13068</AUTHOR>
2974</SBP>
2975******* SBP Document END **************************************************************************/
2976 SBP_DATA_DEF(78, SBP_NR_CA_MAX_BW, SBP_ATTR_NONE, "Maximum aggregated NR CA bandwidth")
2977 SBP_DATA_DEF_VAL(10, "100 MHz BW")
2978 SBP_DATA_DEF_VAL(12, "120 MHz BW")
2979 SBP_DATA_DEF_VAL(13, "130 MHz BW")
2980 SBP_DATA_DEF_VAL(20, "200 MHz BW")
2981#if defined(__NR_CA_DL_BW_200M__)
2982 SBP_DATA_DEFAULT_VAL(20)
2983#elif defined(__NR_CA_DL_BW_130M__)
2984 SBP_DATA_DEFAULT_VAL(13)
2985#elif defined(__NR_CA_DL_BW_120M__)
2986 SBP_DATA_DEFAULT_VAL(12)
2987#else
2988 SBP_DATA_DEFAULT_VAL(10)
2989#endif
2990 SBP_DATA_DEF_END
2991
2992/****** SBP Document BEGIN ************************************************************************
2993<SBP title="SBP_MCF_CB_CONTROL_SWITCH- CB settings for different RATS can be contolled by this SBP">
2994 <DESCRIPTION>
2995 <PARAG>
2996 This acts as bit map which controls CB settings for different RATS
2997 </PARAG>
2998 </DESCRIPTION>
2999 <CATEGORY>SMS</CATEGORY>
3000 <CONFIG>
3001 <VALUE value="0x00">Disabled for All Rats</VALUE>
3002 <VALUE value="0x01">RAT_GSM enabled</VALUE>
3003 <VALUE value="0x02">RAT_UMTS enabled</VALUE>
3004 <VALUE value="0x03">RAT_UMTS and RAT_GSM both enabled</VALUE>
3005 <VALUE value="0x04">RAT_LTE enabled</VALUE>
3006 <VALUE value="0x05">RAT_LTE and RAT_GSM enabled</VALUE>
3007 <VALUE value="0x06">RAT_LTE and RAT_UMTS enabled</VALUE>
3008 <VALUE value="0x07">RAT_LTE and RAT_UMTS and RAT_GSM enabled</VALUE>
3009 <VALUE value="0x80">RAT_NR enabled</VALUE>
3010 <VALUE value="0x87">All RATs enabled</VALUE>
3011 </CONFIG>
3012 <DEFAULT> 0x87 </DEFAULT>
3013 <OP>N/A</OP>
3014 <DEPENDENCY>N/A</DEPENDENCY>
3015 <NOTE>N/A</NOTE>
3016 <AUTHOR>mtk15232</AUTHOR>
3017</SBP>
3018******* SBP Document END **************************************************************************/
3019 SBP_DATA_DEF(79, SBP_MCF_CB_CONTROL_SWITCH, SBP_ATTR_NONE, "CB settings for different RATS")
3020 SBP_DATA_DEFAULT_VAL(0x87)
3021 SBP_DATA_DEF_END
3022
3023/*80~87*/
3024/****** SBP Document BEGIN ************************************************************************
3025<SBP title="SBP_DATA_HPPLMN_SEARCH_TIMER - higher-priority PLMN search timer value">
3026 <DESCRIPTION>
3027 <PARAG>TS 23.122:</PARAG>
3028 <PARAG>If the MS is in a VPLMN, the MS shall periodically attempt to obtain service on its HPLMN or one of its EHPLMNs or a higher priority PLMN.</PARAG>
3029 <PARAG>T is either in the range 6 minutes to 8 hours in 6 minute step or it indicates that no periodic attempts hsall be made.</PARAG>
3030 <PARAG>For flexibility, we provide a SBP data to config the value of HPPLMN search timer.</PARAG>
3031 </DESCRIPTION>
3032 <CATEGORY>NWSEL</CATEGORY>
3033 <DEFAULT>0x00</DEFAULT>
3034 <OP>N/A</OP>
3035 <DEPENDENCY>N/A</DEPENDENCY>
3036 <NOTE>N/A</NOTE>
3037 <AUTHOR>mtk01591</AUTHOR>
3038</SBP>
3039******* SBP Document END **************************************************************************/
3040 SBP_DATA_DEF(80, SBP_DATA_HPPLMN_SEARCH_TIMER, SBP_ATTR_NONE, "higher-priority PLMN search timer value")
3041 SBP_DATA_DEF_VAL(0x01, "1 minutes")
3042 SBP_DATA_DEF_VAL(0x02, "2 minutes")
3043 SBP_DATA_DEF_VAL(0x03, "3 minutes")
3044 SBP_DATA_DEF_VAL(0x04, "4 minutes")
3045 SBP_DATA_DEF_VAL(0x05, "5 minutes")
3046 SBP_DATA_DEF_VAL(0x06, "6 minutes")
3047 SBP_DATA_DEF_VAL(0x07, "7 minutes")
3048 SBP_DATA_DEF_VAL(0x08, "8 minutes")
3049 SBP_DATA_DEF_VAL(0x09, "9 minutes")
3050 SBP_DATA_DEF_VAL(0x0a, "10 minutes")
3051 SBP_DATA_DEF_VAL(0x0b, "11 minutes")
3052 SBP_DATA_DEF_VAL(0x0c, "12 minutes")
3053 SBP_DATA_DEF_VAL(0x0d, "13 minutes")
3054 SBP_DATA_DEF_VAL(0x0e, "14 minutes")
3055 SBP_DATA_DEF_VAL(0x0f, "15 minutes")
3056 SBP_DATA_DEF_VAL(0x10, "16 minutes")
3057 SBP_DATA_DEF_VAL(0x11, "17 minutes")
3058 SBP_DATA_DEF_VAL(0x12, "18 minutes")
3059 SBP_DATA_DEF_VAL(0x13, "19 minutes")
3060 SBP_DATA_DEF_VAL(0x14, "20 minutes")
3061 SBP_DATA_DEF_VAL(0x15, "21 minutes")
3062 SBP_DATA_DEF_VAL(0x16, "22 minutes")
3063 SBP_DATA_DEF_VAL(0x17, "23 minutes")
3064 SBP_DATA_DEF_VAL(0x18, "24 minutes")
3065 SBP_DATA_DEF_VAL(0x19, "25 minutes")
3066 SBP_DATA_DEF_VAL(0x1a, "26 minutes")
3067 SBP_DATA_DEF_VAL(0x1b, "27 minutes")
3068 SBP_DATA_DEF_VAL(0x1c, "28 minutes")
3069 SBP_DATA_DEF_VAL(0x1d, "29 minutes")
3070 SBP_DATA_DEF_VAL(0x1e, "30 minutes")
3071 SBP_DATA_DEF_VAL(0xff, "255 minutes")
3072 SBP_DATA_DEFAULT_VAL(0x00) // 0x00 means this SBP data is not configured.
3073 SBP_DATA_DEF_END
3074 /****** SBP Document BEGIN ************************************************************************
3075<SBP title="SBP_GMM_REATTACH_FOR_NW_DETACH_OTHER_CAUSE_COUNT - Controls GPRS reattach counter after network initiated detach with other cause">
3076 <DESCRIPTION>
3077 <PARAG>
3078 This SBP controls the GPRS attach counter after network initiated detach with re-attach not required
3079 when cause received is other than #2/#3/#6/#7/#8/#11/#12/#13/#14/#15/#25.
3080 </PARAG>
3081 </DESCRIPTION>
3082 <CATEGORY>NAS</CATEGORY>
3083 <CONFIG>
3084 </CONFIG>
3085 <DEFAULT>0x04</DEFAULT>
3086 <OP>N/A</OP>
3087 <DEPENDENCY>
3088 This SBP Data feature will be available only when SBP SBP_GMM_REATTACH_FOR_NW_DETACH_OTHER_CAUSE is enabled.
3089 </DEPENDENCY>
3090 <NOTE>N/A</NOTE>
3091 <AUTHOR>mtk16767</AUTHOR>
3092</SBP>
3093******* SBP Document END **************************************************************************/
3094 SBP_DATA_DEF(81, SBP_GMM_REATTACH_FOR_NW_DETACH_OTHER_CAUSE_COUNT, SBP_ATTR_NONE, "SBP controls GPRS reattach counter after network initiated detach.")
3095 SBP_DATA_DEFAULT_VAL(0x04)
3096 SBP_DATA_DEF_END
3097
3098 /****** SBP Document BEGIN ************************************************************************
3099<SBP title="SBP_GMM_REATTACH_FOR_NW_DETACH_OTHER_CAUSE_GUARD_TIMER_VALUE- Control gprs reattach guard timer value for network initiated detach by SBP_ID">
3100 <DESCRIPTION>
3101 <PARAG>
3102 This SBP controls the Gprs reattach guard timer value for network initiated detach
3103 when cause received is other than #2/#3/#6/#7/#8/#11/#12/#13/#14/#15/#25.
3104 </PARAG>
3105 </DESCRIPTION>
3106 <CATEGORY>NAS</CATEGORY>
3107 <CONFIG>
3108 <VALUE value="0xFF">Value range is 0-255 min</VALUE>
3109 </CONFIG>
3110 <DEFAULT>0x00</DEFAULT>
3111 <OP>N/A</OP>
3112 <DEPENDENCY>
3113 This SBP Data feature will be available only when SBP SBP_GMM_REATTACH_FOR_NW_DETACH_OTHER_CAUSE is enabled.
3114 </DEPENDENCY>
3115 <NOTE>N/A</NOTE>
3116 <AUTHOR>mtk16767</AUTHOR>
3117</SBP>
3118******* SBP Document END **************************************************************************/
3119 SBP_DATA_DEF(82, SBP_GMM_REATTACH_FOR_NW_DETACH_OTHER_CAUSE_GUARD_TIMER_VALUE, SBP_ATTR_NONE, "SBP controls the guard timer value by SBP_ID.")
3120 SBP_DATA_DEFAULT_VAL(0x00)
3121 SBP_DATA_DEF_END
3122
3123/****** SBP Document BEGIN ************************************************************************
3124<SBP title="SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE- EUTRAN disable timer value for HPLMN rej 14">
3125 <DESCRIPTION>
3126 <PARAG>TS 24.301 subclause 5.5.1.3.5 of rej#14:</PARAG>
3127 <PARAG>A UE operating in CS/PS mode 1 of operation and supporting A/Gb or Iu mode may select GERAN or UTRAN
3128 radio access technology and proceed with the appropriate MM specific procedure according to the MM service
3129 state. In this case, the UE shall disable the E-UTRA capability (see subclause 4.5)</PARAG>
3130 <PARAG>For cutomization, we provide a SBP data to config the value of HPLMN rej 14 eutran disable timer.</PARAG>
3131 </DESCRIPTION>
3132 <CONFIG>
3133 <VALUE value="0"> Disable this configuration</VALUE>
3134 <VALUE value="1"> 1 minute</VALUE>
3135 <VALUE value="2"> 2 minutes</VALUE>
3136 <VALUE value="3"> 3 minutes</VALUE>
3137 <VALUE value="4"> 4 minutes</VALUE>
3138 <VALUE value="N"> N minutes</VALUE>
3139 <VALUE value="255"> 255 minutes</VALUE>
3140 </CONFIG>
3141 <CATEGORY>NWSEL</CATEGORY>
3142 <DEFAULT>0x00</DEFAULT>
3143 <OP>N/A</OP>
3144 <DEPENDENCY>N/A</DEPENDENCY>
3145 <NOTE>N/A</NOTE>
3146 <AUTHOR>mtk13942</AUTHOR>
3147</SBP>
3148******* SBP Document END **************************************************************************/
3149 SBP_DATA_DEF(83, SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE, SBP_ATTR_NONE, "HPLMN rej 14 eutran disable timer value, N means N minutes while 0 means that this configuration is disabled.")
3150 SBP_DATA_DEFAULT_VAL(0x00) // 0x00 means this configuration is disabled.
3151 SBP_DATA_DEF_END
3152
3153/****** SBP Document BEGIN ************************************************************************
3154<SBP title="SBP_EMM_R15_SET_RAT_NO_DETACH_BY_LIST - Defines the algo by the stored whitelist/blacklist ">
3155 <DESCRIPTION>
3156 <PARAG>
3157 This SBP data value is decided the list to refer for detach-required detection during SET_RAT procedure .
3158 </PARAG>
3159 </DESCRIPTION>
3160 <CATEGORY>EMM</CATEGORY>
3161 <CONFIG>
3162 <VALUE value="0x00">the EMM_RATBAND_DETACH_ALGORM_1, no blacklist/whitelist. if old/new_rat_mode includes LTE. perform detach. </VALUE>
3163 <VALUE value="0x01">refer to the blacklist. if old/new_rat_mode includes LTE, perform detach by refering to balcklist. </VALUE>
3164 <VALUE value="0x02">refer to the whiltelist. if old/new_rat_mode includes LTE, NOT perform detach by refering to whitelist. </VALUE>
3165 </CONFIG>
3166 <DEFAULT>1</DEFAULT>
3167 <OP>N/A</OP>
3168 <DEPENDENCY>N/A</DEPENDENCY>
3169 <NOTE>
3170 in R15 CR3444, the UE radio capability update could be updated by TAU instead of re-attach procedure.
3171 Here is the original context in TS 23.401:
3172
3173 TS23.401 R14 (14.10.0, 2018-12)
3174 5.11.2 UE Radio Capability Handling
3175 If the UE's non-UTRAN UE Radio Capability information changes while in ECM-IDLE state (including cases of being in GERAN/UTRAN coverage),
3176 the UE shall perform a Tracking Area Update indicating "UE radio capability update" when it next returns to E?UTRAN coverage.
3177 NOTE 4: In this release of the specifications, "UE radio capability update" is only supported for changes of GERAN radio capabilities in ECM-IDLE.
3178 Any change in the UE's E-UTRAN capabilities requires the UE to detach and then re-attach to the system.
3179
3180 TS23.401 R15 (15.8.0, 2019-6)
3181 5.11.2 UE Radio Capability Handling
3182 If the UE's non-UTRAN UE Radio Capability information changes while in ECM-IDLE state (including cases of being in GERAN/UTRAN coverage),
3183 the UE shall perform a Tracking Area Update indicating "UE radio capability update" when it next returns to E-UTRAN coverage.
3184 When the UE is in ECM-IDLE with AS information stored (as defined in clause 4.11 for User Plane CIOT EPS optimisation),
3185 NAS shall trigger AS to establish a new RRC connection and not resume the existing one in order to send Tracking Area Update indicating
3186 "UE radio capability update". As a result of this, the access stratum in the UE will discard the AS information and establish a new RRC connection
3187 as defined in TS 36.331 [37].
3188
3189
3190 </NOTE>
3191 <AUTHOR>mtk04360</AUTHOR>
3192</SBP>
3193******* SBP Document END **************************************************************************/
3194SBP_DATA_DEF(84, SBP_EMM_R15_SET_RAT_NO_DETACH_BY_LIST, SBP_ATTR_NONE, "decide the list for detach-required detection in SET_RAT procedure")
3195 SBP_DATA_DEF_VAL(0x00, "the default EMM_RATBAND_DETACH_ALGORM_1")
3196 SBP_DATA_DEF_VAL(0x01, "if old/new_rat_mode includes LTE, perform detach by refering to balcklist.")
3197 SBP_DATA_DEF_VAL(0x02, "if old/new_rat_mode includes LTE, NOT perform detach by refering to whitelist.")
3198 SBP_DATA_DEFAULT_VAL(0x01)
3199
3200SBP_DATA_DEF_END
3201
3202/****** SBP Document BEGIN ************************************************************************
3203<SBP title="SBP_NR_BANDWIDTH_MAX_BOUNDARY - Defines the maximum bandwidth boundary of support CA">
3204 <DESCRIPTION>
3205 <PARAG>
3206 This SBP defines the maximum bandwidth boundary of supported NR CA.
3207 </PARAG>
3208 </DESCRIPTION>
3209 <CATEGORY>NR AS</CATEGORY>
3210 <CONFIG>
3211 <VALUE value="1">NR SPEC MAXIMUM BOUNDARY</VALUE>
3212 <VALUE value="2">100 MHZ per CC</VALUE>
3213 </CONFIG>
3214 <DEFAULT>1</DEFAULT>
3215 <OP>N/A</OP>
3216 <DEPENDENCY>N/A</DEPENDENCY>
3217 <NOTE>
3218 N/A
3219 </NOTE>
3220 <AUTHOR>mtk15874</AUTHOR>
3221</SBP>
3222******* SBP Document END **************************************************************************/
3223 SBP_DATA_DEF(85, SBP_NR_BANDWIDTH_MAX_BOUNDARY, SBP_ATTR_NONE, "maximum bandwidth boundary of supported NR CA")
3224 SBP_DATA_DEF_VAL(1, "NR SPEC MAXIMUM BOUNDARY")
3225 SBP_DATA_DEF_VAL(2, "100 MHz BW per CC")
3226 SBP_DATA_DEFAULT_VAL(2)
3227 SBP_DATA_DEF_END
3228
3229/****** SBP Document BEGIN ************************************************************************
3230<SBP title="SBP_HSDPA_CAT - HSDPA UE Category">
3231 <DESCRIPTION>
3232 <PARAG>
3233 This SBP specifies the HSDPA UE category.
3234 </PARAG>
3235 </DESCRIPTION>
3236 <CATEGORY>UL1</CATEGORY>
3237 <CONFIG>
3238 <VALUE value="0x18">HSDPA default UE category</VALUE>
3239 </CONFIG>
3240 <DEFAULT>24</DEFAULT>
3241 <OP>N/A</OP>
3242 <DEPENDENCY>N/A</DEPENDENCY>
3243 <NOTE>
3244 This feature is available on LR12A.R3.MP and newer generation MTK modems.
3245 </NOTE>
3246 <AUTHOR>mtk16768</AUTHOR>
3247</SBP>
3248******* SBP Document END **************************************************************************/
3249 SBP_DATA_DEF(86, SBP_HSDPA_CAT, SBP_ATTR_NONE, "HSDPA UE Category.")
3250 SBP_DATA_DEF_VAL(0x18, "HSDPA UE category: 24")
3251 SBP_DATA_DEFAULT_VAL(0x18)
3252 SBP_DATA_DEF_END
3253
3254/****** SBP Document BEGIN ************************************************************************
3255<SBP title="SBP_HSUPA_CAT - HSUPA UE Category">
3256 <DESCRIPTION>
3257 <PARAG>
3258 This SBP specifies the HSUPA UE category.
3259 </PARAG>
3260 </DESCRIPTION>
3261 <CATEGORY>UL1</CATEGORY>
3262 <CONFIG>
3263 <VALUE value="0x07">HSUPA default UE category</VALUE>
3264 </CONFIG>
3265 <DEFAULT>7</DEFAULT>
3266 <OP>N/A</OP>
3267 <DEPENDENCY>N/A</DEPENDENCY>
3268 <NOTE>
3269 This feature is available on LR12A.R3.MP and newer generation MTK modems.
3270 </NOTE>
3271 <AUTHOR>mtk16768</AUTHOR>
3272</SBP>
3273******* SBP Document END **************************************************************************/
3274 SBP_DATA_DEF(87, SBP_HSUPA_CAT, SBP_ATTR_NONE, "HSUPA UE Category.")
3275 SBP_DATA_DEF_VAL(0x07, "HSUPA UE category: 7")
3276#if defined(__SBP_DATA_HSUPA_CAT6__)
3277 SBP_DATA_DEFAULT_VAL(0x06)
3278#else
3279 SBP_DATA_DEFAULT_VAL(0x07)
3280#endif
3281 SBP_DATA_DEF_END
3282
3283/*88~95*/
3284 /****** SBP Document BEGIN ************************************************************************
3285<SBP title="SBP_POS_MODE_NR_CAPABILITY_SWITCH - Switch the positioning mode in UE reporting NR AGPS/AGNSS positioning capability to NW">
3286 <DESCRIPTION>
3287 <PARAG>
3288 This SBP can switch the positioning mode in UE reporting NR AGPS/AGNSS positioning capability to NW.
3289 </PARAG>
3290 </DESCRIPTION>
3291 <CATEGORY>AGPS</CATEGORY>
3292 <CONFIG>
3293 <VALUE value="0x00">UE does not support AGPS/AGNSS</VALUE>
3294 <VALUE value="0x01">UE-Based</VALUE>
3295 <VALUE value="0x02">UE-Assisted</VALUE>
3296 <VALUE value="0x03">Both UE-Based and UE-Assisted</VALUE>
3297 </CONFIG>
3298 <DEFAULT>0x03</DEFAULT>
3299 <OP>N/A</OP>
3300 <DEPENDENCY>N/A</DEPENDENCY>
3301 <NOTE>N/A</NOTE>
3302 <AUTHOR>mtk07961</AUTHOR>
3303</SBP>
3304******* SBP Document END **************************************************************************/
3305 SBP_DATA_DEF(88, SBP_POS_MODE_NR_CAPABILITY_SWITCH, SBP_ATTR_NONE, "Switch the positioning mode in UE reporting NR AGPS/AGNSS positioning capability to NW.")
3306
3307 SBP_DATA_DEF_VAL(0x00, "UE does not support AGPS/AGNSS")
3308 SBP_DATA_DEF_VAL(0x01, "UE-Based")
3309 SBP_DATA_DEF_VAL(0x02, "UE-Assisted")
3310 SBP_DATA_DEF_VAL(0x03, "Both UE-Based and UE-Assisted")
3311
3312#if defined(__AGPS_SUPPORT__)
3313 SBP_DATA_DEFAULT_VAL(0x03)
3314#else
3315 SBP_DATA_DEFAULT_VAL(0x00)
3316#endif
3317 SBP_DATA_DEF_END
3318
3319/****** SBP Document BEGIN ************************************************************************
3320<SBP title="SBP_FLIGHT_MODE_ECC_3GPP_SEARCH_RAT - search rat order of 3GPP for flight mode ECC ">
3321 <DESCRIPTION>
3322 <PARAG>
3323 This SBP provides different RAT order of 3GPP for flight mode emergency call.
3324 </PARAG>
3325 <PARAG>
3326 0x00: disabled
3327 0x01: LNWG
3328 </PARAG>
3329 </DESCRIPTION>
3330 <CATEGORY>NAS</CATEGORY>
3331 <CONFIG>
3332 <VALUE value="0x00">0: disabled</VALUE>
3333 <VALUE value="0x01">1: LNWG</VALUE>
3334 </CONFIG>
3335 <DEFAULT>0x00</DEFAULT>
3336 <OP>N/A</OP>
3337 <DEPENDENCY>N/A</DEPENDENCY>
3338 <NOTE>N/A</NOTE>
3339 <AUTHOR>mtk20359</AUTHOR>
3340</SBP>
3341******* SBP Document END **************************************************************************/
3342 SBP_DATA_DEF(89, SBP_FLIGHT_MODE_ECC_3GPP_SEARCH_RAT, SBP_ATTR_NONE, "search rat order of 3GPP for flight mode ECC")
3343
3344 SBP_DATA_DEF_VAL(0x00, "0: disabled")
3345 SBP_DATA_DEF_VAL(0x01, "1: LNWG")
3346 SBP_DATA_DEFAULT_VAL(0x00)
3347 SBP_DATA_DEF_END
3348
3349/****** SBP Document BEGIN ************************************************************************
3350<SBP title="SBP_SET_AS_REL_5G_DISABLE - accessStratumRelease report to NW when 5G is disable">
3351 <DESCRIPTION>
3352 <PARAG>
3353 This SBP allow to decide which accessStratumRelease will report to NW when 5G is disable.
3354 </PARAG>
3355 </DESCRIPTION>
3356 <CATEGORY>ERRC</CATEGORY>
3357 <CONFIG>
3358 <VALUE value="1">AccessStratumRelease_rel9</VALUE>
3359 <VALUE value="2">AccessStratumRelease_rel10</VALUE>
3360 <VALUE value="3">AccessStratumRelease_rel11</VALUE>
3361 <VALUE value="4">AccessStratumRelease_rel12</VALUE>
3362 <VALUE value="5">AccessStratumRelease_rel13</VALUE>
3363 <VALUE value="6">AccessStratumRelease_rel14</VALUE>
3364 <VALUE value="7">AccessStratumRelease_rel15</VALUE>
3365 <VALUE value="255">AccessStratumRelease no need change</VALUE>
3366 </CONFIG>
3367 <DEFAULT>255</DEFAULT>
3368 <OP>N/A</OP>
3369 <DEPENDENCY>N/A</DEPENDENCY>
3370 <NOTE>N/A</NOTE>
3371 <AUTHOR>mtk07852</AUTHOR>
3372</SBP>
3373******* SBP Document END **************************************************************************/
3374 SBP_DATA_DEF(90, SBP_SET_AS_REL_5G_DISABLE, SBP_ATTR_NONE, "accessStratumRelease report to NW when 5G is disable")
3375 SBP_DATA_DEF_VAL(1, "AccessStratumRelease_rel9")
3376 SBP_DATA_DEF_VAL(2, "AccessStratumRelease_rel10")
3377 SBP_DATA_DEF_VAL(3, "AccessStratumRelease_rel11")
3378 SBP_DATA_DEF_VAL(4, "AccessStratumRelease_rel12")
3379 SBP_DATA_DEF_VAL(5, "AccessStratumRelease_rel13")
3380 SBP_DATA_DEF_VAL(6, "AccessStratumRelease_rel14")
3381 SBP_DATA_DEF_VAL(7, "AccessStratumRelease_rel15")
3382 SBP_DATA_DEF_VAL(255, "AccessStratumRelease no need change")
3383#if defined(__TC10__)
3384 SBP_DATA_DEFAULT_VAL(5)
3385#else
3386 SBP_DATA_DEFAULT_VAL(255)
3387#endif
3388 SBP_DATA_DEF_END
3389
3390 /****** SBP Document BEGIN ************************************************************************
3391<SBP title="SBP_WCDMA_RRC_FEATURE - Enable/Disable WCDMA RRC Feature">
3392 <DESCRIPTION>
3393 <PARAG>
3394 This SBP enables/disables WCDMA RRC Feature.
3395 </PARAG>
3396 </DESCRIPTION>
3397 <CATEGORY>RRC</CATEGORY>
3398 <CONFIG>
3399 <VALUE value="0x01">RRC FEATURE: FDPCH</VALUE>
3400 <VALUE value="0x02">RRC FEATURE: EFDPCH</VALUE>
3401 <VALUE value="0x04">RRC FEATURE: CPC</VALUE>
3402 <VALUE value="0x08">RRC FEATURE: SLOTFORMAT</VALUE>
3403 <VALUE value="0x10">RRC FEATURE: HSFACH</VALUE>
3404 <VALUE value="0x20">RRC FEATURE: HSRACH</VALUE>
3405 <VALUE value="0x40">RRC FEATURE: HSFACHDRX</VALUE>
3406 <VALUE value="0x80">RRC FEATURE: MACIIS</VALUE>
3407 </CONFIG>
3408 <DEFAULT>0x00</DEFAULT>
3409 <OP>N/A</OP>
3410 <DEPENDENCY>N/A</DEPENDENCY>
3411 <NOTE>N/A</NOTE>
3412 <AUTHOR>mtk16766</AUTHOR>
3413</SBP>
3414******* SBP Document END **************************************************************************/
3415 SBP_DATA_DEF(91, SBP_WCDMA_RRC_FEATURE, SBP_ATTR_NONE, "Enable/Disable WCDMA RRC Feature")
3416
3417 SBP_DATA_DEF_VAL(0x01, "RRC FEATURE: FDPCH")
3418 SBP_DATA_DEF_VAL(0x02, "RRC FEATURE: EFDPCH")
3419 SBP_DATA_DEF_VAL(0x04, "RRC FEATURE: CPC")
3420 SBP_DATA_DEF_VAL(0x08, "RRC FEATURE: SLOTFORMAT")
3421 SBP_DATA_DEF_VAL(0x10, "RRC FEATURE: HSFACH")
3422 SBP_DATA_DEF_VAL(0x20, "RRC FEATURE: HSRACH")
3423 SBP_DATA_DEF_VAL(0x40, "RRC FEATURE: HSFACHDRX")
3424 SBP_DATA_DEF_VAL(0x80, "RRC FEATURE: MACIIS")
3425
3426 SBP_DATA_DEFAULT_VAL(0x00)
3427
3428 SBP_DATA_DEF_END
3429
3430
3431 /****** SBP Document BEGIN ************************************************************************
3432<SBP title="SBP_IDC_GNSSPWR_EN - IDC(In-device Coexistence)">
3433 <DESCRIPTION>
3434 <PARAG>
3435 This feature is use to lte powerback with B13, 14 with Gps on
3436 </PARAG>
3437 </DESCRIPTION>
3438 <CATEGORY>EAS</CATEGORY>
3439 <CONFIG>
3440 <VALUE value="0">IDC GNSSPWR is not enabled</VALUE>
3441 <VALUE value="1">IDC GNSSPWR is enabled, Interference mitigation between LTE and gps will be applied</VALUE>
3442 </CONFIG>
3443 <DEFAULT>
3444 0 (GNSS pwrbackoff is not enabled)
3445 </DEFAULT>
3446 <OP>
3447 N/A
3448 </OP>
3449 <DEPENDENCY>
3450 N/A
3451 </DEPENDENCY>
3452 <NOTE>
3453 N/A
3454 </NOTE>
3455 <AUTHOR>mtk13382</AUTHOR>
3456</SBP>
3457******* SBP Document END **************************************************************************/
3458 SBP_DATA_DEF(92, SBP_IDC_GNSSPWR_EN, SBP_ATTR_NONE, "Enable lte powerback at B13, 14 with Gps on")
3459 SBP_DATA_DEF_VAL(0x00, "IDC GNSSPWR disable")
3460 SBP_DATA_DEF_VAL(0x01, "IDC GNSSPWR enable")
3461 SBP_DATA_DEFAULT_VAL(0x00)
3462 SBP_DATA_DEF_END
3463
3464
3465 /****** SBP Document BEGIN ************************************************************************
3466<SBP title="SBP_IDC_IM_TX_PWR_FOR_GPS">
3467 <DESCRIPTION>
3468 <PARAG>
3469 The value is applied to LTE Tx max power after IDC notifies lte Band 13, and GPS ON
3470 </PARAG>
3471 </DESCRIPTION>
3472 <CATEGORY>EAS</CATEGORY>
3473 <CONFIG>
3474 <VALUE value="1">LTE max Tx power is set to 1 dBm</VALUE>
3475 <VALUE value="2">LTE max Tx power is set to 2 dBm</VALUE>
3476 <VALUE value="3">LTE max Tx power is set to 3 dBm</VALUE>
3477 <VALUE value="4">LTE max Tx power is set to 4 dBm</VALUE>
3478 <VALUE value="5">LTE max Tx power is set to 5 dBm</VALUE>
3479 <VALUE value="6">LTE max Tx power is set to 6 dBm</VALUE>
3480 <VALUE value="7">LTE max Tx power is set to 7 dBm</VALUE>
3481 <VALUE value="8">LTE max Tx power is set to 8 dBm</VALUE>
3482 <VALUE value="9">LTE max Tx power is set to 9 dBm</VALUE>
3483 <VALUE value="10">LTE max Tx power is set to 10 dBm</VALUE>
3484 <VALUE value="11">LTE max Tx power is set to 11 dBm</VALUE>
3485 <VALUE value="12">LTE max Tx power is set to 12 dBm</VALUE>
3486 <VALUE value="13">LTE max Tx power is set to 13 dBm</VALUE>
3487 <VALUE value="14">LTE max Tx power is set to 14 dBm</VALUE>
3488 <VALUE value="15">LTE max Tx power is set to 15 dBm</VALUE>
3489 <VALUE value="16">LTE max Tx power is set to 16 dBm</VALUE>
3490 <VALUE value="17">LTE max Tx power is set to 17 dBm</VALUE>
3491 <VALUE value="18">LTE max Tx power is set to 18 dBm</VALUE>
3492 <VALUE value="19">LTE max Tx power is set to 19 dBm</VALUE>
3493 <VALUE value="20">LTE max Tx power is set to 20 dBm</VALUE>
3494 <VALUE value="21">LTE max Tx power is set to 21 dBm</VALUE>
3495 <VALUE value="22">LTE max Tx power is set to 22 dBm</VALUE>
3496 <VALUE value="23">LTE max Tx power is set to 23 dBm</VALUE>
3497 </CONFIG>
3498 <DEFAULT>17 (LTE max Tx power is set to 17 dBm when IDC notifies MODEM's serving cell is on Band 13 and GPS on)</DEFAULT>
3499 <OP>
3500 N/A
3501 </OP>
3502 <DEPENDENCY>
3503 N/A
3504 </DEPENDENCY>
3505 <NOTE>
3506 N/A
3507 </NOTE>
3508 <AUTHOR>mtk13109</AUTHOR>
3509</SBP>
3510******* SBP Document END **************************************************************************/
3511 SBP_DATA_DEF(93, SBP_IDC_IM_TX_PWR_FOR_GPS, SBP_ATTR_NONE, "Set LTE max Tx power when IDC is enabled")
3512 SBP_DATA_DEF_VAL(0x01, "TX_PWR_1")
3513 SBP_DATA_DEF_VAL(0x02, "TX_PWR_2")
3514 SBP_DATA_DEF_VAL(0x03, "TX_PWR_3")
3515 SBP_DATA_DEF_VAL(0x04, "TX_PWR_4")
3516 SBP_DATA_DEF_VAL(0x05, "TX_PWR_5")
3517 SBP_DATA_DEF_VAL(0x06, "TX_PWR_6")
3518 SBP_DATA_DEF_VAL(0x07, "TX_PWR_7")
3519 SBP_DATA_DEF_VAL(0x08, "TX_PWR_8")
3520 SBP_DATA_DEF_VAL(0x09, "TX_PWR_9")
3521 SBP_DATA_DEF_VAL(0x0a, "TX_PWR_10")
3522 SBP_DATA_DEF_VAL(0x0b, "TX_PWR_11")
3523 SBP_DATA_DEF_VAL(0x0c, "TX_PWR_12")
3524 SBP_DATA_DEF_VAL(0x0d, "TX_PWR_13")
3525 SBP_DATA_DEF_VAL(0x0e, "TX_PWR_14")
3526 SBP_DATA_DEF_VAL(0x0f, "TX_PWR_15")
3527 SBP_DATA_DEF_VAL(0x10, "TX_PWR_16")
3528 SBP_DATA_DEF_VAL(0x11, "TX_PWR_17")
3529 SBP_DATA_DEF_VAL(0x12, "TX_PWR_18")
3530 SBP_DATA_DEF_VAL(0x13, "TX_PWR_19")
3531 SBP_DATA_DEF_VAL(0x14, "TX_PWR_20")
3532 SBP_DATA_DEF_VAL(0x15, "TX_PWR_21")
3533 SBP_DATA_DEF_VAL(0x16, "TX_PWR_22")
3534 SBP_DATA_DEF_VAL(0x17, "TX_PWR_23")
3535 SBP_DATA_DEFAULT_VAL(0x11)
3536 SBP_DATA_DEF_END
3537
3538/****** SBP Document BEGIN ************************************************************************
3539<SBP title="SBP_4G5_VGSM_INIT_MOD_BACKOFF_TIME - Defines the backoff time to ignore MT modification collision">
3540 <DESCRIPTION>
3541 <PARAG>
3542 This SBP defines the backoff time of VGSM to avoid MT modification collision if first time to 5G and need to update capability.
3543 </PARAG>
3544 </DESCRIPTION>
3545 <CATEGORY>VGSM</CATEGORY>
3546 <CONFIG>
3547 <VALUE value="0">NO backoff time</VALUE>
3548 <VALUE value="1">1 second</VALUE>
3549 <VALUE value="2">2 seconds</VALUE>
3550 <VALUE value="N">N seconds</VALUE>
3551 </CONFIG>
3552 <DEFAULT>2</DEFAULT>
3553 <OP>N/A</OP>
3554 <DEPENDENCY>N/A</DEPENDENCY>
3555 <NOTE>
3556 If a PDU session interworking from 4G to 5G, it must need to update capability to 5G by PDU session modification procedure if it's the first contact to 5G of this PDU session.
3557 There's high chance that it would collide with MT modification procedure initiated by NW.
3558 To enhance the flow, we create this backoff timer to avoid the collision.
3559 </NOTE>
3560 <AUTHOR>mtk05464</AUTHOR>
3561</SBP>
3562******* SBP Document END **************************************************************************/
3563 SBP_DATA_DEF(94, SBP_4G5_VGSM_INIT_MOD_BACKOFF_TIME, SBP_ATTR_NONE, "backoff time of VGSM to avoid 4G5 MOD collision")
3564 SBP_DATA_DEF_VAL(0x00, "No backoff time")
3565 SBP_DATA_DEF_VAL(0x01, "1 second")
3566 SBP_DATA_DEF_VAL(0x02, "2 seconds")
3567 SBP_DATA_DEF_VAL(0x03, "3 seconds")
3568 SBP_DATA_DEF_VAL(0x04, "4 seconds")
3569 SBP_DATA_DEF_VAL(0x05, "5 seconds")
3570#ifdef UNIT_TEST
3571 SBP_DATA_DEFAULT_VAL(0x00)
3572#else
3573 SBP_DATA_DEFAULT_VAL(0x02)
3574#endif
3575 SBP_DATA_DEF_END
3576
3577/****** SBP Document BEGIN ************************************************************************
3578<SBP title="SBP_TX_PCMAX_OFFSET - PCMAX adjustment in LTE SA and ENDC scenario">
3579 <DESCRIPTION>
3580 <PARAG>
3581 This SBP is used to turn on/off the adjustment to (1) pcmax of LTE SA, (2) total max power of ENDC and pcmax of NR and LTE in ENDC scenario.
3582 </PARAG>
3583 </DESCRIPTION>
3584 <CATEGORY>ENDC</CATEGORY>
3585 <CONFIG>
3586 <VALUE value="0">Adjustment is not enabled</VALUE>
3587 <VALUE value="1">Adjustment is enabled. The offset in NVRAM_EF_EL1_TX_PCMAX_OFFSET_LTE_LID, NVRAM_EF_EL1_TX_PCMAX_OFFSET_LTE_CA_LID, NVRAM_EF_NL1_ENDC_PCMAX_OFFSET_LID will be applied</VALUE>
3588 </CONFIG>
3589 <DEFAULT>
3590 0 (Adjustment is disabled)
3591 </DEFAULT>
3592 <OP>
3593 N/A
3594 </OP>
3595 <DEPENDENCY>
3596 N/A
3597 </DEPENDENCY>
3598 <NOTE>
3599 N/A
3600 </NOTE>
3601 <AUTHOR>mtk14034</AUTHOR>
3602</SBP>
3603******* SBP Document END **************************************************************************/
3604 SBP_DATA_DEF(95, SBP_TX_PCMAX_OFFSET, SBP_ATTR_NONE, "Enable PCMAX adjustment in LTE SA and ENDC scenario")
3605 SBP_DATA_DEF_VAL(0x00, "Adjustment disable")
3606 SBP_DATA_DEF_VAL(0x01, "Adjustment enable")
3607 SBP_DATA_DEFAULT_VAL(0x00)
3608 SBP_DATA_DEF_END
3609
3610/*96~103*/
3611/****** SBP Document BEGIN ************************************************************************
3612<SBP title="SBP_NWSEL_LTE_REJ_RETRY_MECHANISM - LTE reject retry mechanism">
3613 <DESCRIPTION>
3614 <PARAG>
3615 This SBP data is the main switch for LTE reject retry mechanism,
3616 and it decides that the mechanism is applied to reject 15 or reject 13 or both of them.
3617
3618 [Note 1] This SBP data takes effect on reject 13 or reject 15 only when the corresponding SBPs is turning on.
3619 e.g. #13 -> SBP_DISABLE_EUTRAN_AFTER_ROAMING_NOT_ALLOWED, #15 -> SBP_DISABLE_EUTRAN_AFTER_NO_SUITABLE
3620
3621 [Note 2] Bit Map design,
3622 e.g. apply to #13 = 0x01, apply to #15 = 0x02, and then apply to both = 0x01 | 0x02 = 0x03
3623 </PARAG>
3624 </DESCRIPTION>
3625 <CONFIG>
3626 <VALUE value="0"> disable this mechanism</VALUE>
3627 <VALUE value="1"> apply this mechanism to reject 13</VALUE>
3628 <VALUE value="2"> apply this mechanism to reject 15</VALUE>
3629 <VALUE value="3"> apply this mechanism to reject 13 and reject 15</VALUE>
3630 </CONFIG>
3631 <CATEGORY>NWSEL</CATEGORY>
3632 <DEFAULT>0x02</DEFAULT>
3633 <OP>N/A</OP>
3634 <DEPENDENCY> This SBP data depends on SBP_DISABLE_EUTRAN_AFTER_NO_SUITABLE and SBP_DISABLE_EUTRAN_AFTER_ROAMING_NOT_ALLOWED. </DEPENDENCY>
3635 <NOTE>N/A</NOTE>
3636 <AUTHOR>mtk20359</AUTHOR>
3637</SBP>
3638******* SBP Document END **************************************************************************/
3639 SBP_DATA_DEF(96, SBP_NWSEL_LTE_REJ_RETRY_MECHANISM, SBP_ATTR_NONE, "LTE reject retry mechanism")
3640 SBP_DATA_DEFAULT_VAL(0x00)
3641 SBP_DATA_DEF_END
3642
3643/****** SBP Document BEGIN ************************************************************************
3644<SBP title="SBP_NWSEL_LTE_REJ_RETRY_COUNTER_MAX - LTE reject retry counter maximum">
3645 <DESCRIPTION>
3646 <PARAG>
3647 For LTE reject retry mechanism, UE will retry to search the same PLMN's LTE when UE received network reject.
3648 Once the PLMN's LTE retry counter reaches maximum, UE will disable the PLMN's LTE and search UMTS/GSM.
3649 This SBP data defines the maximum retry counter of the LTE reject retry mechanism.
3650 Note that the maximum value is 5.
3651 </PARAG>
3652 </DESCRIPTION>
3653 <CONFIG>
3654 <VALUE value="1"> maximum retry counter = 1 time</VALUE>
3655 <VALUE value="2"> maximum retry counter = 2 times</VALUE>
3656 <VALUE value="3"> maximum retry counter = 3 times</VALUE>
3657 <VALUE value="4"> maximum retry counter = 4 times</VALUE>
3658 <VALUE value="N"> maximum retry counter = N times</VALUE>
3659 </CONFIG>
3660 <CATEGORY>NWSEL</CATEGORY>
3661 <DEFAULT>0x05</DEFAULT>
3662 <OP>N/A</OP>
3663 <DEPENDENCY> This SBP data depends on SBP_NWSEL_LTE_REJ_RETRY_MECHANISM. </DEPENDENCY>
3664 <NOTE>N/A</NOTE>
3665 <AUTHOR>mtk20359</AUTHOR>
3666</SBP>
3667******* SBP Document END **************************************************************************/
3668 SBP_DATA_DEF(97,SBP_NWSEL_LTE_REJ_RETRY_COUNTER_MAX, SBP_ATTR_NONE, "LTE reject retry counter maximum")
3669 SBP_DATA_DEFAULT_VAL(0x05)
3670 SBP_DATA_DEF_END
3671
3672/****** SBP Document BEGIN ************************************************************************
3673<SBP title="SBP_NWSEL_LTE_REJ_RETRY_DISABLE_TIMER_VALUE - LTE disable timer value for LTE reject retry mechanism">
3674 <DESCRIPTION>
3675 <PARAG>
3676 For LTE reject retry mechanism, the LTE disable timer is composed of value multiplied by unit.
3677 This SBP data defines the value of LTE disable timer.
3678 The unit of LTE disable timer is defined by SBP_NWSEL_LTE_REJ_RETRY_DISABLE_TIMER_UNIT.
3679 </PARAG>
3680 </DESCRIPTION>
3681 <CONFIG>
3682 <VALUE value="1"> value = 1 unit</VALUE>
3683 <VALUE value="2"> value = 2 units</VALUE>
3684 <VALUE value="3"> value = 3 units</VALUE>
3685 <VALUE value="4"> value = 4 units</VALUE>
3686 <VALUE value="N"> value = N units</VALUE>
3687 </CONFIG>
3688 <CATEGORY>NWSEL</CATEGORY>
3689 <DEFAULT>0x02</DEFAULT>
3690 <OP>N/A</OP>
3691 <DEPENDENCY> This SBP data depends on SBP_NWSEL_LTE_REJ_RETRY_MECHANISM. </DEPENDENCY>
3692 <NOTE>N/A</NOTE>
3693 <AUTHOR>mtk20359</AUTHOR>
3694</SBP>
3695******* SBP Document END **************************************************************************/
3696 SBP_DATA_DEF(98,SBP_NWSEL_LTE_REJ_RETRY_DISABLE_TIMER_VALUE, SBP_ATTR_NONE, "LTE disable timer value for LTE reject retry mechanism")
3697 SBP_DATA_DEFAULT_VAL(0x02)
3698 SBP_DATA_DEF_END
3699
3700/*88~95*/
3701/****** SBP Document BEGIN ************************************************************************
3702<SBP title="SBP_NWSEL_LTE_REJ_RETRY_DISABLE_TIMER_UNIT - LTE disable timer unit for LTE reject retry mechanism">
3703 <DESCRIPTION>
3704 <PARAG>
3705 For LTE reject retry mechanism, the LTE disable timer is composed of value multiplied by unit.
3706 This SBP data defines the unit of LTE disable timer.
3707 The value of LTE disable timer is defined by SBP_NWSEL_LTE_REJ_RETRY_DISABLE_TIMER_VALUE.
3708 </PARAG>
3709 </DESCRIPTION>
3710 <CONFIG>
3711 <VALUE value="0x01"> unit = 1 sec</VALUE>
3712 <VALUE value="0x02"> unit = 1 min</VALUE>
3713 <VALUE value="0x03"> unit = 6 mins</VALUE>
3714 <VALUE value="0x04"> unit = 1 hour</VALUE>
3715 <VALUE value="0x05"> unit = 24 hours</VALUE>
3716 </CONFIG>
3717 <CATEGORY>NWSEL</CATEGORY>
3718 <DEFAULT>0x04</DEFAULT>
3719 <OP>N/A</OP>
3720 <DEPENDENCY> This SBP data depends on SBP_NWSEL_LTE_REJ_RETRY_MECHANISM. </DEPENDENCY>
3721 <NOTE>N/A</NOTE>
3722 <AUTHOR>mtk20359</AUTHOR>
3723</SBP>
3724******* SBP Document END **************************************************************************/
3725 SBP_DATA_DEF(99,SBP_NWSEL_LTE_REJ_RETRY_DISABLE_TIMER_UNIT, SBP_ATTR_NONE, "LTE disable timer unit for LTE reject retry mechanism")
3726 SBP_DATA_DEF_VAL(0x01, "LTE_REJ_RETRY_DISABLE_TIMER_UNIT 1 sec")
3727 SBP_DATA_DEF_VAL(0x02, "LTE_REJ_RETRY_DISABLE_TIMER_UNIT 1 min")
3728 SBP_DATA_DEF_VAL(0x03, "LTE_REJ_RETRY_DISABLE_TIMER_UNIT 6 mins")
3729 SBP_DATA_DEF_VAL(0x04, "LTE_REJ_RETRY_DISABLE_TIMER_UNIT 1 hour")
3730 SBP_DATA_DEF_VAL(0x05, "LTE_REJ_RETRY_DISABLE_TIMER_UNIT 24 hours")
3731 SBP_DATA_DEFAULT_VAL(0x04)
3732 SBP_DATA_DEF_END
3733
3734/****** SBP Document BEGIN ************************************************************************
3735<SBP title="SBP_NWSEL_LTE_REJ_RETRY_RECORD_LIFE_TIMER_VALUE - record life timer value for LTE reject retry mechanism">
3736 <DESCRIPTION>
3737 <PARAG>
3738 For LTE reject retry mechanism, the record life timer is composed of value multiplied by unit.
3739 This SBP data defines the value of the record life timer.
3740 The unit of the record life timer is defined by SBP_NWSEL_LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT.
3741 </PARAG>
3742 </DESCRIPTION>
3743 <CONFIG>
3744 <VALUE value="1"> value = 1 unit</VALUE>
3745 <VALUE value="2"> value = 2 units</VALUE>
3746 <VALUE value="3"> value = 3 units</VALUE>
3747 <VALUE value="4"> value = 4 units</VALUE>
3748 <VALUE value="N"> value = N units</VALUE>
3749 </CONFIG>
3750 <CATEGORY>NWSEL</CATEGORY>
3751 <DEFAULT>0x01</DEFAULT>
3752 <OP>N/A</OP>
3753 <DEPENDENCY> This SBP data depends on SBP_NWSEL_LTE_REJ_RETRY_MECHANISM. </DEPENDENCY>
3754 <NOTE>N/A</NOTE>
3755 <AUTHOR>mtk20359</AUTHOR>
3756</SBP>
3757******* SBP Document END **************************************************************************/
3758 SBP_DATA_DEF(100,SBP_NWSEL_LTE_REJ_RETRY_RECORD_LIFE_TIMER_VALUE, SBP_ATTR_NONE, "record life timer value for LTE reject retry mechanism")
3759 SBP_DATA_DEFAULT_VAL(0x01)
3760 SBP_DATA_DEF_END
3761
3762/****** SBP Document BEGIN ************************************************************************
3763<SBP title="SBP_NWSEL_LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT - record life timer unit for LTE reject retry mechanism">
3764 <DESCRIPTION>
3765 <PARAG>
3766 For LTE reject retry mechanism, the record life timer is composed of value multiplied by unit.
3767 This SBP data defines the unit of the record life timer.
3768 The value of the record life timer is defined by SBP_NWSEL_LTE_REJ_RETRY_RECORD_LIFE_TIMER_VALUE.
3769 </PARAG>
3770 </DESCRIPTION>
3771 <CONFIG>
3772 <VALUE value="0x01"> unit = 1 sec</VALUE>
3773 <VALUE value="0x02"> unit = 1 min</VALUE>
3774 <VALUE value="0x03"> unit = 6 mins</VALUE>
3775 <VALUE value="0x04"> unit = 1 hour</VALUE>
3776 <VALUE value="0x05"> unit = 24 hours</VALUE>
3777 </CONFIG>
3778 <CATEGORY>NWSEL</CATEGORY>
3779 <DEFAULT>0x05</DEFAULT>
3780 <OP>N/A</OP>
3781 <DEPENDENCY> This SBP data depends on SBP_NWSEL_LTE_REJ_RETRY_MECHANISM. </DEPENDENCY>
3782 <NOTE>N/A</NOTE>
3783 <AUTHOR>mtk20359</AUTHOR>
3784</SBP>
3785******* SBP Document END **************************************************************************/
3786 SBP_DATA_DEF(101,SBP_NWSEL_LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT, SBP_ATTR_NONE, "record life timer unit for LTE reject retry mechanism")
3787 SBP_DATA_DEF_VAL(0x01, "LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT 1 sec")
3788 SBP_DATA_DEF_VAL(0x02, "LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT 1 min")
3789 SBP_DATA_DEF_VAL(0x03, "LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT 6 mins")
3790 SBP_DATA_DEF_VAL(0x04, "LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT 1 hour")
3791 SBP_DATA_DEF_VAL(0x05, "LTE_REJ_RETRY_RECORD_LIFE_TIMER_UNIT 24 hours")
3792 SBP_DATA_DEFAULT_VAL(0x05)
3793 SBP_DATA_DEF_END
3794
3795 /****** SBP Document BEGIN ************************************************************************
3796<SBP title="SBP_ENDC_EN_AMPR - ENDC enhanced AMPR table">
3797 <DESCRIPTION>
3798 <PARAG>
3799 This feature is used to enable/disable enhanced AMPR table for intraband B41 ENDC.
3800 </PARAG>
3801 </DESCRIPTION>
3802 <CATEGORY>ENDC</CATEGORY>
3803 <CONFIG>
3804 <VALUE value="0">Enhanced table is not enabled</VALUE>
3805 <VALUE value="1">Enhanced table is enabled. The table set in NVRAM_EF_NL1_ENDC_EN_AMPR_LID will be applied</VALUE>
3806 </CONFIG>
3807 <DEFAULT>
3808 0 (Enhanced table is disabled)
3809 </DEFAULT>
3810 <OP>
3811 N/A
3812 </OP>
3813 <DEPENDENCY>
3814 N/A
3815 </DEPENDENCY>
3816 <NOTE>
3817 N/A
3818 </NOTE>
3819 <AUTHOR>mtk14034</AUTHOR>
3820</SBP>
3821******* SBP Document END **************************************************************************/
3822 SBP_DATA_DEF(102, SBP_ENDC_EN_AMPR, SBP_ATTR_NONE, "Enable ENDC enhanced AMPR table")
3823 SBP_DATA_DEF_VAL(0x00, "Enhanced table disable")
3824 SBP_DATA_DEF_VAL(0x01, "Enhanced table enable")
3825 SBP_DATA_DEFAULT_VAL(0x00)
3826 SBP_DATA_DEF_END
3827
3828/****** SBP Document BEGIN ************************************************************************
3829<SBP title="SBP_WCDMA_RRC_FEATURE_EXT - Enable/Disable additional WCDMA RRC Feature">
3830 <DESCRIPTION>
3831 <PARAG>
3832 This SBP enables/disables additional WCDMA RRC Feature. This SBP is extended version of SBP_WCDMA_RRC_FEATURE.
3833 </PARAG>
3834 </DESCRIPTION>
3835 <CATEGORY>RRC</CATEGORY>
3836 <CONFIG>
3837 <VALUE value="0x01">RRC FEATURE: HSSCCHLESS</VALUE>
3838 <VALUE value="0x02">RRC FEATURE: INTERRATHO</VALUE>
3839 <VALUE value="0x04">RRC FEATURE: MEASREPORT</VALUE>
3840 <VALUE value="0x08">RRC FEATURE: TWODRXSCHEMES</VALUE>
3841 <VALUE value="0x10">RRC FEATURE: EDPDCHPOWER</VALUE>
3842 </CONFIG>
3843 <DEFAULT>0x00</DEFAULT>
3844 <OP>N/A</OP>
3845 <DEPENDENCY>N/A</DEPENDENCY>
3846 <NOTE>N/A</NOTE>
3847 <AUTHOR>mtk16766</AUTHOR>
3848</SBP>
3849******* SBP Document END **************************************************************************/
3850 SBP_DATA_DEF(103, SBP_WCDMA_RRC_FEATURE_EXT, SBP_ATTR_NONE, "Enable/Disable additional WCDMA RRC Feature")
3851 SBP_DATA_DEF_VAL(0x01, "RRC FEATURE: HSSCCHLESS")
3852 SBP_DATA_DEF_VAL(0x02, "RRC FEATURE: INTERRATHO")
3853 SBP_DATA_DEF_VAL(0x04, "RRC FEATURE: MEASREPORT")
3854 SBP_DATA_DEF_VAL(0x08, "RRC FEATURE: TWODRXSCHEMES")
3855 SBP_DATA_DEF_VAL(0x10, "RRC FEATURE: EDPDCHPOWER")
3856 SBP_DATA_DEFAULT_VAL(0x00)
3857 SBP_DATA_DEF_END
3858
3859
3860/*104~111*/
3861/****** SBP Document BEGIN ************************************************************************
3862<SBP title="SBP_PDCP_DISC_TMR_VOICE_RB - Value of PDCP discard timer for voice RB">
3863 <DESCRIPTION>
3864 <PARAG>
3865 <LI>Value of PDCP discard timer for voice RB (in ms)</LI>
3866 </PARAG>
3867 </DESCRIPTION>
3868 <CATEGORY>LTE AS</CATEGORY>
3869 <CONFIG>
3870 <VALUE value="0x00">10 ms</VALUE>
3871 <VALUE value="0x01">20 ms</VALUE>
3872 <VALUE value="0x02">30 ms</VALUE>
3873 <VALUE value="0x03">40 ms</VALUE>
3874 <VALUE value="0x04">50 ms</VALUE>
3875 <VALUE value="0x05">60 ms</VALUE>
3876 <VALUE value="0x06">75 ms</VALUE>
3877 <VALUE value="0x07">100 ms</VALUE>
3878 <VALUE value="0x08">150 ms</VALUE>
3879 <VALUE value="0x09">200 ms</VALUE>
3880 <VALUE value="0x0A">250 ms</VALUE>
3881 <VALUE value="0x0B">300 ms</VALUE>
3882 <VALUE value="0x0C">500 ms</VALUE>
3883 <VALUE value="0x0D">750 ms</VALUE>
3884 <VALUE value="0x0E">1500 ms</VALUE>
3885 <VALUE value="0x0F">infinity</VALUE>
3886 </CONFIG>
3887 <DEFAULT>0x09</DEFAULT>
3888 <OP>N/A</OP>
3889 <DEPENDENCY>N/A</DEPENDENCY>
3890 <NOTE>N/A</NOTE>
3891 <AUTHOR>mtk02713</AUTHOR>
3892</SBP>
3893******* SBP Document END **************************************************************************/
3894 SBP_DATA_DEF(104, SBP_PDCP_DISC_TMR_VOICE_RB, SBP_ATTR_NONE, "Value of PDCP discard timer for voice RB")
3895
3896 SBP_DATA_DEF_VAL(0x00, "10 ms")
3897 SBP_DATA_DEF_VAL(0x01, "20 ms")
3898 SBP_DATA_DEF_VAL(0x02, "30 ms")
3899 SBP_DATA_DEF_VAL(0x03, "40 ms")
3900 SBP_DATA_DEF_VAL(0x04, "50 ms")
3901 SBP_DATA_DEF_VAL(0x05, "60 ms")
3902 SBP_DATA_DEF_VAL(0x06, "75 ms")
3903 SBP_DATA_DEF_VAL(0x07, "100 ms")
3904 SBP_DATA_DEF_VAL(0x08, "150 ms")
3905 SBP_DATA_DEF_VAL(0x09, "200 ms")
3906 SBP_DATA_DEF_VAL(0x0A, "250 ms")
3907 SBP_DATA_DEF_VAL(0x0B, "300 ms")
3908 SBP_DATA_DEF_VAL(0x0C, "500 ms")
3909 SBP_DATA_DEF_VAL(0x0D, "750 ms")
3910 SBP_DATA_DEF_VAL(0x0E, "1500 ms")
3911 SBP_DATA_DEF_VAL(0x0F, "infinity")
3912 SBP_DATA_DEFAULT_VAL(0x09)
3913 SBP_DATA_DEF_END
3914
3915/****** SBP Document BEGIN ************************************************************************
3916<SBP title="SBP_RTT_T57M- 1xRTT power-up/Initialization timer(T57m sceonds)">
3917 <DESCRIPTION>
3918 <PARAG> This provides the value for 1xRTT power-up/Initialization timer which is enable after power up.When the timer is active, 1xRTT can not make any register.
3919 We provide this SBP to customize T57m,and the default value is 20seconds as C.S0005 defined.
3920 </PARAG>
3921 </DESCRIPTION>
3922 <CATEGORY>C2K</CATEGORY>
3923 <CONFIG>
3924 <VALUE value="1">Timeout Value 1 seconds</VALUE>
3925 <VALUE value="2">Timeout Value 2 seconds</VALUE>
3926 <VALUE value="3">Timeout Value 3 seconds</VALUE>
3927 <VALUE value="4">Timeout Value 4 seconds</VALUE>
3928 <VALUE value="...">.... seconds</VALUE>
3929 <VALUE value="20">Timeout Value 20 seconds, default value</VALUE>
3930 </CONFIG>
3931 <DEFAULT>20</DEFAULT>
3932 <OP>N/A</OP>
3933 <DEPENDENCY>N/A</DEPENDENCY>
3934 <NOTE>N/A</NOTE>
3935 <AUTHOR>mtk11459</AUTHOR>
3936</SBP>
3937******* SBP Document END **************************************************************************/
3938 SBP_DATA_DEF(105,SBP_RTT_T57M, SBP_ATTR_NONE, "1xRTT power-up/Initialization timer(in second)")
3939 SBP_DATA_DEFAULT_VAL(0x14)
3940 SBP_DATA_DEF_END
3941
3942/****** SBP Document BEGIN ************************************************************************
3943<SBP title="SBP_CAP_DNCA_RECORD_LIFE_TIMER - The record life timer for blacklist of Dynamic NR Cap Adjust mechanism.">
3944 <DESCRIPTION>
3945 <PARAG>
3946 This SBP data used to set the record life timer for blacklist of Dynamic NR Cap Adjust mechanism.
3947 </PARAG>
3948 </DESCRIPTION>
3949 <CATEGORY>ERRC</CATEGORY>
3950 <CONFIG>
3951 <VALUE value="1"> timer = 1 hours</VALUE>
3952 <VALUE value="2"> timer = 2 hours</VALUE>
3953 <VALUE value="3"> timer = 3 hours</VALUE>
3954 <VALUE value="4"> timer = 4 hours</VALUE>
3955 <VALUE value="N"> timer = N hours</VALUE>
3956 </CONFIG>
3957 <DEFAULT>24</DEFAULT>
3958 <OP>N/A</OP>
3959 <DEPENDENCY>This SBP data depends on SBP_ERRC_DYNAMIC_NR_CAP_ADJUST.</DEPENDENCY>
3960 <NOTE>N/A</NOTE>
3961 <AUTHOR>mtk14855</AUTHOR>
3962</SBP>
3963******* SBP Document END **************************************************************************/
3964 SBP_DATA_DEF(106, SBP_CAP_DNCA_RECORD_LIFE_TIMER, SBP_ATTR_NONE, "The record life timer for blacklist of Dynamic NR Cap Adjust mechanism")
3965 SBP_DATA_DEFAULT_VAL(24)
3966 SBP_DATA_DEF_END
3967
3968/****** SBP Document BEGIN ************************************************************************
3969<SBP title="SBP_VGSM_OPTIMIZED_T35XX_VALUE - to optomized the T3580/T3581/T3582 if met connection problem ">
3970 <DESCRIPTION>
3971 <PARAG>
3972 This SBP controls the optimized T35xx value when met connection problem
3973 </PARAG>
3974 </DESCRIPTION>
3975 <CATEGORY>NAS</CATEGORY>
3976 <CONFIG>
3977 <VALUE value="0x00">T3580/T3581/T3582 change to 0 seconds if met connection problem</VALUE>
3978 <VALUE value="0x01">T3580/T3581/T3582 change to 1 seconds if met connection problem</VALUE>
3979 <VALUE value="0x02">T3580/T3581/T3582 change to 2 seconds if met connection problem</VALUE>
3980 <VALUE value="0x03">T3580/T3581/T3582 change to 3 seconds if met connection problem</VALUE>
3981 <VALUE value="0x04">T3580/T3581/T3582 change to 4 seconds if met connection problem</VALUE>
3982 <VALUE value="0x05">T3580/T3581/T3582 change to 5 seconds if met connection problem</VALUE>
3983 <VALUE value="0x06">T3580/T3581/T3582 change to 6 seconds if met connection problem</VALUE>
3984 <VALUE value="0x07">T3580/T3581/T3582 change to 7 seconds if met connection problem</VALUE>
3985 <VALUE value="0x08">T3580/T3581/T3582 change to 8 seconds if met connection problem</VALUE>
3986 <VALUE value="0xff">T3580/T3581/T3582 remains SEPC defined value if met connection problem</VALUE>
3987 </CONFIG>
3988 <DEFAULT>0xFF</DEFAULT>
3989 <OP>N/A</OP>
3990 <DEPENDENCY>N/A</DEPENDENCY>
3991 <NOTE>N/A</NOTE>
3992 <AUTHOR>mtk05464</AUTHOR>
3993</SBP>
3994******* SBP Document END **************************************************************************/
3995 SBP_DATA_DEF(107, SBP_VGSM_OPTIMIZED_T35XX_VALUE, SBP_ATTR_NONE, "Optimize VGSM T3580/T3581/T3582 value if met connection problem")
3996 SBP_DATA_DEF_VAL(0x00, "0: T3580/T3581/T3582 change to 0 seconds if met connection problem")
3997 SBP_DATA_DEF_VAL(0x01, "1: T3580/T3581/T3582 change to 1 seconds if met connection problem")
3998 SBP_DATA_DEF_VAL(0x02, "2: T3580/T3581/T3582 change to 2 seconds if met connection problem")
3999 SBP_DATA_DEF_VAL(0x03, "3: T3580/T3581/T3582 change to 3 seconds if met connection problem")
4000 SBP_DATA_DEF_VAL(0x04, "4: T3580/T3581/T3582 change to 4 seconds if met connection problem")
4001 SBP_DATA_DEF_VAL(0x05, "5: T3580/T3581/T3582 change to 5 seconds if met connection problem")
4002 SBP_DATA_DEF_VAL(0x06, "6: T3580/T3581/T3582 change to 6 seconds if met connection problem")
4003 SBP_DATA_DEF_VAL(0x07, "7: T3580/T3581/T3582 change to 7 seconds if met connection problem")
4004 SBP_DATA_DEF_VAL(0x08, "8: T3580/T3581/T3582 change to 8 seconds if met connection problem")
4005 SBP_DATA_DEF_VAL(0xff, "ff: T3580/T3581/T3582 remains SEPC defined value if met connection problem")
4006 SBP_DATA_DEFAULT_VAL(0xFF)
4007 SBP_DATA_DEF_END
4008
4009/****** SBP Document BEGIN ************************************************************************
4010<SBP title="SBP_LEGACY_FD_TIMER_SCRN_OFF - the timer period of legacy (pre-R8) fast dormancy timer when screen off">
4011 <DESCRIPTION>
4012 <PARAG>
4013 This SBP allow to control the timer period of legacy (pre-R8) fast dormancy timer when screen off.
4014 The unit of this timer is 0.1 sec. Valid range is 0~25 sec.
4015 </PARAG>
4016 </DESCRIPTION>
4017 <CATEGORY>L4</CATEGORY>
4018 <CONFIG>
4019 <VALUE value="50">valid range is 0~25 sec (0~250 units). Default is 5 seconds. </VALUE>
4020 </CONFIG>
4021 <DEFAULT>50</DEFAULT>
4022 <OP>N/A</OP>
4023 <DEPENDENCY>N/A</DEPENDENCY>
4024 <NOTE>N/A</NOTE>
4025 <AUTHOR>mtk08565</AUTHOR>
4026</SBP>
4027******* SBP Document END **************************************************************************/
4028 SBP_DATA_DEF(108, SBP_LEGACY_FD_TIMER_SCRN_OFF, SBP_ATTR_NONE, "the timer period of legacy (pre-R8) fast dormancy timer when screen off")
4029 SBP_DATA_DEFAULT_VAL(50)
4030 SBP_DATA_DEF_END
4031
4032/****** SBP Document BEGIN ************************************************************************
4033<SBP title="SBP_LEGACY_FD_TIMER_SCRN_ON - the timer period of legacy (pre-R8) fast dormancy timer when screen on">
4034 <DESCRIPTION>
4035 <PARAG>
4036 This SBP allow to control the timer period of legacy (pre-R8) fast dormancy timer when screen on.
4037 The unit of this timer is 0.1 sec. Valid range is 0~25 sec.
4038 </PARAG>
4039 </DESCRIPTION>
4040 <CATEGORY>L4</CATEGORY>
4041 <CONFIG>
4042 <VALUE value="150">valid range is 0~25 sec (0~250 units). Default is 15 seconds. </VALUE>
4043 </CONFIG>
4044 <DEFAULT>150</DEFAULT>
4045 <OP>N/A</OP>
4046 <DEPENDENCY>N/A</DEPENDENCY>
4047 <NOTE>N/A</NOTE>
4048 <AUTHOR>mtk08565</AUTHOR>
4049</SBP>
4050******* SBP Document END **************************************************************************/
4051 SBP_DATA_DEF(109, SBP_LEGACY_FD_TIMER_SCRN_ON, SBP_ATTR_NONE, "the timer period of legacy (pre-R8) fast dormancy timer when screen on")
4052 SBP_DATA_DEFAULT_VAL(150)
4053 SBP_DATA_DEF_END
4054
4055/****** SBP Document BEGIN ************************************************************************
4056<SBP title="SBP_R8_FD_TIMER_SCRN_OFF - the timer period of R8 fast dormancy timer when screen off">
4057 <DESCRIPTION>
4058 <PARAG>
4059 This SBP allow to control the timer period of R8 fast dormancy timer when screen off.
4060 The unit of this timer is 0.1 sec. Valid range is 0~25 sec.
4061 </PARAG>
4062 </DESCRIPTION>
4063 <CATEGORY>L4</CATEGORY>
4064 <CONFIG>
4065 <VALUE value="50">valid range is 0~25 sec (0~250 units). Default is 5 seconds. </VALUE>
4066 </CONFIG>
4067 <DEFAULT>50</DEFAULT>
4068 <OP>N/A</OP>
4069 <DEPENDENCY>N/A</DEPENDENCY>
4070 <NOTE>N/A</NOTE>
4071 <AUTHOR>mtk08565</AUTHOR>
4072</SBP>
4073******* SBP Document END **************************************************************************/
4074 SBP_DATA_DEF(110, SBP_R8_FD_TIMER_SCRN_OFF, SBP_ATTR_NONE, "the timer period of R8 fast dormancy timer when screen off")
4075 SBP_DATA_DEFAULT_VAL(50)
4076 SBP_DATA_DEF_END
4077
4078/****** SBP Document BEGIN ************************************************************************
4079<SBP title="SBP_R8_FD_TIMER_SCRN_ON - the timer period of R8 fast dormancy timer when screen on">
4080 <DESCRIPTION>
4081 <PARAG>
4082 This SBP allow to control the timer period of R8 fast dormancy timer when screen on.
4083 The unit of this timer is 0.1 sec. Valid range is 0~25 sec.
4084 </PARAG>
4085 </DESCRIPTION>
4086 <CATEGORY>L4</CATEGORY>
4087 <CONFIG>
4088 <VALUE value="150">valid range is 0~25 sec (0~250 units). Default is 15 seconds. </VALUE>
4089 </CONFIG>
4090 <DEFAULT>150</DEFAULT>
4091 <OP>N/A</OP>
4092 <DEPENDENCY>N/A</DEPENDENCY>
4093 <NOTE>N/A</NOTE>
4094 <AUTHOR>mtk08565</AUTHOR>
4095</SBP>
4096******* SBP Document END **************************************************************************/
4097 SBP_DATA_DEF(111, SBP_R8_FD_TIMER_SCRN_ON, SBP_ATTR_NONE, "the timer period of R8 fast dormancy timer when screen on")
4098 SBP_DATA_DEFAULT_VAL(150)
4099 SBP_DATA_DEF_END
4100
4101/****** SBP Document BEGIN ************************************************************************
4102<SBP title="SBP_NR_SA_TX_DOWNGRADE - Defines if NR SA TX mimo doengrades to 1x1">
4103 <DESCRIPTION>
4104 <PARAG>
4105 This SBP defines if NR SA TX mimo doengrades to 1x1.
4106 </PARAG>
4107 </DESCRIPTION>
4108 <CATEGORY>NR AS</CATEGORY>
4109 <CONFIG>
4110 <VALUE value="0">Align custom file</VALUE>
4111 <VALUE value="1">NR SA TX mimo downgrades to 1x1</VALUE>
4112 </CONFIG>
4113 <DEFAULT>0</DEFAULT>
4114 <OP>N/A</OP>
4115 <DEPENDENCY>N/A</DEPENDENCY>
4116 <NOTE>
4117 N/A
4118 </NOTE>
4119 <AUTHOR>mtk15874</AUTHOR>
4120</SBP>
4121******* SBP Document END **************************************************************************/
4122 SBP_DATA_DEF(112, SBP_NR_SA_TX_DOWNGRADE, SBP_ATTR_NONE, "NR SA TX mimo doengrades")
4123 SBP_DATA_DEF_VAL(0, "Align custom file")
4124 SBP_DATA_DEF_VAL(1, "NR SA TX mimo doengrades to 1x1")
4125#if defined(__IS_NR_DOWNGRADE_SA_TX_MIMO_TO_1X1__)
4126 SBP_DATA_DEFAULT_VAL(1)
4127#else
4128 SBP_DATA_DEFAULT_VAL(0)
4129#endif
4130 SBP_DATA_DEF_END
4131
4132 /****** SBP Document BEGIN ************************************************************************
4133<SBP title="SBP_NR_SA_RX_DOWNGRADE - Defines if NR SA RX mimo doengrades to 2x2">
4134 <DESCRIPTION>
4135 <PARAG>
4136 This SBP defines if NR SA or NSA RX mimo doengrades to 2x2.
4137 </PARAG>
4138 </DESCRIPTION>
4139 <CATEGORY>NR AS</CATEGORY>
4140 <CONFIG>
4141 <VALUE value="0">Align custom file</VALUE>
4142 <VALUE value="1">NR SA RX mimo downgrades to 2x2</VALUE>
4143 <VALUE value="2">NR NSA LTE band RX mimo downgrades to 2x2</VALUE>
4144 <VALUE value="3">NR SA and NSA RX mimo downgrades to 2x2</VALUE>
4145 </CONFIG>
4146 <DEFAULT>0</DEFAULT>
4147 <OP>N/A</OP>
4148 <DEPENDENCY>N/A</DEPENDENCY>
4149 <NOTE>
4150 N/A
4151 </NOTE>
4152 <AUTHOR>mtk15874</AUTHOR>
4153</SBP>
4154******* SBP Document END **************************************************************************/
4155 SBP_DATA_DEF(113, SBP_NR_SA_RX_DOWNGRADE, SBP_ATTR_NONE, "NR SA RX mimo doengrades")
4156 SBP_DATA_DEF_VAL(0, "Align custom file")
4157 SBP_DATA_DEF_VAL(1, "NR SA RX mimo doengrades to 2x2")
4158 SBP_DATA_DEF_VAL(2, "NR NSA LTE band RX mimo downgrades to 2x2")
4159 SBP_DATA_DEF_VAL(3, "NR SA and NSA RX mimo downgrades to 2x2")
4160#if defined(__IS_NR_DOWNGRADE_SA_RX_MIMO_TO_2x2__)
4161 SBP_DATA_DEFAULT_VAL(1)
4162#else
4163 SBP_DATA_DEFAULT_VAL(0)
4164#endif
4165 SBP_DATA_DEF_END
4166
4167/****** SBP Document BEGIN ************************************************************************
4168<SBP title="SBP_VONR_RA_ERROR_ENH_CELL_BAR_TIME - Defines the NR cell excludsion time for the enhancement">
4169 <DESCRIPTION>
4170 <PARAG>
4171 This SBP defines the NR cell excludsion time for the enhancement.
4172 The unit of value is 5 seconds. The enhnacement will be considered disabled if the value is set to zero.
4173 </PARAG>
4174 </DESCRIPTION>
4175 <CATEGORY>NR AS</CATEGORY>
4176 <CONFIG>
4177 <VALUE value="0">The enhnacement is disabled and NR cells would NOT be excluded.</VALUE>
4178 <VALUE value="2">NR cells would be excluded for 10 seconds.</VALUE>
4179 <VALUE value="N">NR cells would be excluded for 5*N seconds.</VALUE>
4180 <VALUE value="60">NR cells would be excluded for 300 seconds.</VALUE>
4181 </CONFIG>
4182 <DEFAULT>2</DEFAULT>
4183 <OP>N/A</OP>
4184 <DEPENDENCY>N/A</DEPENDENCY>
4185 <NOTE>
4186 N/A
4187 </NOTE>
4188 <AUTHOR>mtk12491</AUTHOR>
4189</SBP>
4190******* SBP Document END **************************************************************************/
4191 SBP_DATA_DEF(114, SBP_VONR_RA_ERROR_ENH_CELL_BAR_TIME, SBP_ATTR_NONE, "NR Cell excludsion time for the enhancement")
4192 SBP_DATA_DEFAULT_VAL(2)
4193 SBP_DATA_DEF_END
4194
4195/****** SBP Document BEGIN ************************************************************************
4196<SBP title="title="SBP_LTE_SNIFF_IN_VIRTUAL_MODE - Enable LTE Sniffer in Virtual mode for NO service and LIMITED service">
4197 <DESCRIPTION>
4198 This SBP is used to enable Sniffer in virtual mode.
4199 <LI>0x00 : SBP OFF. Sniffer disabled in virtual mode</LI>
4200 <LI>0x01 : Enabled in no_service cases only</LI>
4201 <LI>0x02 : Enabled for both no service and limited service</LI>
4202 </DESCRIPTION>
4203 <CATEGORY>EAS</CATEGORY>
4204 <CONFIG>
4205 <VALUE value="0x00">Sniffer disabled in virtual mode</VALUE>
4206 <VALUE value="0x01">Enabled in no_service cases only</VALUE>
4207 <VALUE value="0x02">Enabled for both no service and limited service</VALUE>
4208 </CONFIG>
4209 <DEFAULT>
4210 0x00
4211 </DEFAULT>
4212 <OP>
4213 N/A
4214 </OP>
4215 <DEPENDENCY>
4216 N/A
4217 </DEPENDENCY>
4218 <NOTE>
4219 This feature is available in LR12A.R3.MP onwards.
4220 </NOTE>
4221 <AUTHOR>mtk15231</AUTHOR>
4222</SBP>
4223******* SBP Document END **************************************************************************/
4224 SBP_DATA_DEF(115, SBP_LTE_SNIFF_IN_VIRTUAL_MODE, SBP_ATTR_NONE, "Enable LTE Sniffer in Virtual mode for NO service and LIMITED service")
4225
4226 SBP_DATA_DEF_VAL(0x00, "Sniffer disabled in virtual mode")
4227 SBP_DATA_DEF_VAL(0x01, "Enabled in no_service cases only")
4228 SBP_DATA_DEF_VAL(0x02, "Enabled for both no service and limited service")
4229
4230#if defined(__DISABLE_LTE_SNIFF_IN_VIRTUAL_MODE__)
4231 SBP_DATA_DEFAULT_VAL(0x00)
4232#elif defined(__ENABLE_LTE_SNIFF_IN_VIRTUAL_MODE_NO_AND_LIMITED_SERVICE__)
4233 SBP_DATA_DEFAULT_VAL(0x02)
4234#else
4235 SBP_DATA_DEFAULT_VAL(0x01)
4236#endif
4237
4238 SBP_DATA_DEF_END
4239
4240/****** SBP Document BEGIN ************************************************************************
4241<SBP title="title="SBP_DISABLE_IGNORE_POWEROFF_COMMON_PROCEDURE - do not ignore common procedure in power-off case">
4242 <DESCRIPTION>
4243 24.501 5.5.2.2.6 (e) UE shall ignore common procedure in power-off case.
4244 If this SBP is enabled, UE will continue the comon procedure (AKA, identity).
4245 </DESCRIPTION>
4246 <CATEGORY>NR NAS</CATEGORY>
4247 <CONFIG>
4248 <VALUE value="0x00">Disabled</VALUE>
4249 <VALUE value="0x01">Enabled in CT only</VALUE>
4250 <VALUE value="0x02">Enabled in all operators</VALUE>
4251 </CONFIG>
4252 <DEFAULT>
4253 0x00
4254 </DEFAULT>
4255 <OP>
4256 N/A
4257 </OP>
4258 <DEPENDENCY>
4259 N/A
4260 </DEPENDENCY>
4261 <NOTE>
4262 If this SBP is enabled, UE behavior may violate spec.
4263 </NOTE>
4264 <AUTHOR>mtk01202</AUTHOR>
4265</SBP>
4266******* SBP Document END **************************************************************************/
4267 SBP_DATA_DEF(116, SBP_DISABLE_IGNORE_POWEROFF_COMMON_PROCEDURE, SBP_ATTR_NONE, "do not ignore common procedure in power-off case")
4268
4269 SBP_DATA_DEF_VAL(0x00, "Disabled")
4270 SBP_DATA_DEF_VAL(0x01, "Enabled in CT only")
4271 SBP_DATA_DEF_VAL(0x02, "Enabled in all operators")
4272
4273#if defined(__DISABLE_IGNORE_POWEROFF_COMMON_PROCEDURE_IN_CT__)
4274 SBP_DATA_DEFAULT_VAL(0x01)
4275#elif defined(__DISABLE_IGNORE_POWEROFF_COMMON_PROCEDURE_IN_ALL_OPERATORS__)
4276 SBP_DATA_DEFAULT_VAL(0x02)
4277#else
4278 SBP_DATA_DEFAULT_VAL(0x00)
4279#endif
4280
4281 SBP_DATA_DEF_END
4282
4283/****** SBP Document BEGIN ************************************************************************
4284<SBP title="SBP_LBS_LCSP_SUPPORT_RAT- Configuration to decide LCSP support based on the SBP value or input from AP/AGPSD">
4285 <DESCRIPTION>
4286 <PARAG>
4287 This SBP is uesd to decide the LCSP support.
4288 When this SBP value is non-zero then LCSP support is decided based on this value and
4289 if the value is zero then LCSP support is decided based on input from AP/AGPSD.
4290 If the SBP value is 0x80 then LCSP support is disabled for all RAT.
4291 </PARAG>
4292 </DESCRIPTION>
4293 <CATEGORY>AGPS</CATEGORY>
4294 <CONFIG>
4295 <VALUE value="0x00">LCSP support is decided based on input from AP/AGPSD</VALUE>
4296 <VALUE value="0x01">LCSP support for 2G only</VALUE>
4297 <VALUE value="0x02">LCSP support for 3G only</VALUE>
4298 <VALUE value="0x03">LCSP support for 2G and 3G</VALUE>
4299 <VALUE value="0x04">LCSP support for 4G only</VALUE>
4300 <VALUE value="0x05">LCSP support for 2G and 4G</VALUE>
4301 <VALUE value="0x06">LCSP support for 3G and 4G</VALUE>
4302 <VALUE value="0x07">LCSP support for 2G, 3G and 4G</VALUE>
4303 <VALUE value="0x08">LCSP support for 5G only</VALUE>
4304 <VALUE value="0x09">LCSP support for 2G and 5G</VALUE>
4305 <VALUE value="0x0a">LCSP support for 3G and 5G</VALUE>
4306 <VALUE value="0x0b">LCSP support for 2G, 3G and 5G</VALUE>
4307 <VALUE value="0x0c">LCSP support for 4G and 5G</VALUE>
4308 <VALUE value="0x0d">LCSP support for 2G, 4G and 5G</VALUE>
4309 <VALUE value="0x0e">LCSP support for 3G, 4G and 5G</VALUE>
4310 <VALUE value="0x0f">LCSP support for 2G, 3G, 4G and 5G</VALUE>
4311 <VALUE value="0x80">LCSP support disabled for all RAT</VALUE>
4312 </CONFIG>
4313 <DEFAULT>0x00</DEFAULT>
4314 <OP>N/A</OP>
4315 <DEPENDENCY>N/A</DEPENDENCY>
4316 <NOTE>N/A</NOTE>
4317 <AUTHOR>ot902253</AUTHOR>
4318</SBP>
4319******* SBP Document END **************************************************************************/
4320 SBP_DATA_DEF(117,SBP_LBS_LCSP_SUPPORT_RAT, SBP_ATTR_NONE, "Configuration to decide LCSP support based on the SBP value or input from AP/AGPSD")
4321 SBP_DATA_DEF_VAL(0x00, "0: LCSP support is decided based on input from AP/AGPSD")
4322 SBP_DATA_DEF_VAL(0x01, "1: LCSP support for 2G only")
4323 SBP_DATA_DEF_VAL(0x02, "2: LCSP support for 3G only")
4324 SBP_DATA_DEF_VAL(0x03, "3: LCSP support for 2G and 3G")
4325 SBP_DATA_DEF_VAL(0x04, "4: LCSP support for 4G only")
4326 SBP_DATA_DEF_VAL(0x05, "5: LCSP support for 2G and 4G")
4327 SBP_DATA_DEF_VAL(0x06, "6: LCSP support for 3G and 4G")
4328 SBP_DATA_DEF_VAL(0x07, "7: LCSP support for 2G, 3G and 4G")
4329 SBP_DATA_DEF_VAL(0x08, "8: LCSP support for 5G only")
4330 SBP_DATA_DEF_VAL(0x09, "9: LCSP support for 2G and 5G")
4331 SBP_DATA_DEF_VAL(0x0a, "a: LCSP support for 3G and 5G")
4332 SBP_DATA_DEF_VAL(0x0b, "b: LCSP support for 2G, 3G and 5G")
4333 SBP_DATA_DEF_VAL(0x0c, "c: LCSP support for 4G and 5G")
4334 SBP_DATA_DEF_VAL(0x0d, "d: LCSP support for 2G, 4G and 5G")
4335 SBP_DATA_DEF_VAL(0x0e, "e: LCSP support for 3G, 4G and 5G")
4336 SBP_DATA_DEF_VAL(0x0f, "f: LCSP support for 2G, 3G, 4G and 5G")
4337 SBP_DATA_DEF_VAL(0x80, "80: LCSP support disabled for all RAT")
4338 SBP_DATA_DEFAULT_VAL(0x00)
4339 SBP_DATA_DEF_END
4340
4341/****** SBP Document BEGIN ************************************************************************
4342<SBP title="SBP_TUW_1_TIMER_PERIOD - define the timer period of TUW_1 in VzW 5GUW icon display feature">
4343 <DESCRIPTION>
4344 <PARAG> TUW1: 0 to 30 seconds in 1 second steps with a default setting of 3 seconds.
4345 </PARAG>
4346 </DESCRIPTION>
4347 <CATEGORY>L4</CATEGORY>
4348 <CONFIG>
4349 <VALUE value="...">.... seconds</VALUE>
4350 </CONFIG>
4351 <DEFAULT>0</DEFAULT>
4352 <OP>N/A</OP>
4353 <DEPENDENCY>N/A</DEPENDENCY>
4354 <NOTE>N/A</NOTE>
4355 <AUTHOR>mtk08565</AUTHOR>
4356</SBP>
4357******* SBP Document END **************************************************************************/
4358 SBP_DATA_DEF(118, SBP_TUW_1_TIMER_PERIOD, SBP_ATTR_NONE, "Timer period of TUW_1 in VzW 5GUW icon display feature")
4359 SBP_DATA_DEFAULT_VAL(3)
4360 SBP_DATA_DEF_END
4361
4362/****** SBP Document BEGIN ************************************************************************
4363<SBP title="SBP_TUW_2_TIMER_PERIOD - define the timer period of TUW_2 in VzW 5GUW icon display feature">
4364 <DESCRIPTION>
4365 <PARAG> TUW2: 0 to 120 seconds in 1 second steps with a default setting of 60 seconds.
4366 </PARAG>
4367 </DESCRIPTION>
4368 <CATEGORY>L4</CATEGORY>
4369 <CONFIG>
4370 <VALUE value="...">.... seconds</VALUE>
4371 </CONFIG>
4372 <DEFAULT>0</DEFAULT>
4373 <OP>N/A</OP>
4374 <DEPENDENCY>N/A</DEPENDENCY>
4375 <NOTE>N/A</NOTE>
4376 <AUTHOR>mtk08565</AUTHOR>
4377</SBP>
4378******* SBP Document END **************************************************************************/
4379 SBP_DATA_DEF(119, SBP_TUW_2_TIMER_PERIOD, SBP_ATTR_NONE, "Timer period of TUW_2 in VzW 5GUW icon display feature")
4380 SBP_DATA_DEFAULT_VAL(60)
4381 SBP_DATA_DEF_END
4382
4383/****** SBP Document BEGIN ************************************************************************
4384<SBP title="SBP_TUW_3_TIMER_PERIOD - define the timer period of TUW_3 in VzW 5GUW icon display feature">
4385 <DESCRIPTION>
4386 <PARAG> TUW3: 0 to 30 seconds in 1 second steps with a default setting of 2 seconds.
4387 </PARAG>
4388 </DESCRIPTION>
4389 <CATEGORY>L4</CATEGORY>
4390 <CONFIG>
4391 <VALUE value="...">.... seconds</VALUE>
4392 </CONFIG>
4393 <DEFAULT>0</DEFAULT>
4394 <OP>N/A</OP>
4395 <DEPENDENCY>N/A</DEPENDENCY>
4396 <NOTE>N/A</NOTE>
4397 <AUTHOR>mtk08565</AUTHOR>
4398</SBP>
4399******* SBP Document END **************************************************************************/
4400 SBP_DATA_DEF(120, SBP_TUW_3_TIMER_PERIOD, SBP_ATTR_NONE, "Timer period of TUW_3 in VzW 5GUW icon display feature")
4401 SBP_DATA_DEFAULT_VAL(2)
4402 SBP_DATA_DEF_END
4403
4404/****** SBP Document BEGIN ************************************************************************
4405<SBP title="SBP_NR_CA_MAX_UL_CC_NUM - Defines the maximum number of supported NR UL CCs">
4406 <DESCRIPTION>
4407 <PARAG>
4408 This SBP defines the maximum number of supported NR CCs for UL.
4409 </PARAG>
4410 </DESCRIPTION>
4411 <CATEGORY>NR AS</CATEGORY>
4412 <CONFIG>
4413 <VALUE value="1">1 NR UL CC</VALUE>
4414 <VALUE value="2">2 NR UL CC</VALUE>
4415 </CONFIG>
4416 <DEFAULT>2</DEFAULT>
4417 <OP>N/A</OP>
4418 <DEPENDENCY>N/A</DEPENDENCY>
4419 <NOTE>
4420 N/A
4421 </NOTE>
4422 <AUTHOR>mtk01921</AUTHOR>
4423</SBP>
4424******* SBP Document END **************************************************************************/
4425 SBP_DATA_DEF(121, SBP_NR_CA_MAX_UL_CC_NUM, SBP_ATTR_NONE, "Maximum number of supported NR UL CCs")
4426 SBP_DATA_DEF_VAL(0x01, "1 NR UL CC")
4427 SBP_DATA_DEF_VAL(0x02, "2 NR UL CC")
4428#if defined(__SBP_DISABLE_NR_UL_CA__)
4429 SBP_DATA_DEFAULT_VAL(0x01)
4430#else
4431 SBP_DATA_DEFAULT_VAL(0x02)
4432#endif
4433 SBP_DATA_DEF_END
4434
4435/****** SBP Document BEGIN ************************************************************************
4436<SBP title="SBP_NWSEL_IMS_OOS_SEARCH_GUARD_TIMER - Timer to control NWSEL's special OOS search behavior during IMS call ">
4437 <DESCRIPTION>
4438 <PARAG>
4439 This timer control the duration of NWSEL's special OOS search behavior during IMS call.
4440 If timer value not equal to zero, NWSEL will search IMS RAT only for a period when UE lost coverage during IMS call.
4441 After timer expires or IMS call finishes, NWSEL's special OOS search behavior will end.
4442 The timer value can be configured by this SBP.
4443 </PARAG>
4444 </DESCRIPTION>
4445 <CONFIG>
4446 <VALUE value="0x00"> valid range is 1~250 sec. Default is 0 seconds (feature disabled). </VALUE>
4447 </CONFIG>
4448 <CATEGORY>NWSEL</CATEGORY>
4449 <DEFAULT>0x00</DEFAULT>
4450 <OP>N/A</OP>
4451 <DEPENDENCY> N/A </DEPENDENCY>
4452 <NOTE>N/A</NOTE>
4453 <AUTHOR>mtk20359</AUTHOR>
4454</SBP>
4455******* SBP Document END **************************************************************************/
4456 SBP_DATA_DEF(122, SBP_NWSEL_IMS_OOS_SEARCH_GUARD_TIMER, SBP_ATTR_NONE, "Timer to control NWSEL's special OOS search behavior during IMS call")
4457 SBP_DATA_DEFAULT_VAL(0x3C)
4458 SBP_DATA_DEF_END
4459
4460/****** SBP Document BEGIN ************************************************************************
4461<SBP title="SBP_CONFIG_INTER_INTRA_UL_CA_DISABLE - This SBP data is for selection of UL CA disable inter Band CA & intra Band CA">
4462 <DESCRIPTION>
4463 <PARAG>
4464 This SBP data used to select UL CA disable for inter band CA & intra band CA or complete disable UL CA.
4465 </PARAG>
4466 </DESCRIPTION>
4467 <CATEGORY>ERRC</CATEGORY>
4468 <CONFIG>
4469 <VALUE value="0x01"> UL CA disable for intra Band CA</VALUE>
4470 <VALUE value="0x02"> UL CA disable for inter Band CA</VALUE>
4471 <VALUE value="0x03"> UL CA disable all UL CA</VALUE>
4472 <VALUE value="0xFF"> Disable this SBP by default</VALUE>
4473 </CONFIG>
4474 <DEFAULT>0xFF</DEFAULT>
4475 <OP>N/A</OP>
4476 <DEPENDENCY>This SBP data </DEPENDENCY>
4477 <NOTE>N/A</NOTE>
4478 <AUTHOR>ot901097</AUTHOR>
4479</SBP>
4480******* SBP Document END **************************************************************************/
4481 SBP_DATA_DEF(123, SBP_CONFIG_INTER_INTRA_UL_CA_DISABLE, SBP_ATTR_NONE, "This SBP data is for selection of UL CA disable inter Band CA & intra Band CA")
4482 SBP_DATA_DEF_VAL(0x01, "1: Disable intra Band UL CA")
4483 SBP_DATA_DEF_VAL(0x02, "2: Disable inter Band UL CA")
4484 SBP_DATA_DEF_VAL(0x03, "3: Disable all UL CA")
4485 SBP_DATA_DEF_VAL(0xFF, "255: Disable this SBP by default")
4486 SBP_DATA_DEFAULT_VAL(0xFF)
4487 SBP_DATA_DEF_END
4488
4489/****** SBP Document BEGIN ************************************************************************
4490<SBP title="SBP_PLMN_TIMER_REASON_REJ_42">
4491 <DESCRIPTION>
4492 <PARAG>
4493 Define the initial timer value of NWSEL_PLMN_TIMER_REASON_REJ_42
4494 This SBP allow to control the timer period of NWSEL_PLMN_TIMER_REASON_REJ_42.
4495 The Timer support incremental settings.
4496 The unit of this timer is 1 min. (Range: 0-255)
4497 </PARAG>
4498 </DESCRIPTION>
4499 <CATEGORY>NAS</CATEGORY>
4500 <CONFIG>
4501 <VALUE value="0"> Default is 0. Means no customized value. UE will use internal default value </VALUE>
4502 </CONFIG>
4503 <DEFAULT>0</DEFAULT>
4504 <OP>N/A</OP>
4505 <DEPENDENCY>N/A</DEPENDENCY>
4506 <NOTE>N/A</NOTE>
4507 <AUTHOR>mtk13581</AUTHOR>
4508</SBP>
4509******* SBP Document END **************************************************************************/
4510 SBP_DATA_DEF(124, SBP_PLMN_TIMER_REASON_REJ_42, SBP_ATTR_NONE, "the timer period of NWSEL_PLMN_TIMER_REASON_REJ_42")
4511 SBP_DATA_DEFAULT_VAL(0)
4512 SBP_DATA_DEF_END
4513
4514/****** SBP Document BEGIN ************************************************************************
4515<SBP title="SBP_PLMN_TIMER_REASON_REJ_42_DIFF">
4516 <DESCRIPTION>
4517 <PARAG>
4518 Define the diff value of NWSEL_PLMN_TIMER_REASON_REJ_42
4519 The timer will be T(n) = initial_value + n*diff_value
4520 n is the counter for trigger times
4521 </PARAG>
4522 </DESCRIPTION>
4523 <CATEGORY>NAS</CATEGORY>
4524 <CONFIG>
4525 <VALUE value="0">0</VALUE>
4526 </CONFIG>
4527 <DEFAULT>0</DEFAULT>
4528 <OP>N/A</OP>
4529 <DEPENDENCY>N/A</DEPENDENCY>
4530 <NOTE>N/A</NOTE>
4531 <AUTHOR>mtk13581</AUTHOR>
4532</SBP>
4533******* SBP Document END **************************************************************************/
4534 SBP_DATA_DEF(125, SBP_PLMN_TIMER_REASON_REJ_42_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_REASON_REJ_42")
4535 SBP_DATA_DEFAULT_VAL(0)
4536 SBP_DATA_DEF_END
4537
4538/****** SBP Document BEGIN ************************************************************************
4539<SBP title="SBP_PLMN_TIMER_REASON_REJ_42_MAX">
4540 <DESCRIPTION>
4541 <PARAG>
4542 Define the MAX value of NWSEL_PLMN_TIMER_REASON_REJ_42
4543 Restrict the timer not to exceed the MAX value
4544 </PARAG>
4545 </DESCRIPTION>
4546 <CATEGORY>NAS</CATEGORY>
4547 <CONFIG>
4548 <VALUE value="12">12</VALUE>
4549 </CONFIG>
4550 <DEFAULT>12</DEFAULT>
4551 <OP>N/A</OP>
4552 <DEPENDENCY>N/A</DEPENDENCY>
4553 <NOTE>N/A</NOTE>
4554 <AUTHOR>mtk13581</AUTHOR>
4555</SBP>
4556******* SBP Document END **************************************************************************/
4557 SBP_DATA_DEF(126, SBP_PLMN_TIMER_REASON_REJ_42_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_REASON_REJ_42")
4558 SBP_DATA_DEFAULT_VAL(12)
4559 SBP_DATA_DEF_END
4560
4561/****** SBP Document BEGIN ************************************************************************
4562<SBP title="SBP_PLMN_TIMER_REASON_REJ_42_UNIT">
4563 <DESCRIPTION>
4564 <PARAG>
4565 Define the UNIT value of NWSEL_PLMN_TIMER_REASON_REJ_42
4566 Default unit is 1 minute
4567 </PARAG>
4568 </DESCRIPTION>
4569 <CATEGORY>NAS</CATEGORY>
4570 <CONFIG>
4571 <VALUE value="0">Timer Unit is minute</VALUE>
4572 <VALUE value="1">Timer Unit is second</VALUE>
4573 <VALUE value="2">Timer Unit is hour</VALUE>
4574 <VALUE value="3">Timer set as infinite</VALUE>
4575 </CONFIG>
4576 <DEFAULT>0</DEFAULT>
4577 <OP>N/A</OP>
4578 <DEPENDENCY>N/A</DEPENDENCY>
4579 <NOTE>N/A</NOTE>
4580 <AUTHOR>mtk13581</AUTHOR>
4581</SBP>
4582******* SBP Document END **************************************************************************/
4583 SBP_DATA_DEF(127, SBP_PLMN_TIMER_REASON_REJ_42_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_REASON_REJ_42")
4584 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
4585 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
4586 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
4587 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
4588 SBP_DATA_DEFAULT_VAL(0)
4589 SBP_DATA_DEF_END
4590
4591/****** SBP Document BEGIN ************************************************************************
4592<SBP title="SBP_PLMN_TIMER_EUTRAN_ABNORMAL">
4593 <DESCRIPTION>
4594 <PARAG>
4595 Define the initial timer value of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL
4596 This SBP allow to control the timer period of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL.
4597 The Timer support incremental settings.
4598 The unit of this timer is 1 min. (Range: 0-255)
4599 </PARAG>
4600 </DESCRIPTION>
4601 <CATEGORY>NAS</CATEGORY>
4602 <CONFIG>
4603 <VALUE value="0"> Default is 0. Means no customized value. UE will use internal default value </VALUE>
4604 </CONFIG>
4605 <DEFAULT>0</DEFAULT>
4606 <OP>N/A</OP>
4607 <DEPENDENCY>N/A</DEPENDENCY>
4608 <NOTE>N/A</NOTE>
4609 <AUTHOR>mtk13581</AUTHOR>
4610</SBP>
4611******* SBP Document END **************************************************************************/
4612 SBP_DATA_DEF(128, SBP_PLMN_TIMER_EUTRAN_ABNORMAL, SBP_ATTR_NONE, "the timer period of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL")
4613 SBP_DATA_DEFAULT_VAL(0)
4614 SBP_DATA_DEF_END
4615
4616/****** SBP Document BEGIN ************************************************************************
4617<SBP title="SBP_PLMN_TIMER_EUTRAN_ABNORMAL_DIFF">
4618 <DESCRIPTION>
4619 <PARAG>
4620 Define the diff value of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL
4621 The timer will be T(n) = initial_value + n*diff_value
4622 n is the counter for trigger times
4623 </PARAG>
4624 </DESCRIPTION>
4625 <CATEGORY>NAS</CATEGORY>
4626 <CONFIG>
4627 <VALUE value="0">0</VALUE>
4628 </CONFIG>
4629 <DEFAULT>0</DEFAULT>
4630 <OP>N/A</OP>
4631 <DEPENDENCY>N/A</DEPENDENCY>
4632 <NOTE>N/A</NOTE>
4633 <AUTHOR>mtk13581</AUTHOR>
4634</SBP>
4635******* SBP Document END **************************************************************************/
4636 SBP_DATA_DEF(129, SBP_PLMN_TIMER_EUTRAN_ABNORMAL_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL")
4637 SBP_DATA_DEFAULT_VAL(0)
4638 SBP_DATA_DEF_END
4639
4640/****** SBP Document BEGIN ************************************************************************
4641<SBP title="SBP_PLMN_TIMER_EUTRAN_ABNORMAL_MAX">
4642 <DESCRIPTION>
4643 <PARAG>
4644 Define the MAX value of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL
4645 Restrict the timer not to exceed the MAX value
4646 </PARAG>
4647 </DESCRIPTION>
4648 <CATEGORY>NAS</CATEGORY>
4649 <CONFIG>
4650 <VALUE value="12">12</VALUE>
4651 </CONFIG>
4652 <DEFAULT>12</DEFAULT>
4653 <OP>N/A</OP>
4654 <DEPENDENCY>N/A</DEPENDENCY>
4655 <NOTE>N/A</NOTE>
4656 <AUTHOR>mtk13581</AUTHOR>
4657</SBP>
4658******* SBP Document END **************************************************************************/
4659 SBP_DATA_DEF(130, SBP_PLMN_TIMER_EUTRAN_ABNORMAL_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL")
4660 SBP_DATA_DEFAULT_VAL(12)
4661 SBP_DATA_DEF_END
4662
4663/****** SBP Document BEGIN ************************************************************************
4664<SBP title="SBP_PLMN_TIMER_EUTRAN_ABNORMAL_UNIT">
4665 <DESCRIPTION>
4666 <PARAG>
4667 Define the UNIT value of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL
4668 Default unit is 1 minute
4669 </PARAG>
4670 </DESCRIPTION>
4671 <CATEGORY>NAS</CATEGORY>
4672 <CONFIG>
4673 <VALUE value="0">Timer Unit is minute</VALUE>
4674 <VALUE value="1">Timer Unit is second</VALUE>
4675 <VALUE value="2">Timer Unit is hour</VALUE>
4676 <VALUE value="3">Timer set as infinite</VALUE>
4677 </CONFIG>
4678 <DEFAULT>0</DEFAULT>
4679 <OP>N/A</OP>
4680 <DEPENDENCY>N/A</DEPENDENCY>
4681 <NOTE>N/A</NOTE>
4682 <AUTHOR>mtk13581</AUTHOR>
4683</SBP>
4684******* SBP Document END **************************************************************************/
4685 SBP_DATA_DEF(131, SBP_PLMN_TIMER_EUTRAN_ABNORMAL_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_EUTRAN_ABNORMAL")
4686 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
4687 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
4688 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
4689 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
4690 SBP_DATA_DEFAULT_VAL(0)
4691 SBP_DATA_DEF_END
4692
4693/****** SBP Document BEGIN ************************************************************************
4694<SBP title="SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE">
4695 <DESCRIPTION>
4696 <PARAG>
4697 Define the initial timer value of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE
4698 This SBP allow to control the timer period of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE.
4699 The Timer support incremental settings.
4700 The unit of this timer is 1 min. (Range: 0-255)
4701 </PARAG>
4702 </DESCRIPTION>
4703 <CATEGORY>NAS</CATEGORY>
4704 <CONFIG>
4705 <VALUE value="0">Default is 0. Means no customized value. UE will use internal default value</VALUE>
4706 </CONFIG>
4707 <DEFAULT>0</DEFAULT>
4708 <OP>N/A</OP>
4709 <DEPENDENCY>N/A</DEPENDENCY>
4710 <NOTE>N/A</NOTE>
4711 <AUTHOR>mtk13581</AUTHOR>
4712</SBP>
4713******* SBP Document END **************************************************************************/
4714 SBP_DATA_DEF(132, SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE, SBP_ATTR_NONE, "the timer period of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE")
4715 SBP_DATA_DEFAULT_VAL(0)
4716 SBP_DATA_DEF_END
4717
4718/****** SBP Document BEGIN ************************************************************************
4719<SBP title="SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE_DIFF">
4720 <DESCRIPTION>
4721 <PARAG>
4722 Define the diff value of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE
4723 The timer will be T(n) = initial_value + n*diff_value
4724 n is the counter for trigger times
4725 </PARAG>
4726 </DESCRIPTION>
4727 <CATEGORY>NAS</CATEGORY>
4728 <CONFIG>
4729 <VALUE value="0">0</VALUE>
4730 </CONFIG>
4731 <DEFAULT>0</DEFAULT>
4732 <OP>N/A</OP>
4733 <DEPENDENCY>N/A</DEPENDENCY>
4734 <NOTE>N/A</NOTE>
4735 <AUTHOR>mtk13581</AUTHOR>
4736</SBP>
4737******* SBP Document END **************************************************************************/
4738 SBP_DATA_DEF(133, SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE")
4739 SBP_DATA_DEFAULT_VAL(0)
4740 SBP_DATA_DEF_END
4741
4742/****** SBP Document BEGIN ************************************************************************
4743<SBP title="SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE_MAX">
4744 <DESCRIPTION>
4745 <PARAG>
4746 Define the MAX value of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE
4747 Restrict the timer not to exceed the MAX value
4748 </PARAG>
4749 </DESCRIPTION>
4750 <CATEGORY>NAS</CATEGORY>
4751 <CONFIG>
4752 <VALUE value="12">12</VALUE>
4753 </CONFIG>
4754 <DEFAULT>12</DEFAULT>
4755 <OP>N/A</OP>
4756 <DEPENDENCY>N/A</DEPENDENCY>
4757 <NOTE>N/A</NOTE>
4758 <AUTHOR>mtk13581</AUTHOR>
4759</SBP>
4760******* SBP Document END **************************************************************************/
4761 SBP_DATA_DEF(134, SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE")
4762 SBP_DATA_DEFAULT_VAL(12)
4763 SBP_DATA_DEF_END
4764
4765/****** SBP Document BEGIN ************************************************************************
4766<SBP title="SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE_UNIT">
4767 <DESCRIPTION>
4768 <PARAG>
4769 Define the UNIT value of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE
4770 Default unit is 1 minute
4771 </PARAG>
4772 </DESCRIPTION>
4773 <CATEGORY>NAS</CATEGORY>
4774 <CONFIG>
4775 <VALUE value="0">Timer Unit is minute</VALUE>
4776 <VALUE value="1">Timer Unit is second</VALUE>
4777 <VALUE value="2">Timer Unit is hour</VALUE>
4778 <VALUE value="3">Timer set as infinite</VALUE>
4779 </CONFIG>
4780 <DEFAULT>0</DEFAULT>
4781 <OP>N/A</OP>
4782 <DEPENDENCY>N/A</DEPENDENCY>
4783 <NOTE>N/A</NOTE>
4784 <AUTHOR>mtk13581</AUTHOR>
4785</SBP>
4786******* SBP Document END **************************************************************************/
4787 SBP_DATA_DEF(135, SBP_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_EUTRAN_VOICE_NOT_POSSIBLE")
4788 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
4789 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
4790 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
4791 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
4792 SBP_DATA_DEFAULT_VAL(0)
4793 SBP_DATA_DEF_END
4794
4795/****** SBP Document BEGIN ************************************************************************
4796<SBP title="SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW">
4797 <DESCRIPTION>
4798 <PARAG>
4799 Define the initial timer value of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW
4800 This SBP allow to control the timer period of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW.
4801 The Timer support incremental settings.
4802 The unit of this timer is 1 min. (Range: 0-255)
4803 </PARAG>
4804 </DESCRIPTION>
4805 <CATEGORY>NAS</CATEGORY>
4806 <CONFIG>
4807 <VALUE value="0">Default is 0. Means no customized value. UE will use internal default value</VALUE>
4808 </CONFIG>
4809 <DEFAULT>0</DEFAULT>
4810 <OP>N/A</OP>
4811 <DEPENDENCY>N/A</DEPENDENCY>
4812 <NOTE>N/A</NOTE>
4813 <AUTHOR>mtk13581</AUTHOR>
4814</SBP>
4815******* SBP Document END **************************************************************************/
4816 SBP_DATA_DEF(136, SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW, SBP_ATTR_NONE, "the timer period of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW")
4817 SBP_DATA_DEFAULT_VAL(0)
4818 SBP_DATA_DEF_END
4819
4820/****** SBP Document BEGIN ************************************************************************
4821<SBP title="SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW_DIFF">
4822 <DESCRIPTION>
4823 <PARAG>
4824 Define the diff value of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW
4825 The timer will be T(n) = initial_value + n*diff_value
4826 n is the counter for trigger times
4827 </PARAG>
4828 </DESCRIPTION>
4829 <CATEGORY>NAS</CATEGORY>
4830 <CONFIG>
4831 <VALUE value="0">0</VALUE>
4832 </CONFIG>
4833 <DEFAULT>0</DEFAULT>
4834 <OP>N/A</OP>
4835 <DEPENDENCY>N/A</DEPENDENCY>
4836 <NOTE>N/A</NOTE>
4837 <AUTHOR>mtk13581</AUTHOR>
4838</SBP>
4839******* SBP Document END **************************************************************************/
4840 SBP_DATA_DEF(137, SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW")
4841 SBP_DATA_DEFAULT_VAL(0)
4842 SBP_DATA_DEF_END
4843
4844/****** SBP Document BEGIN ************************************************************************
4845<SBP title="SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW_MAX">
4846 <DESCRIPTION>
4847 <PARAG>
4848 Define the MAX value of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW
4849 Restrict the timer not to exceed the MAX value
4850 </PARAG>
4851 </DESCRIPTION>
4852 <CATEGORY>NAS</CATEGORY>
4853 <CONFIG>
4854 <VALUE value="12">12</VALUE>
4855 </CONFIG>
4856 <DEFAULT>12</DEFAULT>
4857 <OP>N/A</OP>
4858 <DEPENDENCY>N/A</DEPENDENCY>
4859 <NOTE>N/A</NOTE>
4860 <AUTHOR>mtk13581</AUTHOR>
4861</SBP>
4862******* SBP Document END **************************************************************************/
4863 SBP_DATA_DEF(138, SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW")
4864 SBP_DATA_DEFAULT_VAL(12)
4865 SBP_DATA_DEF_END
4866
4867/****** SBP Document BEGIN ************************************************************************
4868<SBP title="SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW_UNIT">
4869 <DESCRIPTION>
4870 <PARAG>
4871 Define the UNIT value of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW
4872 Default unit is 1 minute
4873 </PARAG>
4874 </DESCRIPTION>
4875 <CATEGORY>NAS</CATEGORY>
4876 <CONFIG>
4877 <VALUE value="0">Timer Unit is minute</VALUE>
4878 <VALUE value="1">Timer Unit is second</VALUE>
4879 <VALUE value="2">Timer Unit is hour</VALUE>
4880 <VALUE value="3">Timer set as infinite</VALUE>
4881 </CONFIG>
4882 <DEFAULT>0</DEFAULT>
4883 <OP>N/A</OP>
4884 <DEPENDENCY>N/A</DEPENDENCY>
4885 <NOTE>N/A</NOTE>
4886 <AUTHOR>mtk13581</AUTHOR>
4887</SBP>
4888******* SBP Document END **************************************************************************/
4889 SBP_DATA_DEF(139, SBP_PLMN_TIMER_N1_MODE_NOT_ALLOW_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_N1_MODE_NOT_ALLOW")
4890 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
4891 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
4892 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
4893 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
4894 SBP_DATA_DEFAULT_VAL(0)
4895 SBP_DATA_DEF_END
4896
4897/****** SBP Document BEGIN ************************************************************************
4898<SBP title="SBP_PLMN_TIMER_N1_ABNORMAL">
4899 <DESCRIPTION>
4900 <PARAG>
4901 Define the initial timer value of NWSEL_PLMN_TIMER_N1_ABNORMAL
4902 This SBP allow to control the timer period of NWSEL_PLMN_TIMER_N1_ABNORMAL.
4903 The Timer support incremental settings.
4904 The unit of this timer is 1 min. (Range: 0-255)
4905 </PARAG>
4906 </DESCRIPTION>
4907 <CATEGORY>NAS</CATEGORY>
4908 <CONFIG>
4909 <VALUE value="0">Default is 0. Means no customized value. UE will use internal default value</VALUE>
4910 </CONFIG>
4911 <DEFAULT>0</DEFAULT>
4912 <OP>N/A</OP>
4913 <DEPENDENCY>N/A</DEPENDENCY>
4914 <NOTE>N/A</NOTE>
4915 <AUTHOR>mtk13581</AUTHOR>
4916</SBP>
4917******* SBP Document END **************************************************************************/
4918 SBP_DATA_DEF(140, SBP_PLMN_TIMER_N1_ABNORMAL, SBP_ATTR_NONE, "the timer period of NWSEL_PLMN_TIMER_N1_ABNORMAL")
4919 SBP_DATA_DEFAULT_VAL(0)
4920 SBP_DATA_DEF_END
4921
4922/****** SBP Document BEGIN ************************************************************************
4923<SBP title="SBP_PLMN_TIMER_N1_ABNORMAL_DIFF">
4924 <DESCRIPTION>
4925 <PARAG>
4926 Define the diff value of NWSEL_PLMN_TIMER_N1_ABNORMAL
4927 The timer will be T(n) = initial_value + n*diff_value
4928 n is the counter for trigger times
4929 </PARAG>
4930 </DESCRIPTION>
4931 <CATEGORY>NAS</CATEGORY>
4932 <CONFIG>
4933 <VALUE value="0">0</VALUE>
4934 </CONFIG>
4935 <DEFAULT>0</DEFAULT>
4936 <OP>N/A</OP>
4937 <DEPENDENCY>N/A</DEPENDENCY>
4938 <NOTE>N/A</NOTE>
4939 <AUTHOR>mtk13581</AUTHOR>
4940</SBP>
4941******* SBP Document END **************************************************************************/
4942 SBP_DATA_DEF(141, SBP_PLMN_TIMER_N1_ABNORMAL_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_N1_ABNORMAL")
4943 SBP_DATA_DEFAULT_VAL(0)
4944 SBP_DATA_DEF_END
4945
4946/****** SBP Document BEGIN ************************************************************************
4947<SBP title="SBP_PLMN_TIMER_N1_ABNORMAL_MAX">
4948 <DESCRIPTION>
4949 <PARAG>
4950 Define the MAX value of NWSEL_PLMN_TIMER_N1_ABNORMAL
4951 Restrict the timer not to exceed the MAX value
4952 </PARAG>
4953 </DESCRIPTION>
4954 <CATEGORY>NAS</CATEGORY>
4955 <CONFIG>
4956 <VALUE value="12">12</VALUE>
4957 </CONFIG>
4958 <DEFAULT>12</DEFAULT>
4959 <OP>N/A</OP>
4960 <DEPENDENCY>N/A</DEPENDENCY>
4961 <NOTE>N/A</NOTE>
4962 <AUTHOR>mtk13581</AUTHOR>
4963</SBP>
4964******* SBP Document END **************************************************************************/
4965 SBP_DATA_DEF(142, SBP_PLMN_TIMER_N1_ABNORMAL_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_N1_ABNORMAL")
4966 SBP_DATA_DEFAULT_VAL(12)
4967 SBP_DATA_DEF_END
4968
4969/****** SBP Document BEGIN ************************************************************************
4970<SBP title="SBP_PLMN_TIMER_N1_ABNORMAL_UNIT">
4971 <DESCRIPTION>
4972 <PARAG>
4973 Define the UNIT value of NWSEL_PLMN_TIMER_N1_ABNORMAL
4974 Default unit is 1 minute
4975 </PARAG>
4976 </DESCRIPTION>
4977 <CATEGORY>NAS</CATEGORY>
4978 <CONFIG>
4979 <VALUE value="0">Timer Unit is minute</VALUE>
4980 <VALUE value="1">Timer Unit is second</VALUE>
4981 <VALUE value="2">Timer Unit is hour</VALUE>
4982 <VALUE value="3">Timer set as infinite</VALUE>
4983 </CONFIG>
4984 <DEFAULT>0</DEFAULT>
4985 <OP>N/A</OP>
4986 <DEPENDENCY>N/A</DEPENDENCY>
4987 <NOTE>N/A</NOTE>
4988 <AUTHOR>mtk13581</AUTHOR>
4989</SBP>
4990******* SBP Document END **************************************************************************/
4991 SBP_DATA_DEF(143, SBP_PLMN_TIMER_N1_ABNORMAL_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_N1_ABNORMAL")
4992 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
4993 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
4994 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
4995 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
4996 SBP_DATA_DEFAULT_VAL(0)
4997 SBP_DATA_DEF_END
4998
4999/****** SBP Document BEGIN ************************************************************************
5000<SBP title="SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE">
5001 <DESCRIPTION>
5002 <PARAG>
5003 Define the initial timer value of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE
5004 This SBP allow to control the timer period of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE.
5005 The Timer support incremental settings.
5006 The unit of this timer is 1 min. (Range: 0-255)
5007 </PARAG>
5008 </DESCRIPTION>
5009 <CATEGORY>NAS</CATEGORY>
5010 <CONFIG>
5011 <VALUE value="0">Default is 12 minutes</VALUE>
5012 </CONFIG>
5013 <DEFAULT>0</DEFAULT>
5014 <OP>N/A</OP>
5015 <DEPENDENCY>N/A</DEPENDENCY>
5016 <NOTE>N/A</NOTE>
5017 <AUTHOR>mtk13581</AUTHOR>
5018</SBP>
5019******* SBP Document END **************************************************************************/
5020 SBP_DATA_DEF(144, SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE, SBP_ATTR_NONE, "the timer period of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE")
5021 SBP_DATA_DEFAULT_VAL(0)
5022 SBP_DATA_DEF_END
5023
5024/****** SBP Document BEGIN ************************************************************************
5025<SBP title="SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE_DIFF">
5026 <DESCRIPTION>
5027 <PARAG>
5028 Define the diff value of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE
5029 The timer will be T(n) = initial_value + n*diff_value
5030 n is the counter for trigger times
5031 </PARAG>
5032 </DESCRIPTION>
5033 <CATEGORY>NAS</CATEGORY>
5034 <CONFIG>
5035 <VALUE value="5">5 minutes</VALUE>
5036 </CONFIG>
5037 <DEFAULT>0</DEFAULT>
5038 <OP>N/A</OP>
5039 <DEPENDENCY>N/A</DEPENDENCY>
5040 <NOTE>N/A</NOTE>
5041 <AUTHOR>mtk13581</AUTHOR>
5042</SBP>
5043******* SBP Document END **************************************************************************/
5044 SBP_DATA_DEF(145, SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE")
5045 SBP_DATA_DEFAULT_VAL(5)
5046 SBP_DATA_DEF_END
5047
5048/****** SBP Document BEGIN ************************************************************************
5049<SBP title="SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE_MAX">
5050 <DESCRIPTION>
5051 <PARAG>
5052 Define the MAX value of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE
5053 Restrict the timer not to exceed the MAX value
5054 </PARAG>
5055 </DESCRIPTION>
5056 <CATEGORY>NAS</CATEGORY>
5057 <CONFIG>
5058 <VALUE value="12">12</VALUE>
5059 </CONFIG>
5060 <DEFAULT>12</DEFAULT>
5061 <OP>N/A</OP>
5062 <DEPENDENCY>N/A</DEPENDENCY>
5063 <NOTE>N/A</NOTE>
5064 <AUTHOR>mtk13581</AUTHOR>
5065</SBP>
5066******* SBP Document END **************************************************************************/
5067 SBP_DATA_DEF(146, SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE")
5068 SBP_DATA_DEFAULT_VAL(12)
5069 SBP_DATA_DEF_END
5070
5071/****** SBP Document BEGIN ************************************************************************
5072<SBP title="SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE_UNIT">
5073 <DESCRIPTION>
5074 <PARAG>
5075 Define the UNIT value of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE
5076 Default unit is 1 minute
5077 </PARAG>
5078 </DESCRIPTION>
5079 <CATEGORY>NAS</CATEGORY>
5080 <CONFIG>
5081 <VALUE value="0">Timer Unit is minute</VALUE>
5082 <VALUE value="1">Timer Unit is second</VALUE>
5083 <VALUE value="2">Timer Unit is hour</VALUE>
5084 <VALUE value="3">Timer set as infinite</VALUE>
5085 </CONFIG>
5086 <DEFAULT>0</DEFAULT>
5087 <OP>N/A</OP>
5088 <DEPENDENCY>N/A</DEPENDENCY>
5089 <NOTE>N/A</NOTE>
5090 <AUTHOR>mtk13581</AUTHOR>
5091</SBP>
5092******* SBP Document END **************************************************************************/
5093 SBP_DATA_DEF(147, SBP_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_N1_VOICE_NOT_POSSIBLE")
5094 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
5095 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
5096 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
5097 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
5098 SBP_DATA_DEFAULT_VAL(0)
5099 SBP_DATA_DEF_END
5100
5101/****** SBP Document BEGIN ************************************************************************
5102<SBP title="SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE_DIFF">
5103 <DESCRIPTION>
5104 <PARAG>
5105 Define the diff value of NWSEL_PLMN_TIMER_HPLMN_REJ_14
5106 The timer will be T(n) = initial_value + n*diff_value
5107 n is the counter for trigger times
5108 </PARAG>
5109 </DESCRIPTION>
5110 <CATEGORY>NAS</CATEGORY>
5111 <CONFIG>
5112 <VALUE value="0">0</VALUE>
5113 </CONFIG>
5114 <DEFAULT>0</DEFAULT>
5115 <OP>N/A</OP>
5116 <DEPENDENCY>N/A</DEPENDENCY>
5117 <NOTE>N/A</NOTE>
5118 <AUTHOR>mtk13581</AUTHOR>
5119</SBP>
5120******* SBP Document END **************************************************************************/
5121 SBP_DATA_DEF(148, SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE_DIFF, SBP_ATTR_NONE, "diff of NWSEL_PLMN_TIMER_HPLMN_REJ_14")
5122 SBP_DATA_DEFAULT_VAL(0)
5123 SBP_DATA_DEF_END
5124
5125/****** SBP Document BEGIN ************************************************************************
5126<SBP title="SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE_MAX">
5127 <DESCRIPTION>
5128 <PARAG>
5129 Define the MAX value of NWSEL_PLMN_TIMER_HPLMN_REJ_14
5130 Restrict the timer not to exceed the MAX value
5131 </PARAG>
5132 </DESCRIPTION>
5133 <CATEGORY>NAS</CATEGORY>
5134 <CONFIG>
5135 <VALUE value="12">12</VALUE>
5136 </CONFIG>
5137 <DEFAULT>12</DEFAULT>
5138 <OP>N/A</OP>
5139 <DEPENDENCY>N/A</DEPENDENCY>
5140 <NOTE>N/A</NOTE>
5141 <AUTHOR>mtk13581</AUTHOR>
5142</SBP>
5143******* SBP Document END **************************************************************************/
5144 SBP_DATA_DEF(149, SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE_MAX, SBP_ATTR_NONE, "the MAX timer value of NWSEL_PLMN_TIMER_HPLMN_REJ_14")
5145 SBP_DATA_DEFAULT_VAL(12)
5146 SBP_DATA_DEF_END
5147
5148/****** SBP Document BEGIN ************************************************************************
5149<SBP title="SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE_UNIT">
5150 <DESCRIPTION>
5151 <PARAG>
5152 Define the UNIT value of NWSEL_PLMN_TIMER_HPLMN_REJ_14
5153 Default unit is 1 minute
5154 </PARAG>
5155 </DESCRIPTION>
5156 <CATEGORY>NAS</CATEGORY>
5157 <CONFIG>
5158 <VALUE value="0">Timer Unit is minute</VALUE>
5159 <VALUE value="1">Timer Unit is second</VALUE>
5160 <VALUE value="2">Timer Unit is hour</VALUE>
5161 <VALUE value="3">Timer set as infinite</VALUE>
5162 </CONFIG>
5163 <DEFAULT>0</DEFAULT>
5164 <OP>N/A</OP>
5165 <DEPENDENCY>N/A</DEPENDENCY>
5166 <NOTE>N/A</NOTE>
5167 <AUTHOR>mtk13581</AUTHOR>
5168</SBP>
5169******* SBP Document END **************************************************************************/
5170 SBP_DATA_DEF(150, SBP_HPLMN_REJ_14_EUTRAN_DISABLE_TIMER_VALUE_UNIT, SBP_ATTR_NONE, "the unit of NWSEL_PLMN_TIMER_HPLMN_REJ_14")
5171 SBP_DATA_DEF_VAL(0, "Timer Unit is minute")
5172 SBP_DATA_DEF_VAL(1, "Timer Unit is second")
5173 SBP_DATA_DEF_VAL(2, "Timer Unit is hour")
5174 SBP_DATA_DEF_VAL(3, "Timer set as infinite")
5175 SBP_DATA_DEFAULT_VAL(0)
5176 SBP_DATA_DEF_END
5177
5178/****** SBP Document BEGIN ************************************************************************
5179<SBP title="SBP_VZW_RSU_SELECT_KEY_TYPE - This feature is used to control the VzW RSU Key type Selection.">
5180 <DESCRIPTION>
5181 <PARAG>
5182 This feature is used to control the VzW RSU Key type Selection.
5183 Customer can choose between the operator Pub Key or the test Pub key
5184 based on the SBP Data
5185 </PARAG>
5186 </DESCRIPTION>
5187 <CATEGORY>SMU</CATEGORY>
5188 <CONFIG>
5189 <VALUE value="0">Operator Key</VALUE>
5190 <VALUE value="1">Test Key</VALUE>
5191 </CONFIG>
5192 <DEFAULT>0</DEFAULT>
5193 <OP>VzW</OP>
5194 <DEPENDENCY>N/A</DEPENDENCY>
5195 <NOTE>N/A</NOTE>
5196 <AUTHOR>mtk16806</AUTHOR>
5197</SBP>
5198******* SBP Document END **************************************************************************/
5199 SBP_DATA_DEF(151, SBP_VZW_RSU_SELECT_KEY_TYPE, SBP_ATTR_NOT_SUPPORT_DYNAMIC_SBP, "This feature is used to control the VzW RSU Key type Selection.")
5200 SBP_DATA_DEF_VAL(0x00, "Operator Key")
5201 SBP_DATA_DEF_VAL(0x01, "Test Key")
5202 SBP_DATA_DEFAULT_VAL(0x00)
5203 SBP_DATA_DEF_END
5204
5205 /****** SBP Document BEGIN ************************************************************************
5206<SBP title="SBP_TMO_MOVIAL_SELECT_KEY_SET - This feature is used to control the TMO Movial RSU Key set Selection.">
5207 <DESCRIPTION>
5208 <PARAG>
5209 This feature is used to control the TMO Movial RSU Key type Selection.
5210 Customer can choose between the Pub Key set for each Product line
5211 </PARAG>
5212 </DESCRIPTION>
5213 <CATEGORY>SMU</CATEGORY>
5214 <CONFIG>
5215 <VALUE value="0">Key Set 1</VALUE>
5216 <VALUE value="1">Key Set 2</VALUE>
5217 <VALUE value="2">Key Set 3</VALUE>
5218 </CONFIG>
5219 <DEFAULT>0</DEFAULT>
5220 <OP>TMO</OP>
5221 <DEPENDENCY>N/A</DEPENDENCY>
5222 <NOTE>N/A</NOTE>
5223 <AUTHOR>mtk16806</AUTHOR>
5224</SBP>
5225******* SBP Document END **************************************************************************/
5226 SBP_DATA_DEF(152, SBP_TMO_MOVIAL_SELECT_KEY_SET, SBP_ATTR_NOT_SUPPORT_DYNAMIC_SBP, "This feature is used to control the TMO Movial RSU Key set Selection.")
5227 SBP_DATA_DEF_VAL(0x00, "Key Set 1")
5228 SBP_DATA_DEF_VAL(0x01, "Key Set 2")
5229 SBP_DATA_DEF_VAL(0x02, "Key Set 3")
5230 SBP_DATA_DEFAULT_VAL(0x00)
5231 SBP_DATA_DEF_END
5232
5233/****** SBP Document BEGIN ************************************************************************
5234<SBP title="SBP_NR_A3A4A5_CUSTOM_CELL_THRESH - additional pcell/ncell custom threshold check for NR A3/A4/A5 report">
5235 <DESCRIPTION>
5236 <PARAG>
5237 Enable/Disable additional pcell/ncell custom threshold check for NR A3/A4/A5 report.
5238 </PARAG>
5239 </DESCRIPTION>
5240 <CATEGORY>NR AS</CATEGORY>
5241 <CONFIG>
5242 <VALUE value="0">Disable</VALUE>
5243 <VALUE value="1">Enable custom threshold check for NR A3/A4/A5 report</VALUE>
5244 </CONFIG>
5245 <DEFAULT>0</DEFAULT>
5246 <OP>N/A</OP>
5247 <DEPENDENCY>N/A</DEPENDENCY>
5248 <NOTE>
5249 N/A
5250 </NOTE>
5251 <AUTHOR>mtk15708</AUTHOR>
5252</SBP>
5253******* SBP Document END **************************************************************************/
5254 SBP_DATA_DEF(153, SBP_NR_A3A4A5_CUSTOM_CELL_THRESH, SBP_ATTR_NONE, "Enable/Disable additional pcell/ncell custom threshold check for NR A3/A4/A5 report")
5255 SBP_DATA_DEF_VAL(0, "Disable")
5256 SBP_DATA_DEF_VAL(1, "Enable custom threshold check for NR A3/A4/A5 report")
5257#if defined(__ENABLE_NR_A3A4A5_CUSTOM_CELL_THRESH__)
5258 SBP_DATA_DEFAULT_VAL(1)
5259#else
5260 SBP_DATA_DEFAULT_VAL(0)
5261#endif
5262 SBP_DATA_DEF_END
5263
5264/****** SBP Document BEGIN ************************************************************************
5265<SBP title="SBP_NR_TO_LTE_B1B2_CUSTOM_CELL_THRESH - additional pcell/ncell custom threshold check for B1/B2 report">
5266 <DESCRIPTION>
5267 <PARAG>
5268 Enable/Disable additional pcell/ncell custom threshold check for B1/B2 report.
5269 </PARAG>
5270 </DESCRIPTION>
5271 <CATEGORY>NR AS</CATEGORY>
5272 <CONFIG>
5273 <VALUE value="0">Disable</VALUE>
5274 <VALUE value="1">Enable custom threshold check for B1/B2 report</VALUE>
5275 </CONFIG>
5276 <DEFAULT>0</DEFAULT>
5277 <OP>N/A</OP>
5278 <DEPENDENCY>N/A</DEPENDENCY>
5279 <NOTE>
5280 N/A
5281 </NOTE>
5282 <AUTHOR>mtk15708</AUTHOR>
5283</SBP>
5284******* SBP Document END **************************************************************************/
5285 SBP_DATA_DEF(154, SBP_NR_TO_LTE_B1B2_CUSTOM_CELL_THRESH, SBP_ATTR_NONE, "Enable/Disable additional pcell/ncell custom threshold check for B1/B2 report")
5286 SBP_DATA_DEF_VAL(0, "Disable")
5287 SBP_DATA_DEF_VAL(1, "Enable custom threshold check for B1/B2 report")
5288 SBP_DATA_DEF_VAL(2, "Enable custom threshold check for B1/B2 report with per band list")
5289#if defined(__ENABLE_NR_TO_LTE_B1B2_CUSTOM_CELL_THRESH__)
5290 SBP_DATA_DEFAULT_VAL(1)
5291#else
5292 SBP_DATA_DEFAULT_VAL(0)
5293#endif
5294 SBP_DATA_DEF_END
5295
5296/****** SBP Document BEGIN ************************************************************************
5297<SBP title="SBP_NR_TO_LTE_RESEL_CELL_THRESH - additional pcell/ncell custom threshold check NR to LTE reselection">
5298 <DESCRIPTION>
5299 <PARAG>
5300 Enable/Disable additional pcell/ncell custom threshold check for NR to LTE reselection.
5301 </PARAG>
5302 </DESCRIPTION>
5303 <CATEGORY>NR AS</CATEGORY>
5304 <CONFIG>
5305 <VALUE value="0">Disable</VALUE>
5306 <VALUE value="1">Enable custom threshold check for NR to LTE reselection</VALUE>
5307 </CONFIG>
5308 <DEFAULT>0</DEFAULT>
5309 <OP>N/A</OP>
5310 <DEPENDENCY>N/A</DEPENDENCY>
5311 <NOTE>
5312 N/A
5313 </NOTE>
5314 <AUTHOR>mtk15708</AUTHOR>
5315</SBP>
5316******* SBP Document END **************************************************************************/
5317 SBP_DATA_DEF(155, SBP_NR_TO_LTE_RESEL_CELL_THRESH, SBP_ATTR_NONE, "Enable/Disable additional pcell/ncell custom threshold check for NR to LTE reselection")
5318 SBP_DATA_DEF_VAL(0, "Disable")
5319 SBP_DATA_DEF_VAL(1, "Enable custom threshold check for NR to LTE reselection")
5320#if defined(__ENABLE_NR_TO_LTE_RESEL_CELL_THRESH__)
5321 SBP_DATA_DEFAULT_VAL(1)
5322#else
5323 SBP_DATA_DEFAULT_VAL(0)
5324#endif
5325 SBP_DATA_DEF_END
5326
5327/****** SBP Document BEGIN ************************************************************************
5328<SBP title="SBP_MRS_AFR_TO_4G_CONTROL - Enable/Disable based on NVRAM or Enforce SBP DATA">
5329 <DESCRIPTION>
5330 <PARAG>
5331 This SBP enables/disables AFR to 4G, Follows NVRAM or Enforces SBP DATA
5332 </PARAG>
5333 </DESCRIPTION>
5334 <CATEGORY>RRC</CATEGORY>
5335 <CONFIG>
5336 <VALUE value="0x01">Enable/Disable AFR to 4G based on NVRAM</VALUE>
5337 <VALUE value="0x02">Enable AFR to 4G, Enforce to ON</VALUE>
5338 <VALUE value="0x04">Disable AFR to 4G, Enforce to OFF</VALUE>
5339 </CONFIG>
5340 <DEFAULT>0x01</DEFAULT>
5341 <OP>N/A</OP>
5342 <DEPENDENCY>N/A</DEPENDENCY>
5343 <NOTE>N/A</NOTE>
5344 <AUTHOR>ot_sadanand.m</AUTHOR>
5345</SBP>
5346******* SBP Document END **************************************************************************/
5347 SBP_DATA_DEF(156, SBP_MRS_AFR_TO_4G_CONTROL, SBP_ATTR_NONE, "AFR_TO_4G Follow NVRAM or Enforce SBP DATA")
5348 SBP_DATA_DEF_VAL(0x01, "AFR to 4G: Follow NVRAM")
5349 SBP_DATA_DEF_VAL(0x02, "AFR to 4G: Enforce ON")
5350 SBP_DATA_DEF_VAL(0x04, "AFR to 4G: Enforce OFF")
5351 SBP_DATA_DEFAULT_VAL(0x01)
5352 SBP_DATA_DEF_END
5353
5354/****** SBP Document BEGIN ************************************************************************
5355<SBP title="SBP_MRS_AFR_TO_5G_CONTROL - Enable/Disable based on NVRAM or Enforce SBP DATA">
5356 <DESCRIPTION>
5357 <PARAG>
5358 This SBP enables/disables AFR to 5G, Follows NVRAM or Enforces SBP DATA
5359 </PARAG>
5360 </DESCRIPTION>
5361 <CATEGORY>RRC</CATEGORY>
5362 <CONFIG>
5363 <VALUE value="0x01">Enable/Disable AFR to 5G based on NVRAM</VALUE>
5364 <VALUE value="0x02">Enable AFR to 5G, Enforce to ON</VALUE>
5365 <VALUE value="0x04">Disable AFR to 5G, Enforce to OFF</VALUE>
5366 </CONFIG>
5367 <DEFAULT>0x01</DEFAULT>
5368 <OP>N/A</OP>
5369 <DEPENDENCY>N/A</DEPENDENCY>
5370 <NOTE>N/A</NOTE>
5371 <AUTHOR>ot_sadanand.m</AUTHOR>
5372</SBP>
5373******* SBP Document END **************************************************************************/
5374 SBP_DATA_DEF(157, SBP_MRS_AFR_TO_5G_CONTROL, SBP_ATTR_NONE, "AFR_TO_5G Follow NVRAM or Enforce SBP DATA")
5375 SBP_DATA_DEF_VAL(0x01, "AFR to 5G: Follow NVRAM")
5376 SBP_DATA_DEF_VAL(0x02, "AFR to 5G: Enforce ON")
5377 SBP_DATA_DEF_VAL(0x04, "AFR to 5G: Enforce OFF")
5378 SBP_DATA_DEFAULT_VAL(0x01)
5379 SBP_DATA_DEF_END
5380
5381/****** SBP Document BEGIN ************************************************************************
5382<SBP title="SBP_MRS_ENABLE_BG_SEARCH_IN_TEST_MODE - Enable Background search for test mode/test sim">
5383 <DESCRIPTION>
5384 <PARAG>
5385 This SBP Enables different Background searches for test mode/test sim
5386 </PARAG>
5387 </DESCRIPTION>
5388 <CATEGORY>NR</CATEGORY>
5389 <CONFIG>
5390 <VALUE value="0x00">Turn on BG_SEARCH_2G4_FDD</VALUE>
5391 <VALUE value="0x01">Turn on BG_SEARCH_3G4_FDD</VALUE>
5392 <VALUE value="0x02">Turn on BG_SEARCH_2G4_TDD</VALUE>
5393 <VALUE value="0x03">Turn on BG_SEARCH_3G4_TDD</VALUE>
5394 <VALUE value="0x04">Turn on BG_SEARCH_2G5_FDD</VALUE>
5395 <VALUE value="0x05">Turn on BG_SEARCH_3G5_FDD</VALUE>
5396 <VALUE value="0x06">Turn on BG_SEARCH_2G5_TDD</VALUE>
5397 <VALUE value="0x07">Turn on BG_SEARCH_3G5_TDD</VALUE>
5398 <VALUE value="0x08">Turn on BG_SEARCH_4G5</VALUE>
5399 <VALUE value="0xFF">Default turn off all BG search combinations</VALUE>
5400 </CONFIG>
5401 <DEFAULT>0xFF</DEFAULT>
5402 <OP>N/A</OP>
5403 <DEPENDENCY>N/A</DEPENDENCY>
5404 <NOTE>
5405 N/A
5406 </NOTE>
5407 <AUTHOR>ot_sadanand.m</AUTHOR>
5408</SBP>
5409******* SBP Document END **************************************************************************/
5410 SBP_DATA_DEF(158, SBP_MRS_ENABLE_BG_SEARCH_IN_TEST_MODE, SBP_ATTR_NONE, "Enable Background Search for test mode/test sim")
5411 SBP_DATA_DEF_VAL(0x00, "Turn on BG_SEARCH_2G4_FDD")
5412 SBP_DATA_DEF_VAL(0x01, "Turn on BG_SEARCH_3G4_FDD")
5413 SBP_DATA_DEF_VAL(0x02, "Turn on BG_SEARCH_2G4_TDD")
5414 SBP_DATA_DEF_VAL(0x03, "Turn on BG_SEARCH_3G4_TDD")
5415#if defined(__NR_RAT__)
5416 SBP_DATA_DEF_VAL(0x04, "Turn on BG_SEARCH_2G5_FDD")
5417 SBP_DATA_DEF_VAL(0x05, "Turn on BG_SEARCH_3G5_FDD")
5418 SBP_DATA_DEF_VAL(0x06, "Turn on BG_SEARCH_2G5_TDD")
5419 SBP_DATA_DEF_VAL(0x07, "Turn on BG_SEARCH_3G5_TDD")
5420 SBP_DATA_DEF_VAL(0x08, "Turn on BG_SEARCH_4G5")
5421#endif
5422 SBP_DATA_DEF_VAL(0xFF, "Turn off all BG SEARCH")
5423 SBP_DATA_DEFAULT_VAL(0xFF)
5424 SBP_DATA_DEF_END
5425
5426/****** SBP Document BEGIN ************************************************************************
5427<SBP title="SBP_RTP_SILENCE_REFRESH_NOTIFY - control when rtp silence timeout to trigger UA refresh">
5428 <DESCRIPTION>
5429 <PARAG>
5430 This SBP controls when rtp silence timeout (no dl rtp or rtp pt error dropped)
5431 to trigger UA refresh.
5432 </PARAG>
5433 </DESCRIPTION>
5434 <CATEGORY>LTECSR</CATEGORY>
5435 <CONFIG>
5436 <VALUE value="0x00"> Disabled rtp silence refresh notify. </VALUE>
5437 <VALUE value="0x05"> Enabled rtp silence refresh notify with timer = 5s. </VALUE>
5438 </CONFIG>
5439 <DEFAULT>0x00</DEFAULT>
5440 <OP>N/A</OP>
5441 <DEPENDENCY> N/A </DEPENDENCY>
5442 <NOTE>
5443 IS_VIOLATE_STANDARD=Y
5444 VIOLATE_STANDARD=3GPP TS 26.114
5445 </NOTE>
5446 <AUTHOR>mtk22701</AUTHOR>
5447</SBP>
5448******* SBP Document END **************************************************************************/
5449 SBP_DATA_DEF(159, SBP_RTP_SILENCE_REFRESH_NOTIFY, SBP_ATTR_NONE, "control when rtp silence timeout to trigger UA refresh")
5450 SBP_DATA_DEF_VAL(0x00, "Disabled rtp silence refresh notify")
5451 SBP_DATA_DEF_VAL(0x05, "Enabled rtp silence refresh notify with timer = 5s")
5452#if defined(__SBP_RTP_SILENCE_REFRESH_NOTIFY_ENABLE__)
5453 SBP_DATA_DEFAULT_VAL(0x05)
5454#else
5455 SBP_DATA_DEFAULT_VAL(0x00)
5456#endif
5457 SBP_DATA_DEF_END
5458
5459/****** SBP Document BEGIN ************************************************************************
5460<SBP title="SBP_NR_CUSTOM_A2_THRESH_ADJUST - additional pcell custom thresh and a2 threshold for A2 report">
5461 <DESCRIPTION>
5462 <PARAG>
5463 Enable/Disable additional pcell custom thresh and a2 threshold for A2 report.
5464 </PARAG>
5465 </DESCRIPTION>
5466 <CATEGORY>NR AS</CATEGORY>
5467 <CONFIG>
5468 <VALUE value="0">Disable</VALUE>
5469 <VALUE value="1">Enable pcell custom thresh and a2 threshold for A2 report</VALUE>
5470 </CONFIG>
5471 <DEFAULT>0</DEFAULT>
5472 <OP>N/A</OP>
5473 <DEPENDENCY>N/A</DEPENDENCY>
5474 <NOTE>
5475 N/A
5476 </NOTE>
5477 <AUTHOR>mtk12473</AUTHOR>
5478</SBP>
5479******* SBP Document END **************************************************************************/
5480 SBP_DATA_DEF(160, SBP_NR_CUSTOM_A2_THRESH_ADJUST, SBP_ATTR_NONE, "additional pcell custom thresh and a2 threshold for A2 report")
5481 SBP_DATA_DEF_VAL(0, "Disable")
5482 SBP_DATA_DEF_VAL(1, "Enable pcell custom thresh and a2 threshold for A2 report")
5483 SBP_DATA_DEF_VAL(2, "Enable pcell custom thresh and a2 threshold for A2 report with per band list")
5484#if defined(__ENABLE_NR_CUSTOM_A2_THRESH_ADJUST__)
5485 SBP_DATA_DEFAULT_VAL(1)
5486#else
5487 SBP_DATA_DEFAULT_VAL(0)
5488#endif
5489 SBP_DATA_DEF_END
5490
5491/****** SBP Document BEGIN ************************************************************************
5492<SBP title="SBP_PLMN_TIMER_N1_DISABLE_4G5_IRAT_FAIL_FTA - Defines the timer value of NWSEL_PLMN_TIMER_N1_DISABLE_4G5_IRAT_FAIL_FTA">
5493 <DESCRIPTION>
5494 <PARAG>
5495 This SBP defines the timer value of NWSEL_PLMN_TIMER_N1_DISABLE_4G5_IRAT_FAIL_FTA.
5496 The unit of value is 1 min. The enhnacement will be considered disabled if the value is set to zero.
5497 </PARAG>
5498 </DESCRIPTION>
5499 <CATEGORY>NR AS</CATEGORY>
5500 <CONFIG>
5501 <VALUE value="120">valid range is 0~255 mins. Default is 120 minutes. </VALUE>
5502 </CONFIG>
5503 <DEFAULT>120</DEFAULT>
5504 <OP>N/A</OP>
5505 <DEPENDENCY>N/A</DEPENDENCY>
5506 <NOTE>N/A</NOTE>
5507 <AUTHOR>mtk13581</AUTHOR>
5508</SBP>
5509******* SBP Document END **************************************************************************/
5510 SBP_DATA_DEF(161, SBP_PLMN_TIMER_N1_DISABLE_4G5_IRAT_FAIL_FTA, SBP_ATTR_NONE, "Timer value of NWSEL_PLMN_TIMER_N1_DISABLE_4G5_IRAT_FAIL_FTA")
5511 SBP_DATA_DEFAULT_VAL(0)
5512 SBP_DATA_DEF_END
5513
5514#undef SBP_DATA_DEF
5515#undef SBP_DATA_DEFAULT_VAL
5516#undef SBP_DATA_DEF_VAL
5517#undef SBP_DATA_DEF_END
5518#undef SBP_DATA_DEF_BIT_VAL
5519#undef SBP_DATA_DEF_BIT
5520#undef SBP_DATA_DEF_BIT_END