New upstream version 18.08
[deb_dpdk.git] / drivers / net / sfc / sfc_dp.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2017-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  *
6  * This software was jointly developed between OKTET Labs (under contract
7  * for Solarflare) and Solarflare Communications, Inc.
8  */
9
10 #ifndef _SFC_DP_H
11 #define _SFC_DP_H
12
13 #include <stdbool.h>
14 #include <sys/queue.h>
15
16 #include <rte_pci.h>
17
18 #include "sfc_log.h"
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 #define SFC_DIV_ROUND_UP(a, b) \
25         __extension__ ({                \
26                 typeof(a) _a = (a);     \
27                 typeof(b) _b = (b);     \
28                                         \
29                 (_a + (_b - 1)) / _b;   \
30         })
31
32 /**
33  * Datapath exception handler to be provided by the control path.
34  */
35 typedef void (sfc_dp_exception_t)(void *ctrl);
36
37 enum sfc_dp_type {
38         SFC_DP_RX = 0,  /**< Receive datapath */
39         SFC_DP_TX,      /**< Transmit datapath */
40 };
41
42
43 /** Datapath queue run-time information */
44 struct sfc_dp_queue {
45         uint16_t                        port_id;
46         uint16_t                        queue_id;
47         struct rte_pci_addr             pci_addr;
48 };
49
50 void sfc_dp_queue_init(struct sfc_dp_queue *dpq,
51                        uint16_t port_id, uint16_t queue_id,
52                        const struct rte_pci_addr *pci_addr);
53
54 /*
55  * Helper macro to define datapath logging macros and have uniform
56  * logging.
57  */
58 #define SFC_DP_LOG(dp_name, level, dpq, ...) \
59         do {                                                            \
60                 const struct sfc_dp_queue *_dpq = (dpq);                \
61                 const struct rte_pci_addr *_addr = &(_dpq)->pci_addr;   \
62                                                                         \
63                 SFC_GENERIC_LOG(level,                                  \
64                         RTE_FMT("%s " PCI_PRI_FMT                       \
65                                 " #%" PRIu16 ".%" PRIu16 ": "           \
66                                 RTE_FMT_HEAD(__VA_ARGS__ ,),            \
67                                 dp_name,                                \
68                                 _addr->domain, _addr->bus,              \
69                                 _addr->devid, _addr->function,          \
70                                 _dpq->port_id, _dpq->queue_id,          \
71                                 RTE_FMT_TAIL(__VA_ARGS__,)));           \
72         } while (0)
73
74
75 /** Datapath definition */
76 struct sfc_dp {
77         TAILQ_ENTRY(sfc_dp)             links;
78         const char                      *name;
79         enum sfc_dp_type                type;
80         /* Mask of required hardware/firmware capabilities */
81         unsigned int                    hw_fw_caps;
82 #define SFC_DP_HW_FW_CAP_EF10                           0x1
83 #define SFC_DP_HW_FW_CAP_RX_ES_SUPER_BUFFER             0x2
84 };
85
86 /** List of datapath variants */
87 TAILQ_HEAD(sfc_dp_list, sfc_dp);
88
89 /* Check if available HW/FW capabilities are sufficient for the datapath */
90 static inline bool
91 sfc_dp_match_hw_fw_caps(const struct sfc_dp *dp, unsigned int avail_caps)
92 {
93         return (dp->hw_fw_caps & avail_caps) == dp->hw_fw_caps;
94 }
95
96 struct sfc_dp *sfc_dp_find_by_name(struct sfc_dp_list *head,
97                                    enum sfc_dp_type type, const char *name);
98 struct sfc_dp *sfc_dp_find_by_caps(struct sfc_dp_list *head,
99                                    enum sfc_dp_type type,
100                                    unsigned int avail_caps);
101 int sfc_dp_register(struct sfc_dp_list *head, struct sfc_dp *entry);
102
103 #ifdef __cplusplus
104 }
105 #endif
106 #endif /* _SFC_DP_H */