1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/list.h>
3 #include <linux/errno.h>
6 #include "i40e_prototype.h"
7 #include "i40evf_client.h"
10 const char i40evf_client_interface_version_str
[] = I40EVF_CLIENT_VERSION_STR
;
11 static struct i40e_client
*vf_registered_client
;
12 static LIST_HEAD(i40evf_devices
);
13 static DEFINE_MUTEX(i40evf_device_mutex
);
15 static u32
i40evf_client_virtchnl_send(struct i40e_info
*ldev
,
16 struct i40e_client
*client
,
19 static int i40evf_client_setup_qvlist(struct i40e_info
*ldev
,
20 struct i40e_client
*client
,
21 struct i40e_qvlist_info
*qvlist_info
);
23 static struct i40e_ops i40evf_lan_ops
= {
24 .virtchnl_send
= i40evf_client_virtchnl_send
,
25 .setup_qvlist
= i40evf_client_setup_qvlist
,
29 * i40evf_client_get_params - retrieve relevant client parameters
30 * @vsi: VSI with parameters
31 * @params: client param struct
34 void i40evf_client_get_params(struct i40e_vsi
*vsi
, struct i40e_params
*params
)
38 memset(params
, 0, sizeof(struct i40e_params
));
39 params
->mtu
= vsi
->netdev
->mtu
;
40 params
->link_up
= vsi
->back
->link_up
;
42 for (i
= 0; i
< I40E_MAX_USER_PRIORITY
; i
++) {
43 params
->qos
.prio_qos
[i
].tc
= 0;
44 params
->qos
.prio_qos
[i
].qs_handle
= vsi
->qs_handle
;
49 * i40evf_notify_client_message - call the client message receive callback
50 * @vsi: the VSI associated with this client
51 * @msg: message buffer
52 * @len: length of message
54 * If there is a client to this VSI, call the client
56 void i40evf_notify_client_message(struct i40e_vsi
*vsi
, u8
*msg
, u16 len
)
58 struct i40e_client_instance
*cinst
;
63 cinst
= vsi
->back
->cinst
;
64 if (!cinst
|| !cinst
->client
|| !cinst
->client
->ops
||
65 !cinst
->client
->ops
->virtchnl_receive
) {
66 dev_dbg(&vsi
->back
->pdev
->dev
,
67 "Cannot locate client instance virtchnl_receive function\n");
70 cinst
->client
->ops
->virtchnl_receive(&cinst
->lan_info
, cinst
->client
,
75 * i40evf_notify_client_l2_params - call the client notify callback
76 * @vsi: the VSI with l2 param changes
78 * If there is a client to this VSI, call the client
80 void i40evf_notify_client_l2_params(struct i40e_vsi
*vsi
)
82 struct i40e_client_instance
*cinst
;
83 struct i40e_params params
;
88 cinst
= vsi
->back
->cinst
;
90 if (!cinst
|| !cinst
->client
|| !cinst
->client
->ops
||
91 !cinst
->client
->ops
->l2_param_change
) {
92 dev_dbg(&vsi
->back
->pdev
->dev
,
93 "Cannot locate client instance l2_param_change function\n");
96 i40evf_client_get_params(vsi
, ¶ms
);
97 cinst
->lan_info
.params
= params
;
98 cinst
->client
->ops
->l2_param_change(&cinst
->lan_info
, cinst
->client
,
103 * i40evf_notify_client_open - call the client open callback
104 * @vsi: the VSI with netdev opened
106 * If there is a client to this netdev, call the client with open
108 void i40evf_notify_client_open(struct i40e_vsi
*vsi
)
110 struct i40evf_adapter
*adapter
= vsi
->back
;
111 struct i40e_client_instance
*cinst
= adapter
->cinst
;
114 if (!cinst
|| !cinst
->client
|| !cinst
->client
->ops
||
115 !cinst
->client
->ops
->open
) {
116 dev_dbg(&vsi
->back
->pdev
->dev
,
117 "Cannot locate client instance open function\n");
120 if (!(test_bit(__I40E_CLIENT_INSTANCE_OPENED
, &cinst
->state
))) {
121 ret
= cinst
->client
->ops
->open(&cinst
->lan_info
, cinst
->client
);
123 set_bit(__I40E_CLIENT_INSTANCE_OPENED
, &cinst
->state
);
128 * i40evf_client_release_qvlist - send a message to the PF to release iwarp qv map
129 * @ldev: pointer to L2 context.
131 * Return 0 on success or < 0 on error
133 static int i40evf_client_release_qvlist(struct i40e_info
*ldev
)
135 struct i40evf_adapter
*adapter
= ldev
->vf
;
138 if (adapter
->aq_required
)
141 err
= i40e_aq_send_msg_to_pf(&adapter
->hw
,
142 VIRTCHNL_OP_RELEASE_IWARP_IRQ_MAP
,
143 I40E_SUCCESS
, NULL
, 0, NULL
);
146 dev_err(&adapter
->pdev
->dev
,
147 "Unable to send iWarp vector release message to PF, error %d, aq status %d\n",
148 err
, adapter
->hw
.aq
.asq_last_status
);
154 * i40evf_notify_client_close - call the client close callback
155 * @vsi: the VSI with netdev closed
156 * @reset: true when close called due to reset pending
158 * If there is a client to this netdev, call the client with close
160 void i40evf_notify_client_close(struct i40e_vsi
*vsi
, bool reset
)
162 struct i40evf_adapter
*adapter
= vsi
->back
;
163 struct i40e_client_instance
*cinst
= adapter
->cinst
;
165 if (!cinst
|| !cinst
->client
|| !cinst
->client
->ops
||
166 !cinst
->client
->ops
->close
) {
167 dev_dbg(&vsi
->back
->pdev
->dev
,
168 "Cannot locate client instance close function\n");
171 cinst
->client
->ops
->close(&cinst
->lan_info
, cinst
->client
, reset
);
172 i40evf_client_release_qvlist(&cinst
->lan_info
);
173 clear_bit(__I40E_CLIENT_INSTANCE_OPENED
, &cinst
->state
);
177 * i40evf_client_add_instance - add a client instance to the instance list
178 * @adapter: pointer to the board struct
179 * @client: pointer to a client struct in the client list.
181 * Returns cinst ptr on success, NULL on failure
183 static struct i40e_client_instance
*
184 i40evf_client_add_instance(struct i40evf_adapter
*adapter
)
186 struct i40e_client_instance
*cinst
= NULL
;
187 struct i40e_vsi
*vsi
= &adapter
->vsi
;
188 struct netdev_hw_addr
*mac
= NULL
;
189 struct i40e_params params
;
191 if (!vf_registered_client
)
194 if (adapter
->cinst
) {
195 cinst
= adapter
->cinst
;
199 cinst
= kzalloc(sizeof(*cinst
), GFP_KERNEL
);
203 cinst
->lan_info
.vf
= (void *)adapter
;
204 cinst
->lan_info
.netdev
= vsi
->netdev
;
205 cinst
->lan_info
.pcidev
= adapter
->pdev
;
206 cinst
->lan_info
.fid
= 0;
207 cinst
->lan_info
.ftype
= I40E_CLIENT_FTYPE_VF
;
208 cinst
->lan_info
.hw_addr
= adapter
->hw
.hw_addr
;
209 cinst
->lan_info
.ops
= &i40evf_lan_ops
;
210 cinst
->lan_info
.version
.major
= I40EVF_CLIENT_VERSION_MAJOR
;
211 cinst
->lan_info
.version
.minor
= I40EVF_CLIENT_VERSION_MINOR
;
212 cinst
->lan_info
.version
.build
= I40EVF_CLIENT_VERSION_BUILD
;
213 i40evf_client_get_params(vsi
, ¶ms
);
214 cinst
->lan_info
.params
= params
;
215 set_bit(__I40E_CLIENT_INSTANCE_NONE
, &cinst
->state
);
217 cinst
->lan_info
.msix_count
= adapter
->num_iwarp_msix
;
218 cinst
->lan_info
.msix_entries
=
219 &adapter
->msix_entries
[adapter
->iwarp_base_vector
];
221 mac
= list_first_entry(&cinst
->lan_info
.netdev
->dev_addrs
.list
,
222 struct netdev_hw_addr
, list
);
224 ether_addr_copy(cinst
->lan_info
.lanmac
, mac
->addr
);
226 dev_err(&adapter
->pdev
->dev
, "MAC address list is empty!\n");
228 cinst
->client
= vf_registered_client
;
229 adapter
->cinst
= cinst
;
235 * i40evf_client_del_instance - removes a client instance from the list
236 * @adapter: pointer to the board struct
237 * @client: pointer to the client struct
241 void i40evf_client_del_instance(struct i40evf_adapter
*adapter
)
243 kfree(adapter
->cinst
);
244 adapter
->cinst
= NULL
;
248 * i40evf_client_subtask - client maintenance work
249 * @adapter: board private structure
251 void i40evf_client_subtask(struct i40evf_adapter
*adapter
)
253 struct i40e_client
*client
= vf_registered_client
;
254 struct i40e_client_instance
*cinst
;
257 if (adapter
->state
< __I40EVF_DOWN
)
260 /* first check client is registered */
264 /* Add the client instance to the instance list */
265 cinst
= i40evf_client_add_instance(adapter
);
269 dev_info(&adapter
->pdev
->dev
, "Added instance of Client %s\n",
272 if (!test_bit(__I40E_CLIENT_INSTANCE_OPENED
, &cinst
->state
)) {
273 /* Send an Open request to the client */
275 if (client
->ops
&& client
->ops
->open
)
276 ret
= client
->ops
->open(&cinst
->lan_info
, client
);
278 set_bit(__I40E_CLIENT_INSTANCE_OPENED
,
281 /* remove client instance */
282 i40evf_client_del_instance(adapter
);
287 * i40evf_lan_add_device - add a lan device struct to the list of lan devices
288 * @adapter: pointer to the board struct
290 * Returns 0 on success or none 0 on error
292 int i40evf_lan_add_device(struct i40evf_adapter
*adapter
)
294 struct i40e_device
*ldev
;
297 mutex_lock(&i40evf_device_mutex
);
298 list_for_each_entry(ldev
, &i40evf_devices
, list
) {
299 if (ldev
->vf
== adapter
) {
304 ldev
= kzalloc(sizeof(*ldev
), GFP_KERNEL
);
310 INIT_LIST_HEAD(&ldev
->list
);
311 list_add(&ldev
->list
, &i40evf_devices
);
312 dev_info(&adapter
->pdev
->dev
, "Added LAN device bus=0x%02x dev=0x%02x func=0x%02x\n",
313 adapter
->hw
.bus
.bus_id
, adapter
->hw
.bus
.device
,
314 adapter
->hw
.bus
.func
);
316 /* Since in some cases register may have happened before a device gets
317 * added, we can schedule a subtask to go initiate the clients.
319 adapter
->flags
|= I40EVF_FLAG_SERVICE_CLIENT_REQUESTED
;
322 mutex_unlock(&i40evf_device_mutex
);
327 * i40evf_lan_del_device - removes a lan device from the device list
328 * @adapter: pointer to the board struct
330 * Returns 0 on success or non-0 on error
332 int i40evf_lan_del_device(struct i40evf_adapter
*adapter
)
334 struct i40e_device
*ldev
, *tmp
;
337 mutex_lock(&i40evf_device_mutex
);
338 list_for_each_entry_safe(ldev
, tmp
, &i40evf_devices
, list
) {
339 if (ldev
->vf
== adapter
) {
340 dev_info(&adapter
->pdev
->dev
,
341 "Deleted LAN device bus=0x%02x dev=0x%02x func=0x%02x\n",
342 adapter
->hw
.bus
.bus_id
, adapter
->hw
.bus
.device
,
343 adapter
->hw
.bus
.func
);
344 list_del(&ldev
->list
);
351 mutex_unlock(&i40evf_device_mutex
);
356 * i40evf_client_release - release client specific resources
357 * @client: pointer to the registered client
360 static void i40evf_client_release(struct i40e_client
*client
)
362 struct i40e_client_instance
*cinst
;
363 struct i40e_device
*ldev
;
364 struct i40evf_adapter
*adapter
;
366 mutex_lock(&i40evf_device_mutex
);
367 list_for_each_entry(ldev
, &i40evf_devices
, list
) {
369 cinst
= adapter
->cinst
;
372 if (test_bit(__I40E_CLIENT_INSTANCE_OPENED
, &cinst
->state
)) {
373 if (client
->ops
&& client
->ops
->close
)
374 client
->ops
->close(&cinst
->lan_info
, client
,
376 i40evf_client_release_qvlist(&cinst
->lan_info
);
377 clear_bit(__I40E_CLIENT_INSTANCE_OPENED
, &cinst
->state
);
379 dev_warn(&adapter
->pdev
->dev
,
380 "Client %s instance closed\n", client
->name
);
382 /* delete the client instance */
383 i40evf_client_del_instance(adapter
);
384 dev_info(&adapter
->pdev
->dev
, "Deleted client instance of Client %s\n",
387 mutex_unlock(&i40evf_device_mutex
);
391 * i40evf_client_prepare - prepare client specific resources
392 * @client: pointer to the registered client
395 static void i40evf_client_prepare(struct i40e_client
*client
)
397 struct i40e_device
*ldev
;
398 struct i40evf_adapter
*adapter
;
400 mutex_lock(&i40evf_device_mutex
);
401 list_for_each_entry(ldev
, &i40evf_devices
, list
) {
403 /* Signal the watchdog to service the client */
404 adapter
->flags
|= I40EVF_FLAG_SERVICE_CLIENT_REQUESTED
;
406 mutex_unlock(&i40evf_device_mutex
);
410 * i40evf_client_virtchnl_send - send a message to the PF instance
411 * @ldev: pointer to L2 context.
412 * @client: Client pointer.
413 * @msg: pointer to message buffer
414 * @len: message length
416 * Return 0 on success or < 0 on error
418 static u32
i40evf_client_virtchnl_send(struct i40e_info
*ldev
,
419 struct i40e_client
*client
,
422 struct i40evf_adapter
*adapter
= ldev
->vf
;
425 if (adapter
->aq_required
)
428 err
= i40e_aq_send_msg_to_pf(&adapter
->hw
, VIRTCHNL_OP_IWARP
,
429 I40E_SUCCESS
, msg
, len
, NULL
);
431 dev_err(&adapter
->pdev
->dev
, "Unable to send iWarp message to PF, error %d, aq status %d\n",
432 err
, adapter
->hw
.aq
.asq_last_status
);
438 * i40evf_client_setup_qvlist - send a message to the PF to setup iwarp qv map
439 * @ldev: pointer to L2 context.
440 * @client: Client pointer.
441 * @qv_info: queue and vector list
443 * Return 0 on success or < 0 on error
445 static int i40evf_client_setup_qvlist(struct i40e_info
*ldev
,
446 struct i40e_client
*client
,
447 struct i40e_qvlist_info
*qvlist_info
)
449 struct virtchnl_iwarp_qvlist_info
*v_qvlist_info
;
450 struct i40evf_adapter
*adapter
= ldev
->vf
;
451 struct i40e_qv_info
*qv_info
;
456 if (adapter
->aq_required
)
459 /* A quick check on whether the vectors belong to the client */
460 for (i
= 0; i
< qvlist_info
->num_vectors
; i
++) {
461 qv_info
= &qvlist_info
->qv_info
[i
];
464 v_idx
= qv_info
->v_idx
;
466 (adapter
->iwarp_base_vector
+ adapter
->num_iwarp_msix
)) ||
467 (v_idx
< adapter
->iwarp_base_vector
))
471 v_qvlist_info
= (struct virtchnl_iwarp_qvlist_info
*)qvlist_info
;
472 msg_size
= sizeof(struct virtchnl_iwarp_qvlist_info
) +
473 (sizeof(struct virtchnl_iwarp_qv_info
) *
474 (v_qvlist_info
->num_vectors
- 1));
476 adapter
->client_pending
|= BIT(VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP
);
477 err
= i40e_aq_send_msg_to_pf(&adapter
->hw
,
478 VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP
,
479 I40E_SUCCESS
, (u8
*)v_qvlist_info
, msg_size
, NULL
);
482 dev_err(&adapter
->pdev
->dev
,
483 "Unable to send iWarp vector config message to PF, error %d, aq status %d\n",
484 err
, adapter
->hw
.aq
.asq_last_status
);
489 for (i
= 0; i
< 5; i
++) {
491 if (!(adapter
->client_pending
&
492 BIT(VIRTCHNL_OP_CONFIG_IWARP_IRQ_MAP
))) {
502 * i40evf_register_client - Register a i40e client driver with the L2 driver
503 * @client: pointer to the i40e_client struct
505 * Returns 0 on success or non-0 on error
507 int i40evf_register_client(struct i40e_client
*client
)
516 if (strlen(client
->name
) == 0) {
517 pr_info("i40evf: Failed to register client with no name\n");
522 if (vf_registered_client
) {
523 pr_info("i40evf: Client %s has already been registered!\n",
529 if ((client
->version
.major
!= I40EVF_CLIENT_VERSION_MAJOR
) ||
530 (client
->version
.minor
!= I40EVF_CLIENT_VERSION_MINOR
)) {
531 pr_info("i40evf: Failed to register client %s due to mismatched client interface version\n",
533 pr_info("Client is using version: %02d.%02d.%02d while LAN driver supports %s\n",
534 client
->version
.major
, client
->version
.minor
,
535 client
->version
.build
,
536 i40evf_client_interface_version_str
);
541 vf_registered_client
= client
;
543 i40evf_client_prepare(client
);
545 pr_info("i40evf: Registered client %s with return code %d\n",
550 EXPORT_SYMBOL(i40evf_register_client
);
553 * i40evf_unregister_client - Unregister a i40e client driver with the L2 driver
554 * @client: pointer to the i40e_client struct
556 * Returns 0 on success or non-0 on error
558 int i40evf_unregister_client(struct i40e_client
*client
)
562 /* When a unregister request comes through we would have to send
563 * a close for each of the client instances that were opened.
564 * client_release function is called to handle this.
566 i40evf_client_release(client
);
568 if (vf_registered_client
!= client
) {
569 pr_info("i40evf: Client %s has not been registered\n",
574 vf_registered_client
= NULL
;
575 pr_info("i40evf: Unregistered client %s\n", client
->name
);
579 EXPORT_SYMBOL(i40evf_unregister_client
);