~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/net/mana/hw_channel.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/net/mana/hw_channel.h (Architecture alpha) and /include/net/mana/hw_channel.h (Architecture m68k)


  1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-C      1 /* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
  2 /* Copyright (c) 2021, Microsoft Corporation.       2 /* Copyright (c) 2021, Microsoft Corporation. */
  3                                                     3 
  4 #ifndef _HW_CHANNEL_H                               4 #ifndef _HW_CHANNEL_H
  5 #define _HW_CHANNEL_H                               5 #define _HW_CHANNEL_H
  6                                                     6 
  7 #define DEFAULT_LOG2_THROTTLING_FOR_ERROR_EQ        7 #define DEFAULT_LOG2_THROTTLING_FOR_ERROR_EQ  4
  8                                                     8 
  9 #define HW_CHANNEL_MAX_REQUEST_SIZE  0x1000         9 #define HW_CHANNEL_MAX_REQUEST_SIZE  0x1000
 10 #define HW_CHANNEL_MAX_RESPONSE_SIZE 0x1000        10 #define HW_CHANNEL_MAX_RESPONSE_SIZE 0x1000
 11                                                    11 
 12 #define HW_CHANNEL_VF_BOOTSTRAP_QUEUE_DEPTH 1      12 #define HW_CHANNEL_VF_BOOTSTRAP_QUEUE_DEPTH 1
 13                                                    13 
 14 #define HWC_INIT_DATA_CQID              1          14 #define HWC_INIT_DATA_CQID              1
 15 #define HWC_INIT_DATA_RQID              2          15 #define HWC_INIT_DATA_RQID              2
 16 #define HWC_INIT_DATA_SQID              3          16 #define HWC_INIT_DATA_SQID              3
 17 #define HWC_INIT_DATA_QUEUE_DEPTH       4          17 #define HWC_INIT_DATA_QUEUE_DEPTH       4
 18 #define HWC_INIT_DATA_MAX_REQUEST       5          18 #define HWC_INIT_DATA_MAX_REQUEST       5
 19 #define HWC_INIT_DATA_MAX_RESPONSE      6          19 #define HWC_INIT_DATA_MAX_RESPONSE      6
 20 #define HWC_INIT_DATA_MAX_NUM_CQS       7          20 #define HWC_INIT_DATA_MAX_NUM_CQS       7
 21 #define HWC_INIT_DATA_PDID              8          21 #define HWC_INIT_DATA_PDID              8
 22 #define HWC_INIT_DATA_GPA_MKEY          9          22 #define HWC_INIT_DATA_GPA_MKEY          9
 23 #define HWC_INIT_DATA_PF_DEST_RQ_ID     10         23 #define HWC_INIT_DATA_PF_DEST_RQ_ID     10
 24 #define HWC_INIT_DATA_PF_DEST_CQ_ID     11         24 #define HWC_INIT_DATA_PF_DEST_CQ_ID     11
 25                                                    25 
 26 #define HWC_DATA_CFG_HWC_TIMEOUT 1                 26 #define HWC_DATA_CFG_HWC_TIMEOUT 1
 27                                                    27 
 28 #define HW_CHANNEL_WAIT_RESOURCE_TIMEOUT_MS 30     28 #define HW_CHANNEL_WAIT_RESOURCE_TIMEOUT_MS 30000
 29                                                    29 
 30 /* Structures labeled with "HW DATA" are excha     30 /* Structures labeled with "HW DATA" are exchanged with the hardware. All of
 31  * them are naturally aligned and hence don't      31  * them are naturally aligned and hence don't need __packed.
 32  */                                                32  */
 33                                                    33 
 34 union hwc_init_eq_id_db {                          34 union hwc_init_eq_id_db {
 35         u32 as_uint32;                             35         u32 as_uint32;
 36                                                    36 
 37         struct {                                   37         struct {
 38                 u32 eq_id       : 16;              38                 u32 eq_id       : 16;
 39                 u32 doorbell    : 16;              39                 u32 doorbell    : 16;
 40         };                                         40         };
 41 }; /* HW DATA */                                   41 }; /* HW DATA */
 42                                                    42 
 43 union hwc_init_type_data {                         43 union hwc_init_type_data {
 44         u32 as_uint32;                             44         u32 as_uint32;
 45                                                    45 
 46         struct {                                   46         struct {
 47                 u32 value       : 24;              47                 u32 value       : 24;
 48                 u32 type        :  8;              48                 u32 type        :  8;
 49         };                                         49         };
 50 }; /* HW DATA */                                   50 }; /* HW DATA */
 51                                                    51 
 52 struct hwc_rx_oob {                                52 struct hwc_rx_oob {
 53         u32 type        : 6;                       53         u32 type        : 6;
 54         u32 eom         : 1;                       54         u32 eom         : 1;
 55         u32 som         : 1;                       55         u32 som         : 1;
 56         u32 vendor_err  : 8;                       56         u32 vendor_err  : 8;
 57         u32 reserved1   : 16;                      57         u32 reserved1   : 16;
 58                                                    58 
 59         u32 src_virt_wq : 24;                      59         u32 src_virt_wq : 24;
 60         u32 src_vfid    : 8;                       60         u32 src_vfid    : 8;
 61                                                    61 
 62         u32 reserved2;                             62         u32 reserved2;
 63                                                    63 
 64         union {                                    64         union {
 65                 u32 wqe_addr_low;                  65                 u32 wqe_addr_low;
 66                 u32 wqe_offset;                    66                 u32 wqe_offset;
 67         };                                         67         };
 68                                                    68 
 69         u32 wqe_addr_high;                         69         u32 wqe_addr_high;
 70                                                    70 
 71         u32 client_data_unit    : 14;              71         u32 client_data_unit    : 14;
 72         u32 reserved3           : 18;              72         u32 reserved3           : 18;
 73                                                    73 
 74         u32 tx_oob_data_size;                      74         u32 tx_oob_data_size;
 75                                                    75 
 76         u32 chunk_offset        : 21;              76         u32 chunk_offset        : 21;
 77         u32 reserved4           : 11;              77         u32 reserved4           : 11;
 78 }; /* HW DATA */                                   78 }; /* HW DATA */
 79                                                    79 
 80 struct hwc_tx_oob {                                80 struct hwc_tx_oob {
 81         u32 reserved1;                             81         u32 reserved1;
 82                                                    82 
 83         u32 reserved2;                             83         u32 reserved2;
 84                                                    84 
 85         u32 vrq_id      : 24;                      85         u32 vrq_id      : 24;
 86         u32 dest_vfid   : 8;                       86         u32 dest_vfid   : 8;
 87                                                    87 
 88         u32 vrcq_id     : 24;                      88         u32 vrcq_id     : 24;
 89         u32 reserved3   : 8;                       89         u32 reserved3   : 8;
 90                                                    90 
 91         u32 vscq_id     : 24;                      91         u32 vscq_id     : 24;
 92         u32 loopback    : 1;                       92         u32 loopback    : 1;
 93         u32 lso_override: 1;                       93         u32 lso_override: 1;
 94         u32 dest_pf     : 1;                       94         u32 dest_pf     : 1;
 95         u32 reserved4   : 5;                       95         u32 reserved4   : 5;
 96                                                    96 
 97         u32 vsq_id      : 24;                      97         u32 vsq_id      : 24;
 98         u32 reserved5   : 8;                       98         u32 reserved5   : 8;
 99 }; /* HW DATA */                                   99 }; /* HW DATA */
