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 || defined MSOS_TYPE_OPTEE ) 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 115 #elif (defined CONFIG_ECOS) 116 117 #ifdef MS_DEBUG 118 #define ULOGI(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 119 #define ULOGW(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 120 #define ULOGD(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 121 #define ULOGE(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 122 #define ULOGF(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 123 #else 124 #define ULOGI(tag,fmt,...) //(x) 125 #define ULOGW(tag,fmt,...) //(x) 126 #define ULOGD(tag,fmt,...) //(x) 127 #define ULOGE(tag,fmt,...) //(x) 128 #define ULOGF(tag,fmt,...) //(x) 129 #endif 130 131 #elif (defined MSOS_TYPE_LINUX_KERNEL) 132 133 #define ULOGI(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 134 #define ULOGW(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 135 #define ULOGD(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 136 #define ULOGE(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 137 #define ULOGF(tag,fmt,...) printf("[Utopia][" tag "]: " fmt, ##__VA_ARGS__) 138 139 #elif (defined CONFIG_MLOG) 140 #include "MLog.h" 141 //#define ULOGI(tag,fmt,...) MLOGI(tag, fmt, ##__VA_ARGS__) 142 //#define ULOGW(tag,fmt,...) MLOGW(tag, fmt, ##__VA_ARGS__) 143 //#define ULOGD(tag,fmt,...) MLOGD(tag, fmt, ##__VA_ARGS__) 144 //#define ULOGE(tag,fmt,...) MLOGE(tag, fmt, ##__VA_ARGS__) 145 //#define ULOGF(tag,fmt,...) MLOGF(tag, fmt, ##__VA_ARGS__) 146 147 #define ULOGI(tag,fmt,...) MLOGI("Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 148 #define ULOGW(tag,fmt,...) MLOGW("Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 149 #define ULOGD(tag,fmt,...) MLOGD("Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 150 #define ULOGE(tag,fmt,...) MLOGE("Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 151 #define ULOGF(tag,fmt,...) MLOGF("Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 152 #elif (defined ANDROID) 153 #include <cutils/log.h> 154 #ifdef ALOG 155 //#define ULOGI(tag,fmt,...) ALOG(LOG_INFO, tag, fmt, ##__VA_ARGS__) 156 //#define ULOGW(tag,fmt,...) ALOG(LOG_WARN, tag, fmt, ##__VA_ARGS__) 157 //#define ULOGD(tag,fmt,...) ALOG(LOG_DEBUG, tag, fmt, ##__VA_ARGS__) 158 //#define ULOGE(tag,fmt,...) ALOG(LOG_ERROR, tag, fmt, ##__VA_ARGS__) 159 //#define ULOGF(tag,fmt,...) ALOG(LOG_FATAL, tag, fmt, ##__VA_ARGS__) 160 161 #define ULOGI(tag,fmt,...) ALOG(LOG_INFO, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 162 #define ULOGW(tag,fmt,...) ALOG(LOG_WARN, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 163 #define ULOGD(tag,fmt,...) ALOG(LOG_DEBUG, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 164 #define ULOGE(tag,fmt,...) ALOG(LOG_ERROR, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 165 #define ULOGF(tag,fmt,...) ALOG(LOG_FATAL, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 166 #else 167 //#define ULOGI(tag,fmt,...) LOG(LOG_INFO, tag, fmt, ##__VA_ARGS__) 168 //#define ULOGW(tag,fmt,...) LOG(LOG_WARN, tag, fmt, ##__VA_ARGS__) 169 //#define ULOGD(tag,fmt,...) LOG(LOG_DEBUG, tag, fmt, ##__VA_ARGS__) 170 //#define ULOGE(tag,fmt,...) LOG(LOG_ERROR, tag, fmt, ##__VA_ARGS__) 171 //#define ULOGF(tag,fmt,...) LOG(LOG_FATAL, tag, fmt, ##__VA_ARGS__) 172 173 #define ULOGI(tag,fmt,...) LOG(LOG_INFO, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 174 #define ULOGW(tag,fmt,...) LOG(LOG_WARN, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 175 #define ULOGD(tag,fmt,...) LOG(LOG_DEBUG, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 176 #define ULOGE(tag,fmt,...) LOG(LOG_ERROR, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 177 #define ULOGF(tag,fmt,...) LOG(LOG_FATAL, "Utopia", "[" tag "]" fmt, ##__VA_ARGS__) 178 #endif 179 #else 180 //#define ULOGI(tag,fmt,...) printf(tag ": " fmt, ##__VA_ARGS__) 181 //#define ULOGW(tag,fmt,...) printf(tag ": " fmt, ##__VA_ARGS__) 182 //#define ULOGD(tag,fmt,...) printf(tag ": " fmt, ##__VA_ARGS__) 183 //#define ULOGE(tag,fmt,...) printf(tag ": " fmt, ##__VA_ARGS__) 184 //#define ULOGF(tag,fmt,...) printf(tag ": " fmt, ##__VA_ARGS__) 185 186 #define ULOGI(tag,fmt,...) {} 187 #define ULOGW(tag,fmt,...) {} 188 #define ULOGD(tag,fmt,...) {} 189 #define ULOGE(tag,fmt,...) {} 190 #define ULOGF(tag,fmt,...) {} 191 #endif 192 193 #ifdef __cplusplus 194 } 195 #endif 196 197 #endif 198