139 lines
4.9 KiB
C
Executable File
139 lines
4.9 KiB
C
Executable File
/*
|
|
* Copyright (C) 2017 XRADIO TECHNOLOGY CO., LTD. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name of XRADIO TECHNOLOGY CO., LTD. nor the names of
|
|
* its contributors may be used to endorse or promote products derived
|
|
* from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef _DRIVER_CHIP_PRIVATE_HAL_DEBUG_H_
|
|
#define _DRIVER_CHIP_PRIVATE_HAL_DEBUG_H_
|
|
|
|
#include <stdio.h>
|
|
#include "sys/xr_util.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* debug */
|
|
#define HAL_SYSLOG printf
|
|
|
|
#define HAL_DBG_ON 1
|
|
#define HAL_WRN_ON 1
|
|
#define HAL_ERR_ON 1
|
|
#define HAL_ABORT_ON 0
|
|
|
|
#define HAL_DBG_TIMER 0
|
|
#define HAL_DBG_WDG 0
|
|
#define HAL_DBG_MBOX 0
|
|
#define HAL_DBG_I2C 0
|
|
|
|
#define HAL_ABORT() sys_abort()
|
|
|
|
#define HAL_LOG(flags, fmt, arg...) \
|
|
do { \
|
|
if (flags) \
|
|
HAL_SYSLOG(fmt, ##arg); \
|
|
} while (0)
|
|
|
|
|
|
#define HAL_DBG(fmt, arg...) HAL_LOG(HAL_DBG_ON, "[HAL] "fmt, ##arg)
|
|
|
|
#define HAL_TIMER_DBG(fmt, arg...) \
|
|
HAL_LOG(HAL_DBG_ON && HAL_DBG_TIMER, "[HAL TIMER] "fmt, ##arg)
|
|
|
|
#define HAL_WDG_DBG(fmt, arg...) \
|
|
HAL_LOG(HAL_DBG_ON && HAL_DBG_WDG, "[HAL WDG] "fmt, ##arg)
|
|
|
|
#define HAL_MBOX_DBG(fmt, arg...) \
|
|
HAL_LOG(HAL_DBG_ON && HAL_DBG_MBOX, "[HAL MBOX] "fmt, ##arg)
|
|
|
|
#define HAL_I2C_DBG(fmt, arg...) \
|
|
HAL_LOG(HAL_DBG_ON && HAL_DBG_I2C, "[HAL I2C] "fmt, ##arg)
|
|
|
|
#define HAL_WRN(fmt, arg...) HAL_LOG(HAL_WRN_ON, "[HAL WRN] "fmt, ##arg)
|
|
|
|
#define HAL_ERR(fmt, arg...) \
|
|
do { \
|
|
HAL_LOG(HAL_ERR_ON, "[HAL ERR] %s():%d, "fmt, \
|
|
__func__, __LINE__, ##arg); \
|
|
if (HAL_ABORT_ON) \
|
|
HAL_ABORT(); \
|
|
} while (0)
|
|
|
|
#define HAL_ASSERT_PARAM(exp) \
|
|
do { \
|
|
if (!(exp)) { \
|
|
HAL_SYSLOG("Invalid param at %s:%d\n", __func__, __LINE__); \
|
|
} \
|
|
} while (0)
|
|
|
|
/* debug in interrupt handler */
|
|
#ifdef CONFIG_SECTION_ATTRIBUTE_NONXIP
|
|
|
|
#define HAL_IT_LOG(flags, fmt, arg...) \
|
|
do { \
|
|
if (flags) { \
|
|
__nonxip_rodata static char __fmt[] = fmt; \
|
|
HAL_SYSLOG(__fmt, ##arg); \
|
|
} \
|
|
} while (0)
|
|
|
|
#define HAL_IT_DBG(fmt, arg...) HAL_IT_LOG(HAL_DBG_ON, "[HAL] "fmt, ##arg)
|
|
|
|
#define HAL_IT_MBOX_DBG(fmt, arg...) \
|
|
HAL_IT_LOG(HAL_DBG_ON && HAL_DBG_MBOX, "[HAL MBOX] "fmt, ##arg)
|
|
|
|
#define HAL_IT_I2C_DBG(fmt, arg...) \
|
|
HAL_IT_LOG(HAL_DBG_ON && HAL_DBG_I2C, "[HAL I2C] "fmt, ##arg)
|
|
|
|
#define HAL_IT_WRN(fmt, arg...) HAL_IT_LOG(HAL_WRN_ON, "[HAL WRN] "fmt, ##arg)
|
|
|
|
#define HAL_IT_ERR(fmt, arg...) \
|
|
do { \
|
|
HAL_IT_LOG(HAL_ERR_ON, "[HAL ERR] %s():%d, "fmt, \
|
|
__s_func, __LINE__, ##arg); \
|
|
if (HAL_ABORT_ON) \
|
|
HAL_ABORT(); \
|
|
} while (0)
|
|
|
|
#else /* CONFIG_SECTION_ATTRIBUTE_NONXIP */
|
|
|
|
#define __s_func __func__
|
|
#define HAL_IT_LOG HAL_LOG
|
|
#define HAL_IT_DBG HAL_DBG
|
|
#define HAL_IT_I2C_DBG HAL_I2C_DBG
|
|
#define HAL_IT_MBOX_DBG HAL_MBOX_DBG
|
|
#define HAL_IT_WRN HAL_WRN
|
|
#define HAL_IT_ERR HAL_ERR
|
|
|
|
#endif /* CONFIG_SECTION_ATTRIBUTE_NONXIP */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _DRIVER_CHIP_PRIVATE_HAL_DEBUG_H_ */
|