100                                                   100 
101 struct hwc_work_request {                         101 struct hwc_work_request {
102         void *buf_va;                             102         void *buf_va;
103         void *buf_sge_addr;                       103         void *buf_sge_addr;
104         u32 buf_len;                              104         u32 buf_len;
105         u32 msg_size;                             105         u32 msg_size;
106                                                   106 
107         struct gdma_wqe_request wqe_req;          107         struct gdma_wqe_request wqe_req;
108         struct hwc_tx_oob tx_oob;                 108         struct hwc_tx_oob tx_oob;
109                                                   109 
110         struct gdma_sge sge;                      110         struct gdma_sge sge;
111 };                                                111 };
112                                                   112 
113 /* hwc_dma_buf represents the array of in-flig    113 /* hwc_dma_buf represents the array of in-flight WQEs.
114  * mem_info as know as the GDMA mapped memory     114  * mem_info as know as the GDMA mapped memory is partitioned and used by
115  * in-flight WQEs.                                115  * in-flight WQEs.
116  * The number of WQEs is determined by the num    116  * The number of WQEs is determined by the number of in-flight messages.
117  */                                               117  */
118 struct hwc_dma_buf {                              118 struct hwc_dma_buf {
119         struct gdma_mem_info mem_info;            119         struct gdma_mem_info mem_info;
120                                                   120 
121         u32 gpa_mkey;                             121         u32 gpa_mkey;
122                                                   122 
123         u32 num_reqs;                             123         u32 num_reqs;
124         struct hwc_work_request reqs[] __count    124         struct hwc_work_request reqs[] __counted_by(num_reqs);
125 };                                                125 };
126                                                   126 
127 typedef void hwc_rx_event_handler_t(void *ctx,    127 typedef void hwc_rx_event_handler_t(void *ctx, u32 gdma_rxq_id,
128                                     const stru    128                                     const struct hwc_rx_oob *rx_oob);
129                                                   129 
130 typedef void hwc_tx_event_handler_t(void *ctx,    130 typedef void hwc_tx_event_handler_t(void *ctx, u32 gdma_txq_id,
131                                     const stru    131                                     const struct hwc_rx_oob *rx_oob);
132                                                   132 
133 struct hwc_cq {                                   133 struct hwc_cq {
134         struct hw_channel_context *hwc;           134         struct hw_channel_context *hwc;
135                                                   135 
136         struct gdma_queue *gdma_cq;               136         struct gdma_queue *gdma_cq;
137         struct gdma_queue *gdma_eq;               137         struct gdma_queue *gdma_eq;
138         struct gdma_comp *comp_buf;               138         struct gdma_comp *comp_buf;
139         u16 queue_depth;                          139         u16 queue_depth;
140                                                   140 
141         hwc_rx_event_handler_t *rx_event_handl    141         hwc_rx_event_handler_t *rx_event_handler;
142         void *rx_event_ctx;                       142         void *rx_event_ctx;
143                                                   143 
144         hwc_tx_event_handler_t *tx_event_handl    144         hwc_tx_event_handler_t *tx_event_handler;
145         void *tx_event_ctx;                       145         void *tx_event_ctx;
146 };                                                146 };
147                                                   147 
148 struct hwc_wq {                                   148 struct hwc_wq {
149         struct hw_channel_context *hwc;           149         struct hw_channel_context *hwc;
150                                                   150 
151         struct gdma_queue *gdma_wq;               151         struct gdma_queue *gdma_wq;
152         struct hwc_dma_buf *msg_buf;              152         struct hwc_dma_buf *msg_buf;
153         u16 queue_depth;                          153         u16 queue_depth;
154                                                   154 
155         struct hwc_cq *hwc_cq;                    155         struct hwc_cq *hwc_cq;
156 };                                                156 };
157                                                   157 
158 struct hwc_caller_ctx {                           158 struct hwc_caller_ctx {
159         struct completion comp_event;             159         struct completion comp_event;
160         void *output_buf;                         160         void *output_buf;
161         u32 output_buflen;                        161         u32 output_buflen;
162                                                   162 
163         u32 error; /* Linux error code */         163         u32 error; /* Linux error code */
164         u32 status_code;                          164         u32 status_code;
165 };                                                165 };
166                                                   166 
167 struct hw_channel_context {                       167 struct hw_channel_context {
168         struct gdma_dev *gdma_dev;                168         struct gdma_dev *gdma_dev;
169         struct device *dev;                       169         struct device *dev;
170                                                   170 
171         u16 num_inflight_msg;                     171         u16 num_inflight_msg;
172         u32 max_req_msg_size;                     172         u32 max_req_msg_size;
173                                                   173 
174         u16 hwc_init_q_depth_max;                 174         u16 hwc_init_q_depth_max;
175         u32 hwc_init_max_req_msg_size;            175         u32 hwc_init_max_req_msg_size;
176         u32 hwc_init_max_resp_msg_size;           176         u32 hwc_init_max_resp_msg_size;
177                                                   177 
178         struct completion hwc_init_eqe_comp;      178         struct completion hwc_init_eqe_comp;
179                                                   179 
180         struct hwc_wq *rxq;                       180         struct hwc_wq *rxq;
181         struct hwc_wq *txq;                       181         struct hwc_wq *txq;
182         struct hwc_cq *cq;                        182         struct hwc_cq *cq;
183                                                   183 
184         struct semaphore sema;                    184         struct semaphore sema;
185         struct gdma_resource inflight_msg_res;    185         struct gdma_resource inflight_msg_res;
186                                                   186 
187         u32 pf_dest_vrq_id;                       187         u32 pf_dest_vrq_id;
188         u32 pf_dest_vrcq_id;                      188         u32 pf_dest_vrcq_id;
189         u32 hwc_timeout;                          189         u32 hwc_timeout;
190                                                   190 
191         struct hwc_caller_ctx *caller_ctx;        191         struct hwc_caller_ctx *caller_ctx;
192 };                                                192 };
193                                                   193 
194 int mana_hwc_create_channel(struct gdma_contex    194 int mana_hwc_create_channel(struct gdma_context *gc);
195 void mana_hwc_destroy_channel(struct gdma_cont    195 void mana_hwc_destroy_channel(struct gdma_context *gc);
196                                                   196 
197 int mana_hwc_send_request(struct hw_channel_co    197 int mana_hwc_send_request(struct hw_channel_context *hwc, u32 req_len,
198                           const void *req, u32    198                           const void *req, u32 resp_len, void *resp);
199                                                   199 
200 #endif /* _HW_CHANNEL_H */                        200 #endif /* _HW_CHANNEL_H */
201                                                   201 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php