aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/qede/base/ecore_vf.h
blob: 334b588ccd3972ab4976e262fba8ff5d7044e4d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
 * Copyright (c) 2016 QLogic Corporation.
 * All rights reserved.
 * www.qlogic.com
 *
 * See LICENSE.qede_pmd for copyright and licensing details.
 */

#ifndef __ECORE_VF_H__
#define __ECORE_VF_H__

#include "ecore_status.h"
#include "ecore_vf_api.h"
#include "ecore_l2_api.h"
#include "ecore_vfpf_if.h"

#ifdef CONFIG_ECORE_SRIOV
/**
 *
 * @brief hw preparation for VF
 *	sends ACQUIRE message
 *
 * @param p_dev
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_hw_prepare(struct ecore_dev *p_dev);

/**
 *
 * @brief VF init in hw (equivalent to hw_init in PF)
 *      mark interrupts as enabled
 *
 * @param p_hwfn
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_pf_init(struct ecore_hwfn *p_hwfn);

/**
 *
 * @brief VF - start the RX Queue by sending a message to the PF
 *
 * @param p_hwfn
 * @param cid			- zero based within the VF
 * @param rx_queue_id		- zero based within the VF
 * @param sb			- VF status block for this queue
 * @param sb_index		- Index within the status block
 * @param bd_max_bytes		- maximum number of bytes per bd
 * @param bd_chain_phys_addr	- physical address of bd chain
 * @param cqe_pbl_addr		- physical address of pbl
 * @param cqe_pbl_size		- pbl size
 * @param pp_prod		- pointer to the producer to be
 *	    used in fasthwfn
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_pf_rxq_start(struct ecore_hwfn *p_hwfn,
					   u8 rx_queue_id,
					   u16 sb,
					   u8 sb_index,
					   u16 bd_max_bytes,
					   dma_addr_t bd_chain_phys_addr,
					   dma_addr_t cqe_pbl_addr,
					   u16 cqe_pbl_size,
					   void OSAL_IOMEM * *pp_prod);

/**
 *
 * @brief VF - start the TX queue by sending a message to the
 *        PF.
 *
 * @param p_hwfn
 * @param tx_queue_id		- zero based within the VF
 * @param sb			- status block for this queue
 * @param sb_index		- index within the status block
 * @param bd_chain_phys_addr	- physical address of tx chain
 * @param pp_doorbell		- pointer to address to which to
 *		write the doorbell too..
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_pf_txq_start(struct ecore_hwfn *p_hwfn,
					   u16 tx_queue_id,
					   u16 sb,
					   u8 sb_index,
					   dma_addr_t pbl_addr,
					   u16 pbl_size,
					   void OSAL_IOMEM * *pp_doorbell);

/**
 *
 * @brief VF - stop the RX queue by sending a message to the PF
 *
 * @param p_hwfn
 * @param rx_qid
 * @param cqe_completion
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_pf_rxq_stop(struct ecore_hwfn *p_hwfn,
					  u16 rx_qid, bool cqe_completion);

/**
 *
 * @brief VF - stop the TX queue by sending a message to the PF
 *
 * @param p_hwfn
 * @param tx_qid
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_pf_txq_stop(struct ecore_hwfn *p_hwfn,
					  u16 tx_qid);

/**
 * @brief VF - update the RX queue by sending a message to the
 *        PF
 *
 * @param p_hwfn
 * @param rx_queue_id
 * @param num_rxqs
 * @param init_sge_ring
 * @param comp_cqe_flg
 * @param comp_event_flg
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t ecore_vf_pf_rxqs_update(struct ecore_hwfn *p_hwfn,
					     u16 rx_queue_id,
					     u8 num_rxqs,
					     u8 comp_cqe_flg,
					     u8 comp_event_flg);

/**
 *
 * @brief VF - send a vport update command
 *
 * @param p_hwfn
 * @param params
 *
 * @return enum _ecore_status_t
 */
enum _ecore_status_t
ecore_vf_pf_vport_update(struct ecore_hwfn *p_hwfn,
			 struct ecore_sp_vport_update_params *p_params);

/**
 *
 * @brief VF - send a close message to PF
 *
 * @param p_hwfn
 *
 * @return enum _ecore_status
 */
enum _ecore_status_t ecore_vf_pf_reset(struct ecore_hwfn *p_hwfn);

/**
 *
 * @brief VF - free vf`s memories
 *
 * @param p_hwfn
 *
 * @return enum _ecore_status
 */
enum _ecore_status_t ecore_vf_pf_release(struct ecore_hwfn *p_hwfn);

/**
 *
 * @brief ecore_vf_get_igu_sb_id - Get the IGU SB ID for a given
 *        sb_id. For VFs igu sbs don't have to be contiguous
 *
 * @param p_hwfn
 * @param sb_id
 *
 * @return INLINE u16
 */
u16 ecore_vf_get_igu_sb_id(struct ecore_hwfn *p_hwfn, u16 sb_id);

/**
 * @brief ecore_vf_pf_vport_start - perform vport start for VF.
 *
 * @param p_hwfn
 * @param vport_id
 * @param mtu
 * @param inner_vlan_removal
 * @param tpa_mode
 * @param max_buffers_per_cqe,
 * @param only_untagged - default behavior regarding vlan acceptance
 *
 * @return enum _ecore_status
 */
enum _ecore_status_t ecore_vf_pf_vport_start(struct ecore_hwfn *p_hwfn,
					     u8 vport_id,
					     u16 mtu,
					     u8 inner_vlan_removal,
					     enum ecore_tpa_mode tpa_mode,
					     u8 max_buffers_per_cqe,
					     u8 only_untagged);

