blob: 15737d6ef65f7ea2726460ec6eefd08da4aa5931 [file] [log] [blame]
Shalabh Jain10f5f432012-01-11 11:45:44 +05301/* Copyright (c) 2008-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12
13#ifndef DIAGCHAR_SHARED
14#define DIAGCHAR_SHARED
15
16#define MSG_MASKS_TYPE 1
17#define LOG_MASKS_TYPE 2
18#define EVENT_MASKS_TYPE 4
19#define PKT_TYPE 8
20#define DEINIT_TYPE 16
Shalabh Jain69890aa2011-10-10 12:59:16 -070021#define USER_SPACE_LOG_TYPE 32
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070022#define USB_MODE 1
23#define MEMORY_DEVICE_MODE 2
24#define NO_LOGGING_MODE 3
Shalabh Jain69890aa2011-10-10 12:59:16 -070025#define UART_MODE 4
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070026
27/* different values that go in for diag_data_type */
28#define DATA_TYPE_EVENT 0
29#define DATA_TYPE_F3 1
30#define DATA_TYPE_LOG 2
31#define DATA_TYPE_RESPONSE 3
32
33/* Different IOCTL values */
34#define DIAG_IOCTL_COMMAND_REG 0
35#define DIAG_IOCTL_SWITCH_LOGGING 7
36#define DIAG_IOCTL_GET_DELAYED_RSP_ID 8
37#define DIAG_IOCTL_LSM_DEINIT 9
38
Dixon Petersonb4618a42012-02-29 18:56:31 -080039/* PC Tools IDs */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070040#define APQ8060_TOOLS_ID 4062
41#define AO8960_TOOLS_ID 4064
Shalabh Jainfb8e3c12011-10-19 17:29:42 -070042#define APQ8064_TOOLS_ID 4072
Dixon Petersonb4618a42012-02-29 18:56:31 -080043#define MSM8625_TOOLS_ID 4075
Shalabh Jaina7557842012-02-01 20:25:03 +053044#define MSM8930_TOOLS_ID 4076
45#define MSM8630_TOOLS_ID 4077
46#define MSM8230_TOOLS_ID 4078
47#define APQ8030_TOOLS_ID 4079
48#define MSM8627_TOOLS_ID 4080
49#define MSM8227_TOOLS_ID 4081
Shalabh Jain10f5f432012-01-11 11:45:44 +053050#define MSM8974_TOOLS_ID 4072
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070051
52#define MSG_MASK_0 (0x00000001)
53#define MSG_MASK_1 (0x00000002)
54#define MSG_MASK_2 (0x00000004)
55#define MSG_MASK_3 (0x00000008)
56#define MSG_MASK_4 (0x00000010)
57#define MSG_MASK_5 (0x00000020)
58#define MSG_MASK_6 (0x00000040)
59#define MSG_MASK_7 (0x00000080)
60#define MSG_MASK_8 (0x00000100)
61#define MSG_MASK_9 (0x00000200)
62#define MSG_MASK_10 (0x00000400)
63#define MSG_MASK_11 (0x00000800)
64#define MSG_MASK_12 (0x00001000)
65#define MSG_MASK_13 (0x00002000)
66#define MSG_MASK_14 (0x00004000)
67#define MSG_MASK_15 (0x00008000)
68#define MSG_MASK_16 (0x00010000)
69#define MSG_MASK_17 (0x00020000)
70#define MSG_MASK_18 (0x00040000)
71#define MSG_MASK_19 (0x00080000)
72#define MSG_MASK_20 (0x00100000)
73#define MSG_MASK_21 (0x00200000)
74#define MSG_MASK_22 (0x00400000)
75#define MSG_MASK_23 (0x00800000)
76#define MSG_MASK_24 (0x01000000)
77#define MSG_MASK_25 (0x02000000)
78#define MSG_MASK_26 (0x04000000)
79#define MSG_MASK_27 (0x08000000)
80#define MSG_MASK_28 (0x10000000)
81#define MSG_MASK_29 (0x20000000)
82#define MSG_MASK_30 (0x40000000)
83#define MSG_MASK_31 (0x80000000)
84
85/* These masks are to be used for support of all legacy messages in the sw.
86The user does not need to remember the names as they will be embedded in
87the appropriate macros. */
88#define MSG_LEGACY_LOW MSG_MASK_0
89#define MSG_LEGACY_MED MSG_MASK_1
90#define MSG_LEGACY_HIGH MSG_MASK_2
91#define MSG_LEGACY_ERROR MSG_MASK_3
92#define MSG_LEGACY_FATAL MSG_MASK_4
93
94/* Legacy Message Priorities */
95#define MSG_LVL_FATAL (MSG_LEGACY_FATAL)
96#define MSG_LVL_ERROR (MSG_LEGACY_ERROR | MSG_LVL_FATAL)
97#define MSG_LVL_HIGH (MSG_LEGACY_HIGH | MSG_LVL_ERROR)
98#define MSG_LVL_MED (MSG_LEGACY_MED | MSG_LVL_HIGH)
99#define MSG_LVL_LOW (MSG_LEGACY_LOW | MSG_LVL_MED)
100
101#define MSG_LVL_NONE 0
102
103/* This needs to be modified manually now, when we add
104 a new RANGE of SSIDs to the msg_mask_tbl */
Shalabh Jain321c8b52012-02-22 12:37:06 -0800105#define MSG_MASK_TBL_CNT 23
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700106#define EVENT_LAST_ID 0x083F
107
108#define MSG_SSID_0 0
Shalabh Jain321c8b52012-02-22 12:37:06 -0800109#define MSG_SSID_0_LAST 90
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700110#define MSG_SSID_1 500
111#define MSG_SSID_1_LAST 506
112#define MSG_SSID_2 1000
113#define MSG_SSID_2_LAST 1007
114#define MSG_SSID_3 2000
115#define MSG_SSID_3_LAST 2008
116#define MSG_SSID_4 3000
Shalabh Jain321c8b52012-02-22 12:37:06 -0800117#define MSG_SSID_4_LAST 3014
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700118#define MSG_SSID_5 4000
119#define MSG_SSID_5_LAST 4010
120#define MSG_SSID_6 4500
121#define MSG_SSID_6_LAST 4526
122#define MSG_SSID_7 4600
Shalabh Jain321c8b52012-02-22 12:37:06 -0800123#define MSG_SSID_7_LAST 4612
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700124#define MSG_SSID_8 5000
Shalabh Jain321c8b52012-02-22 12:37:06 -0800125#define MSG_SSID_8_LAST 5029
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700126#define MSG_SSID_9 5500
Shalabh Jain321c8b52012-02-22 12:37:06 -0800127#define MSG_SSID_9_LAST 5516
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700128#define MSG_SSID_10 6000
Shalabh Jain321c8b52012-02-22 12:37:06 -0800129#define MSG_SSID_10_LAST 6072
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700130#define MSG_SSID_11 6500
131#define MSG_SSID_11_LAST 6521
132#define MSG_SSID_12 7000
133#define MSG_SSID_12_LAST 7003
134#define MSG_SSID_13 7100
135#define MSG_SSID_13_LAST 7111
136#define MSG_SSID_14 7200
137#define MSG_SSID_14_LAST 7201
138#define MSG_SSID_15 8000
139#define MSG_SSID_15_LAST 8000
140#define MSG_SSID_16 8500
141#define MSG_SSID_16_LAST 8523
142#define MSG_SSID_17 9000
143#define MSG_SSID_17_LAST 9008
144#define MSG_SSID_18 9500
145#define MSG_SSID_18_LAST 9509
Shalabh Jain321c8b52012-02-22 12:37:06 -0800146#define MSG_SSID_19 10200
147#define MSG_SSID_19_LAST 10210
148#define MSG_SSID_20 10251
149#define MSG_SSID_20_LAST 10255
150#define MSG_SSID_21 10300
151#define MSG_SSID_21_LAST 10300
152#define MSG_SSID_22 10350
153#define MSG_SSID_22_LAST 10361
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700154
155struct diagpkt_delay_params {
156 void *rsp_ptr;
157 int size;
158 int *num_bytes_ptr;
159};
160
161static const uint32_t msg_bld_masks_0[] = {
162 MSG_LVL_LOW,
163 MSG_LVL_MED,
164 MSG_LVL_MED,
165 MSG_LVL_ERROR,
166 MSG_LVL_LOW,
167 MSG_LVL_MED,
168 MSG_LVL_MED,
169 MSG_LVL_HIGH,
170 MSG_LVL_ERROR,
171 MSG_LVL_LOW,
172 MSG_LVL_ERROR,
173 MSG_LVL_ERROR,
174 MSG_LVL_MED,
175 MSG_LVL_MED,
176 MSG_LVL_MED,
177 MSG_LVL_HIGH,
178 MSG_LVL_HIGH,
179 MSG_LVL_HIGH,
180 MSG_LVL_LOW,
181 MSG_LVL_ERROR,
182 MSG_LVL_LOW,
183 MSG_LVL_MED,
184 MSG_LVL_MED,
185 MSG_LVL_MED,
186 MSG_LVL_MED,
187 MSG_LVL_LOW,
188 MSG_LVL_MED,
189 MSG_LVL_MED,
190 MSG_LVL_MED,
191 MSG_LVL_MED,
192 MSG_LVL_MED|MSG_MASK_7 | \
193 MSG_MASK_8|MSG_MASK_9|MSG_MASK_10|MSG_MASK_11|MSG_MASK_12 | \
194 MSG_MASK_13|MSG_MASK_14|MSG_MASK_15|MSG_MASK_16 | \
195 MSG_MASK_17|MSG_MASK_18|MSG_MASK_19|MSG_MASK_20|MSG_MASK_21,
196 MSG_LVL_MED|MSG_MASK_5 | \
197 MSG_MASK_6|MSG_MASK_7|MSG_MASK_8|MSG_MASK_9|MSG_MASK_10| \
198 MSG_MASK_11|MSG_MASK_12|MSG_MASK_13|MSG_MASK_14| \
199 MSG_MASK_15|MSG_MASK_16|MSG_MASK_17,
200 MSG_LVL_MED,
201 MSG_LVL_MED,
202 MSG_LVL_HIGH,
203 MSG_LVL_HIGH,
204 MSG_LVL_HIGH,
205 MSG_LVL_HIGH,
206 MSG_LVL_MED,
207 MSG_LVL_MED,
208 MSG_LVL_MED|MSG_MASK_5 | \
209 MSG_MASK_6|MSG_MASK_7|MSG_MASK_8,
210 MSG_LVL_LOW,
211 MSG_LVL_LOW,
212 MSG_LVL_HIGH,
213 MSG_LVL_HIGH,
214 MSG_LVL_HIGH,
215 MSG_LVL_MED,
216 MSG_LVL_MED|MSG_MASK_5 | \
217 MSG_MASK_6|MSG_MASK_7|MSG_MASK_8|MSG_MASK_9|MSG_MASK_10| \
218 MSG_MASK_11|MSG_MASK_12|MSG_MASK_13|MSG_MASK_14|MSG_MASK_15| \
219 MSG_MASK_16|MSG_MASK_17|MSG_MASK_18|MSG_MASK_19|MSG_MASK_20| \
220 MSG_MASK_21|MSG_MASK_22|MSG_MASK_23|MSG_MASK_24|MSG_MASK_25,
221 MSG_LVL_MED|MSG_MASK_5 | \
222 MSG_MASK_6|MSG_MASK_7|MSG_MASK_8|MSG_MASK_9|MSG_MASK_10,
223 MSG_LVL_MED,
224 MSG_LVL_MED,
225 MSG_LVL_LOW,
226 MSG_LVL_MED,
227 MSG_LVL_LOW,
228 MSG_LVL_LOW,
229 MSG_LVL_LOW,
230 MSG_LVL_HIGH,
231 MSG_LVL_LOW,
232 MSG_LVL_LOW,
233 MSG_LVL_LOW | MSG_MASK_5 | \
234 MSG_MASK_6 | MSG_MASK_7 | MSG_MASK_8,
235 MSG_LVL_LOW | MSG_MASK_5 | \
236 MSG_MASK_6,
237 MSG_LVL_MED,
238 MSG_LVL_MED,
239 MSG_LVL_LOW,
240 MSG_LVL_MED | MSG_MASK_5 | \
241 MSG_MASK_6|MSG_MASK_7|MSG_MASK_8|MSG_MASK_9|MSG_MASK_10| \
242 MSG_MASK_11|MSG_MASK_12|MSG_MASK_13|MSG_MASK_14|MSG_MASK_15 | \
243 MSG_MASK_16|MSG_MASK_17|MSG_MASK_18|MSG_MASK_19|MSG_MASK_20,
244 MSG_LVL_LOW,
245 MSG_LVL_MED,
246 MSG_LVL_LOW,
247 MSG_LVL_LOW,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800248 MSG_LVL_LOW,
249 MSG_LVL_HIGH,
250 MSG_LVL_HIGH,
251 MSG_LVL_LOW,
252 MSG_LVL_LOW,
253 MSG_LVL_LOW,
254 MSG_LVL_LOW,
255 MSG_LVL_LOW,
256 MSG_LVL_HIGH,
257 MSG_LVL_HIGH,
258 MSG_LVL_LOW,
259 MSG_LVL_LOW,
260 MSG_LVL_LOW,
261 MSG_LVL_LOW,
262 MSG_LVL_LOW,
263 MSG_LVL_LOW,
264 MSG_LVL_LOW|MSG_LVL_MED|MSG_LVL_HIGH|MSG_LVL_ERROR|MSG_LVL_FATAL,
265 MSG_LVL_MED,
266 MSG_LVL_LOW|MSG_LVL_MED|MSG_LVL_HIGH|MSG_LVL_ERROR|MSG_LVL_FATAL,
267 MSG_LVL_LOW,
268 MSG_LVL_MED,
269 MSG_LVL_LOW
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700270};
271
272static const uint32_t msg_bld_masks_1[] = {
273 MSG_LVL_MED,
274 MSG_LVL_HIGH,
275 MSG_LVL_HIGH,
276 MSG_LVL_LOW,
277 MSG_LVL_HIGH,
278 MSG_LVL_HIGH,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800279 MSG_LVL_HIGH
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700280};
281
282static const uint32_t msg_bld_masks_2[] = {
283 MSG_LVL_MED,
284 MSG_LVL_MED,
285 MSG_LVL_MED,
286 MSG_LVL_MED,
287 MSG_LVL_MED,
288 MSG_LVL_MED|MSG_MASK_5,
289 MSG_LVL_MED,
290 MSG_LVL_MED
291};
292
293static const uint32_t msg_bld_masks_3[] = {
294 MSG_LVL_MED,
295 MSG_LVL_MED,
296 MSG_LVL_MED,
297 MSG_LVL_MED,
298 MSG_LVL_MED,
299 MSG_LVL_MED,
300 MSG_LVL_MED,
301 MSG_LVL_MED,
302 MSG_LVL_MED
303};
304
305static const uint32_t msg_bld_masks_4[] = {
306 MSG_LVL_HIGH,
307 MSG_LVL_HIGH,
308 MSG_LVL_HIGH,
309 MSG_LVL_HIGH,
310 MSG_LVL_HIGH,
311 MSG_LVL_HIGH,
312 MSG_LVL_HIGH,
313 MSG_LVL_HIGH,
314 MSG_LVL_HIGH,
315 MSG_LVL_HIGH,
316 MSG_LVL_HIGH,
317 MSG_LVL_HIGH,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800318 MSG_LVL_HIGH,
319 MSG_LVL_LOW,
320 MSG_LVL_LOW
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700321};
322
323static const uint32_t msg_bld_masks_5[] = {
324 MSG_LVL_HIGH,
325 MSG_LVL_MED,
326 MSG_LVL_HIGH,
327 MSG_LVL_MED,
328 MSG_LVL_MED,
329 MSG_LVL_MED,
330 MSG_LVL_MED,
331 MSG_LVL_MED,
332 MSG_LVL_MED,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800333 MSG_LVL_MED|MSG_LVL_MED|MSG_MASK_5|MSG_MASK_6|MSG_MASK_7| \
334 MSG_MASK_8|MSG_MASK_9,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700335 MSG_LVL_MED
336};
337
338static const uint32_t msg_bld_masks_6[] = {
339 MSG_LVL_MED,
340 MSG_LVL_MED,
341 MSG_LVL_MED,
342 MSG_LVL_MED,
343 MSG_LVL_MED,
344 MSG_LVL_MED,
345 MSG_LVL_MED,
346 MSG_LVL_LOW,
347 MSG_LVL_LOW,
348 MSG_LVL_LOW,
349 MSG_LVL_LOW,
350 MSG_LVL_LOW,
351 MSG_LVL_LOW,
352 MSG_LVL_LOW,
353 MSG_LVL_LOW,
354 MSG_LVL_LOW,
355 MSG_LVL_LOW,
356 MSG_LVL_LOW,
357 MSG_LVL_LOW,
358 MSG_LVL_LOW,
359 MSG_LVL_LOW,
360 MSG_LVL_LOW,
361 MSG_LVL_LOW,
362 MSG_LVL_LOW,
363 MSG_LVL_LOW,
364 MSG_LVL_LOW,
365 MSG_LVL_LOW
366};
367
368static const uint32_t msg_bld_masks_7[] = {
369 MSG_LVL_MED,
370 MSG_LVL_MED,
371 MSG_LVL_MED,
372 MSG_LVL_MED,
373 MSG_LVL_MED,
374 MSG_LVL_MED,
375 MSG_LVL_MED,
376 MSG_LVL_MED,
377 MSG_LVL_MED,
378 MSG_LVL_MED,
379 MSG_LVL_MED,
380 MSG_LVL_MED,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800381 MSG_LVL_LOW
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700382};
383
384static const uint32_t msg_bld_masks_8[] = {
385 MSG_LVL_MED,
386 MSG_LVL_MED,
387 MSG_LVL_MED,
388 MSG_LVL_MED,
389 MSG_LVL_MED,
390 MSG_LVL_MED,
391 MSG_LVL_MED,
392 MSG_LVL_MED,
393 MSG_LVL_MED,
394 MSG_LVL_MED,
395 MSG_LVL_MED,
396 MSG_LVL_MED,
397 MSG_LVL_MED,
398 MSG_LVL_MED,
399 MSG_LVL_MED,
400 MSG_LVL_MED,
401 MSG_LVL_LOW,
402 MSG_LVL_LOW,
403 MSG_LVL_LOW,
404 MSG_LVL_MED,
405 MSG_LVL_MED,
406 MSG_LVL_MED,
407 MSG_LVL_MED,
408 MSG_LVL_MED,
409 MSG_LVL_MED,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800410 MSG_LVL_MED,
411 MSG_LVL_MED,
412 MSG_LVL_MED,
413 MSG_LVL_MED,
414 MSG_LVL_MED
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700415};
416
417static const uint32_t msg_bld_masks_9[] = {
418 MSG_LVL_MED|MSG_MASK_5,
419 MSG_LVL_MED|MSG_MASK_5,
420 MSG_LVL_MED|MSG_MASK_5,
421 MSG_LVL_MED|MSG_MASK_5,
422 MSG_LVL_MED|MSG_MASK_5,
423 MSG_LVL_MED|MSG_MASK_5,
424 MSG_LVL_MED|MSG_MASK_5,
425 MSG_LVL_MED|MSG_MASK_5,
426 MSG_LVL_MED|MSG_MASK_5,
427 MSG_LVL_MED|MSG_MASK_5,
428 MSG_LVL_MED|MSG_MASK_5,
429 MSG_LVL_MED|MSG_MASK_5,
430 MSG_LVL_MED|MSG_MASK_5,
431 MSG_LVL_MED|MSG_MASK_5,
432 MSG_LVL_MED|MSG_MASK_5,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800433 MSG_LVL_MED|MSG_MASK_5,
434 MSG_LVL_MED|MSG_MASK_5
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700435};
436
437static const uint32_t msg_bld_masks_10[] = {
438 MSG_LVL_MED,
439 MSG_LVL_ERROR,
440 MSG_LVL_LOW,
441 MSG_LVL_LOW|MSG_MASK_5 | \
442 MSG_MASK_6|MSG_MASK_7|MSG_MASK_8|MSG_MASK_9|MSG_MASK_10| \
443 MSG_MASK_11|MSG_MASK_12|MSG_MASK_13|MSG_MASK_14|MSG_MASK_15| \
444 MSG_MASK_16|MSG_MASK_17|MSG_MASK_18|MSG_MASK_19|MSG_MASK_20| \
445 MSG_MASK_21|MSG_MASK_22,
446 MSG_LVL_LOW|MSG_MASK_5,
447 MSG_LVL_LOW,
448 MSG_LVL_LOW,
449 MSG_LVL_LOW,
450 MSG_LVL_LOW,
451 MSG_LVL_LOW,
452 MSG_LVL_LOW,
453 MSG_LVL_LOW,
454 MSG_LVL_LOW,
455 MSG_LVL_LOW|MSG_MASK_5,
456 MSG_LVL_LOW|MSG_MASK_5,
457 MSG_LVL_LOW|MSG_MASK_5,
458 MSG_LVL_LOW|MSG_MASK_5,
459 MSG_LVL_LOW|MSG_MASK_5,
460 MSG_LVL_LOW|MSG_MASK_5,
461 MSG_LVL_LOW|MSG_MASK_5,
462 MSG_LVL_LOW|MSG_MASK_5,
463 MSG_LVL_LOW|MSG_MASK_5,
464 MSG_LVL_LOW|MSG_MASK_5,
465 MSG_LVL_LOW|MSG_MASK_5,
466 MSG_LVL_LOW|MSG_MASK_5,
467 MSG_LVL_LOW|MSG_MASK_5,
468 MSG_LVL_LOW|MSG_MASK_5,
469 MSG_LVL_LOW|MSG_MASK_5,
470 MSG_LVL_LOW|MSG_MASK_5,
471 MSG_LVL_LOW|MSG_MASK_5,
472 MSG_LVL_LOW|MSG_MASK_5,
473 MSG_LVL_LOW|MSG_MASK_5,
474 MSG_LVL_LOW,
475 MSG_LVL_MED,
476 MSG_LVL_HIGH,
477 MSG_LVL_LOW,
478 MSG_LVL_LOW,
479 MSG_LVL_LOW|MSG_MASK_5,
480 MSG_LVL_LOW|MSG_MASK_0 | MSG_MASK_1 | MSG_MASK_2 | \
481 MSG_MASK_3 | MSG_MASK_4 | MSG_MASK_5 | MSG_MASK_6,
482 MSG_LVL_HIGH,
483 MSG_LVL_LOW,
484 MSG_LVL_LOW,
485 MSG_LVL_LOW,
486 MSG_LVL_LOW,
487 MSG_LVL_LOW,
488 MSG_LVL_LOW,
489 MSG_LVL_LOW,
490 MSG_LVL_LOW,
491 MSG_LVL_LOW,
492 MSG_LVL_LOW,
493 MSG_LVL_LOW,
Shalabh Jain321c8b52012-02-22 12:37:06 -0800494 MSG_LVL_LOW,
495 MSG_LVL_MED,
496 MSG_LVL_MED,
497 MSG_LVL_MED,
498 MSG_LVL_MED,
499 MSG_LVL_MED,
500 MSG_LVL_MED,
501 MSG_LVL_MED,
502 MSG_LVL_MED,
503 MSG_LVL_MED,
504 MSG_LVL_MED,
505 MSG_LVL_MED,
506 MSG_LVL_MED,
507 MSG_LVL_MED,
508 MSG_LVL_MED,
509 MSG_LVL_MED,
510 MSG_LVL_MED,
511 MSG_LVL_MED,
512 MSG_LVL_MED,
513 MSG_LVL_MED,
514 MSG_LVL_MED,
515 MSG_LVL_LOW
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700516};
517
518static const uint32_t msg_bld_masks_11[] = {
519 MSG_LVL_LOW,
520 MSG_LVL_LOW,
521 MSG_LVL_LOW,
522 MSG_LVL_LOW,
523 MSG_LVL_LOW,
524 MSG_LVL_LOW,
525 MSG_LVL_LOW,
526 MSG_LVL_LOW,
527 MSG_LVL_LOW,
528 MSG_LVL_LOW,
529 MSG_LVL_LOW,
530 MSG_LVL_LOW,
531 MSG_LVL_LOW,
532 MSG_LVL_LOW,
533 MSG_LVL_LOW,
534 MSG_LVL_LOW,
535 MSG_LVL_LOW,
536 MSG_LVL_LOW,
537 MSG_LVL_LOW,
538 MSG_LVL_LOW,
539 MSG_LVL_LOW,
540 MSG_LVL_LOW,
541};
542
543static const uint32_t msg_bld_masks_12[] = {
544 MSG_LVL_MED,
545 MSG_LVL_MED,
546 MSG_LVL_MED,
547 MSG_LVL_MED,
548};
549
550static const uint32_t msg_bld_masks_13[] = {
551 MSG_LVL_MED,
552 MSG_LVL_MED,
553 MSG_LVL_MED,
554 MSG_LVL_MED,
555 MSG_LVL_MED,
556 MSG_LVL_MED,
557 MSG_LVL_MED,
558 MSG_LVL_MED,
559 MSG_LVL_MED,
560 MSG_LVL_MED,
561 MSG_LVL_MED,
562 MSG_LVL_MED,
563};
564
565static const uint32_t msg_bld_masks_14[] = {
566 MSG_LVL_MED,
567 MSG_LVL_MED,
568};
569
570static const uint32_t msg_bld_masks_15[] = {
571 MSG_LVL_MED
572};
573
574static const uint32_t msg_bld_masks_16[] = {
575 MSG_LVL_LOW,
576 MSG_LVL_LOW,
577 MSG_LVL_LOW,
578 MSG_LVL_LOW,
579 MSG_LVL_LOW,
580 MSG_LVL_LOW,
581 MSG_LVL_LOW,
582 MSG_LVL_LOW,
583 MSG_LVL_LOW,
584 MSG_LVL_LOW,
585 MSG_LVL_LOW,
586 MSG_LVL_LOW,
587 MSG_LVL_LOW,
588 MSG_LVL_LOW,
589 MSG_LVL_LOW,
590 MSG_LVL_LOW,
591 MSG_LVL_LOW,
592 MSG_LVL_LOW,
593 MSG_LVL_LOW,
594 MSG_LVL_LOW,
595 MSG_LVL_LOW,
596 MSG_LVL_LOW,
597 MSG_LVL_LOW,
598 MSG_LVL_LOW,
599};
600
601static const uint32_t msg_bld_masks_17[] = {
602 MSG_LVL_MED,
603 MSG_LVL_MED,
604 MSG_LVL_MED,
605 MSG_LVL_MED | MSG_MASK_6 | \
606 MSG_MASK_7 | MSG_MASK_8 | MSG_MASK_9,
607 MSG_LVL_MED | MSG_MASK_5 | \
608 MSG_MASK_6 | MSG_MASK_7 | MSG_MASK_8 | MSG_MASK_9 | \
609 MSG_MASK_10 | MSG_MASK_11 | MSG_MASK_12 | MSG_MASK_13 | \
610 MSG_MASK_14 | MSG_MASK_15 | MSG_MASK_16 | MSG_MASK_17,
611 MSG_LVL_MED,
612 MSG_LVL_MED | MSG_MASK_5 | \
613 MSG_MASK_6 | MSG_MASK_7 | MSG_MASK_8 | MSG_MASK_9 | \
614 MSG_MASK_10 | MSG_MASK_11 | MSG_MASK_12 | MSG_MASK_13 | \
615 MSG_MASK_14 | MSG_MASK_15 | MSG_MASK_16 | MSG_MASK_17 | \
616 MSG_MASK_18 | MSG_MASK_19 | MSG_MASK_20 | MSG_MASK_21 | \
617 MSG_MASK_22,
618 MSG_LVL_MED,
619 MSG_LVL_MED,
620};
621
622static const uint32_t msg_bld_masks_18[] = {
623 MSG_LVL_LOW,
624 MSG_LVL_LOW | MSG_MASK_8 | MSG_MASK_9 | MSG_MASK_10 | \
625 MSG_MASK_11|MSG_MASK_12|MSG_MASK_13|MSG_MASK_14|MSG_MASK_15 | \
626 MSG_MASK_16|MSG_MASK_17|MSG_MASK_18|MSG_MASK_19|MSG_MASK_20,
627 MSG_LVL_LOW | MSG_MASK_5 | MSG_MASK_6,
628 MSG_LVL_LOW | MSG_MASK_5,
629 MSG_LVL_LOW | MSG_MASK_5 | MSG_MASK_6,
630 MSG_LVL_LOW,
631 MSG_LVL_LOW | MSG_MASK_5 | \
632 MSG_MASK_6 | MSG_MASK_7 | MSG_MASK_8 | MSG_MASK_9,
633 MSG_LVL_LOW,
634 MSG_LVL_LOW,
635 MSG_LVL_LOW
636};
637
Shalabh Jain321c8b52012-02-22 12:37:06 -0800638static const uint32_t msg_bld_masks_19[] = {
639 MSG_LVL_LOW,
640 MSG_LVL_LOW,
641 MSG_LVL_LOW,
642 MSG_LVL_LOW,
643 MSG_LVL_LOW,
644 MSG_LVL_LOW,
645 MSG_LVL_LOW,
646 MSG_LVL_LOW,
647 MSG_LVL_LOW,
648 MSG_LVL_LOW,
649 MSG_LVL_LOW
650};
651
652static const uint32_t msg_bld_masks_20[] = {
653 MSG_LVL_LOW,
654 MSG_LVL_LOW,
655 MSG_LVL_LOW,
656 MSG_LVL_LOW,
657 MSG_LVL_LOW
658};
659
660static const uint32_t msg_bld_masks_21[] = {
661 MSG_LVL_HIGH
662};
663
664static const uint32_t msg_bld_masks_22[] = {
665 MSG_LVL_HIGH,
666 MSG_LVL_HIGH,
667 MSG_LVL_HIGH,
668 MSG_LVL_HIGH,
669 MSG_LVL_HIGH,
670 MSG_LVL_HIGH,
671 MSG_LVL_HIGH,
672 MSG_LVL_HIGH,
673 MSG_LVL_HIGH,
674 MSG_LVL_HIGH,
675 MSG_LVL_HIGH,
676 MSG_LVL_HIGH
677};
678
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700679/* LOG CODES */
680
681#define LOG_0 0x0
Shalabh Jainfbf3bdc2012-03-16 21:02:50 -0700682#define LOG_1 0x15A7
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700683#define LOG_2 0x0
684#define LOG_3 0x0
685#define LOG_4 0x4910
686#define LOG_5 0x5420
687#define LOG_6 0x0
688#define LOG_7 0x74FF
689#define LOG_8 0x0
690#define LOG_9 0x0
691#define LOG_10 0xA38A
692#define LOG_11 0xB201
693#define LOG_12 0x0
694#define LOG_13 0x0
695#define LOG_14 0x0
696#define LOG_15 0x0
697
698#define LOG_GET_ITEM_NUM(xx_code) (xx_code & 0x0FFF)
699
700#endif