1 /* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */
3 * Copyright(c) 2020 Intel Corporation.
8 * This file contains HFI1 support for IPOIB functionality
14 #include <linux/types.h>
15 #include <linux/stddef.h>
16 #include <linux/atomic.h>
17 #include <linux/netdevice.h>
18 #include <linux/slab.h>
19 #include <linux/skbuff.h>
20 #include <linux/list.h>
21 #include <linux/if_infiniband.h>
27 #include <rdma/ib_verbs.h>
29 #define HFI1_IPOIB_ENTROPY_SHIFT 24
31 #define HFI1_IPOIB_TXREQ_NAME_LEN 32
33 #define HFI1_IPOIB_PSEUDO_LEN 20
34 #define HFI1_IPOIB_ENCAP_LEN 4
36 struct hfi1_ipoib_dev_priv
;
38 union hfi1_ipoib_flow
{
43 } __attribute__((__packed__
));
47 * struct hfi1_ipoib_circ_buf - List of items to be processed
48 * @items: ring of items
51 * @max_items: max items + 1 that the ring can contain
52 * @producer_lock: producer sync lock
53 * @consumer_lock: consumer sync lock
55 struct hfi1_ipoib_circ_buf
{
59 unsigned long max_items
;
60 spinlock_t producer_lock
; /* head sync lock */
61 spinlock_t consumer_lock
; /* tail sync lock */
65 * struct hfi1_ipoib_txq - IPOIB per Tx queue information
66 * @priv: private pointer
68 * @tx_list: tx request list
69 * @sent_txreqs: count of txreqs posted to sdma
70 * @stops: count of stops of queue
71 * @ring_full: ring has been filled
72 * @no_desc: descriptor shortage seen
73 * @flow: tracks when list needs to be flushed for a flow change
74 * @q_idx: ipoib Tx queue index
75 * @pkts_sent: indicator packets have been sent from this queue
76 * @wait: iowait structure
77 * @complete_txreqs: count of txreqs completed by sdma
78 * @napi: pointer to tx napi interface
79 * @tx_ring: ring of ipoib txreqs to be reaped by napi callback
81 struct hfi1_ipoib_txq
{
82 struct hfi1_ipoib_dev_priv
*priv
;
83 struct sdma_engine
*sde
;
84 struct list_head tx_list
;
89 union hfi1_ipoib_flow flow
;
94 atomic64_t ____cacheline_aligned_in_smp complete_txreqs
;
95 struct napi_struct
*napi
;
96 struct hfi1_ipoib_circ_buf tx_ring
;
99 struct hfi1_ipoib_dev_priv
{
100 struct hfi1_devdata
*dd
;
101 struct net_device
*netdev
;
102 struct ib_device
*device
;
103 struct hfi1_ipoib_txq
*txqs
;
104 struct kmem_cache
*txreq_cache
;
105 struct napi_struct
*tx_napis
;
111 const struct net_device_ops
*netdev_ops
;
115 /* hfi1 ipoib rdma netdev's private data structure */
116 struct hfi1_ipoib_rdma_netdev
{
117 struct rdma_netdev rn
; /* keep this first */
118 /* followed by device private data */
119 struct hfi1_ipoib_dev_priv dev_priv
;
122 static inline struct hfi1_ipoib_dev_priv
*
123 hfi1_ipoib_priv(const struct net_device
*dev
)
125 return &((struct hfi1_ipoib_rdma_netdev
*)netdev_priv(dev
))->dev_priv
;
128 int hfi1_ipoib_send_dma(struct net_device
*dev
,
130 struct ib_ah
*address
,
133 int hfi1_ipoib_txreq_init(struct hfi1_ipoib_dev_priv
*priv
);
134 void hfi1_ipoib_txreq_deinit(struct hfi1_ipoib_dev_priv
*priv
);
136 int hfi1_ipoib_rxq_init(struct net_device
*dev
);
137 void hfi1_ipoib_rxq_deinit(struct net_device
*dev
);
139 void hfi1_ipoib_napi_tx_enable(struct net_device
*dev
);
140 void hfi1_ipoib_napi_tx_disable(struct net_device
*dev
);
142 struct sk_buff
*hfi1_ipoib_prepare_skb(struct hfi1_netdev_rxq
*rxq
,
143 int size
, void *data
);
145 int hfi1_ipoib_rn_get_params(struct ib_device
*device
,
147 enum rdma_netdev_t type
,
148 struct rdma_netdev_alloc_params
*params
);
150 #endif /* _IPOIB_H */