xref: /utopia/UTPA2-700.0.x/projects/tmplib/include/ULog.h (revision 53ee8cc121a030b8d368113ac3e966b4705770ef)
1 
2 //<MStar Software>
3 //******************************************************************************
4 // MStar Software
5 // Copyright (c) 2010 - 2012 MStar Semiconductor, Inc. All rights reserved.
6 // All software, firmware and related documentation herein ("MStar Software") are
7 // intellectual property of MStar Semiconductor, Inc. ("MStar") and protected by
8 // law, including, but not limited to, copyright law and international treaties.
9 // Any use, modification, reproduction, retransmission, or republication of all
10 // or part of MStar Software is expressly prohibited, unless prior written
11 // permission has been granted by MStar.
12 //
13 // By accessing, browsing and/or using MStar Software, you acknowledge that you
14 // have read, understood, and agree, to be bound by below terms ("Terms") and to
15 // comply with all applicable laws and regulations:
16 //
17 // 1. MStar shall retain any and all right, ownership and interest to MStar
18 //    Software and any modification/derivatives thereof.
19 //    No right, ownership, or interest to MStar Software and any
20 //    modification/derivatives thereof is transferred to you under Terms.
21 //
22 // 2. You understand that MStar Software might include, incorporate or be
23 //    supplied together with third party`s software and the use of MStar
24 //    Software may require additional licenses from third parties.
25 //    Therefore, you hereby agree it is your sole responsibility to separately
26 //    obtain any and all third party right and license necessary for your use of
27 //    such third party`s software.
28 //
29 // 3. MStar Software and any modification/derivatives thereof shall be deemed as
30 //    MStar`s confidential information and you agree to keep MStar`s
31 //    confidential information in strictest confidence and not disclose to any
32 //    third party.
33 //
34 // 4. MStar Software is provided on an "AS IS" basis without warranties of any
35 //    kind. Any warranties are hereby expressly disclaimed by MStar, including
36 //    without limitation, any warranties of merchantability, non-infringement of
37 //    intellectual property rights, fitness for a particular purpose, error free
38 //    and in conformity with any international standard.  You agree to waive any
39 //    claim against MStar for any loss, damage, cost or expense that you may
40 //    incur related to your use of MStar Software.
41 //    In no event shall MStar be liable for any direct, indirect, incidental or
42 //    consequential damages, including without limitation, lost of profit or
43 //    revenues, lost or damage of data, and unauthorized system use.
44 //    You agree that this Section 4 shall still apply without being affected
45 //    even if MStar Software has been modified by MStar in accordance with your
46 //    request or instruction for your use, except otherwise agreed by both
47 //    parties in writing.
48 //
49 // 5. If requested, MStar may from time to time provide technical supports or
50 //    services in relation with MStar Software to you for your use of
51 //    MStar Software in conjunction with your or your customer`s product
52 //    ("Services").
53 //    You understand and agree that, except otherwise agreed by both parties in
54 //    writing, Services are provided on an "AS IS" basis and the warranty
55 //    disclaimer set forth in Section 4 above shall apply.
56 //
57 // 6. Nothing contained herein shall be construed as by implication, estoppels
58 //    or otherwise:
59 //    (a) conferring any license or right to use MStar name, trademark, service
60 //        mark, symbol or any other identification;
61 //    (b) obligating MStar or any of its affiliates to furnish any person,
62 //        including without limitation, you and your customers, any assistance
63 //        of any kind whatsoever, or any information; or
64 //    (c) conferring any license or right under any intellectual property right.
65 //
66 // 7. These terms shall be governed by and construed in accordance with the laws
67 //    of Taiwan, R.O.C., excluding its conflict of law rules.
68 //    Any and all dispute arising out hereof or related hereto shall be finally
69 //    settled by arbitration referred to the Chinese Arbitration Association,
70 //    Taipei in accordance with the ROC Arbitration Law and the Arbitration
71 //    Rules of the Association by three (3) arbitrators appointed in accordance
72 //    with the said Rules.
73 //    The place of arbitration shall be in Taipei, Taiwan and the language shall
74 //    be English.
75 //    The arbitration award shall be final and binding to both parties.
76 //
77 //******************************************************************************
78 //<MStar Software>
79 ////////////////////////////////////////////////////////////////////////////////
80 //
81 // Copyright (c) 2008-2009 MStar Semiconductor, Inc.
82 // All rights reserved.
83 //
84 // Unless otherwise stipulated in writing, any and all information contained
85 // herein regardless in any format shall remain the sole proprietary of
86 // MStar Semiconductor Inc. and be kept in strict confidence
87 // ("MStar Confidential Information") by the recipient.
88 // Any unauthorized act including without limitation unauthorized disclosure,
89 // copying, use, reproduction, sale, distribution, modification, disassembling,
90 // reverse engineering and compiling of the contents of MStar Confidential
91 // Information is unlawful and strictly prohibited. MStar hereby reserves the
92 // rights to any and all damages, losses, costs and expenses resulting therefrom.
93 //
94 ////////////////////////////////////////////////////////////////////////////////
95 #ifndef __ULOG_H__
96 #define __ULOG_H__
97 
98 #ifdef __cplusplus
99 extern "C" {
100 #endif
101 
102 #if (defined CONFIG_UTOPIA_TEE || defined CONFIG_MBOOT || defined CONFIG_NOS)
103 //#define ULOGI(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
104 //#define ULOGW(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
105 //#define ULOGD(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
106 //#define ULOGE(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
107 //#define ULOGF(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
108 
109 #define ULOGI(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
110 #define ULOGW(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
111 #define ULOGD(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
112 #define ULOGE(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
113 #define ULOGF(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
114 #elif (defined MSOS_TYPE_LINUX_KERNEL)
115 
116 #define ULOGI(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
117 #define ULOGW(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
118 #define ULOGD(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
119 #define ULOGE(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
120 #define ULOGF(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
121 
122 #elif (defined CONFIG_MLOG)
123 #include "MLog.h"
124 //#define ULOGI(tag,fmt,...)      MLOGI(tag, fmt, ##__VA_ARGS__)
125 //#define ULOGW(tag,fmt,...)      MLOGW(tag, fmt, ##__VA_ARGS__)
126 //#define ULOGD(tag,fmt,...)      MLOGD(tag, fmt, ##__VA_ARGS__)
127 //#define ULOGE(tag,fmt,...)      MLOGE(tag, fmt, ##__VA_ARGS__)
128 //#define ULOGF(tag,fmt,...)      MLOGF(tag, fmt, ##__VA_ARGS__)
129 
130 #define ULOGI(tag,fmt,...)      MLOGI("Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
131 #define ULOGW(tag,fmt,...)      MLOGW("Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
132 #define ULOGD(tag,fmt,...)      MLOGD("Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
133 #define ULOGE(tag,fmt,...)      MLOGE("Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
134 #define ULOGF(tag,fmt,...)      MLOGF("Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
135 #elif (defined CONFIG_ANDROID)
136 #include <cutils/log.h>
137 #ifdef ALOG
138 //#define ULOGI(tag,fmt,...)      ALOG(LOG_INFO, tag, fmt, ##__VA_ARGS__)
139 //#define ULOGW(tag,fmt,...)      ALOG(LOG_WARN, tag, fmt, ##__VA_ARGS__)
140 //#define ULOGD(tag,fmt,...)      ALOG(LOG_DEBUG, tag, fmt, ##__VA_ARGS__)
141 //#define ULOGE(tag,fmt,...)      ALOG(LOG_ERROR, tag, fmt, ##__VA_ARGS__)
142 //#define ULOGF(tag,fmt,...)      ALOG(LOG_FATAL, tag, fmt, ##__VA_ARGS__)
143 
144 #define ULOGI(tag,fmt,...)      ALOG(LOG_INFO, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
145 #define ULOGW(tag,fmt,...)      ALOG(LOG_WARN, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
146 #define ULOGD(tag,fmt,...)      ALOG(LOG_DEBUG, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
147 #define ULOGE(tag,fmt,...)      ALOG(LOG_ERROR, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
148 #define ULOGF(tag,fmt,...)      ALOG(LOG_FATAL, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
149 #else
150 //#define ULOGI(tag,fmt,...)      LOG(LOG_INFO, tag, fmt, ##__VA_ARGS__)
151 //#define ULOGW(tag,fmt,...)      LOG(LOG_WARN, tag, fmt, ##__VA_ARGS__)
152 //#define ULOGD(tag,fmt,...)      LOG(LOG_DEBUG, tag, fmt, ##__VA_ARGS__)
153 //#define ULOGE(tag,fmt,...)      LOG(LOG_ERROR, tag, fmt, ##__VA_ARGS__)
154 //#define ULOGF(tag,fmt,...)      LOG(LOG_FATAL, tag, fmt, ##__VA_ARGS__)
155 
156 #define ULOGI(tag,fmt,...)      LOG(LOG_INFO, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
157 #define ULOGW(tag,fmt,...)      LOG(LOG_WARN, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
158 #define ULOGD(tag,fmt,...)      LOG(LOG_DEBUG, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
159 #define ULOGE(tag,fmt,...)      LOG(LOG_ERROR, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
160 #define ULOGF(tag,fmt,...)      LOG(LOG_FATAL, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__)
161 #endif
162 #else
163 //#define ULOGI(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
164 //#define ULOGW(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
165 //#define ULOGD(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
166 //#define ULOGE(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
167 //#define ULOGF(tag,fmt,...)      printf(tag ": " fmt, ##__VA_ARGS__)
168 
169 #define ULOGI(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
170 #define ULOGW(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
171 #define ULOGD(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
172 #define ULOGE(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
173 #define ULOGF(tag,fmt,...)      printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__)
174 #endif
175 
176 #ifdef __cplusplus
177 }
178 #endif
179 
180 #endif
181