blob: 1157eb3c5763c18471028c8893bfd5382cefe53b [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001/*****************************************************************************
2* Copyright Statement:
3* --------------------
4* This software is protected by Copyright and the information contained
5* herein is confidential. The software may not be copied and the information
6* contained herein may not be used or disclosed except with the written
7* permission of MediaTek Inc. (C) 2016
8*
9* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
10* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS (""MEDIATEK SOFTWARE"")
11* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
12* AN ""AS-IS"" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
13* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
14* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
15* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
16* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
17* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
18* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
19* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
20* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
21*
22* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
23* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
24* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
25* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
26* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
27*
28* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
29* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
30* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
31* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
32* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
33*
34*****************************************************************************/
35/*************************************************************
36*
37* This Software is the property of VIA Telecom, Inc. and may only be used pursuant to a license from VIA Telecom, Inc.
38*
39* Any unauthorized use inconsistent with the terms of such license is strictly prohibited.
40*
41* Copyright (c) 1999-2010 VIA Telecom, Inc. All rights reserved.
42*
43*************************************************************/
44#ifndef _DH_TR_H_
45#define _DH_TR_H_ 1
46
47/*
48*/
49
50#ifdef MTK_PLT_ON_PC
51/*****************************************************************************
52 * Includes
53 ****************************************************************************/
54#include "itrace.h"
55#endif
56
57#ifdef TRACEON
58
59/*****************************************************************************
60 * Includes
61 ****************************************************************************/
62#include "itrace.h"
63
64#define MYENGINENAME "dh_api"
65#define MYENGINEID DH_API_ID
66
67#include "tokens.h" /* include numeric tokens if tracing is enabled */
68
69/*****************************************************************************
70 * Trace definitions
71 ****************************************************************************/
72
73/* Available trace categories */
74typedef enum
75{
76 CAT_ERROR=0, /* Errors must be category 0 for all engines */
77 CAT_DH
78} TraceCategory;
79
80/* this value is the number of categories listed above */
81#define NUM_TRACE_CATEGORIES 2
82
83/* If you get this #error Change MAX_NUM_TRACE_CATEGORIES in itrace.h */
84/*
85#if (NUM_TRACE_CATEGORIES > MAX_NUM_TRACE_CATEGORIES)
86#error DH_API_ID has too many trace categories!
87#endif */
88
89/* Following are the ID definitions for each file to include as 'MyNameID'
90 All entries are unique. The ID tag is associated with the filename.*/
91
92#define DH_API_ID 1
93#define MAX_MODULEID 1
94
95
96#endif /* TRACEON */
97
98#ifndef ASSERT
99#ifdef SYS_DEBUG_FAULT_FILE_INFO
100
101void engAssert (const ProtocolEngineID engineId, const kal_uint8 moduleId,
102 const char *filename, unsigned line);
103#ifndef MTK_PLT_ON_PC
104#define ASSERT(expr) if (!(expr)) \
105 engAssert(MYENGINEID, MyNameID, __MODULE__, __LINE__)
106#endif
107
108#else
109
110void engAssert (const ProtocolEngineID engineId, const kal_uint8 moduleId,
111 unsigned line);
112
113#define ASSERT(expr) if (!(expr)) \
114 engAssert(MYENGINEID, MyNameID, __LINE__)
115
116#endif /* SYS_DEBUG_FAULT_FILE_INFO */
117#endif
118
119/*****************************************************************************
120 * Trace macro definitions
121 ****************************************************************************/
122/*
123#ifndef WIN_TEST
124#include "tracemac.h"
125#endif */
126
127#endif /* _DH_TR_H_ */
128