New upstream version 18.08
[deb_dpdk.git] / drivers / common / qat / qat_logs.c
diff --git a/drivers/common/qat/qat_logs.c b/drivers/common/qat/qat_logs.c
new file mode 100644 (file)
index 0000000..7a86170
--- /dev/null
@@ -0,0 +1,38 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2018 Intel Corporation
+ */
+
+#include <rte_log.h>
+#include <rte_hexdump.h>
+
+#include "qat_logs.h"
+
+int qat_gen_logtype;
+int qat_dp_logtype;
+
+int
+qat_hexdump_log(uint32_t level, uint32_t logtype, const char *title,
+               const void *buf, unsigned int len)
+{
+       if (level > rte_log_get_global_level())
+               return 0;
+       if (level > (uint32_t)(rte_log_get_level(logtype)))
+               return 0;
+
+       rte_hexdump(rte_logs.file == NULL ? stderr : rte_logs.file,
+                               title, buf, len);
+       return 0;
+}
+
+RTE_INIT(qat_pci_init_log)
+{
+       /* Non-data-path logging for pci device and all services */
+       qat_gen_logtype = rte_log_register("pmd.qat_general");
+       if (qat_gen_logtype >= 0)
+               rte_log_set_level(qat_gen_logtype, RTE_LOG_NOTICE);
+
+       /* data-path logging for all services */
+       qat_dp_logtype = rte_log_register("pmd.qat_dp");
+       if (qat_dp_logtype >= 0)
+               rte_log_set_level(qat_dp_logtype, RTE_LOG_NOTICE);
+}