1 /* SPDX-License-Identifier: BSD-3-Clause
3 * Copyright (c) 2017-2018 Solarflare Communications Inc.
6 * This software was jointly developed between OKTET Labs (under contract
7 * for Solarflare) and Solarflare Communications, Inc.
14 #include <sys/queue.h>
22 #define SFC_DIV_ROUND_UP(a, b) \
27 (_a + (_b - 1)) / _b; \
31 * Datapath exception handler to be provided by the control path.
33 typedef void (sfc_dp_exception_t)(void *ctrl);
36 SFC_DP_RX = 0, /**< Receive datapath */
37 SFC_DP_TX, /**< Transmit datapath */
41 /** Datapath queue run-time information */
45 struct rte_pci_addr pci_addr;
48 void sfc_dp_queue_init(struct sfc_dp_queue *dpq,
49 uint16_t port_id, uint16_t queue_id,
50 const struct rte_pci_addr *pci_addr);
53 * Helper macro to define datapath logging macros and have uniform
56 #define SFC_DP_LOG(dp_name, level, dpq, ...) \
58 const struct sfc_dp_queue *_dpq = (dpq); \
59 const struct rte_pci_addr *_addr = &(_dpq)->pci_addr; \
62 RTE_FMT("%s " PCI_PRI_FMT \
63 " #%" PRIu16 ".%" PRIu16 ": " \
64 RTE_FMT_HEAD(__VA_ARGS__,) "\n", \
66 _addr->domain, _addr->bus, \
67 _addr->devid, _addr->function, \
68 _dpq->port_id, _dpq->queue_id, \
69 RTE_FMT_TAIL(__VA_ARGS__,))); \
73 /** Datapath definition */
75 TAILQ_ENTRY(sfc_dp) links;
77 enum sfc_dp_type type;
78 /* Mask of required hardware/firmware capabilities */
79 unsigned int hw_fw_caps;
80 #define SFC_DP_HW_FW_CAP_EF10 0x1
83 /** List of datapath variants */
84 TAILQ_HEAD(sfc_dp_list, sfc_dp);
86 /* Check if available HW/FW capabilities are sufficient for the datapath */
88 sfc_dp_match_hw_fw_caps(const struct sfc_dp *dp, unsigned int avail_caps)
90 return (dp->hw_fw_caps & avail_caps) == dp->hw_fw_caps;
93 struct sfc_dp *sfc_dp_find_by_name(struct sfc_dp_list *head,
94 enum sfc_dp_type type, const char *name);
95 struct sfc_dp *sfc_dp_find_by_caps(struct sfc_dp_list *head,
96 enum sfc_dp_type type,
97 unsigned int avail_caps);
98 int sfc_dp_register(struct sfc_dp_list *head, struct sfc_dp *entry);
103 #endif /* _SFC_DP_H */