1 /* 2 * Copyright (c) 2014-2020 The Linux Foundation. All rights reserved. 3 * 4 * Permission to use, copy, modify, and/or distribute this software for 5 * any purpose with or without fee is hereby granted, provided that the 6 * above copyright notice and this permission notice appear in all 7 * copies. 8 * 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL 10 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED 11 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE 12 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL 13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR 14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 15 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 16 * PERFORMANCE OF THIS SOFTWARE. 17 */ 18 19 #ifndef LOG_CODES_H 20 #define LOG_CODES_H 21 22 /*=========================================================================== 23 24 Log Code Definitions 25 26 General Description 27 This file contains log code definitions and is shared with the tools. 28 29 ===========================================================================*/ 30 31 /* DO NOT MODIFY THIS FILE WITHOUT PRIOR APPROVAL 32 ** 33 ** Log codes, by design, are a tightly controlled set of values. 34 ** Developers may not create log codes at will. 35 ** 36 ** Request new logs using the following process: 37 ** 38 ** 1. Send email to asw.diag.request requesting log codassignments. 39 ** 2. Identify the log needed by name. 40 ** 3. Provide a brief description for the log. 41 ** 42 */ 43 44 /*=========================================================================== 45 46 Edit History 47 48 $Header: //source/qcom/qct/core/services/diag/api/inc/main/latest/log_codes.h#9 $ 49 50 when who what, where, why 51 -------- --- ---------------------------------------------------------- 52 07/30/09 dhao Consolidate log_codes_apps.h 53 07/30/09 dhao Add Last log code definition for Equip ID 11 54 06/26/09 dhao Update format the macro 55 06/24/09 sar Reverted last change. 56 06/24/09 sar Added log code for LOG_MC_STM_C. 57 11/02/01 sfh Featurize common NAS log codes for UMTS. 58 10/30/01 sfh Added log code for LOG_GPS_FATPATH_INFO_C. 59 10/24/01 sfh Added updates for UMTS equipment ID and log codes. 60 06/27/01 lad Added multiple equipment ID support. 61 05/22/01 sfh Reserved log codes 158 - 168. 62 05/21/01 sfh Keep confusing XXX_BASE_C names for backwards compatibility. 63 05/16/01 sfh Reserved log code 155. 64 05/08/01 sfh Reserved log codes 150 - 154. 65 04/06/01 lad Added definitions of base IDs (such as LOG_WCDMA_BASE_C). 66 This is currently using temporary ID values in the 0x1000 67 range. 68 02/23/01 lad Created file from DMSS log.h. Log codes only 69 70 ===========================================================================*/ 71 #include <qdf_types.h> 72 73 /* ------------------------------------------------------------------------- 74 * Data Declarations 75 * ------------------------------------------------------------------------- */ 76 77 /* ------------------------------------------------------------------------- 78 * Log equipment IDs. 79 * The most significant 4 bits of the 16 bit log code is the equipment ID. 80 * Orignally, the mobile was to have an ID, and base stations and other 81 * IDs. As QCT technology diversifies, new equipment IDs are assigned to new 82 * technology areas. 0x2000 and 0x3000 are reserved for legacy reasons, so 83 * the first 84 * addition starts at 0x4000. 85 * ------------------------------------------------------------------------- */ 86 87 #define LOG_1X_BASE_C ((uint16_t) 0x1000) 88 #define LOG_WCDMA_BASE_C ((uint16_t) 0x4000) 89 #define LOG_GSM_BASE_C ((uint16_t) 0x5000) 90 #define LOG_LBS_BASE_C ((uint16_t) 0x6000) 91 #define LOG_UMTS_BASE_C ((uint16_t) 0x7000) 92 #define LOG_TDMA_BASE_C ((uint16_t) 0x8000) 93 #define LOG_DTV_BASE_C ((uint16_t) 0xA000) 94 #define LOG_APPS_BASE_C ((uint16_t) 0xB000) 95 #define LOG_LTE_BASE_C ((uint16_t) (0xB000 + 0x0010)) 96 #define LOG_LTE_LAST_C ((uint16_t) 0xB1FF) 97 #define LOG_WIMAX_BASE_C ((uint16_t) 0xB400) 98 #define LOG_DSP_BASE_C ((uint16_t) 0xC000) 99 100 #define LOG_TOOLS_BASE_C ((uint16_t) 0xF000) 101 102 /* LOG_BASE_C is what was used before expanding the use of the equipment ID. 103 * TODO: Once all targets are using the "core" diag system, this should be 104 * omitted. */ 105 #define LOG_BASE_C LOG_1X_BASE_C 106 107 /* ------------------------------------------------------------------------- 108 * Log Codes 109 * These codes identify the kind of information contained in a log entry. 110 * They are used in conjunction with the 'code' field of the log entry 111 * header. The data types associated with each code are defined below. 112 * ------------------------------------------------------------------------- */ 113 114 /* The upper 4 bits of the 16 bit log entry code specify which type 115 * of equipment created the log entry. */ 116 117 /* 0 Mobile Station temporal analyzer entry */ 118 #define LOG_TA_C (0x0 + LOG_1X_BASE_C) 119 120 /* 1 AGC values and closed loop power control entry */ 121 #define LOG_AGC_PCTL_C (0x1 + LOG_1X_BASE_C) 122 123 /* 2 Forward link frame rates and types entry */ 124 #define LOG_F_MUX1_C (0x2 + LOG_1X_BASE_C) 125 126 /* 3 Reverse link frame rates and types entry */ 127 #define LOG_R_MUX1_C (0x3 + LOG_1X_BASE_C) 128 129 /* 4 Access channel message entry */ 130 #define LOG_AC_MSG_C (0x4 + LOG_1X_BASE_C) 131 132 /* 5 Reverse link traffic channel message entry */ 133 #define LOG_R_TC_MSG_C (0x5 + LOG_1X_BASE_C) 134 135 /* 6 Sync channel message entry */ 136 #define LOG_SC_MSG_C (0x6 + LOG_1X_BASE_C) 137 138 /* 7 Paging channel message entry */ 139 #define LOG_PC_MSG_C (0x7 + LOG_1X_BASE_C) 140 141 /* 8 Forward link traffic channel message entry */ 142 #define LOG_F_TC_MSG_C (0x8 + LOG_1X_BASE_C) 143 144 /* 9 Forward link vocoder packet entry */ 145 #define LOG_VOC_FOR_C (0x9 + LOG_1X_BASE_C) 146 147 /* 10 Reverse link vocoder packet entry */ 148 #define LOG_VOC_REV_C (0xA + LOG_1X_BASE_C) 149 150 /* 11 Temporal analyzer finger info only */ 151 #define LOG_FING_C (0xB + LOG_1X_BASE_C) 152 153 /* 12 Searcher pathlog info (Reused old SRCH logtype) */ 154 #define LOG_SRCH_C (0xC + LOG_1X_BASE_C) 155 156 /* 13 Position and speed information read from ETAK */ 157 #define LOG_ETAK_C (0xD + LOG_1X_BASE_C) 158 159 /* 14 Markov frame statistics */ 160 #define LOG_MAR_C (0xE + LOG_1X_BASE_C) 161 162 /* 15 New and improved temporal analyzer searcher info */ 163 #define LOG_SRCH2_C (0xF + LOG_1X_BASE_C) 164 165 /* 16 The Fujitsu handset information */ 166 #define LOG_HANDSET_C (0x10 + LOG_1X_BASE_C) 167 168 /* 17 Vocoder bit error rate mask */ 169 #define LOG_ERRMASK_C (0x11 + LOG_1X_BASE_C) 170 171 /* 18 Analog voice channel information */ 172 #define LOG_ANALOG_INFO_C (0x12 + LOG_1X_BASE_C) 173 174 /* 19 Access probe information */ 175 #define LOG_ACC_INFO_C (0x13 + LOG_1X_BASE_C) 176 177 /* 20 Position & speed info read from GPS receiver */ 178 #define LOG_GPS_C (0x14 + LOG_1X_BASE_C) 179 180 /* 21 Test Command information */ 181 #define LOG_TEST_CMD_C (0x15 + LOG_1X_BASE_C) 182 183 /* 22 Sparse (20ms) AGC / closed loop power control entry */ 184 #define LOG_S_AGC_PCTL_C (0x16 + LOG_1X_BASE_C) 185 186 /* 23 Notification of a band class change */ 187 #define LOG_BAND_CHANGE_C (0x17 + LOG_1X_BASE_C) 188 189 /* 24 DM debug messages, if being logged via log services */ 190 #define LOG_DBG_MSG_C (0x18 + LOG_1X_BASE_C) 191 192 /* 25 General temporal analyzer entry */ 193 #define LOG_GENRL_TA_C (0x19 + LOG_1X_BASE_C) 194 195 /* 26 General temporal analyzer w/supplemental channels */ 196 #define LOG_GENRL_TA_SUP_CH_C (0x1A + LOG_1X_BASE_C) 197 198 /* Featurization Removal requested by CMI 199 #ifdef FEATURE_PLT 200 */ 201 202 /* 27 Decoder raw bits logging */ 203 #define LOG_PLT_C (0x1B + LOG_1X_BASE_C) 204 205 /* Featurization Removal requested by CMI 206 #else 207 27 EFS Usage Info - No implementation as yet 208 #define LOG_EFS_INFO_C (0x1B + LOG_1X_BASE_C) 209 #endif 210 */ 211 212 /* 28 Analog Forward Channel */ 213 #define LOG_ANALOG_FORW_C (0x1C + LOG_1X_BASE_C) 214 215 /* 29 Analog Reverse Channel */ 216 #define LOG_ANALOG_REVS_C (0x1D + LOG_1X_BASE_C) 217 218 /* 30 Analog Handoff Entry */ 219 #define LOG_ANALOG_HANDOFF_C (0x1E + LOG_1X_BASE_C) 220 221 /* 31 FM Slot Statistis entry */ 222 #define LOG_ANALOG_FMSLOT_C (0x1F + LOG_1X_BASE_C) 223 224 /* 32 FOCC Word Sync Count entry */ 225 #define LOG_ANALOG_WS_COUNT_C (0x20 + LOG_1X_BASE_C) 226 227 /* 33 */ 228 #define LOG_RLP_PACKET_C (0x21 + LOG_1X_BASE_C) 229 230 /* 34 */ 231 #define LOG_ASYNC_TCP_SEG_C (0x22 + LOG_1X_BASE_C) 232 233 /* 35 */ 234 #define LOG_PACKET_DATA_IP_PACKETS_C (0x23 + LOG_1X_BASE_C) 235 236 /* 36 */ 237 #define LOG_FNBDT_MESSAGE_LOG_C (0x24 + LOG_1X_BASE_C) 238 239 /* Begin IS-2000 LOG features */ 240 241 /* 37 RLP RX Frames logging */ 242 #define LOG_RLP_RX_FRAMES_C (0x25 + LOG_1X_BASE_C) 243 244 /* 38 RLP TX Frames logging */ 245 #define LOG_RLP_TX_FRAMES_C (0x26 + LOG_1X_BASE_C) 246 247 /* 39 Reserved for additions to RLP frames */ 248 #define LOG_RLP_RSVD1_C (0x27 + LOG_1X_BASE_C) 249 250 /* 40 Reserved for additions to RLP frames */ 251 #define LOG_RLP_RSVD2_C (0x28 + LOG_1X_BASE_C) 252 253 /* 41 Forward Link Frame Types logging */ 254 #define LOG_FWD_FRAME_TYPES_C (0x29 + LOG_1X_BASE_C) 255 256 /* 42 Reverse Link Frame Types logging */ 257 #define LOG_REV_FRAME_TYPES_C (0x2A + LOG_1X_BASE_C) 258 259 /* 43 Fast Forward Power Control Parameters logging */ 260 #define LOG_FFWD_PCTRL_C (0x2B + LOG_1X_BASE_C) 261 262 /* 44 Reverse Power Control Parameters logging */ 263 #define LOG_REV_PCTRL_C (0x2C + LOG_1X_BASE_C) 264 265 /* 45 Searcher and Finger Information logging */ 266 #define LOG_SRCH_FING_INFO_C (0x2D + LOG_1X_BASE_C) 267 268 /* 46 Service Configuration logging */ 269 #define LOG_SVC_CONFIG_C (0x2E + LOG_1X_BASE_C) 270 271 /* 47 Active Set Configuration logging */ 272 #define LOG_ASET_CONFIG_C (0x2F + LOG_1X_BASE_C) 273 274 /* 48 Quick Paging Channel logging */ 275 #define LOG_QPCH_C (0x30 + LOG_1X_BASE_C) 276 277 /* 49 RLP Statistics logging */ 278 #define LOG_RLP_STAT_C (0x31 + LOG_1X_BASE_C) 279 280 /* 50 Simple Test Data Service Option logging */ 281 #define LOG_STDSO_C (0x32 + LOG_1X_BASE_C) 282 283 /* 51 Pilot Phase Measurement results logging */ 284 #define LOG_SRCH_PPM_RES_C (0x33 + LOG_1X_BASE_C) 285 286 /* 52 Pilot Phase Measurement Data Base logging */ 287 #define LOG_SRCH_PPM_DB_C (0x34 + LOG_1X_BASE_C) 288 289 /* 53 Pilot Phase Measurement search results logging */ 290 #define LOG_SRCH_PPM_C (0x35 + LOG_1X_BASE_C) 291 292 /* 54 IS-801 forward link message */ 293 #define LOG_GPS_FWD_MSG_C (0x36 + LOG_1X_BASE_C) 294 295 /* 55 IS-801 reverse link message */ 296 #define LOG_GPS_REV_MSG_C (0x37 + LOG_1X_BASE_C) 297 298 /* 56 GPS search session statistics */ 299 #define LOG_GPS_STATS_MSG_C (0x38 + LOG_1X_BASE_C) 300 301 /* 57 GPS search results */ 302 #define LOG_GPS_SRCH_PEAKS_MSG_C (0x39 + LOG_1X_BASE_C) 303 304 /* 58 Factory Testmode logging */ 305 #define LOG_FTM_C (0x3A + LOG_1X_BASE_C) 306 307 /* 59 Multiple Peak Logging */ 308 #define LOG_SRCH_GPS_MULTI_PEAKS_INFO_C (0x3B + LOG_1X_BASE_C) 309 310 /* 60 Post processed search results logs */ 311 #define LOG_SRCH_GPS_POST_PROC_C (0x3C + LOG_1X_BASE_C) 312 313 /* 61 FULL Test Data Service Option logging */ 314 #define LOG_FTDSO_C (0x3D + LOG_1X_BASE_C) 315 316 /* 62 Bluetooth logging */ 317 #define LOG_BT_RESERVED_CODES_BASE_C (0x3E + LOG_1X_BASE_C) 318 /* Keep confusing name for backwards compatibility. */ 319 #define LOG_BT_BASE_C LOG_BT_RESERVED_CODES_BASE_C 320 321 /* 92 Bluetooth's last log code */ 322 #define LOG_BT_LAST_C (30 + LOG_BT_RESERVED_CODES_BASE_C) 323 324 /* 93 HDR log codes */ 325 #define LOG_HDR_RESERVED_CODES_BASE_C (0x5D + LOG_1X_BASE_C) 326 /* Keep confusing name for backwards compatibility. */ 327 #define LOG_HDR_BASE_C LOG_HDR_RESERVED_CODES_BASE_C 328 329 /* 143 is HDR's last log code */ 330 #define LOG_HDR_LAST_C (50 + LOG_HDR_RESERVED_CODES_BASE_C) 331 332 /* 144 IS2000 DCCH Forward link channel */ 333 #define LOG_FOR_DCCH_MSG_C (0x90 + LOG_1X_BASE_C) 334 #define LOG_DCCH_FWD_C LOG_FOR_DCCH_MSG_C 335 336 /* 145 IS2000 DCCH Forward link channel */ 337 #define LOG_REV_DCCH_MSG_C (0x91 + LOG_1X_BASE_C) 338 #define LOG_DCCH_REV_C LOG_REV_DCCH_MSG_C 339 340 /* 146 IS2000 DCCH Forward link channel */ 341 #define LOG_ZREX_C (0x92 + LOG_1X_BASE_C) 342 343 /* 147 Active set info logging, similar to ASET_CONFIG, but simpler. */ 344 #define LOG_ASET_INFO_C (0x93 + LOG_1X_BASE_C) 345 346 /* 148 Pilot Phase Measurement four-shoulder-search resutlts logging */ 347 #define LOG_SRCH_PPM_4SHOULDER_RES_C (0x94 + LOG_1X_BASE_C) 348 349 /* 149 Extended Pilot Phase Measurement Data Base logging */ 350 #define LOG_SRCH_EXT_PPM_DB_C (0x95 + LOG_1X_BASE_C) 351 352 /* 150 GPS Visit Parameters */ 353 #define LOG_GPS_VISIT_PARAMETERS_C (0x96 + LOG_1X_BASE_C) 354 355 /* 151 GPS Measurement */ 356 #define LOG_GPS_MEASUREMENT_C (0x97 + LOG_1X_BASE_C) 357 358 /* 152 UIM Data */ 359 #define LOG_UIM_DATA_C (0x98 + LOG_1X_BASE_C) 360 361 /* 153 STDSO plus P2 */ 362 #define LOG_STDSO_P2_C (0x99 + LOG_1X_BASE_C) 363 364 /* 154 FTDSO plus P2 */ 365 #define LOG_FTDSO_P2_C (0x9A + LOG_1X_BASE_C) 366 367 /* 155 Search PPM Statistics */ 368 #define LOG_SRCH_PPM_STATS_C (0x9B + LOG_1X_BASE_C) 369 370 /* 156 PPP Tx Frames */ 371 #define LOG_PPP_TX_FRAMES_C (0x9C + LOG_1X_BASE_C) 372 373 /* 157 PPP Rx Frames */ 374 #define LOG_PPP_RX_FRAMES_C (0x9D + LOG_1X_BASE_C) 375 376 /* 158-187 SSL reserved log codes */ 377 #define LOG_SSL_RESERVED_CODES_BASE_C (0x9E + LOG_1X_BASE_C) 378 #define LOG_SSL_LAST_C (29 + LOG_SSL_RESERVED_CODES_BASE_C) 379 380 /* 188-199 Puma reserved log codes */ 381 /* 188 QPCH, version 2 */ 382 #define LOG_QPCH_VER_2_C (0xBC + LOG_1X_BASE_C) 383 384 /* 189 Enhanced Access Probe */ 385 #define LOG_EA_PROBE_C (0xBD + LOG_1X_BASE_C) 386 387 /* 190 BCCH Frame Information */ 388 #define LOG_BCCH_FRAME_INFO_C (0xBE + LOG_1X_BASE_C) 389 390 /* 191 FCCCH Frame Information */ 391 #define LOG_FCCCH_FRAME_INFO_C (0xBF + LOG_1X_BASE_C) 392 393 /* 192 FDCH Frame Information */ 394 #define LOG_FDCH_FRAME_INFO_C (0xC0 + LOG_1X_BASE_C) 395 396 /* 193 RDCH Frame Information */ 397 #define LOG_RDCH_FRAME_INFO_C (0xC1 + LOG_1X_BASE_C) 398 399 /* 194 FFPC Information */ 400 #define LOG_FFPC_INFO_C (0xC2 + LOG_1X_BASE_C) 401 402 /* 195 RPC Information */ 403 #define LOG_RPC_INFO_C (0xC3 + LOG_1X_BASE_C) 404 405 /* 196 Searcher and Finger Information */ 406 #define LOG_SRCH_FING_INFO_VER_2_C (0xC4 + LOG_1X_BASE_C) 407 408 /* 197 Service Configuration, version 2 */ 409 #define LOG_SRV_CONFIG_VER_2_C (0xC5 + LOG_1X_BASE_C) 410 411 /* 198 Active Set Information, version 2 */ 412 #define LOG_ASET_INFO_VER_2_C (0xC6 + LOG_1X_BASE_C) 413 414 /* 199 Reduced Active Set */ 415 #define LOG_REDUCED_ASET_INFO_C (0xC7 + LOG_1X_BASE_C) 416 417 /* 200 Search Triage Info */ 418 #define LOG_SRCH_TRIAGE_INFO_C (0xC8 + LOG_1X_BASE_C) 419 420 /* 201 RDA Frame Information */ 421 #define LOG_RDA_FRAME_INFO_C (0xC9 + LOG_1X_BASE_C) 422 423 /* 202 gpsOne fatpath information */ 424 #define LOG_GPS_FATPATH_INFO_C (0xCA + LOG_1X_BASE_C) 425 426 /* 203 Extended AGC */ 427 #define LOG_EXTENDED_AGC_C (0xCB + LOG_1X_BASE_C) 428 429 /* 204 Transmit AGC */ 430 #define LOG_TRANSMIT_AGC_C (0xCC + LOG_1X_BASE_C) 431 432 /* 205 I/Q Offset registers */ 433 #define LOG_IQ_OFFSET_REGISTERS_C (0xCD + LOG_1X_BASE_C) 434 435 /* 206 DACC I/Q Accumulator registers */ 436 #define LOG_DACC_IQ_ACCUMULATOR_C (0xCE + LOG_1X_BASE_C) 437 438 /* 207 Register polling results */ 439 #define LOG_REGISTER_POLLING_RESULTS_C (0xCF + LOG_1X_BASE_C) 440 441 /* 208 System arbitration module */ 442 #define LOG_AT_SAM_C (0xD0 + LOG_1X_BASE_C) 443 444 /* 209 Diablo searcher finger log */ 445 #define LOG_DIABLO_SRCH_FING_INFO_C (0xD1 + LOG_1X_BASE_C) 446 447 /* 210 log reserved for dandrus */ 448 #define LOG_SD20_LAST_ACTION_C (0xD2 + LOG_1X_BASE_C) 449 450 /* 211 log reserved for dandrus */ 451 #define LOG_SD20_LAST_ACTION_HYBRID_C (0xD3 + LOG_1X_BASE_C) 452 453 /* 212 log reserved for dandrus */ 454 #define LOG_SD20_SS_OBJECT_C (0xD4 + LOG_1X_BASE_C) 455 456 /* 213 log reserved for dandrus */ 457 #define LOG_SD20_SS_OBJECT_HYBRID_C (0xD5 + LOG_1X_BASE_C) 458 459 /* 214 log reserved for jpinos */ 460 #define LOG_BCCH_SIGNALING_C (0xD6 + LOG_1X_BASE_C) 461 462 /* 215 log reserved for jpinos */ 463 #define LOG_REACH_SIGNALING_C (0xD7 + LOG_1X_BASE_C) 464 465 /* 216 log reserved for jpinos */ 466 #define LOG_FCCCH_SIGNALING_C (0xD8 + LOG_1X_BASE_C) 467 468 /* 217 RDA Frame Information 2 */ 469 #define LOG_RDA_FRAME_INFO_2_C (0xD9 + LOG_1X_BASE_C) 470 471 /* 218 */ 472 #define LOG_GPS_BIT_EDGE_RESULTS_C (0xDA + LOG_1X_BASE_C) 473 474 /* 219 */ 475 #define LOG_PE_DATA_C (0xDB + LOG_1X_BASE_C) 476 477 /* 220 */ 478 #define LOG_PE_PARTIAL_DATA_C (0xDC + LOG_1X_BASE_C) 479 480 /* 221 */ 481 #define LOG_GPS_SINGLE_PEAK_SRCH_RESULTS_C (0xDD + LOG_1X_BASE_C) 482 483 /* 222 */ 484 #define LOG_SRCH4_SAMPRAM_C (0xDE + LOG_1X_BASE_C) 485 486 /* 223 */ 487 #define HDR_AN_PPP_TX_FRAMES (0xDF + LOG_1X_BASE_C) 488 489 /* 224 */ 490 #define HDR_AN_PPP_RX_FRAMES (0xE0 + LOG_1X_BASE_C) 491 492 /* 225 */ 493 #define LOG_GPS_SCHEDULER_TRACE_C (0xE1 + LOG_1X_BASE_C) 494 495 /* 226 */ 496 #define LOG_MPEG4_YUV_FRAME_C (0xE2 + LOG_1X_BASE_C) 497 498 /* 227 */ 499 #define LOG_MPEG4_CLIP_STATS_C (0xE3 + LOG_1X_BASE_C) 500 501 /* 228 */ 502 #define LOG_MPEG4_CLIP_STATS_VER2_C (0xE4 + LOG_1X_BASE_C) 503 504 /* 226-241 MMEG reserved. */ 505 #define LOG_MPEG_RESERVED_CODES_BASE_C (0xF1 + LOG_1X_BASE_C) 506 507 /* 242-274 BREW reserved log range */ 508 #define LOG_BREW_RESERVED_CODES_BASE_C (0xF2 + LOG_1X_BASE_C) 509 #define LOG_BREW_LAST_C (32 + LOG_BREW_RESERVED_CODES_BASE_C) 510 511 /* 275-339 PPP Extended Frames */ 512 #define LOG_PPP_FRAMES_RESERVED_CODES_BASE_C (0x113 + LOG_1X_BASE_C) 513 #define LOG_PPP_FRAMES_LAST_C (64 + LOG_PPP_FRAMES_RESERVED_CODES_BASE_C) 514 515 #define LOG_PPP_EXT_FRAMED_RX_UM_C (0x113 + LOG_1X_BASE_C) 516 #define LOG_PPP_EXT_FRAMED_RX_RM_C (0x114 + LOG_1X_BASE_C) 517 #define LOG_PPP_EXT_FRAMED_RX_AN_C (0x115 + LOG_1X_BASE_C) 518 519 #define LOG_PPP_EXT_FRAMED_TX_UM_C (0x123 + LOG_1X_BASE_C) 520 #define LOG_PPP_EXT_FRAMED_TX_RM_C (0x124 + LOG_1X_BASE_C) 521 #define LOG_PPP_EXT_FRAMED_TX_AN_C (0x125 + LOG_1X_BASE_C) 522 523 #define LOG_PPP_EXT_UNFRAMED_RX_UM_C (0x133 + LOG_1X_BASE_C) 524 #define LOG_PPP_EXT_UNFRAMED_RX_RM_C (0x134 + LOG_1X_BASE_C) 525 #define LOG_PPP_EXT_UNFRAMED_RX_AN_C (0x135 + LOG_1X_BASE_C) 526 527 #define LOG_PPP_EXT_UNFRAMED_TX_UM_C (0x143 + LOG_1X_BASE_C) 528 #define LOG_PPP_EXT_UNFRAMED_TX_RM_C (0x144 + LOG_1X_BASE_C) 529 #define LOG_PPP_EXT_UNFRAMED_TX_AN_C (0x145 + LOG_1X_BASE_C) 530 531 /* 340 LOG_PE_DATA_EXT_C */ 532 #define LOG_PE_DATA_EXT_C (0x154 + LOG_1X_BASE_C) 533 534 /* REX Subsystem logs */ 535 #define LOG_MEMDEBUG_C (0x155 + LOG_1X_BASE_C) 536 #define LOG_SYSPROFILE_C (0x156 + LOG_1X_BASE_C) 537 #define LOG_TASKPROFILE_C (0x157 + LOG_1X_BASE_C) 538 #define LOG_COREDUMP_C (0x158 + LOG_1X_BASE_C) 539 540 /* 341-349 REX subsystem logs */ 541 #define LOG_REX_RESERVED_CODES_BASE_C (0x155 + LOG_1X_BASE_C) 542 #define LOG_REX_LAST_C (8 + LOG_REX_RESERVED_CODES_BASE_C) 543 544 /* 350 LOG_PE_PARTIAL_DATA_EXT_C */ 545 #define LOG_PE_PARTIAL_DATA_EXT_C (0x15E + LOG_1X_BASE_C) 546 547 /* 351 LOG_DIAG_STRESS_TEST_C */ 548 #define LOG_DIAG_STRESS_TEST_C (0x15F + LOG_1X_BASE_C) 549 550 /* 352 LOG_WMS_READ_C */ 551 #define LOG_WMS_READ_C (0x160 + LOG_1X_BASE_C) 552 553 /* 353 Search Triage Info Version 2 */ 554 #define LOG_SRCH_TRIAGE_INFO2_C (0x161 + LOG_1X_BASE_C) 555 556 /* 354 RLP Rx FDCH Frames */ 557 #define LOG_RLP_RX_FDCH_FRAMES_C (0x162 + LOG_1X_BASE_C) 558 559 /* 355 RLP Tx FDCH Frames */ 560 #define LOG_RLP_TX_FDCH_FRAMES_C (0x163 + LOG_1X_BASE_C) 561 562 /* 356-371 QTV subsystem logs */ 563 #define LOG_QTV_RESERVED_CODES_BASE_C (0x164 + LOG_1X_BASE_C) 564 #define LOG_QTV_LAST_C (15 + LOG_QTV_RESERVED_CODES_BASE_C) 565 566 /* 372 Searcher 4 1X */ 567 #define LOG_SRCH4_1X_C (0x174 + LOG_1X_BASE_C) 568 569 /* 373 Searcher sleep statistics */ 570 #define LOG_SRCH_SLEEP_STATS_C (0x175 + LOG_1X_BASE_C) 571 572 /* 374 Service Configuration, version 3 */ 573 #define LOG_SRV_CONFIG_VER_3_C (0x176 + LOG_1X_BASE_C) 574 575 /* 375 Searcher 4 HDR */ 576 #define LOG_SRCH4_HDR_C (0x177 + LOG_1X_BASE_C) 577 578 /* 376 Searcher 4 AFLT */ 579 #define LOG_SRCH4_AFLT_C (0x178 + LOG_1X_BASE_C) 580 581 /* 377 Enhanced Finger Information */ 582 #define LOG_ENH_FING_INFO_C (0x179 + LOG_1X_BASE_C) 583 584 /* 378 DV Information */ 585 #define LOG_DV_INFO_C (0x17A + LOG_1X_BASE_C) 586 587 /* 379 WMS set routes information */ 588 #define LOG_WMS_SET_ROUTES_C (0x17B + LOG_1X_BASE_C) 589 590 /* 380 FTM Version 2 Logs */ 591 #define LOG_FTM_VER_2_C (0x17C + LOG_1X_BASE_C) 592 593 /* 381 GPS Multipeak logging */ 594 #define LOG_SRCH_GPS_MULTI_PEAKS_SIMPLIFIED_INFO_C (0x17D + LOG_1X_BASE_C) 595 596 /* 382 GPS Multipeak logging */ 597 #define LOG_SRCH_GPS_MULTI_PEAKS_VERBOSE_INFO_C (0x17E + LOG_1X_BASE_C) 598 599 /* 383-403 HDR reserved logs */ 600 #define LOG_HDR_RESERVED_CODES_BASE_2_C (0x17F + LOG_1X_BASE_C) 601 #define LOG_HDR_LAST_2_C (20 + LOG_HDR_RESERVED_CODES_BASE_2_C) 602 603 /* RLP Rx - PDCH partial MuxPDU5 frames */ 604 #define LOG_RLP_RX_PDCH_PARTIAL_MUXPDU5_FRAMES_C (0x194 + LOG_1X_BASE_C) 605 606 /* RLP Tx - PDCH partial MuxPDU5 frames */ 607 #define LOG_RLP_TX_PDCH_PARTIAL_MUXPDU5_FRAMES_C (0x195 + LOG_1X_BASE_C) 608 609 /* RLP Rx internal details */ 610 #define LOG_RLP_RX_INTERNAL_DETAILS_C (0x196 + LOG_1X_BASE_C) 611 612 /* RLP Tx internal details */ 613 #define LOG_RLP_TX_INTERNAL_DETAILS_C (0x197 + LOG_1X_BASE_C) 614 615 /* MPEG4 Clip Statistics version 3 */ 616 #define LOG_MPEG4_CLIP_STATS_VER3_C (0x198 + LOG_1X_BASE_C) 617 618 /* Mobile IP Performance */ 619 #define LOG_MOBILE_IP_PERFORMANCE_C (0x199 + LOG_1X_BASE_C) 620 621 /* 410-430 Searcher reserved logs */ 622 #define LOG_SEARCHER_RESERVED_CODES_BASE_C (0x19A + LOG_1X_BASE_C) 623 #define LOG_SEARCHER_LAST_2_C (21 + LOG_SEARCHER_RESERVED_CODES_BASE_C) 624 625 /* 432-480 QTV reserved logs */ 626 #define LOG_QTV2_RESERVED_CODES_BASE_C (0x1B0 + LOG_1X_BASE_C) 627 #define LOG_QTV2_LAST_C (48 + LOG_QTV2_RESERVED_CODES_BASE_C) 628 629 #define LOG_QTV_PDS2_STATS (0x1B6 + LOG_1X_BASE_C) 630 #define LOG_QTV_PDS2_GET_REQUEST (0x1B7 + LOG_1X_BASE_C) 631 #define LOG_QTV_PDS2_GET_RESP_HEADER (0x1B8 + LOG_1X_BASE_C) 632 #define LOG_QTV_PDS2_GET_RESP_PCKT (0x1B9 + LOG_1X_BASE_C) 633 #define LOG_QTV_CMX_AUDIO_INPUT_DATA_C (0x1BA + LOG_1X_BASE_C) 634 #define LOG_QTV_RTSP_OPTIONS_C (0x1BB + LOG_1X_BASE_C) 635 #define LOG_QTV_RTSP_GET_PARAMETER_C (0x1BC + LOG_1X_BASE_C) 636 #define LOG_QTV_RTSP_SET_PARAMETER_C (0x1BD + LOG_1X_BASE_C) 637 #define LOG_QTV_VIDEO_BITSTREAM (0x1BE + LOG_1X_BASE_C) 638 #define LOG_ARM_VIDEO_DECODE_STATS (0x1BF + LOG_1X_BASE_C) 639 #define LOG_QTV_DSP_SLICE_BUFFER_C (0x1C0 + LOG_1X_BASE_C) 640 #define LOG_QTV_CMD_LOGGING_C (0x1C1 + LOG_1X_BASE_C) 641 #define LOG_QTV_AUDIO_FRAME_PTS_INFO_C (0x1C2 + LOG_1X_BASE_C) 642 #define LOG_QTV_VIDEO_FRAME_DECODE_INFO_C (0x1C3 + LOG_1X_BASE_C) 643 #define LOG_QTV_RTCP_COMPOUND_RR_C (0x1C4 + LOG_1X_BASE_C) 644 #define LOG_QTV_FRAME_BUFFER_RELEASE_REASON_C (0x1C5 + LOG_1X_BASE_C) 645 #define LOG_QTV_AUDIO_CHANNEL_SWITCH_FRAME_C (0x1C6 + LOG_1X_BASE_C) 646 #define LOG_QTV_RTP_DECRYPTED_PKT_C (0x1C7 + LOG_1X_BASE_C) 647 #define LOG_QTV_PCR_DRIFT_RATE_C (0x1C8 + LOG_1X_BASE_C) 648 649 /* GPS PDSM logs */ 650 #define LOG_PDSM_POSITION_REPORT_CALLBACK_C (0x1E1 + LOG_1X_BASE_C) 651 #define LOG_PDSM_PD_EVENT_CALLBACK_C (0x1E2 + LOG_1X_BASE_C) 652 #define LOG_PDSM_PA_EVENT_CALLBACK_C (0x1E3 + LOG_1X_BASE_C) 653 #define LOG_PDSM_NOTIFY_VERIFY_REQUEST_C (0x1E4 + LOG_1X_BASE_C) 654 #define LOG_PDSM_RESERVED1_C (0x1E5 + LOG_1X_BASE_C) 655 #define LOG_PDSM_RESERVED2_C (0x1E6 + LOG_1X_BASE_C) 656 657 /* Searcher Demodulation Status log */ 658 #define LOG_SRCH_DEMOD_STATUS_C (0x1E7 + LOG_1X_BASE_C) 659 660 /* Searcher Call Statistics log */ 661 #define LOG_SRCH_CALL_STATISTICS_C (0x1E8 + LOG_1X_BASE_C) 662 663 /* GPS MS-MPC Forward link */ 664 #define LOG_MS_MPC_FWD_LINK_C (0x1E9 + LOG_1X_BASE_C) 665 666 /* GPS MS-MPC Reverse link */ 667 #define LOG_MS_MPC_REV_LINK_C (0x1EA + LOG_1X_BASE_C) 668 669 /* Protocol Services Data */ 670 #define LOG_DATA_PROTOCOL_LOGGING_C (0x1EB + LOG_1X_BASE_C) 671 672 /* MediaFLO reserved log codes */ 673 #define LOG_MFLO_RESERVED_CODES_BASE_C (0x1EC + LOG_1X_BASE_C) 674 #define LOG_MFLO_LAST_C (99 + LOG_MFLO_RESERVED_CODES_BASE_C) 675 676 /* GPS demodulation tracking header info */ 677 #define LOG_GPS_DEMOD_TRACKING_HEADER_C (0x250 + LOG_1X_BASE_C) 678 679 /* GPS demodulation tracking results */ 680 #define LOG_GPS_DEMOD_TRACKING_C (0x251 + LOG_1X_BASE_C) 681 682 /* GPS bit edge logs from demod tracking */ 683 #define LOG_GPS_DEMOD_BIT_EDGE_C (0x252 + LOG_1X_BASE_C) 684 685 /* GPS demodulation soft decisions */ 686 #define LOG_GPS_DEMOD_SOFT_DECISIONS_C (0x253 + LOG_1X_BASE_C) 687 688 /* GPS post-processed demod tracking results */ 689 #define LOG_GPS_DEMOD_TRACKING_POST_PROC_C (0x254 + LOG_1X_BASE_C) 690 691 /* GPS subframe log */ 692 #define LOG_GPS_DEMOD_SUBFRAME_C (0x255 + LOG_1X_BASE_C) 693 694 /* F-CPCCH Quality Information */ 695 #define LOG_F_CPCCH_QUALITY_INFO_C (0x256 + LOG_1X_BASE_C) 696 697 /* Reverse PDCCH/PDCH Frame Information */ 698 #define LOG_R_PDCCH_R_PDCH_FRAME_INFO_C (0x257 + LOG_1X_BASE_C) 699 700 /* Forward G Channel Information */ 701 #define LOG_F_GCH_INFO_C (0x258 + LOG_1X_BASE_C) 702 703 /* Forward G Channel Frame Information */ 704 #define LOG_F_GCH_FRAME_INFO_C (0x259 + LOG_1X_BASE_C) 705 706 /* Forward RC Channel Information */ 707 #define LOG_F_RCCH_INFO_C (0x25A + LOG_1X_BASE_C) 708 709 /* Forward ACK Channel Information */ 710 #define LOG_F_ACKCH_INFO_C (0x25B + LOG_1X_BASE_C) 711 712 /* Forward ACK Channel ACKDA Information */ 713 #define LOG_F_ACKCH_ACKDA_C (0x25C + LOG_1X_BASE_C) 714 715 /* Reverse REQ Channel Information */ 716 #define LOG_R_REQCH_INFO_C (0x25D + LOG_1X_BASE_C) 717 718 /* Sleep Task Statistics */ 719 #define LOG_SLEEP_STATS_C (0x25E + LOG_1X_BASE_C) 720 721 /* Sleep controller statistics 1X */ 722 #define LOG_1X_SLEEP_CONTROLLER_STATS_C (0x25F + LOG_1X_BASE_C) 723 724 /* Sleep controller statistics HDR */ 725 #define LOG_HDR_SLEEP_CONTROLLER_STATS_C (0x260 + LOG_1X_BASE_C) 726 727 /* Sleep controller statistics GSM */ 728 #define LOG_GSM_SLEEP_CONTROLLER_STATS_C (0x261 + LOG_1X_BASE_C) 729 730 /* Sleep controller statistics WCDMA */ 731 #define LOG_WCDMA_SLEEP_CONTROLLER_STATS_C (0x262 + LOG_1X_BASE_C) 732 733 /* Sleep task and controller reserved logs */ 734 #define LOG_SLEEP_APPS_STATS_C (0x263 + LOG_1X_BASE_C) 735 #define LOG_SLEEP_STATS_RESERVED2_C (0x264 + LOG_1X_BASE_C) 736 #define LOG_SLEEP_STATS_RESERVED3_C (0x265 + LOG_1X_BASE_C) 737 738 /* DV Information placeholder channel logs */ 739 #define LOG_PDCCH_LO_SELECTED_C (0x266 + LOG_1X_BASE_C) 740 #define LOG_PDCCH_HI_SELECTED_C (0x267 + LOG_1X_BASE_C) 741 #define LOG_WALSH_SELECTED_C (0x268 + LOG_1X_BASE_C) 742 #define LOG_PDCH_BE_SELECTED_C (0x269 + LOG_1X_BASE_C) 743 #define LOG_PDCCH_LLR_SELECTED_C (0x26A + LOG_1X_BASE_C) 744 #define LOG_CQI_ACK_LO_SELECTED_C (0x26B + LOG_1X_BASE_C) 745 #define LOG_CQI_ACK_HI_SELECTED_C (0x26C + LOG_1X_BASE_C) 746 #define LOG_RL_GAIN_SELECTED_C (0x26D + LOG_1X_BASE_C) 747 #define LOG_PDCCH0_SNDA_SELECTED_C (0x26E + LOG_1X_BASE_C) 748 #define LOG_PDCCH1_SNDA_SELECTED_C (0x26F + LOG_1X_BASE_C) 749 750 /* 624 WMS Message List */ 751 #define LOG_WMS_MESSAGE_LIST_C (0x270 + LOG_1X_BASE_C) 752 753 /* 625 Multimode Generic SIM Driver Interface */ 754 #define LOG_MM_GENERIC_SIM_DRIVER_C (0x271 + LOG_1X_BASE_C) 755 756 /* 626 Generic SIM Toolkit Task */ 757 #define LOG_GENERIC_SIM_TOOLKIT_TASK_C (0x272 + LOG_1X_BASE_C) 758 759 /* 627 Call Manager Phone events log */ 760 #define LOG_CM_PH_EVENT_C (0x273 + LOG_1X_BASE_C) 761 762 /* 628 WMS Set Message List */ 763 #define LOG_WMS_SET_MESSAGE_LIST_C (0x274 + LOG_1X_BASE_C) 764 765 /* 629-704 HDR reserved logs */ 766 #define LOG_HDR_RESERVED_CODES_BASE_3_C (0x275 + LOG_1X_BASE_C) 767 #define LOG_HDR_LAST_3_C (75 + LOG_HDR_RESERVED_CODES_BASE_3_C) 768 769 /* 705 Call Manager call event log */ 770 #define LOG_CM_CALL_EVENT_C (0x2C1 + LOG_1X_BASE_C) 771 772 /* 706-738 QVP reserved logs */ 773 #define LOG_QVP_RESERVED_CODES_BASE_C (0x2C2 + LOG_1X_BASE_C) 774 #define LOG_QVP_LAST_C (32 + LOG_QVP_RESERVED_CODES_BASE_C) 775 776 /* 739 GPS PE Position Report log */ 777 #define LOG_GPS_PE_POSITION_REPORT_C (0x2E3 + LOG_1X_BASE_C) 778 779 /* 740 GPS PE Position Report Extended log */ 780 #define LOG_GPS_PE_POSITION_REPORT_EXT_C (0x2E4 + LOG_1X_BASE_C) 781 782 /* 741 log */ 783 #define LOG_MDDI_HOST_STATS_C (0x2E5 + LOG_1X_BASE_C) 784 785 /* GPS Decoded Ephemeris */ 786 #define LOG_GPS_DECODED_EPHEMERIS_C (0x2E6 + LOG_1X_BASE_C) 787 788 /* GPS Decoded Almanac */ 789 #define LOG_GPS_DECODED_ALMANAC_C (0x2E7 + LOG_1X_BASE_C) 790 791 /* Transceiver Resource Manager */ 792 #define LOG_TRANSCEIVER_RESOURCE_MGR_C (0x2E8 + LOG_1X_BASE_C) 793 794 /* GPS Position Engine Info */ 795 #define LOG_GPS_POSITION_ENGINE_INFO_C (0x2E9 + LOG_1X_BASE_C) 796 797 /* 746-810 RAPTOR reserved log range */ 798 #define LOG_RAPTOR_RESERVED_CODES_BASE_C (0x2EA + LOG_1X_BASE_C) 799 #define LOG_RAPTOR_LAST_C (64 + LOG_RAPTOR_RESERVED_CODES_BASE_C) 800 801 /* QOS Specification Logging */ 802 803 /* QOS Requested Log */ 804 #define LOG_QOS_REQUESTED_C (0x32B + LOG_1X_BASE_C) 805 806 /* QOS Granted Log */ 807 #define LOG_QOS_GRANTED_C (0x32C + LOG_1X_BASE_C) 808 809 /* QOS State Log */ 810 #define LOG_QOS_STATE_C (0x32D + LOG_1X_BASE_C) 811 812 #define LOG_QOS_MODIFIED_C (0x32E + LOG_1X_BASE_C) 813 814 #define LOG_QDJ_ENQUEUE_C (0x32F + LOG_1X_BASE_C) 815 #define LOG_QDJ_DEQUEUE_C (0x330 + LOG_1X_BASE_C) 816 #define LOG_QDJ_UPDATE_C (0x331 + LOG_1X_BASE_C) 817 #define LOG_QDTX_ENCODER_C (0x332 + LOG_1X_BASE_C) 818 #define LOG_QDTX_DECODER_C (0x333 + LOG_1X_BASE_C) 819 820 #define LOG_PORT_ASSIGNMENT_STATUS_C (0x334 + LOG_1X_BASE_C) 821 822 /* Protocol Services reserved log codes */ 823 #define LOG_PS_RESERVED_CODES_BASE_C (0x335 + LOG_1X_BASE_C) 824 #define LOG_PS_LAST_C (25 + LOG_PS_RESERVED_C) 825 826 #define LOG_PS_STAT_IP_C (0x335 + LOG_1X_BASE_C) 827 #define LOG_PS_STAT_GLOBAL_IPV4_C (0x335 + LOG_1X_BASE_C) 828 #define LOG_PS_STAT_GLOBAL_IPV6_C (0x336 + LOG_1X_BASE_C) 829 #define LOG_PS_STAT_GLOBAL_ICMPV4_C (0x337 + LOG_1X_BASE_C) 830 #define LOG_PS_STAT_GLOBAL_ICMPV6_C (0x338 + LOG_1X_BASE_C) 831 #define LOG_PS_STAT_GLOBAL_TCP_C (0x339 + LOG_1X_BASE_C) 832 #define LOG_PS_STAT_GLOBAL_UDP_C (0x33A + LOG_1X_BASE_C) 833 834 /* Protocol Services describe all TCP instances */ 835 #define LOG_PS_STAT_DESC_ALL_TCP_INST_C (0x33B + LOG_1X_BASE_C) 836 837 /* Protocol Services describe all memory pool instances */ 838 #define LOG_PS_STAT_DESC_ALL_MEM_POOL_INST_C (0x33C + LOG_1X_BASE_C) 839 840 /* Protocol Services describe all IFACE instances */ 841 #define LOG_PS_STAT_DESC_ALL_IFACE_INST_C (0x33D + LOG_1X_BASE_C) 842 843 /* Protocol Services describe all PPP instances */ 844 #define LOG_PS_STAT_DESC_ALL_PPP_INST_C (0x33E + LOG_1X_BASE_C) 845 846 /* Protocol Services describe all ARP instances */ 847 #define LOG_PS_STAT_DESC_ALL_ARP_INST_C (0x33F + LOG_1X_BASE_C) 848 849 /* Protocol Services describe delta instance */ 850 #define LOG_PS_STAT_DESC_DELTA_INST_C (0x340 + LOG_1X_BASE_C) 851 852 /* Protocol Services instance TCP statistics */ 853 #define LOG_PS_STAT_TCP_INST_C (0x341 + LOG_1X_BASE_C) 854 855 /* Protocol Services instance UDP statistics */ 856 #define LOG_PS_STAT_UDP_INST_C (0x342 + LOG_1X_BASE_C) 857 858 /* Protocol Services instance PPP statistics */ 859 #define LOG_PS_STAT_PPP_INST_C (0x343 + LOG_1X_BASE_C) 860 861 /* Protocol Services instance IFACE statistics */ 862 #define LOG_PS_STAT_IFACE_INST_C (0x344 + LOG_1X_BASE_C) 863 864 /* Protocol Services instance memory statistics */ 865 #define LOG_PS_STAT_MEM_INST_C (0x345 + LOG_1X_BASE_C) 866 867 /* Protocol Services instance flow statistics */ 868 #define LOG_PS_STAT_FLOW_INST_C (0x346 + LOG_1X_BASE_C) 869 870 /* Protocol Services instance physical link statistics */ 871 #define LOG_PS_STAT_PHYS_LINK_INST_C (0x347 + LOG_1X_BASE_C) 872 873 /* Protocol Services instance ARP statistics */ 874 #define LOG_PS_STAT_ARP_INST_C (0x348 + LOG_1X_BASE_C) 875 876 /* Protocol Services instance LLC statistics */ 877 #define LOG_PS_STAT_LLC_INST_C (0x349 + LOG_1X_BASE_C) 878 879 /* Protocol Services instance IPHC statistics */ 880 #define LOG_PS_STAT_IPHC_INST_C (0x34A + LOG_1X_BASE_C) 881 882 /* Protocol Services instance ROHC statistics */ 883 #define LOG_PS_STAT_ROHC_INST_C (0x34B + LOG_1X_BASE_C) 884 885 /* Protocol Services instance RSVP statistics */ 886 #define LOG_PS_STAT_RSVP_INST_C (0x34C + LOG_1X_BASE_C) 887 888 /* Protocol Services describe all LLC instances */ 889 #define LOG_PS_STAT_DESC_ALL_LLC_INST_C (0x34D + LOG_1X_BASE_C) 890 891 /* Protocol Services describe all RSVP instances */ 892 #define LOG_PS_STAT_DESC_ALL_RSVP_INST_C (0x34E + LOG_1X_BASE_C) 893 894 /* Call Manager Serving System event log */ 895 #define LOG_CM_SS_EVENT_C (0x34F + LOG_1X_BASE_C) 896 897 /* VcTcxo manager�s automatic frequency control log */ 898 #define LOG_TCXOMGR_AFC_DATA_C (0x350 + LOG_1X_BASE_C) 899 900 /* Clock transactions and general clocks status log */ 901 #define LOG_CLOCK_C (0x351 + LOG_1X_BASE_C) 902 903 /* GPS search processed peak results and their associated search parameters */ 904 #define LOG_GPS_PROCESSED_PEAK_C (0x352 + LOG_1X_BASE_C) 905 906 #define LOG_MDSP_LOG_CHUNKS_C (0x353 + LOG_1X_BASE_C) 907 908 /* Periodic RSSI update log */ 909 #define LOG_WLAN_RSSI_UPDATE_C (0x354 + LOG_1X_BASE_C) 910 911 /* Periodic Link Layer statistics log */ 912 #define LOG_WLAN_LL_STAT_C (0x355 + LOG_1X_BASE_C) 913 914 /* QOS Extended State Log */ 915 #define LOG_QOS_STATE_EX_C (0x356 + LOG_1X_BASE_C) 916 917 /* Bluetooth host HCI transmitted data */ 918 #define LOG_BT_HOST_HCI_TX_C (0x357 + LOG_1X_BASE_C) 919 920 /* Bluetooth host HCI received data */ 921 #define LOG_BT_HOST_HCI_RX_C (0x358 + LOG_1X_BASE_C) 922 923 /* Internal - GPS PE Position Report Part 3 */ 924 #define LOG_GPS_PE_POSITION_REPORT_PART3_C (0x359 + LOG_1X_BASE_C) 925 926 /* Extended log code which logs requested QoS */ 927 #define LOG_QOS_REQUESTED_EX_C (0x35A + LOG_1X_BASE_C) 928 929 /* Extended log code which logs granted QoS */ 930 #define LOG_QOS_GRANTED_EX_C (0x35B + LOG_1X_BASE_C) 931 932 /* Extended log code which logs modified QoS */ 933 #define LOG_QOS_MODIFIED_EX_C (0x35C + LOG_1X_BASE_C) 934 935 /* Bus Monitor Profiling Info */ 936 #define LOG_BUS_MON_PROF_INFO_C (0x35D + LOG_1X_BASE_C) 937 938 /* Pilot Phase Measurement Search results */ 939 #define LOG_SRCH_PPM_RES_VER_2_C (0x35E + LOG_1X_BASE_C) 940 941 /* Pilot Phase Measurement Data Base */ 942 #define LOG_SRCH_PPM_DB_VER_2_C (0x35F + LOG_1X_BASE_C) 943 944 /* Pilot Phase Measurement state machine */ 945 #define LOG_PPM_SM_C (0x360 + LOG_1X_BASE_C) 946 947 /* Robust Header Compression - Compressor */ 948 #define LOG_ROHC_COMPRESSOR_C (0x361 + LOG_1X_BASE_C) 949 950 /* Robust Header Compression - Decompressor */ 951 #define LOG_ROHC_DECOMPRESSOR_C (0x362 + LOG_1X_BASE_C) 952 953 /* Robust Header Compression - Feedback Compressor */ 954 #define LOG_ROHC_FEEDBACK_COMPRESSOR_C (0x363 + LOG_1X_BASE_C) 955 956 /* Robust Header Compression - Feedback Decompressor */ 957 #define LOG_ROHC_FEEDBACK_DECOMPRESSOR_C (0x364 + LOG_1X_BASE_C) 958 959 /* Bluetooth HCI commands */ 960 #define LOG_BT_HCI_CMD_C (0x365 + LOG_1X_BASE_C) 961 962 /* Bluetooth HCI events */ 963 #define LOG_BT_HCI_EV_C (0x366 + LOG_1X_BASE_C) 964 965 /* Bluetooth HCI Transmitted ACL data */ 966 #define LOG_BT_HCI_TX_ACL_C (0x367 + LOG_1X_BASE_C) 967 968 /* Bluetooth HCI Received ACL data */ 969 #define LOG_BT_HCI_RX_ACL_C (0x368 + LOG_1X_BASE_C) 970 971 /* Bluetooth SOC H4 Deep Sleep */ 972 #define LOG_BT_SOC_H4DS_C (0x369 + LOG_1X_BASE_C) 973 974 /* UMTS to CDMA Handover Message */ 975 #define LOG_UMTS_TO_CDMA_HANDOVER_MSG_C (0x36A + LOG_1X_BASE_C) 976 977 /* Graphic Event Data */ 978 #define LOG_PROFILER_GRAPHIC_DATA_C (0x36B + LOG_1X_BASE_C) 979 980 /* Audio Event Data */ 981 #define LOG_PROFILER_AUDIO_DATA_C (0x36C + LOG_1X_BASE_C) 982 983 /* GPS Spectral Information */ 984 #define LOG_GPS_SPECTRAL_INFO_C (0x36D + LOG_1X_BASE_C) 985 986 /* AHB Performance Monitor LOG data */ 987 #define LOG_APM_C (0x36E + LOG_1X_BASE_C) 988 989 /* GPS Clock Report */ 990 #define LOG_CONVERGED_GPS_CLOCK_REPORT_C (0x36F + LOG_1X_BASE_C) 991 992 /* GPS Position Report */ 993 #define LOG_CONVERGED_GPS_POSITION_REPORT_C (0x370 + LOG_1X_BASE_C) 994 995 /* GPS Measurement Report */ 996 #define LOG_CONVERGED_GPS_MEASUREMENT_REPORT_C (0x371 + LOG_1X_BASE_C) 997 998 /* GPS RF Status Report */ 999 #define LOG_CONVERGED_GPS_RF_STATUS_REPORT_C (0x372 + LOG_1X_BASE_C) 1000 1001 /* VOIP To CDMA Handover Message - Obsoleted by 0x138B - 0x138D */ 1002 #define LOG_VOIP_TO_CDMA_HANDOVER_MSG_C (0x373 + LOG_1X_BASE_C) 1003 1004 /* GPS Prescribed Dwell Result */ 1005 #define LOG_GPS_PRESCRIBED_DWELL_RESULT_C (0x374 + LOG_1X_BASE_C) 1006 1007 /* CGPS IPC Data */ 1008 #define LOG_CGPS_IPC_DATA_C (0x375 + LOG_1X_BASE_C) 1009 1010 /* CGPS Non IPC Data */ 1011 #define LOG_CGPS_NON_IPC_DATA_C (0x376 + LOG_1X_BASE_C) 1012 1013 /* CGPS Session Report */ 1014 #define LOG_CGPS_REP_EVT_LOG_PACKET_C (0x377 + LOG_1X_BASE_C) 1015 1016 /* CGPS PDSM Get Position */ 1017 #define LOG_CGPS_PDSM_GET_POSITION_C (0x378 + LOG_1X_BASE_C) 1018 1019 /* CGPS PDSM Set Parameters */ 1020 #define LOG_CGPS_PDSM_SET_PARAMETERS_C (0x379 + LOG_1X_BASE_C) 1021 1022 /* CGPS PDSM End Session */ 1023 #define LOG_CGPS_PDSM_END_SESSION_C (0x37A + LOG_1X_BASE_C) 1024 1025 /* CGPS PDSM notify Verify Response */ 1026 #define LOG_CGPS_PDSM_NOTIFY_VERIFY_RESP_C (0x37B + LOG_1X_BASE_C) 1027 1028 /* CGPS PDSM Position Report Callback */ 1029 #define LOG_CGPS_PDSM_POSITION_REPORT_CALLBACK_C (0x37C + LOG_1X_BASE_C) 1030 1031 /* CGPS PDSM PD Event Callback */ 1032 #define LOG_CGPS_PDSM_PD_EVENT_CALLBACK_C (0x37D + LOG_1X_BASE_C) 1033 1034 /* CGPS PDSM PA Event Callback */ 1035 #define LOG_CGPS_PDSM_PA_EVENT_CALLBACK_C (0x37E + LOG_1X_BASE_C) 1036 1037 /* CGPS PDSM notify Verify Request Callback */ 1038 #define LOG_CGPS_PDSM_NOTIFY_VERIFY_REQUEST_C (0x37F + LOG_1X_BASE_C) 1039 1040 /* CGPS PDSM PD Command Error Callback */ 1041 #define LOG_CGPS_PDSM_PD_CMD_ERR_CALLBACK_C (0x380 + LOG_1X_BASE_C) 1042 1043 /* CGPS PDSM PA Command Error Callback */ 1044 #define LOG_CGPS_PDSM_PA_CMD_ERR_CALLBACK_C (0x381 + LOG_1X_BASE_C) 1045 1046 /* CGPS PDSM Position Error */ 1047 #define LOG_CGPS_PDSM_POS_ERROR_C (0x382 + LOG_1X_BASE_C) 1048 1049 /* CGPS PDSM Extended Status Position Report */ 1050 #define LOG_CGPS_PDSM_EXT_STATUS_POS_REPORT_C (0x383 + LOG_1X_BASE_C) 1051 1052 /* CGPS PDSM Extended Status NMEA Report */ 1053 #define LOG_CGPS_PDSM_EXT_STATUS_NMEA_REPORT_C (0x384 + LOG_1X_BASE_C) 1054 1055 /* CGPS PDSM Extended Status Measurement Report */ 1056 #define LOG_CGPS_PDSM_EXT_STATUS_MEAS_REPORT_C (0x385 + LOG_1X_BASE_C) 1057 1058 /* CGPS Report Server TX Packet */ 1059 #define LOG_CGPS_REP_SVR_TX_LOG_PACKET_C (0x386 + LOG_1X_BASE_C) 1060 1061 /* CGPS Report Server RX Packet */ 1062 #define LOG_CGPS_REP_SVR_RX_LOG_PACKET_C (0x387 + LOG_1X_BASE_C) 1063 1064 /* UMTS To CDMA Handover Paging Channel Message */ 1065 #define LOG_UMTS_TO_CDMA_HANDOVER_PCH_MSG_C (0x388 + LOG_1X_BASE_C) 1066 1067 /* UMTS To CDMA Handover Traffic Channel Message */ 1068 #define LOG_UMTS_TO_CDMA_HANDOVER_TCH_MSG_C (0x389 + LOG_1X_BASE_C) 1069 1070 /* Converged GPS IQ Report */ 1071 #define LOG_CONVERGED_GPS_IQ_REPORT_C (0x38A + LOG_1X_BASE_C) 1072 1073 /* VOIP To CDMA Paging Channel Handover Message */ 1074 #define LOG_VOIP_TO_CDMA_PCH_HANDOVER_MSG_C (0x38B + LOG_1X_BASE_C) 1075 1076 /* VOIP To CDMA Access Channel Handover Message */ 1077 #define LOG_VOIP_TO_CDMA_ACH_HANDOVER_MSG_C (0x38C + LOG_1X_BASE_C) 1078 1079 /* VOIP To CDMA Forward Traffic Channel Handover Message */ 1080 #define LOG_VOIP_TO_CDMA_FTC_HANDOVER_MSG_C (0x38D + LOG_1X_BASE_C) 1081 1082 /* QMI reserved logs */ 1083 #define LOG_QMI_RESERVED_CODES_BASE_C (0x38E + LOG_1X_BASE_C) 1084 #define LOG_QMI_LAST_C (32 + LOG_QMI_RESERVED_CODES_BASE_C) 1085 1086 /* QOS Info Code Update Log */ 1087 #define LOG_QOS_INFO_CODE_UPDATE_C (0x3AF + LOG_1X_BASE_C) 1088 1089 /* Transmit(Uplink) Vocoder PCM Packet Log */ 1090 #define LOG_TX_PCM_PACKET_C (0x3B0 + LOG_1X_BASE_C) 1091 1092 /* Audio Vocoder Data Paths */ 1093 #define LOG_AUDVOC_DATA_PATHS_PACKET_C (0x3B0 + LOG_1X_BASE_C) 1094 1095 /* Receive(Downlink) Vocoder PCM Packet Log */ 1096 #define LOG_RX_PCM_PACKET_C (0x3B1 + LOG_1X_BASE_C) 1097 1098 /* CRC of YUV frame log */ 1099 #define LOG_DEC_CRC_FRAME_C (0x3B2 + LOG_1X_BASE_C) 1100 1101 /* FLUTE Session Information */ 1102 #define LOG_FLUTE_SESSION_INFO_C (0x3B3 + LOG_1X_BASE_C) 1103 1104 /* FLUTE ADP File Information */ 1105 #define LOG_FLUTE_ADP_FILE_INFO_C (0x3B4 + LOG_1X_BASE_C) 1106 1107 /* FLUTE File Request Information */ 1108 #define LOG_FLUTE_FILE_REQ_INFO_C (0x3B5 + LOG_1X_BASE_C) 1109 1110 /* FLUTE FDT Instance Information */ 1111 #define LOG_FLUTE_FDT_INST_C (0x3B6 + LOG_1X_BASE_C) 1112 1113 /* FLUTE FDT Information */ 1114 #define LOG_FLUTE_FDT_INFO_C (0x3B7 + LOG_1X_BASE_C) 1115 1116 /* FLUTE File Log Packet Information */ 1117 #define LOG_FLUTE_FILE_INFO_C (0x3B8 + LOG_1X_BASE_C) 1118 1119 /* 3G 1X Parameter Overhead Information */ 1120 #define LOG_VOIP_TO_CDMA_3G1X_PARAMETERS_C (0x3B9 + LOG_1X_BASE_C) 1121 1122 /* CGPS ME Job Info */ 1123 #define LOG_CGPS_ME_JOB_INFO_C (0x3BA + LOG_1X_BASE_C) 1124 1125 /* CGPS ME SV Lists */ 1126 #define LOG_CPGS_ME_SV_LISTS_C (0x3BB + LOG_1X_BASE_C) 1127 1128 /* Flexible Profiling Status */ 1129 #define LOG_PROFDIAG_GEN_STATUS_C (0x3BC + LOG_1X_BASE_C) 1130 1131 /* Flexible Profiling Results */ 1132 #define LOG_PROFDIAG_GEN_PROF_C (0x3BD + LOG_1X_BASE_C) 1133 1134 /* FLUTE ADP File Content Log Packet Information */ 1135 #define LOG_FLUTE_ADP_FILE_C (0x3BE + LOG_1X_BASE_C) 1136 1137 /* FLUTE FDT Instance File Content Log Packet Information */ 1138 #define LOG_FLUTE_FDT_INST_FILE_C (0x3BF + LOG_1X_BASE_C) 1139 1140 /* FLUTE FDT Entries Information */ 1141 #define LOG_FLUTE_FDT_ENTRIES_INFO_C (0x3C0 + LOG_1X_BASE_C) 1142 1143 /* FLUTE File Contents Log Packet Information */ 1144 #define LOG_FLUTE_FILE_C (0x3C1 + LOG_1X_BASE_C) 1145 1146 /* CGPS ME Time-Transfer Info */ 1147 #define LOG_CGPS_ME_TIME_TRANSFER_INFO_C (0x3C2 + LOG_1X_BASE_C) 1148 1149 /* CGPS ME UMTS Time-Tagging Info */ 1150 #define LOG_CGPS_ME_UMTS_TIME_TAGGING_INFO_C (0x3C3 + LOG_1X_BASE_C) 1151 1152 /* CGPS ME Generic Time Estimate Put lnfo */ 1153 #define LOG_CGPS_ME_TIME_EST_PUT_INFO_C (0x3C4 + LOG_1X_BASE_C) 1154 1155 /* CGPS ME Generic Freq Estimate Put lnfo */ 1156 #define LOG_CGPS_ME_FREQ_EST_PUT_INFO_C (0x3C5 + LOG_1X_BASE_C) 1157 1158 /* CGPS Slow Clock Report */ 1159 #define LOG_CGPS_SLOW_CLOCK_REPORT_C (0x3C6 + LOG_1X_BASE_C) 1160 1161 /* Converged GPS Medium Grid */ 1162 #define LOG_CONVERGED_GPS_MEDIUM_GRID_C (0x3C7 + LOG_1X_BASE_C) 1163 1164 /* Static information about the driver or device */ 1165 #define LOG_SNSD_INFO_C (0x3C8 + LOG_1X_BASE_C) 1166 1167 /* Dynamic state information about the device or driver */ 1168 #define LOG_SNSD_STATE_C (0x3C9 + LOG_1X_BASE_C) 1169 1170 /* Data from a driver */ 1171 #define LOG_SNSD_DATA (0x3CA + LOG_1X_BASE_C) 1172 #define LOG_SNSD_DATA_C (0x3CA + LOG_1X_BASE_C) 1173 1174 /* CGPS Cell DB Cell Change Info */ 1175 #define LOG_CGPS_CELLDB_CELL_CHANGE_INFO_C (0x3CB + LOG_1X_BASE_C) 1176 1177 /* xScalar YUV frame log */ 1178 #define LOG_DEC_XSCALE_YUV_FRAME_C (0x3CC + LOG_1X_BASE_C) 1179 1180 /* CRC of xScaled YUV frame log */ 1181 #define LOG_DEC_XSCALE_CRC_FRAME_C (0x3CD + LOG_1X_BASE_C) 1182 1183 /* CGPS Frequency Estimate Report */ 1184 #define LOG_CGPS_FREQ_EST_REPORT_C (0x3CE + LOG_1X_BASE_C) 1185 1186 /* GPS DCME Srch Job Completed */ 1187 #define LOG_GPS_DCME_SRCH_JOB_COMPLETED_C (0x3CF + LOG_1X_BASE_C) 1188 1189 /* CGPS ME Fastscan results */ 1190 #define LOG_CGPS_ME_FASTSCAN_RESULTS_C (0x3D0 + LOG_1X_BASE_C) 1191 1192 /* XO frequency Estimation log */ 1193 #define LOG_XO_FREQ_EST_C (0x3D1 + LOG_1X_BASE_C) 1194 1195 /* Tcxomgr field calibration data */ 1196 #define LOG_TCXOMGR_FIELD_CAL_C (0x3D2 + LOG_1X_BASE_C) 1197 1198 /* UMB Call Processing Connection Attempt */ 1199 #define LOG_UMBCP_CONNECTION_ATTEMPT_C (0x3D3 + LOG_1X_BASE_C) 1200 1201 /* UMB Call Processing Connection Release */ 1202 #define LOG_UMBCP_CONNECTION_RELEASE_C (0x3D4 + LOG_1X_BASE_C) 1203 1204 /* UMB Call Processing Page Message */ 1205 #define LOG_UMBCP_PAGE_MESSAGE_C (0x3D5 + LOG_1X_BASE_C) 1206 1207 /* UMB Call Processing OVHD Information */ 1208 #define LOG_UMBCP_OVHD_INFO_C (0x3D6 + LOG_1X_BASE_C) 1209 1210 /* UMB Call Processing Session Attempt */ 1211 #define LOG_UMBCP_SESSION_ATTEMPT_C (0x3D7 + LOG_1X_BASE_C) 1212 1213 /* UMB Call Processing Route Information */ 1214 #define LOG_UMBCP_ROUTE_INFO_C (0x3D8 + LOG_1X_BASE_C) 1215 1216 /* UMB Call Processing State Information */ 1217 #define LOG_UMBCP_STATE_INFO_C (0x3D9 + LOG_1X_BASE_C) 1218 1219 /* UMB Call Processing SNP */ 1220 #define LOG_UMBCP_SNP_C (0x3DA + LOG_1X_BASE_C) 1221 1222 /* CGPS Session Early Exit Decision */ 1223 #define LOG_CGPS_SESSION_EARLY_EXIT_DECISION_C (0x3DB + LOG_1X_BASE_C) 1224 1225 /* GPS RF Linearity Status */ 1226 #define LOG_CGPS_ME_RF_LINEARITY_INFO_C (0x3DC + LOG_1X_BASE_C) 1227 1228 /* CGPS ME 5ms IQ Sums */ 1229 #define LOG_CGPS_ME_5MS_IQ_SUMS_C (0x3DD + LOG_1X_BASE_C) 1230 1231 /* CGPS ME 20ms IQ Sums */ 1232 #define LOG_CPGS_ME_20MS_IQ_SUMS_C (0x3DE + LOG_1X_BASE_C) 1233 1234 /* ROHC Compressor Statistics */ 1235 #define LOG_ROHC_COMPRESSOR_STATS_C (0x3DF + LOG_1X_BASE_C) 1236 1237 /* ROHC Decompressor Statistics */ 1238 #define LOG_ROHC_DECOMPRESSOR_STATS_C (0x3E0 + LOG_1X_BASE_C) 1239 1240 /* Sensors - Kalman filter information */ 1241 #define LOG_SENSOR_KF_INFO_C (0x3E1 + LOG_1X_BASE_C) 1242 1243 /* Sensors - Integrated measurements */ 1244 #define LOG_SENSOR_INT_MEAS_C (0x3E2 + LOG_1X_BASE_C) 1245 1246 /* Sensors - Bias calibration values */ 1247 #define LOG_SENSOR_BIAS_CALIBRATION_C (0x3E3 + LOG_1X_BASE_C) 1248 1249 /* Log codes 0x13E4-0x13E7 are not following standard log naming convention */ 1250 1251 /* DTV ISDB-T Transport Stream Packets */ 1252 #define LOG_DTV_ISDB_TS_PACKETS (0x3E4 + LOG_1X_BASE_C) 1253 1254 /* DTV ISDB-T PES Packets */ 1255 #define LOG_DTV_ISDB_PES_PACKETS (0x3E5 + LOG_1X_BASE_C) 1256 1257 /* DTV ISDB-T Sections */ 1258 #define LOG_DTV_ISDB_SECTIONS (0x3E6 + LOG_1X_BASE_C) 1259 1260 /* DTV ISDB-T Buffering */ 1261 #define LOG_DTV_ISDB_BUFFERING (0x3E7 + LOG_1X_BASE_C) 1262 1263 /* WLAN System Acquisition and Handoff */ 1264 #define LOG_WLAN_SYS_ACQ_HO_C (0x3E8 + LOG_1X_BASE_C) 1265 1266 /* WLAN General Configurable Parameters */ 1267 #define LOG_WLAN_GEN_CONFIG_PARAMS_C (0x3E9 + LOG_1X_BASE_C) 1268 1269 /* UMB Physical Layer Channel and Interference Estimation */ 1270 #define LOG_UMB_PHY_RX_DPICH_CIE_C (0x3EA + LOG_1X_BASE_C) 1271 1272 /* UMB Physical Layer MMSE/MRC Demodulated Data Symbols (Low) */ 1273 #define LOG_UMB_PHY_RX_DATA_DEMOD_LOW_C (0x3EB + LOG_1X_BASE_C) 1274 1275 /* UMB Physical Layer MMSE/MRC Demodulated Data Symbols (High) */ 1276 #define LOG_UMB_PHY_RX_DATA_DEMOD_HIGH_C (0x3EC + LOG_1X_BASE_C) 1277 1278 /* UMB Physical Layer DCH Decoder */ 1279 #define LOG_UMB_PHY_RX_DCH_DECODER_C (0x3ED + LOG_1X_BASE_C) 1280 1281 /* UMB Physical Layer DCH Statistics */ 1282 #define LOG_UMB_PHY_DCH_STATISTICS_C (0x3EE + LOG_1X_BASE_C) 1283 1284 /* UMB Physical Layer CqiPich Processing */ 1285 #define LOG_UMB_PHY_RX_CQIPICH_C (0x3EF + LOG_1X_BASE_C) 1286 1287 /* UMB Physical Layer MIMO/SIMO in CqiPich (High) */ 1288 #define LOG_UMB_PHY_RX_CQIPICH_CHANTAPS_HIGH_C (0x3F0 + LOG_1X_BASE_C) 1289 1290 /* UMB Physical Layer MIMO/SIMO in CquiPich (Low) */ 1291 #define LOG_UMB_PHY_RX_CQIPICH_CHANTAPS_LOW_C (0x3F1 + LOG_1X_BASE_C) 1292 1293 /* UMB Physical Layer Time-Domain Channel Taps (High) */ 1294 #define LOG_UMB_PHY_RX_PPICH_CHAN_EST_HIGH_C (0x3F2 + LOG_1X_BASE_C) 1295 1296 /* UMB Physical Layer Time-Domain Channel Taps (Low) */ 1297 #define LOG_UMB_PHY_RX_PPICH_CHAN_EST_LOW_C (0x3F3 + LOG_1X_BASE_C) 1298 1299 /* UMB Physical Layer AT Modulator */ 1300 #define LOG_UMB_PHY_TX_PICH_CONFIG_C (0x3F4 + LOG_1X_BASE_C) 1301 1302 /* UMB Physical Layer AT Modulator for R-ACK (High) */ 1303 #define LOG_UMB_PHY_TX_ACK_HIGH_C (0x3F5 + LOG_1X_BASE_C) 1304 1305 /* UMB Physical Layer AT Modulator for R-ACK (Low) */ 1306 #define LOG_UMB_PHY_TX_ACK_LOW_C (0x3F6 + LOG_1X_BASE_C) 1307 1308 /* UMB Physical Layer AT Modulator for R-PICH */ 1309 #define LOG_UMB_PHY_TX_PICH_C (0x3F7 + LOG_1X_BASE_C) 1310 1311 /* UMB Physical Layer AT Modulator for R-ACH (Access) */ 1312 #define LOG_UMB_PHY_TX_ACH_C (0x3F8 + LOG_1X_BASE_C) 1313 1314 /* UMB Physical Layer AT Modulator for R-ODDCCH (High) */ 1315 #define LOG_UMB_PHY_TX_ODCCH_HIGH_C (0x3F9 + LOG_1X_BASE_C) 1316 1317 /* UMB Physical Layer AT Modulator for R-ODDCCH (Low) */ 1318 #define LOG_UMB_PHY_TX_ODCCH_LOW_C (0x3FA + LOG_1X_BASE_C) 1319 1320 /* UMB Physical Layer AT Modulator for R-CDCCH */ 1321 #define LOG_UMB_PHY_TX_RCDCCH_CONFIG_C (0x3FB + LOG_1X_BASE_C) 1322 1323 /* UMB Physical Layer AT Modulator for CQI sent on RCDCCH */ 1324 #define LOG_UMB_PHY_TX_NONFLSS_CQICH_C (0x3FC + LOG_1X_BASE_C) 1325 1326 /* UMB Physical Layer AT Modulator for CQI sent on RCDCCH */ 1327 #define LOG_UMB_PHY_TX_FLSS_CQICH_C (0x3FD + LOG_1X_BASE_C) 1328 1329 /* UMB Physical Layer AT Modulator for PACH sent on RCDCCH */ 1330 #define LOG_UMB_PHY_TX_PAHCH_C (0x3FE + LOG_1X_BASE_C) 1331 1332 /* UMB Physical Layer AT Modulator for REQ sent on RCDCCH */ 1333 #define LOG_UMB_PHY_TX_REQCH_C (0x3FF + LOG_1X_BASE_C) 1334 1335 /* UMB Physical Layer AT Modulator for PSD sent on RCDCCH */ 1336 #define LOG_UMB_PHY_TX_PSDCH_C (0x400 + LOG_1X_BASE_C) 1337 1338 /* UMB Physical Layer AT Modulator for R-DCH */ 1339 #define LOG_UMB_PHY_TX_DCH_C (0x401 + LOG_1X_BASE_C) 1340 1341 /* UMB Physical Layer Time/Frequency/RxPower Estimate */ 1342 #define LOG_UMB_PHY_RX_TIME_FREQ_POWER_ESTIMATE_C (0x402 + LOG_1X_BASE_C) 1343 1344 /* UMB Physical Layer FLCS Processing */ 1345 #define LOG_UMB_PHY_RX_FLCS_PROCESSING_C (0x403 + LOG_1X_BASE_C) 1346 1347 /* UMB Physical Layer PBCCH Processing */ 1348 #define LOG_UMB_PHY_RX_PBCCH_PROCESSING_C (0x404 + LOG_1X_BASE_C) 1349 1350 /* UMB Physical Layer SBCCH Processing */ 1351 #define LOG_UMB_PHY_RX_SBCCH_PROCESSING_C (0x405 + LOG_1X_BASE_C) 1352 1353 /* UMB Physical Layer QPCH Processing */ 1354 #define LOG_UMB_PHY_RX_QPCH_PROCESSING_C (0x406 + LOG_1X_BASE_C) 1355 1356 /* UMB Physical Layer MRC Demodulated Data Symbols (Preamble SBCCH/QPCH) */ 1357 #define LOG_UMB_PHY_RX_SBCCH_DEMOD_C (0x407 + LOG_1X_BASE_C) 1358 1359 /* UMB Physical Layer MRC Demodulated Data Symbols (Preamble PBCCH) */ 1360 #define LOG_UMB_PHY_RX_PBCCH_DEMOD_C (0x408 + LOG_1X_BASE_C) 1361 1362 /* UMB Physical Layer VCQI */ 1363 #define LOG_UMB_PHY_RX_VCQI_C (0x409 + LOG_1X_BASE_C) 1364 1365 /* UMB Physical Layer Acquisition Algorithm */ 1366 #define LOG_UMB_PHY_RX_INITIAL_ACQUISITION_C (0x40A + LOG_1X_BASE_C) 1367 1368 /* UMB Physical Layer Handoff Search Algorithm */ 1369 #define LOG_UMB_PHY_RX_HANDOFF_SEARCH_C (0x40B + LOG_1X_BASE_C) 1370 1371 /* UMB RF RFFE Configuration Info */ 1372 #define LOG_UMB_AT_RFFE_CONFG_C (0x40C + LOG_1X_BASE_C) 1373 1374 /* UMB RF Calibrated Values After Powerup */ 1375 #define LOG_UMB_AT_RFFE_RX_CALIB_C (0x40D + LOG_1X_BASE_C) 1376 1377 /* UMB RF AGC Block in Acquisition Mode */ 1378 #define LOG_UMB_AT_RFFE_RX_ACQ_C (0x40E + LOG_1X_BASE_C) 1379 1380 /* UMB RF AGC Block in Idle Mode */ 1381 #define LOG_UMB_AT_RFFE_RX_IDLE_C (0x40F + LOG_1X_BASE_C) 1382 1383 /* UMB RF AGC Block in Connected Mode */ 1384 #define LOG_UMB_AT_RFFE_RX_CONNECTED_C (0x410 + LOG_1X_BASE_C) 1385 1386 /* UMB RF AGC Block in Connected Mode (FTM) */ 1387 #define LOG_UMB_AT_RFFE_RX_CONNECTED_FTM_C (0x411 + LOG_1X_BASE_C) 1388 1389 /* UMB RF Jammer Detector Functionality */ 1390 #define LOG_UMB_AT_RFFE_RX_JAMMER_DETECTOR_FUNCTIONALITY_C (0x412 + LOG_1X_BASE_C) 1391 1392 /* UMB RF Jammer Detector Response */ 1393 #define LOG_UMB_AT_RFFE_RX_JAMMER_DETECTOR_RESPONSE_C (0x413 + LOG_1X_BASE_C) 1394 1395 /* UMB RF RFFE TX Power Control */ 1396 #define LOG_UMB_AT_RFFE_TX_BETA_SCALING_C (0x414 + LOG_1X_BASE_C) 1397 1398 /* UMB Searcher Dump */ 1399 #define LOG_UMB_SEARCHER_DUMP_C (0x415 + LOG_1X_BASE_C) 1400 1401 /* UMB System Acquire */ 1402 #define LOG_UMB_SYSTEM_ACQUIRE_C (0x416 + LOG_1X_BASE_C) 1403 1404 /* UMB Set Maintenance */ 1405 #define LOG_UMB_SET_MAINTENANCE_C (0x417 + LOG_1X_BASE_C) 1406 1407 /* UMB QPCH */ 1408 #define LOG_UMB_QPCH_C (0x418 + LOG_1X_BASE_C) 1409 1410 /* UMB RLL Forward Partial RP Packet */ 1411 #define LOG_UMB_RLL_FORWARD_PARTIAL_RP_C (0x419 + LOG_1X_BASE_C) 1412 1413 /* UMB RLL Reverse Partial RP Packet */ 1414 #define LOG_UMB_RLL_REVERSE_PARTIAL_RP_C (0x41A + LOG_1X_BASE_C) 1415 1416 /* UMB RLL Forward Signal Packet */ 1417 #define LOG_UMB_RLL_FORWARD_SIGNAL_C (0x41B + LOG_1X_BASE_C) 1418 1419 /* UMB RLL Reverse Signal Packet */ 1420 #define LOG_UMB_RLL_REVERSE_SIGNAL_C (0x41C + LOG_1X_BASE_C) 1421 1422 /* UMB RLL Forward Statistics */ 1423 #define LOG_UMB_RLL_FORWARD_STATS_C (0x41D + LOG_1X_BASE_C) 1424 1425 /* UMB RLL Reverse Statistics */ 1426 #define LOG_UMB_RLL_REVERSE_STATS_C (0x41E + LOG_1X_BASE_C) 1427 1428 /* UMB RLL IRTP */ 1429 #define LOG_UMB_RLL_IRTP_C (0x41F + LOG_1X_BASE_C) 1430 1431 /* UMB AP Forward Link MAC Packets */ 1432 #define LOG_UMB_AP_FL_MAC_PACKET_C (0x420 + LOG_1X_BASE_C) 1433 1434 /* UMB AP Reverse Link MAC Packets */ 1435 #define LOG_UMB_AP_RL_MAC_PACKET_C (0x421 + LOG_1X_BASE_C) 1436 1437 /* GPS Performance Statistics log */ 1438 #define LOG_CGPS_PERFORMANCE_STATS_C (0x422 + LOG_1X_BASE_C) 1439 1440 /* UMB Searcher General Status */ 1441 #define LOG_UMB_SRCH_GENERAL_STATUS_C (0x423 + LOG_1X_BASE_C) 1442 1443 /* UMB Superframe Scheduler */ 1444 #define LOG_UMB_SUPERFRAME_SCHEDULER_C (0x424 + LOG_1X_BASE_C) 1445 1446 /* UMB Sector List */ 1447 #define LOG_UMB_SECTOR_LIST_C (0x425 + LOG_1X_BASE_C) 1448 1449 /* UMB MAC Access Attempt Command */ 1450 #define LOG_UMB_MAC_ACCESS_ATTEMPT_CMD_C (0x426 + LOG_1X_BASE_C) 1451 1452 /* UMB MAC Access Probe Information */ 1453 #define LOG_UMB_MAC_ACCESS_PROBE_INFO_C (0x427 + LOG_1X_BASE_C) 1454 1455 /* UMB MAC RTCMAC Package Information */ 1456 #define LOG_UMB_MAC_RTCMAC_PKG_INFO_C (0x428 + LOG_1X_BASE_C) 1457 1458 /* UMB MAC Super Frame Information */ 1459 #define LOG_UMB_MAC_SI_INFO_C (0x429 + LOG_1X_BASE_C) 1460 1461 /* UMB MAC Quick Channel Information */ 1462 #define LOG_UMB_MAC_QCI_INFO_C (0x42A + LOG_1X_BASE_C) 1463 1464 /* UMB MAC Paging Id List */ 1465 #define LOG_UMB_MAC_PAGING_ID_LIST_C (0x42B + LOG_1X_BASE_C) 1466 1467 /* UMB MAC Quick Paging Channel Information */ 1468 #define LOG_UMB_MAC_QPCH_INFO_C (0x42C + LOG_1X_BASE_C) 1469 1470 /* UMB MAC FTCMAC Information */ 1471 #define LOG_UMB_MAC_FTCMAC_PKG_INFO_C (0x42D + LOG_1X_BASE_C) 1472 1473 /* UMB MAC Access Grant Receiving */ 1474 #define LOG_UMB_MAC_ACCESS_GRANT_C (0x42E + LOG_1X_BASE_C) 1475 1476 /* UMB MAC Generic Debug Log */ 1477 #define LOG_UMB_MAC_GEN_DEBUG_LOG_PKG_C (0x42F + LOG_1X_BASE_C) 1478 1479 /* CGPS Frequency Bias Estimate */ 1480 #define LOG_CGPS_MC_FREQ_BIAS_EST_C (0x430 + LOG_1X_BASE_C) 1481 1482 /* UMB MAC Request Report Information Log */ 1483 #define LOG_UMB_MAC_REQCH_REPORT_INFO_C (0x431 + LOG_1X_BASE_C) 1484 1485 /* UMB MAC Reverse Link QoS Token Bucket Information Log */ 1486 #define LOG_UMB_MAC_RLQOS_TOKEN_BUCKET_INFO_C (0x432 + LOG_1X_BASE_C) 1487 1488 /* UMB MAC Reverse Link QoS Stream Information Log */ 1489 #define LOG_UMB_MAC_RLQOS_STREAM_INFO_C (0x433 + LOG_1X_BASE_C) 1490 1491 /* UMB MAC Reverse Link QoS Allotment Information Log */ 1492 #define LOG_UMB_MAC_RLQOS_ALLOTMENT_INFO_C (0x434 + LOG_1X_BASE_C) 1493 1494 /* UMB Searcher Recent State Machine Transactions */ 1495 #define LOG_UMB_SRCH_STM_ACTIVITY_C (0x435 + LOG_1X_BASE_C) 1496 1497 /* Performance Counters on ARM11 Profiling Information */ 1498 #define LOG_ARM11_PERF_CNT_INFO_C (0x436 + LOG_1X_BASE_C) 1499 1500 /* Protocol Services describe all flow instances */ 1501 #define LOG_PS_STAT_DESC_ALL_FLOW_INST_C (0x437 + LOG_1X_BASE_C) 1502 1503 /* Protocol Services describe all physical link instances */ 1504 #define LOG_PS_STAT_DESC_ALL_PHYS_LINK_INST_C (0x438 + LOG_1X_BASE_C) 1505 1506 /* Protocol Services describe all UDP instances */ 1507 #define LOG_PS_STAT_DESC_ALL_UDP_INST_C (0x439 + LOG_1X_BASE_C) 1508 1509 /* Searcher 4 Multi-Carrier HDR */ 1510 #define LOG_SRCH4_MC_HDR_C (0x43A + LOG_1X_BASE_C) 1511 1512 /* Protocol Services describe all IPHC instances */ 1513 #define LOG_PS_STAT_DESC_ALL_IPHC_INST_C (0x43B + LOG_1X_BASE_C) 1514 1515 /* Protocol Services describe all ROHC instances */ 1516 #define LOG_PS_STAT_DESC_ALL_ROHC_INST_C (0x43C + LOG_1X_BASE_C) 1517 1518 /* BCast security add program information */ 1519 #define LOG_BCAST_SEC_ADD_PROGRAM_INFO_C (0x43D + LOG_1X_BASE_C) 1520 1521 /* BCast security add program complete */ 1522 #define LOG_BCAST_SEC_ADD_PROGRAM_COMPLETE_C (0x43E + LOG_1X_BASE_C) 1523 1524 /* BCast security SDP parse */ 1525 #define LOG_BCAST_SEC_SDP_PARSE_C (0x43F + LOG_1X_BASE_C) 1526 1527 /* CGPS ME dynamic power optimization status */ 1528 #define LOG_CGPS_ME_DPO_STATUS_C (0x440 + LOG_1X_BASE_C) 1529 1530 /* CGPS PDSM on demand session start */ 1531 #define LOG_CGPS_PDSM_ON_DEMAND_SESSION_START_C (0x441 + LOG_1X_BASE_C) 1532 1533 /* CGPS PDSM on demand session stop */ 1534 #define LOG_CGPS_PDSM_ON_DEMAND_SESSION_STOP_C (0x442 + LOG_1X_BASE_C) 1535 1536 /* CGPS PDSM on demand session not started */ 1537 #define LOG_CGPS_PDSM_ON_DEMAND_SESSION_NOT_STARTED_C (0x443 + LOG_1X_BASE_C) 1538 1539 /* CGPS PDSM extern coarse position inject start */ 1540 #define LOG_CGPS_PDSM_EXTERN_COARSE_POS_INJ_START_C (0x444 + LOG_1X_BASE_C) 1541 1542 /* DTV ISDB-T TMCC information */ 1543 #define LOG_DTV_ISDB_TMCC_C (0x445 + LOG_1X_BASE_C) 1544 1545 /* RF development */ 1546 #define LOG_RF_DEV_C (0x446 + LOG_1X_BASE_C) 1547 1548 /* RF RFM API */ 1549 #define LOG_RF_RFM_API_C (0x447 + LOG_1X_BASE_C) 1550 1551 /* RF RFM state */ 1552 #define LOG_RF_RFM_STATE_C (0x448 + LOG_1X_BASE_C) 1553 1554 /* 1X RF Warmup */ 1555 #define LOG_1X_RF_WARMUP_C (0x449 + LOG_1X_BASE_C) 1556 1557 /* 1X RF power limiting */ 1558 #define LOG_1X_RF_PWR_LMT_C (0x44A + LOG_1X_BASE_C) 1559 1560 /* 1X RF state */ 1561 #define LOG_1X_RF_STATE_C (0x44B + LOG_1X_BASE_C) 1562 1563 /* 1X RF sleep */ 1564 #define LOG_1X_RF_SLEEP_C (0x44C + LOG_1X_BASE_C) 1565 1566 /* 1X RF TX state */ 1567 #define LOG_1X_RF_TX_STATE_C (0x44D + LOG_1X_BASE_C) 1568 1569 /* 1X RF IntelliCeiver state */ 1570 #define LOG_1X_RF_INT_STATE_C (0x44E + LOG_1X_BASE_C) 1571 1572 /* 1X RF RX ADC clock */ 1573 #define LOG_1X_RF_RX_ADC_CLK_C (0x44F + LOG_1X_BASE_C) 1574 1575 /* 1X RF LNA switch point */ 1576 #define LOG_1X_RF_LNA_SWITCHP_C (0x450 + LOG_1X_BASE_C) 1577 1578 /* 1X RF RX calibration */ 1579 #define LOG_1X_RF_RX_CAL_C (0x451 + LOG_1X_BASE_C) 1580 1581 /* 1X RF API */ 1582 #define LOG_1X_RF_API_C (0x452 + LOG_1X_BASE_C) 1583 1584 /* 1X RF RX PLL locking status */ 1585 #define LOG_1X_RF_RX_PLL_LOCK_C (0x453 + LOG_1X_BASE_C) 1586 1587 /* 1X RF voltage regulator */ 1588 #define LOG_1X_RF_VREG_C (0x454 + LOG_1X_BASE_C) 1589 1590 /* CGPS DIAG successful fix count */ 1591 #define LOG_CGPS_DIAG_SUCCESSFUL_FIX_COUNT_C (0x455 + LOG_1X_BASE_C) 1592 1593 /* CGPS MC track dynamic power optimization status */ 1594 #define LOG_CGPS_MC_TRACK_DPO_STATUS_C (0x456 + LOG_1X_BASE_C) 1595 1596 /* CGPS MC SBAS demodulated bits */ 1597 #define LOG_CGPS_MC_SBAS_DEMOD_BITS_C (0x457 + LOG_1X_BASE_C) 1598 1599 /* CGPS MC SBAS demodulated soft symbols */ 1600 #define LOG_CGPS_MC_SBAS_DEMOD_SOFT_SYMBOLS_C (0x458 + LOG_1X_BASE_C) 1601 1602 /* Data Services PPP configuration */ 1603 #define LOG_DS_PPP_CONFIG_PARAMS_C (0x459 + LOG_1X_BASE_C) 1604 1605 /* Data Services physical link configuration */ 1606 #define LOG_DS_PHYS_LINK_CONFIG_PARAMS_C (0x45A + LOG_1X_BASE_C) 1607 1608 /* Data Services PPP device configuration */ 1609 #define LOG_PS_PPP_DEV_CONFIG_PARAMS_C (0x45B + LOG_1X_BASE_C) 1610 1611 /* CGPS PDSM GPS state information */ 1612 #define LOG_CGPS_PDSM_GPS_STATE_INFO_C (0x45C + LOG_1X_BASE_C) 1613 1614 /* CGPS PDSM EXT status GPS state information */ 1615 #define LOG_CGPS_PDSM_EXT_STATUS_GPS_STATE_INFO_C (0x45D + LOG_1X_BASE_C) 1616 1617 /* CGPS ME Rapid Search Report */ 1618 #define LOG_CGPS_ME_RAPID_SEARCH_REPORT_C (0x45E + LOG_1X_BASE_C) 1619 1620 /* CGPS PDSM XTRA-T session */ 1621 #define LOG_CGPS_PDSM_XTRA_T_SESSION_C (0x45F + LOG_1X_BASE_C) 1622 1623 /* CGPS PDSM XTRA-T upload */ 1624 #define LOG_CGPS_PDSM_XTRA_T_UPLOAD_C (0x460 + LOG_1X_BASE_C) 1625 1626 /* CGPS Wiper Position Report */ 1627 #define LOG_CGPS_WIPER_POSITION_REPORT_C (0x461 + LOG_1X_BASE_C) 1628 1629 /* DTV DVBH Security SmartCard HTTP Digest Request Info */ 1630 #define LOG_DTV_DVBH_SEC_SC_HTTP_DIGEST_REQ_C (0x462 + LOG_1X_BASE_C) 1631 1632 /* DTV DVBH Security SmartCard HTTP Digest Response Info */ 1633 #define LOG_DTV_DVBH_SEC_SC_HTTP_DIGEST_RSP_C (0x463 + LOG_1X_BASE_C) 1634 1635 /* DTV DVBH Security SmartCard Services Registration Request Info */ 1636 #define LOG_DTV_DVBH_SEC_SC_SVC_REG_REQ_C (0x464 + LOG_1X_BASE_C) 1637 1638 /* DTV DVBH Security SmartCard Services Registration Complete Info */ 1639 #define LOG_DTV_DVBH_SEC_SC_SVC_REG_COMPLETE_C (0x465 + LOG_1X_BASE_C) 1640 1641 /* DTV DVBH Security SmartCard Services Deregistration Request Info */ 1642 #define LOG_DTV_DVBH_SEC_SC_SVC_DEREG_REQ_C (0x466 + LOG_1X_BASE_C) 1643 1644 /* DTV DVBH Security SmartCard Services Deregistration Complete Info */ 1645 #define LOG_DTV_DVBH_SEC_SC_SVC_DEREG_COMPLETE_C (0x467 + LOG_1X_BASE_C) 1646 1647 /* DTV DVBH Security SmartCard LTKM Request Info */ 1648 #define LOG_DTV_DVBH_SEC_SC_LTKM_REQ_C (0x468 + LOG_1X_BASE_C) 1649 1650 /* DTV DVBH Security SmartCard LTKM Request Complete Info */ 1651 #define LOG_DTV_DVBH_SEC_SC_LTKM_REQ_COMPLETE_C (0x469 + LOG_1X_BASE_C) 1652 1653 /* DTV DVBH Security SmartCard Program Selection Info */ 1654 #define LOG_DTV_DVBH_SEC_SC_PROG_SEL_C (0x46A + LOG_1X_BASE_C) 1655 1656 /* DTV DVBH Security SmartCard Program Selection Complete Info */ 1657 #define LOG_DTV_DVBH_SEC_SC_PROG_SEL_COMPLETE_C (0x46B + LOG_1X_BASE_C) 1658 1659 /* DTV DVBH Security SmartCard LTKM */ 1660 #define LOG_DTV_DVBH_SEC_SC_LTKM_C (0x46C + LOG_1X_BASE_C) 1661 1662 /* DTV DVBH Security SmartCard LTKM Verification Message */ 1663 #define LOG_DTV_DVBH_SEC_SC_LTKM_VERIFICATION_C (0x46D + LOG_1X_BASE_C) 1664 1665 /* DTV DVBH Security SmartCard Parental Control Message */ 1666 #define LOG_DTV_DVBH_SEC_SC_PARENTAL_CTRL_C (0x46E + LOG_1X_BASE_C) 1667 1668 /* DTV DVBH Security SmartCard STKM */ 1669 #define LOG_DTV_DVBH_SEC_SC_STKM_C (0x46F + LOG_1X_BASE_C) 1670 1671 /* Protocol Services Statistics Global Socket */ 1672 #define LOG_PS_STAT_GLOBAL_SOCK_C (0x470 + LOG_1X_BASE_C) 1673 1674 /* MCS Application Manager */ 1675 #define LOG_MCS_APPMGR_C (0x471 + LOG_1X_BASE_C) 1676 1677 /* MCS MSGR */ 1678 #define LOG_MCS_MSGR_C (0x472 + LOG_1X_BASE_C) 1679 1680 /* MCS QTF */ 1681 #define LOG_MCS_QTF_C (0x473 + LOG_1X_BASE_C) 1682 1683 /* Sensors Stationary Detector Output */ 1684 #define LOG_STATIONARY_DETECTOR_OUTPUT_C (0x474 + LOG_1X_BASE_C) 1685 1686 /* Print out the ppm data portion */ 1687 #define LOG_CGPS_PDSM_EXT_STATUS_MEAS_REPORT_PPM_C (0x475 + LOG_1X_BASE_C) 1688 1689 /* GNSS Position Report */ 1690 #define LOG_GNSS_POSITION_REPORT_C (0x476 + LOG_1X_BASE_C) 1691 1692 /* GNSS GPS Measurement Report */ 1693 #define LOG_GNSS_GPS_MEASUREMENT_REPORT_C (0x477 + LOG_1X_BASE_C) 1694 1695 /* GNSS Clock Report */ 1696 #define LOG_GNSS_CLOCK_REPORT_C (0x478 + LOG_1X_BASE_C) 1697 1698 /* GNSS Demod Soft Decision */ 1699 #define LOG_GNSS_DEMOD_SOFT_DECISIONS_C (0x479 + LOG_1X_BASE_C) 1700 1701 /* GNSS ME 5MS IQ sum */ 1702 #define LOG_GNSS_ME_5MS_IQ_SUMS_C (0x47A + LOG_1X_BASE_C) 1703 1704 /* GNSS CD DB report */ 1705 #define LOG_GNSS_CD_DB_REPORT_C (0x47B + LOG_1X_BASE_C) 1706 1707 /* GNSS PE WLS position report */ 1708 #define LOG_GNSS_PE_WLS_POSITION_REPORT_C (0x47C + LOG_1X_BASE_C) 1709 1710 /* GNSS PE KF position report */ 1711 #define LOG_GNSS_PE_KF_POSITION_REPORT_C (0x47D + LOG_1X_BASE_C) 1712 1713 /* GNSS PRX RF HW status report */ 1714 #define LOG_GNSS_PRX_RF_HW_STATUS_REPORT_C (0x47E + LOG_1X_BASE_C) 1715 1716 /* GNSS DRX RF HW status report */ 1717 #define LOG_GNSS_DRX_RF_HW_STATUS_REPORT_C (0x47F + LOG_1X_BASE_C) 1718 1719 /* GNSS Glonass Measurement report */ 1720 #define LOG_GNSS_GLONASS_MEASUREMENT_REPORT_C (0x480 + LOG_1X_BASE_C) 1721 1722 /* GNSS GPS HBW RXD measurement */ 1723 #define LOG_GNSS_GPS_HBW_RXD_MEASUREMENT_C (0x481 + LOG_1X_BASE_C) 1724 1725 /* GNSS PDSM position report callback */ 1726 #define LOG_GNSS_PDSM_POSITION_REPORT_CALLBACK_C (0x482 + LOG_1X_BASE_C) 1727 1728 /* ISense Request String */ 1729 #define LOG_ISENSE_REQUEST_STR_C (0x483 + LOG_1X_BASE_C) 1730 1731 /* ISense Response String */ 1732 #define LOG_ISENSE_RESPONSE_STR_C (0x484 + LOG_1X_BASE_C) 1733 1734 /* Bluetooth SOC General Log Packet*/ 1735 #define LOG_BT_SOC_GENERAL_C (0x485 + LOG_1X_BASE_C) 1736 1737 /* QCRil Call Flow */ 1738 #define LOG_QCRIL_CALL_FLOW_C (0x486 + LOG_1X_BASE_C) 1739 1740 /* CGPS Wideband FFT stats */ 1741 #define LOG_CGPS_WB_FFT_STATS_C (0x487 + LOG_1X_BASE_C) 1742 1743 /* CGPS Slow Clock Calibration Report*/ 1744 #define LOG_CGPS_SLOW_CLOCK_CALIB_REPORT_C (0x488 + LOG_1X_BASE_C) 1745 1746 /* SNS GPS TIMESTAMP */ 1747 #define LOG_SNS_GPS_TIMESTAMP_C (0x489 + LOG_1X_BASE_C) 1748 1749 /* GNSS Search Strategy Task Allocation */ 1750 #define LOG_GNSS_SEARCH_STRATEGY_TASK_ALLOCATION_C (0x48A + LOG_1X_BASE_C) 1751 1752 /* RF MC STM state */ 1753 #define LOG_1XHDR_MC_STATE_C (0x48B + LOG_1X_BASE_C) 1754 1755 /* Record in the Sparse Network DB */ 1756 #define LOG_CGPS_SNDB_RECORD_C (0x48C + LOG_1X_BASE_C) 1757 1758 /* Record removed from the DB */ 1759 #define LOG_CGPS_SNDB_REMOVE_C (0x48D + LOG_1X_BASE_C) 1760 1761 /* CGPS Reserved */ 1762 #define LOG_GNSS_CC_PERFORMANCE_STATS_C (0x48E + LOG_1X_BASE_C) 1763 1764 /* GNSS PDSM Set Paramerters */ 1765 #define LOG_GNSS_PDSM_SET_PARAMETERS_C (0x48F + LOG_1X_BASE_C) 1766 1767 /* GNSS PDSM PD Event Callback */ 1768 #define LOG_GNSS_PDSM_PD_EVENT_CALLBACK_C (0x490 + LOG_1X_BASE_C) 1769 1770 /* GNSS PDSM PA Event Callback */ 1771 #define LOG_GNSS_PDSM_PA_EVENT_CALLBACK_C (0x491 + LOG_1X_BASE_C) 1772 1773 /* CGPS Reserved */ 1774 #define LOG_CGPS_RESERVED2_C (0x492 + LOG_1X_BASE_C) 1775 1776 /* CGPS Reserved */ 1777 #define LOG_CGPS_RESERVED3_C (0x493 + LOG_1X_BASE_C) 1778 1779 /* GNSS PDSM EXT Status MEAS Report */ 1780 #define LOG_GNSS_PDSM_EXT_STATUS_MEAS_REPORT_C (0x494 + LOG_1X_BASE_C) 1781 1782 /* GNSS SM Error */ 1783 #define LOG_GNSS_SM_ERROR_C (0x495 + LOG_1X_BASE_C) 1784 1785 /* WLAN Scan */ 1786 #define LOG_WLAN_SCAN_C (0x496 + LOG_1X_BASE_C) 1787 1788 /* WLAN IBSS */ 1789 #define LOG_WLAN_IBSS_C (0x497 + LOG_1X_BASE_C) 1790 1791 /* WLAN 802.11d*/ 1792 #define LOG_WLAN_80211D_C (0x498 + LOG_1X_BASE_C) 1793 1794 /* WLAN Handoff */ 1795 #define LOG_WLAN_HANDOFF_C (0x499 + LOG_1X_BASE_C) 1796 1797 /* WLAN QoS EDCA */ 1798 #define LOG_WLAN_QOS_EDCA_C (0x49A + LOG_1X_BASE_C) 1799 1800 /* WLAN Beacon Update */ 1801 #define LOG_WLAN_BEACON_UPDATE_C (0x49B + LOG_1X_BASE_C) 1802 1803 /* WLAN Power save wow add pattern */ 1804 #define LOG_WLAN_POWERSAVE_WOW_ADD_PTRN_C (0x49C + LOG_1X_BASE_C) 1805 1806 /* WLAN WCM link metrics */ 1807 #define LOG_WLAN_WCM_LINKMETRICS_C (0x49D + LOG_1X_BASE_C) 1808 1809 /* WLAN wps scan complete*/ 1810 #define LOG_WLAN_WPS_SCAN_COMPLETE_C (0x49E + LOG_1X_BASE_C) 1811 1812 /* WLAN WPS WSC Message */ 1813 #define LOG_WLAN_WPS_WSC_MESSAGE_C (0x49F + LOG_1X_BASE_C) 1814 1815 /* WLAN WPS credentials */ 1816 #define LOG_WLAN_WPS_CREDENTIALS_C (0x4A0 + LOG_1X_BASE_C) 1817 1818 /* WLAN Qos TSpec*/ 1819 #define LOG_WLAN_QOS_TSPEC_C (0x4A2 + LOG_1X_BASE_C) 1820 1821 /* PMIC Vreg Control */ 1822 #define LOG_PM_VREG_CONTROL_C (0x4A3 + LOG_1X_BASE_C) 1823 1824 /* PMIC Vreg Level */ 1825 #define LOG_PM_VREG_LEVEL_C (0x4A4 + LOG_1X_BASE_C) 1826 1827 /* PMIC Vreg State */ 1828 #define LOG_PM_VREG_STATE_C (0x4A5 + LOG_1X_BASE_C) 1829 1830 /* CGPS SM EPH Randomization info */ 1831 #define LOG_CGPS_SM_EPH_RANDOMIZATION_INFO_C (0x4A6 + LOG_1X_BASE_C) 1832 1833 /* Audio calibration data */ 1834 #define LOG_QACT_DATA_C (0x4A7 + LOG_1X_BASE_C) 1835 1836 /* Compass 2D Tracked Calibration Set */ 1837 #define LOG_SNS_VCPS_2D_TRACKED_CAL_SET (0x4A8 + LOG_1X_BASE_C) 1838 1839 /* Compass 3D Tracked Calibration Set */ 1840 #define LOG_SNS_VCPS_3D_TRACKED_CAL_SET (0x4A9 + LOG_1X_BASE_C) 1841 1842 /* Calibration metric */ 1843 #define LOG_SNS_VCPS_CAL_METRIC (0x4AA + LOG_1X_BASE_C) 1844 1845 /* Accelerometer distance */ 1846 #define LOG_SNS_VCPS_ACCEL_DIST (0x4AB + LOG_1X_BASE_C) 1847 1848 /* Plane update */ 1849 #define LOG_SNS_VCPS_PLANE_UPDATE (0x4AC + LOG_1X_BASE_C) 1850 1851 /* Location report */ 1852 #define LOG_SNS_VCPS_LOC_REPORT (0x4AD + LOG_1X_BASE_C) 1853 1854 /* CM Active subscription */ 1855 #define LOG_CM_PH_EVENT_SUBSCRIPTION_PREF_INFO_C (0x4AE + LOG_1X_BASE_C) 1856 1857 /* DSDS version of CM call event */ 1858 #define LOG_CM_DS_CALL_EVENT_C (0x4AF + LOG_1X_BASE_C) 1859 1860 /* Sensors ?MobiSens Output */ 1861 #define LOG_MOBISENS_OUTPUT_C (0x4B0 + LOG_1X_BASE_C) 1862 1863 /* Accelerometer Data */ 1864 #define LOG_ACCEL_DATA_C (0x4B1 + LOG_1X_BASE_C) 1865 1866 /* Accelerometer Compensated Data */ 1867 #define LOG_ACCEL_COMP_DATA_C (0x4B2 + LOG_1X_BASE_C) 1868 1869 /* Motion State Data */ 1870 #define LOG_MOTION_STATE_DATA_C (0x4B3 + LOG_1X_BASE_C) 1871 1872 /* Stationary Position Indicator */ 1873 #define LOG_STAT_POS_IND_C (0x4B4 + LOG_1X_BASE_C) 1874 1875 /* Motion State Features */ 1876 #define LOG_MOTION_STATE_FEATURES_C (0x4B5 + LOG_1X_BASE_C) 1877 1878 /* Motion State Hard Decision */ 1879 #define LOG_MOTION_STATE_HARD_DECISION_C (0x4B6 + LOG_1X_BASE_C) 1880 1881 /* Motion State Soft Decision */ 1882 #define LOG_MOTION_STATE_SOFT_DECISION_C (0x4B7 + LOG_1X_BASE_C) 1883 1884 /* Sensors Software Version */ 1885 #define LOG_SENSORS_SOFTWARE_VERSION_C (0x4B8 + LOG_1X_BASE_C) 1886 1887 /* MobiSens Stationary Position Indicator Log Packet */ 1888 #define LOG_MOBISENS_SPI_C (0x4B9 + LOG_1X_BASE_C) 1889 1890 /* XO calibration raw IQ data */ 1891 #define LOG_XO_IQ_DATA_C (0x4BA + LOG_1X_BASE_C) 1892 1893 /*DTV CMMB Control Tabl Updated*/ 1894 #define LOG_DTV_CMMB_CONTROL_TABLE_UPDATE ((0x4BB) + LOG_1X_BASE_C) 1895 1896 /*DTV CMMB Media API Buffering Status*/ 1897 #define LOG_DTV_CMMB_MEDIA_BUFFERING_STATUS ((0x4BC) + LOG_1X_BASE_C) 1898 1899 /*DTV CMMB *Emergency Broadcast Data*/ 1900 #define LOG_DTV_CMMB_CONTROL_EMERGENCY_BCAST ((0x4BD) + LOG_1X_BASE_C) 1901 1902 /*DTV CMMB EMM/ECM Data*/ 1903 #define LOG_DTV_CMMB_CAS_EMM_ECM ((0x4BE) + LOG_1X_BASE_C) 1904 1905 /*DTV CMMB HW Status*/ 1906 #define LOG_DTV_CMMB_HW_PERFORMANCE ((0x4BF) + LOG_1X_BASE_C) 1907 1908 /*DTV CMMB ESSG Program Indication Information*/ 1909 #define LOG_DTV_CMMB_ESG_PROGRAM_INDICATION_INFORMATION ((0x4C0) + LOG_1X_BASE_C) 1910 1911 /* Sensors �C binary output of converted sensor data */ 1912 #define LOG_CONVERTED_SENSOR_DATA_C ((0x4C1) + LOG_1X_BASE_C) 1913 1914 /* CM Subscription event */ 1915 #define LOG_CM_SUBSCRIPTION_EVENT_C ((0x4C2) + LOG_1X_BASE_C) 1916 1917 /* Sensor Ambient Light Data */ 1918 #define LOG_SNS_ALS_DATA_C ((0x4C3) + LOG_1X_BASE_C) 1919 1920 /*Sensor Ambient Light Adaptive Data */ 1921 #define LOG_SNS_ALS_DATA_ADAPTIVE_C ((0x4C4) + LOG_1X_BASE_C) 1922 1923 /*Sensor Proximity Distance Data */ 1924 #define LOG_SNS_PRX_DIST_DATA_C ((0x4C5) + LOG_1X_BASE_C) 1925 1926 /*Sensor Proximity Data */ 1927 #define LOG_SNS_PRX_DATA_C ((0x4C6) + LOG_1X_BASE_C) 1928 1929 #define LOG_GNSS_SBAS_REPORT_C ((0x4C7) + LOG_1X_BASE_C) 1930 1931 #define LOG_CPU_MONITOR_MODEM_C ((0x4C8) + LOG_1X_BASE_C) 1932 1933 #define LOG_CPU_MONITOR_APPS_C ((0x4C9) + LOG_1X_BASE_C) 1934 1935 #define LOG_BLAST_TASKPROFILE_C ((0x4CA) + LOG_1X_BASE_C) 1936 1937 #define LOG_BLAST_SYSPROFILE_C ((0x4CB) + LOG_1X_BASE_C) 1938 1939 #define LOG_FM_RADIO_FTM_C ((0x4CC) + LOG_1X_BASE_C) 1940 1941 #define LOG_FM_RADIO_C ((0x4CD) + LOG_1X_BASE_C) 1942 1943 #define LOG_UIM_DS_DATA_C ((0x4CE) + LOG_1X_BASE_C) 1944 1945 #define LOG_QMI_CALL_FLOW_C ((0x4CF) + LOG_1X_BASE_C) 1946 1947 #define LOG_APR_MODEM_C ((0x4D0) + LOG_1X_BASE_C) 1948 1949 #define LOG_APR_APPS_C ((0x4D1) + LOG_1X_BASE_C) 1950 1951 #define LOG_APR_ADSP_C ((0x4D2) + LOG_1X_BASE_C) 1952 1953 #define LOG_DATA_MUX_RX_RAW_PACKET_C ((0x4D3) + LOG_1X_BASE_C) 1954 1955 #define LOG_DATA_MUX_TX_RAW_PACKET_C ((0x4D4) + LOG_1X_BASE_C) 1956 1957 #define LOG_DATA_MUX_RX_FRAME_PACKET_C ((0x4D5) + LOG_1X_BASE_C) 1958 1959 #define LOG_DATA_MUX_TX_FRAME_PACKET_C ((0x4D6) + LOG_1X_BASE_C) 1960 1961 #define LOG_CGPS_PDSM_EXT_STATUS_POS_INJ_REQ_INFO_C ((0x4D7) + LOG_1X_BASE_C) 1962 1963 #define LOG_TEMPERATURE_MONITOR_C ((0x4D8) + LOG_1X_BASE_C) 1964 1965 #define LOG_SNS_GESTURES_REST_DETECT_C ((0x4D9) + LOG_1X_BASE_C) 1966 1967 #define LOG_SNS_GESTURES_ORIENTATION_C ((0x4DA) + LOG_1X_BASE_C) 1968 1969 #define LOG_SNS_GESTURES_FACING_C ((0x4DB) + LOG_1X_BASE_C) 1970 1971 #define LOG_SNS_GESTURES_BASIC_C ((0x4DC) + LOG_1X_BASE_C) 1972 1973 #define LOG_SNS_GESTURES_HINBYE_C ((0x4DD) + LOG_1X_BASE_C) 1974 1975 #define LOG_GNSS_OEMDRE_MEASUREMENT_REPORT_C ((0x4DE) + LOG_1X_BASE_C) 1976 1977 #define LOG_GNSS_OEMDRE_POSITION_REPORT_C ((0x4E0) + LOG_1X_BASE_C) 1978 1979 #define LOG_GNSS_OEMDRE_SVPOLY_REPORT_C ((0x4E1) + LOG_1X_BASE_C) 1980 1981 #define LOG_GNSS_OEMDRSYNC_C ((0x4E2) + LOG_1X_BASE_C) 1982 1983 #define LOG_SNS_MGR_EVENT_NOTIFY_C ((0x4E3) + LOG_1X_BASE_C) 1984 1985 #define LOG_SNS_MGR_EVENT_REGISTER_C ((0x4E4) + LOG_1X_BASE_C) 1986 1987 #define LOG_GNSS_PDSM_PPM_SESSION_BEGIN_C ((0x4E5) + LOG_1X_BASE_C) 1988 1989 #define LOG_GNSS_PDSM_PPM_SESSION_PPM_SUSPEND_C ((0x4E6) + LOG_1X_BASE_C) 1990 1991 #define LOG_GNSS_PDSM_PPM_REPORT_THROTTLED_C ((0x4E7) + LOG_1X_BASE_C) 1992 1993 #define LOG_GNSS_PDSM_PPM_REPORT_FIRED_C ((0x4E8) + LOG_1X_BASE_C) 1994 1995 #define LOG_GNSS_PDSM_PPM_SESSION_END_C ((0x4E9) + LOG_1X_BASE_C) 1996 1997 #define LOG_TRSP_DATA_STALL_C ((0x801) + LOG_1X_BASE_C) 1998 1999 #define LOG_WLAN_PKT_LOG_INFO_C ((0x8E0) + LOG_1X_BASE_C) 2000 2001 /* The last defined DMSS log code */ 2002 #define LOG_1X_LAST_C ((0x8E0) + LOG_1X_BASE_C) 2003 2004 #define LOG_WLAN_COLD_BOOT_CAL_DATA_C ((0xA18) + LOG_1X_BASE_C) 2005 2006 #define LOG_WLAN_AUTH_ASSOC_TX_RX_INFO_C ((0xA19) + LOG_1X_BASE_C) 2007 #define LOG_WLAN_ROAM_TRIGGER_INFO_C ((0xA1A) + LOG_1X_BASE_C) 2008 #define LOG_WLAN_ROAM_SCAN_INFO_C ((0xA1B) + LOG_1X_BASE_C) 2009 #define LOG_WLAN_ROAM_RESULT_INFO_C ((0xA1C) + LOG_1X_BASE_C) 2010 #define LOG_WLAN_RRM_TX_RX_INFO_C ((0xA1D) + LOG_1X_BASE_C) 2011 2012 #define LOG_WLAN_DP_PROTO_PKT_INFO_C ((0xA1E) + LOG_1X_BASE_C) 2013 2014 /* This is only here for old (pre equipment ID update) logging code */ 2015 #define LOG_LAST_C (LOG_1X_LAST_C & 0xFFF) 2016 2017 /* ------------------------------------------------------------------------- 2018 * APPS LOG definition: 2019 * The max number of 16 log codes is assigned for Apps. 2020 * The last apps log code could be 0xB00F. 2021 * Below definition is consolidated from log_codes_apps.h 2022 * ------------------------------------------------------------------------- */ 2023 2024 /* ======================== APPS Profiling ======================== */ 2025 #define LOG_APPS_SYSPROFILE_C (0x01 + LOG_APPS_BASE_C) 2026 #define LOG_APPS_TASKPROFILE_C (0x02 + LOG_APPS_BASE_C) 2027 2028 /* The last defined APPS log code */ 2029 /* Change it to (0x02 + LOG_LTE_LAST_C) to allow LTE log codes */ 2030 #define LOG_APPS_LAST_C (0x02 + LOG_LTE_LAST_C) 2031 2032 /* ------------------------------------------------------------------------- 2033 * Log Equipment IDs. 2034 * The number is represented by 4 bits. 2035 * ------------------------------------------------------------------------- */ 2036 typedef enum { 2037 LOG_EQUIP_ID_OEM = 0, /* 3rd party OEM (licensee) use */ 2038 LOG_EQUIP_ID_1X = 1, /* Traditional 1X line of products */ 2039 LOG_EQUIP_ID_RSVD2 = 2, 2040 LOG_EQUIP_ID_RSVD3 = 3, 2041 LOG_EQUIP_ID_WCDMA = 4, 2042 LOG_EQUIP_ID_GSM = 5, 2043 LOG_EQUIP_ID_LBS = 6, 2044 LOG_EQUIP_ID_UMTS = 7, 2045 LOG_EQUIP_ID_TDMA = 8, 2046 LOG_EQUIP_ID_BOA = 9, 2047 LOG_EQUIP_ID_DTV = 10, 2048 LOG_EQUIP_ID_APPS = 11, 2049 LOG_EQUIP_ID_DSP = 12, 2050 2051 LOG_EQUIP_ID_LAST_DEFAULT = LOG_EQUIP_ID_DSP 2052 } log_equip_id_enum_type; 2053 2054 #define LOG_EQUIP_ID_MAX 0xF /* The equipment ID is 4 bits */ 2055 2056 /* Note that these are the official values and are used by default in 2057 diagtune.h. 2058 */ 2059 #define LOG_EQUIP_ID_0_LAST_CODE_DEFAULT 0 2060 #define LOG_EQUIP_ID_1_LAST_CODE_DEFAULT LOG_1X_LAST_C 2061 #define LOG_EQUIP_ID_2_LAST_CODE_DEFAULT 0 2062 #define LOG_EQUIP_ID_3_LAST_CODE_DEFAULT 0 2063 #define LOG_EQUIP_ID_4_LAST_CODE_DEFAULT 0 2064 #define LOG_EQUIP_ID_5_LAST_CODE_DEFAULT 0 2065 #define LOG_EQUIP_ID_6_LAST_CODE_DEFAULT 0 2066 #define LOG_EQUIP_ID_7_LAST_CODE_DEFAULT 0 2067 #define LOG_EQUIP_ID_8_LAST_CODE_DEFAULT 0 2068 #define LOG_EQUIP_ID_9_LAST_CODE_DEFAULT 0 2069 #define LOG_EQUIP_ID_10_LAST_CODE_DEFAULT 0 2070 #define LOG_EQUIP_ID_11_LAST_CODE_DEFAULT LOG_LTE_LAST_C 2071 #define LOG_EQUIP_ID_12_LAST_CODE_DEFAULT 0 2072 #define LOG_EQUIP_ID_13_LAST_CODE_DEFAULT 0 2073 #define LOG_EQUIP_ID_14_LAST_CODE_DEFAULT 0 2074 #define LOG_EQUIP_ID_15_LAST_CODE_DEFAULT 0 2075 2076 #endif /* LOG_CODES_H */ 2077