/**
 * @brief ecore_vf_pf_vport_stop - stop the VF's vport
 *
 * @param p_hwfn
 *
 * @return enum _ecore_status
 */
enum _ecore_status_t ecore_vf_pf_vport_stop(struct ecore_hwfn *p_hwfn);

enum _ecore_status_t ecore_vf_pf_filter_ucast(struct ecore_hwfn *p_hwfn,
					      struct ecore_filter_ucast
					      *p_param);

void ecore_vf_pf_filter_mcast(struct ecore_hwfn *p_hwfn,
			      struct ecore_filter_mcast *p_filter_cmd);

/**
 * @brief ecore_vf_pf_int_cleanup - clean the SB of the VF
 *
 * @param p_hwfn
 *
 * @return enum _ecore_status
 */
enum _ecore_status_t ecore_vf_pf_int_cleanup(struct ecore_hwfn *p_hwfn);

/**
 * @brief - return the link params in a given bulletin board
 *
 * @param p_hwfn
 * @param p_params - pointer to a struct to fill with link params
 * @param p_bulletin
 */
void __ecore_vf_get_link_params(struct ecore_hwfn *p_hwfn,
				struct ecore_mcp_link_params *p_params,
				struct ecore_bulletin_content *p_bulletin);

/**
 * @brief - return the link state in a given bulletin board
 *
 * @param p_hwfn
 * @param p_link - pointer to a struct to fill with link state
 * @param p_bulletin
 */
void __ecore_vf_get_link_state(struct ecore_hwfn *p_hwfn,
			       struct ecore_mcp_link_state *p_link,
			       struct ecore_bulletin_content *p_bulletin);

/**
 * @brief - return the link capabilities in a given bulletin board
 *
 * @param p_hwfn
 * @param p_link - pointer to a struct to fill with link capabilities
 * @param p_bulletin
 */
void __ecore_vf_get_link_caps(struct ecore_hwfn *p_hwfn,
			      struct ecore_mcp_link_capabilities *p_link_caps,
			      struct ecore_bulletin_content *p_bulletin);

#else
static OSAL_INLINE enum _ecore_status_t ecore_vf_hw_prepare(struct ecore_dev
							    *p_dev)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_init(struct ecore_hwfn
							 *p_hwfn)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_rxq_start(struct ecore_hwfn
							      *p_hwfn,
							      u8 rx_queue_id,
							      u16 sb,
							      u8 sb_index,
							      u16 bd_max_bytes,
							      dma_addr_t
							      bd_chain_phys_adr,
							      dma_addr_t
							      cqe_pbl_addr,
							      u16 cqe_pbl_size,
							      void OSAL_IOMEM *
							      *pp_prod)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_txq_start(struct ecore_hwfn
							      *p_hwfn,
							      u16 tx_queue_id,
							      u16 sb,
							      u8 sb_index,
							      dma_addr_t
							      pbl_addr,
							      u16 pbl_size,
							      void OSAL_IOMEM *
							      *pp_doorbell)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_rxq_stop(struct ecore_hwfn
							     *p_hwfn,
							     u16 rx_qid,
							     bool
							     cqe_completion)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_txq_stop(struct ecore_hwfn
							     *p_hwfn,
							     u16 tx_qid)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_rxqs_update(struct
								ecore_hwfn
								* p_hwfn,
								u16 rx_queue_id,
								u8 num_rxqs,
								u8 comp_cqe_flg,
								u8
								comp_event_flg)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_vport_update(
	struct ecore_hwfn *p_hwfn,
	struct ecore_sp_vport_update_params *p_params)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_reset(struct ecore_hwfn
							  *p_hwfn)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_release(struct ecore_hwfn
							    *p_hwfn)
{
	return ECORE_INVAL;
}

static OSAL_INLINE u16 ecore_vf_get_igu_sb_id(struct ecore_hwfn *p_hwfn,
					      u16 sb_id)
{
	return 0;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_vport_start(
	struct ecore_hwfn *p_hwfn, u8 vport_id, u16 mtu,
	u8 inner_vlan_removal, enum ecore_tpa_mode tpa_mode,
	u8 max_buffers_per_cqe, u8 only_untagged)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_vport_stop(
	struct ecore_hwfn *p_hwfn)
{
	return ECORE_INVAL;
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_filter_ucast(
	 struct ecore_hwfn *p_hwfn, struct ecore_filter_ucast *p_param)
{
	return ECORE_INVAL;
}

static OSAL_INLINE void ecore_vf_pf_filter_mcast(struct ecore_hwfn *p_hwfn,
						 struct ecore_filter_mcast
						 *p_filter_cmd)
{
}

static OSAL_INLINE enum _ecore_status_t ecore_vf_pf_int_cleanup(struct
								ecore_hwfn
								* p_hwfn)
{
	return ECORE_INVAL;
}

static OSAL_INLINE void __ecore_vf_get_link_params(struct ecore_hwfn *p_hwfn,
						   struct ecore_mcp_link_params
						   *p_params,
						   struct ecore_bulletin_content
						   *p_bulletin)
{
}

static OSAL_INLINE void __ecore_vf_get_link_state(struct ecore_hwfn *p_hwfn,
						  struct ecore_mcp_link_state
						  *p_link,
						  struct ecore_bulletin_content
						  *p_bulletin)
{
}

static OSAL_INLINE void __ecore_vf_get_link_caps(struct ecore_hwfn *p_hwfn,
						 struct
						 ecore_mcp_link_capabilities
						 * p_link_caps,
						 struct ecore_bulletin_content
						 *p_bulletin)
{
}
#endif

#endif /* __ECORE_VF_H__ */