net/mlx4: separate device control functions
[dpdk.git] / drivers / net / mlx4 / mlx4_utils.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2017 6WIND S.A.
5  *   Copyright 2017 Mellanox
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef MLX4_UTILS_H_
35 #define MLX4_UTILS_H_
36
37 #include <stddef.h>
38 #include <stdio.h>
39
40 #include <rte_common.h>
41 #include <rte_log.h>
42
43 #include "mlx4.h"
44
45 #ifndef NDEBUG
46
47 /*
48  * When debugging is enabled (NDEBUG not defined), file, line and function
49  * information replace the driver name (MLX4_DRIVER_NAME) in log messages.
50  */
51
52 /* Return the file name part of a path. */
53 static inline const char *
54 pmd_drv_log_basename(const char *s)
55 {
56         const char *n = s;
57
58         while (*n)
59                 if (*(n++) == '/')
60                         s = n;
61         return s;
62 }
63
64 #define PMD_DRV_LOG(level, ...) \
65         RTE_LOG(level, PMD, \
66                 RTE_FMT("%s:%u: %s(): " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
67                         pmd_drv_log_basename(__FILE__), \
68                         __LINE__, \
69                         __func__, \
70                         RTE_FMT_TAIL(__VA_ARGS__,)))
71 #define DEBUG(...) PMD_DRV_LOG(DEBUG, __VA_ARGS__)
72 #ifndef MLX4_PMD_DEBUG_BROKEN_VERBS
73 #define claim_zero(...) assert((__VA_ARGS__) == 0)
74 #else /* MLX4_PMD_DEBUG_BROKEN_VERBS */
75 #define claim_zero(...) \
76         (void)(((__VA_ARGS__) == 0) || \
77                 DEBUG("Assertion `(" # __VA_ARGS__ ") == 0' failed (IGNORED)."))
78 #endif /* MLX4_PMD_DEBUG_BROKEN_VERBS */
79
80 #else /* NDEBUG */
81
82 /*
83  * Like assert(), DEBUG() becomes a no-op and claim_zero() does not perform
84  * any check when debugging is disabled.
85  */
86
87 #define PMD_DRV_LOG(level, ...) \
88         RTE_LOG(level, PMD, \
89                 RTE_FMT(MLX4_DRIVER_NAME ": " \
90                         RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
91                 RTE_FMT_TAIL(__VA_ARGS__,)))
92 #define DEBUG(...) (void)0
93 #define claim_zero(...) (__VA_ARGS__)
94
95 #endif /* NDEBUG */
96
97 #define INFO(...) PMD_DRV_LOG(INFO, __VA_ARGS__)
98 #define WARN(...) PMD_DRV_LOG(WARNING, __VA_ARGS__)
99 #define ERROR(...) PMD_DRV_LOG(ERR, __VA_ARGS__)
100
101 /* Allocate a buffer on the stack and fill it with a printf format string. */
102 #define MKSTR(name, ...) \
103         char name[snprintf(NULL, 0, __VA_ARGS__) + 1]; \
104         \
105         snprintf(name, sizeof(name), __VA_ARGS__)
106
107 /* mlx4_utils.c */
108
109 int mlx4_fd_set_non_blocking(int fd);
110
111 #endif /* MLX4_UTILS_H_ */