mirror of https://github.com/F-Stack/f-stack.git
43 lines
1.2 KiB
C
43 lines
1.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Copyright (c) 2016 Freescale Semiconductor, Inc. All rights reserved.
|
|
* Copyright 2016 NXP
|
|
*
|
|
*/
|
|
|
|
#ifndef _DPAA2_SEC_LOGS_H_
|
|
#define _DPAA2_SEC_LOGS_H_
|
|
|
|
extern int dpaa2_logtype_sec;
|
|
|
|
#define DPAA2_SEC_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, dpaa2_logtype_sec, "dpaa2_sec: " \
|
|
fmt "\n", ##args)
|
|
|
|
#define DPAA2_SEC_DEBUG(fmt, args...) \
|
|
rte_log(RTE_LOG_DEBUG, dpaa2_logtype_sec, "dpaa2_sec: %s(): " \
|
|
fmt "\n", __func__, ##args)
|
|
|
|
#define PMD_INIT_FUNC_TRACE() DPAA2_SEC_DEBUG(">>")
|
|
|
|
#define DPAA2_SEC_INFO(fmt, args...) \
|
|
DPAA2_SEC_LOG(INFO, fmt, ## args)
|
|
#define DPAA2_SEC_ERR(fmt, args...) \
|
|
DPAA2_SEC_LOG(ERR, fmt, ## args)
|
|
#define DPAA2_SEC_WARN(fmt, args...) \
|
|
DPAA2_SEC_LOG(WARNING, fmt, ## args)
|
|
|
|
/* DP Logs, toggled out at compile time if level lower than current level */
|
|
#define DPAA2_SEC_DP_LOG(level, fmt, args...) \
|
|
RTE_LOG_DP(level, PMD, fmt, ## args)
|
|
|
|
#define DPAA2_SEC_DP_DEBUG(fmt, args...) \
|
|
DPAA2_SEC_DP_LOG(DEBUG, fmt, ## args)
|
|
#define DPAA2_SEC_DP_INFO(fmt, args...) \
|
|
DPAA2_SEC_DP_LOG(INFO, fmt, ## args)
|
|
#define DPAA2_SEC_DP_WARN(fmt, args...) \
|
|
DPAA2_SEC_DP_LOG(WARNING, fmt, ## args)
|
|
|
|
|
|
#endif /* _DPAA2_SEC_LOGS_H_ */
|