c8e79da7c6
Add Broadcom FlexSparc(FS) device creation driver which registers to a vdev and create a device. Add APIs for logs, supportive documentation and maintainers file. Signed-off-by: Vikas Gupta <vikas.gupta@broadcom.com> Signed-off-by: Raveendra Padasalagi <raveendra.padasalagi@broadcom.com> Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
35 lines
930 B
C
35 lines
930 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2020 Broadcom
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef _BCMFS_LOGS_H_
|
|
#define _BCMFS_LOGS_H_
|
|
|
|
#include <rte_log.h>
|
|
|
|
extern int bcmfs_conf_logtype;
|
|
extern int bcmfs_dp_logtype;
|
|
|
|
#define BCMFS_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, bcmfs_conf_logtype, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#define BCMFS_DP_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, bcmfs_dp_logtype, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#define BCMFS_DP_HEXDUMP_LOG(level, title, buf, len) \
|
|
bcmfs_hexdump_log(RTE_LOG_ ## level, bcmfs_dp_logtype, title, buf, len)
|
|
|
|
/**
|
|
* bcmfs_hexdump_log Dump out memory in a special hex dump format.
|
|
*
|
|
* The message will be sent to the stream used by the rte_log infrastructure.
|
|
*/
|
|
int
|
|
bcmfs_hexdump_log(uint32_t level, uint32_t logtype, const char *heading,
|
|
const void *buf, unsigned int len);
|
|
|
|
#endif /* _BCMFS_LOGS_H_ */
|