blob: 4a08ffb75d2e8e66377206768d586202c561bd08 [file] [log] [blame]
Faisal Latif4e9042e2016-01-20 13:40:08 -06001/*******************************************************************************
2*
3* Copyright (c) 2015-2016 Intel Corporation. All rights reserved.
4*
5* This software is available to you under a choice of one of two
6* licenses. You may choose to be licensed under the terms of the GNU
7* General Public License (GPL) Version 2, available from the file
8* COPYING in the main directory of this source tree, or the
9* OpenFabrics.org BSD license below:
10*
11* Redistribution and use in source and binary forms, with or
12* without modification, are permitted provided that the following
13* conditions are met:
14*
15* - Redistributions of source code must retain the above
16* copyright notice, this list of conditions and the following
17* disclaimer.
18*
19* - Redistributions in binary form must reproduce the above
20* copyright notice, this list of conditions and the following
21* disclaimer in the documentation and/or other materials
22* provided with the distribution.
23*
24* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31* SOFTWARE.
32*
33*******************************************************************************/
34
35#include <linux/module.h>
36#include <linux/moduleparam.h>
37#include <linux/netdevice.h>
38#include <linux/etherdevice.h>
39#include <linux/ethtool.h>
40#include <linux/mii.h>
41#include <linux/if_vlan.h>
42#include <linux/crc32.h>
43#include <linux/in.h>
44#include <linux/ip.h>
45#include <linux/tcp.h>
46#include <linux/init.h>
47#include <linux/io.h>
48#include <asm/irq.h>
49#include <asm/byteorder.h>
50#include <net/netevent.h>
51#include <net/neighbour.h>
52#include "i40iw.h"
53
54/**
55 * i40iw_arp_table - manage arp table
56 * @iwdev: iwarp device
57 * @ip_addr: ip address for device
58 * @mac_addr: mac address ptr
59 * @action: modify, delete or add
60 */
61int i40iw_arp_table(struct i40iw_device *iwdev,
Ismail, Mustafa20c61f72016-04-18 10:33:07 -050062 u32 *ip_addr,
Faisal Latif4e9042e2016-01-20 13:40:08 -060063 bool ipv4,
64 u8 *mac_addr,
65 u32 action)
66{
67 int arp_index;
68 int err;
69 u32 ip[4];
70
71 if (ipv4) {
72 memset(ip, 0, sizeof(ip));
73 ip[0] = *ip_addr;
74 } else {
75 memcpy(ip, ip_addr, sizeof(ip));
76 }
77
78 for (arp_index = 0; (u32)arp_index < iwdev->arp_table_size; arp_index++)
79 if (memcmp(iwdev->arp_table[arp_index].ip_addr, ip, sizeof(ip)) == 0)
80 break;
81 switch (action) {
82 case I40IW_ARP_ADD:
83 if (arp_index != iwdev->arp_table_size)
84 return -1;
85
86 arp_index = 0;
87 err = i40iw_alloc_resource(iwdev, iwdev->allocated_arps,
88 iwdev->arp_table_size,
89 (u32 *)&arp_index,
90 &iwdev->next_arp_index);
91
92 if (err)
93 return err;
94
95 memcpy(iwdev->arp_table[arp_index].ip_addr, ip, sizeof(ip));
96 ether_addr_copy(iwdev->arp_table[arp_index].mac_addr, mac_addr);
97 break;
98 case I40IW_ARP_RESOLVE:
99 if (arp_index == iwdev->arp_table_size)
100 return -1;
101 break;
102 case I40IW_ARP_DELETE:
103 if (arp_index == iwdev->arp_table_size)
104 return -1;
105 memset(iwdev->arp_table[arp_index].ip_addr, 0,
106 sizeof(iwdev->arp_table[arp_index].ip_addr));
107 eth_zero_addr(iwdev->arp_table[arp_index].mac_addr);
108 i40iw_free_resource(iwdev, iwdev->allocated_arps, arp_index);
109 break;
110 default:
111 return -1;
112 }
113 return arp_index;
114}
115
116/**
117 * i40iw_wr32 - write 32 bits to hw register
118 * @hw: hardware information including registers
119 * @reg: register offset
120 * @value: vvalue to write to register
121 */
122inline void i40iw_wr32(struct i40iw_hw *hw, u32 reg, u32 value)
123{
124 writel(value, hw->hw_addr + reg);
125}
126
127/**
128 * i40iw_rd32 - read a 32 bit hw register
129 * @hw: hardware information including registers
130 * @reg: register offset
131 *
132 * Return value of register content
133 */
134inline u32 i40iw_rd32(struct i40iw_hw *hw, u32 reg)
135{
136 return readl(hw->hw_addr + reg);
137}
138
139/**
140 * i40iw_inetaddr_event - system notifier for netdev events
141 * @notfier: not used
142 * @event: event for notifier
143 * @ptr: if address
144 */
145int i40iw_inetaddr_event(struct notifier_block *notifier,
146 unsigned long event,
147 void *ptr)
148{
149 struct in_ifaddr *ifa = ptr;
150 struct net_device *event_netdev = ifa->ifa_dev->dev;
151 struct net_device *netdev;
152 struct net_device *upper_dev;
153 struct i40iw_device *iwdev;
154 struct i40iw_handler *hdl;
Ismail, Mustafa20c61f72016-04-18 10:33:07 -0500155 u32 local_ipaddr;
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600156 u32 action = I40IW_ARP_ADD;
Faisal Latif4e9042e2016-01-20 13:40:08 -0600157
158 hdl = i40iw_find_netdev(event_netdev);
159 if (!hdl)
160 return NOTIFY_DONE;
161
162 iwdev = &hdl->device;
163 netdev = iwdev->ldev->netdev;
164 upper_dev = netdev_master_upper_dev_get(netdev);
165 if (netdev != event_netdev)
166 return NOTIFY_DONE;
167
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600168 if (upper_dev)
169 local_ipaddr = ntohl(
170 ((struct in_device *)upper_dev->ip_ptr)->ifa_list->ifa_address);
171 else
172 local_ipaddr = ntohl(ifa->ifa_address);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600173 switch (event) {
174 case NETDEV_DOWN:
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600175 action = I40IW_ARP_DELETE;
176 /* Fall through */
Faisal Latif4e9042e2016-01-20 13:40:08 -0600177 case NETDEV_UP:
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600178 /* Fall through */
Faisal Latif4e9042e2016-01-20 13:40:08 -0600179 case NETDEV_CHANGEADDR:
Faisal Latif4e9042e2016-01-20 13:40:08 -0600180 i40iw_manage_arp_cache(iwdev,
181 netdev->dev_addr,
182 &local_ipaddr,
183 true,
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600184 action);
185 i40iw_if_notify(iwdev, netdev, &local_ipaddr, true,
186 (action == I40IW_ARP_ADD) ? true : false);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600187 break;
188 default:
189 break;
190 }
191 return NOTIFY_DONE;
192}
193
194/**
195 * i40iw_inet6addr_event - system notifier for ipv6 netdev events
196 * @notfier: not used
197 * @event: event for notifier
198 * @ptr: if address
199 */
200int i40iw_inet6addr_event(struct notifier_block *notifier,
201 unsigned long event,
202 void *ptr)
203{
204 struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr;
205 struct net_device *event_netdev = ifa->idev->dev;
206 struct net_device *netdev;
207 struct i40iw_device *iwdev;
208 struct i40iw_handler *hdl;
Ismail, Mustafa20c61f72016-04-18 10:33:07 -0500209 u32 local_ipaddr6[4];
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600210 u32 action = I40IW_ARP_ADD;
Faisal Latif4e9042e2016-01-20 13:40:08 -0600211
212 hdl = i40iw_find_netdev(event_netdev);
213 if (!hdl)
214 return NOTIFY_DONE;
215
216 iwdev = &hdl->device;
217 netdev = iwdev->ldev->netdev;
218 if (netdev != event_netdev)
219 return NOTIFY_DONE;
220
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600221 i40iw_copy_ip_ntohl(local_ipaddr6, ifa->addr.in6_u.u6_addr32);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600222 switch (event) {
223 case NETDEV_DOWN:
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600224 action = I40IW_ARP_DELETE;
225 /* Fall through */
Faisal Latif4e9042e2016-01-20 13:40:08 -0600226 case NETDEV_UP:
227 /* Fall through */
228 case NETDEV_CHANGEADDR:
Faisal Latif4e9042e2016-01-20 13:40:08 -0600229 i40iw_manage_arp_cache(iwdev,
230 netdev->dev_addr,
231 local_ipaddr6,
232 false,
Mustafa Ismaile5e74b62016-11-30 15:07:30 -0600233 action);
234 i40iw_if_notify(iwdev, netdev, local_ipaddr6, false,
235 (action == I40IW_ARP_ADD) ? true : false);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600236 break;
237 default:
238 break;
239 }
240 return NOTIFY_DONE;
241}
242
243/**
244 * i40iw_net_event - system notifier for net events
245 * @notfier: not used
246 * @event: event for notifier
247 * @ptr: neighbor
248 */
249int i40iw_net_event(struct notifier_block *notifier, unsigned long event, void *ptr)
250{
251 struct neighbour *neigh = ptr;
252 struct i40iw_device *iwdev;
253 struct i40iw_handler *iwhdl;
254 __be32 *p;
255 u32 local_ipaddr[4];
256
257 switch (event) {
258 case NETEVENT_NEIGH_UPDATE:
259 iwhdl = i40iw_find_netdev((struct net_device *)neigh->dev);
260 if (!iwhdl)
261 return NOTIFY_DONE;
262 iwdev = &iwhdl->device;
263 p = (__be32 *)neigh->primary_key;
264 i40iw_copy_ip_ntohl(local_ipaddr, p);
265 if (neigh->nud_state & NUD_VALID) {
266 i40iw_manage_arp_cache(iwdev,
267 neigh->ha,
268 local_ipaddr,
269 false,
270 I40IW_ARP_ADD);
271
272 } else {
273 i40iw_manage_arp_cache(iwdev,
274 neigh->ha,
275 local_ipaddr,
276 false,
277 I40IW_ARP_DELETE);
278 }
279 break;
280 default:
281 break;
282 }
283 return NOTIFY_DONE;
284}
285
286/**
287 * i40iw_get_cqp_request - get cqp struct
288 * @cqp: device cqp ptr
289 * @wait: cqp to be used in wait mode
290 */
291struct i40iw_cqp_request *i40iw_get_cqp_request(struct i40iw_cqp *cqp, bool wait)
292{
293 struct i40iw_cqp_request *cqp_request = NULL;
294 unsigned long flags;
295
296 spin_lock_irqsave(&cqp->req_lock, flags);
297 if (!list_empty(&cqp->cqp_avail_reqs)) {
298 cqp_request = list_entry(cqp->cqp_avail_reqs.next,
299 struct i40iw_cqp_request, list);
300 list_del_init(&cqp_request->list);
301 }
302 spin_unlock_irqrestore(&cqp->req_lock, flags);
303 if (!cqp_request) {
304 cqp_request = kzalloc(sizeof(*cqp_request), GFP_ATOMIC);
305 if (cqp_request) {
306 cqp_request->dynamic = true;
307 INIT_LIST_HEAD(&cqp_request->list);
308 init_waitqueue_head(&cqp_request->waitq);
309 }
310 }
311 if (!cqp_request) {
312 i40iw_pr_err("CQP Request Fail: No Memory");
313 return NULL;
314 }
315
316 if (wait) {
317 atomic_set(&cqp_request->refcount, 2);
318 cqp_request->waiting = true;
319 } else {
320 atomic_set(&cqp_request->refcount, 1);
321 }
322 return cqp_request;
323}
324
325/**
326 * i40iw_free_cqp_request - free cqp request
327 * @cqp: cqp ptr
328 * @cqp_request: to be put back in cqp list
329 */
330void i40iw_free_cqp_request(struct i40iw_cqp *cqp, struct i40iw_cqp_request *cqp_request)
331{
332 unsigned long flags;
333
334 if (cqp_request->dynamic) {
335 kfree(cqp_request);
336 } else {
337 cqp_request->request_done = false;
338 cqp_request->callback_fcn = NULL;
339 cqp_request->waiting = false;
340
341 spin_lock_irqsave(&cqp->req_lock, flags);
342 list_add_tail(&cqp_request->list, &cqp->cqp_avail_reqs);
343 spin_unlock_irqrestore(&cqp->req_lock, flags);
344 }
345}
346
347/**
348 * i40iw_put_cqp_request - dec ref count and free if 0
349 * @cqp: cqp ptr
350 * @cqp_request: to be put back in cqp list
351 */
352void i40iw_put_cqp_request(struct i40iw_cqp *cqp,
353 struct i40iw_cqp_request *cqp_request)
354{
355 if (atomic_dec_and_test(&cqp_request->refcount))
356 i40iw_free_cqp_request(cqp, cqp_request);
357}
358
359/**
360 * i40iw_free_qp - callback after destroy cqp completes
361 * @cqp_request: cqp request for destroy qp
362 * @num: not used
363 */
364static void i40iw_free_qp(struct i40iw_cqp_request *cqp_request, u32 num)
365{
366 struct i40iw_sc_qp *qp = (struct i40iw_sc_qp *)cqp_request->param;
367 struct i40iw_qp *iwqp = (struct i40iw_qp *)qp->back_qp;
368 struct i40iw_device *iwdev;
369 u32 qp_num = iwqp->ibqp.qp_num;
370
371 iwdev = iwqp->iwdev;
372
373 i40iw_rem_pdusecount(iwqp->iwpd, iwdev);
374 i40iw_free_qp_resources(iwdev, iwqp, qp_num);
Mustafa Ismaild5965932016-11-30 14:59:26 -0600375 i40iw_rem_devusecount(iwdev);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600376}
377
378/**
379 * i40iw_wait_event - wait for completion
380 * @iwdev: iwarp device
381 * @cqp_request: cqp request to wait
382 */
383static int i40iw_wait_event(struct i40iw_device *iwdev,
384 struct i40iw_cqp_request *cqp_request)
385{
386 struct cqp_commands_info *info = &cqp_request->info;
387 struct i40iw_cqp *iwcqp = &iwdev->cqp;
388 bool cqp_error = false;
389 int err_code = 0;
390 int timeout_ret = 0;
391
392 timeout_ret = wait_event_timeout(cqp_request->waitq,
393 cqp_request->request_done,
394 I40IW_EVENT_TIMEOUT);
395 if (!timeout_ret) {
396 i40iw_pr_err("error cqp command 0x%x timed out ret = %d\n",
397 info->cqp_cmd, timeout_ret);
398 err_code = -ETIME;
Henry Orosco78300cf2016-11-30 15:14:15 -0600399 if (!iwdev->reset) {
400 iwdev->reset = true;
401 i40iw_request_reset(iwdev);
402 }
Faisal Latif4e9042e2016-01-20 13:40:08 -0600403 goto done;
404 }
405 cqp_error = cqp_request->compl_info.error;
406 if (cqp_error) {
407 i40iw_pr_err("error cqp command 0x%x completion maj = 0x%x min=0x%x\n",
408 info->cqp_cmd, cqp_request->compl_info.maj_err_code,
409 cqp_request->compl_info.min_err_code);
410 err_code = -EPROTO;
411 goto done;
412 }
413done:
414 i40iw_put_cqp_request(iwcqp, cqp_request);
415 return err_code;
416}
417
418/**
419 * i40iw_handle_cqp_op - process cqp command
420 * @iwdev: iwarp device
421 * @cqp_request: cqp request to process
422 */
423enum i40iw_status_code i40iw_handle_cqp_op(struct i40iw_device *iwdev,
424 struct i40iw_cqp_request
425 *cqp_request)
426{
427 struct i40iw_sc_dev *dev = &iwdev->sc_dev;
428 enum i40iw_status_code status;
429 struct cqp_commands_info *info = &cqp_request->info;
430 int err_code = 0;
431
Henry Orosco78300cf2016-11-30 15:14:15 -0600432 if (iwdev->reset) {
433 i40iw_free_cqp_request(&iwdev->cqp, cqp_request);
434 return I40IW_ERR_CQP_COMPL_ERROR;
435 }
436
Faisal Latif4e9042e2016-01-20 13:40:08 -0600437 status = i40iw_process_cqp_cmd(dev, info);
438 if (status) {
439 i40iw_pr_err("error cqp command 0x%x failed\n", info->cqp_cmd);
440 i40iw_free_cqp_request(&iwdev->cqp, cqp_request);
441 return status;
442 }
443 if (cqp_request->waiting)
444 err_code = i40iw_wait_event(iwdev, cqp_request);
445 if (err_code)
446 status = I40IW_ERR_CQP_COMPL_ERROR;
447 return status;
448}
449
450/**
Mustafa Ismaild5965932016-11-30 14:59:26 -0600451 * i40iw_add_devusecount - add dev refcount
452 * @iwdev: dev for refcount
453 */
454void i40iw_add_devusecount(struct i40iw_device *iwdev)
455{
456 atomic64_inc(&iwdev->use_count);
457}
458
459/**
460 * i40iw_rem_devusecount - decrement refcount for dev
461 * @iwdev: device
462 */
463void i40iw_rem_devusecount(struct i40iw_device *iwdev)
464{
465 if (!atomic64_dec_and_test(&iwdev->use_count))
466 return;
467 wake_up(&iwdev->close_wq);
468}
469
470/**
Faisal Latif4e9042e2016-01-20 13:40:08 -0600471 * i40iw_add_pdusecount - add pd refcount
472 * @iwpd: pd for refcount
473 */
474void i40iw_add_pdusecount(struct i40iw_pd *iwpd)
475{
476 atomic_inc(&iwpd->usecount);
477}
478
479/**
480 * i40iw_rem_pdusecount - decrement refcount for pd and free if 0
481 * @iwpd: pd for refcount
482 * @iwdev: iwarp device
483 */
484void i40iw_rem_pdusecount(struct i40iw_pd *iwpd, struct i40iw_device *iwdev)
485{
486 if (!atomic_dec_and_test(&iwpd->usecount))
487 return;
488 i40iw_free_resource(iwdev, iwdev->allocated_pds, iwpd->sc_pd.pd_id);
489 kfree(iwpd);
490}
491
492/**
493 * i40iw_add_ref - add refcount for qp
494 * @ibqp: iqarp qp
495 */
496void i40iw_add_ref(struct ib_qp *ibqp)
497{
498 struct i40iw_qp *iwqp = (struct i40iw_qp *)ibqp;
499
500 atomic_inc(&iwqp->refcount);
501}
502
503/**
504 * i40iw_rem_ref - rem refcount for qp and free if 0
505 * @ibqp: iqarp qp
506 */
507void i40iw_rem_ref(struct ib_qp *ibqp)
508{
509 struct i40iw_qp *iwqp;
510 enum i40iw_status_code status;
511 struct i40iw_cqp_request *cqp_request;
512 struct cqp_commands_info *cqp_info;
513 struct i40iw_device *iwdev;
514 u32 qp_num;
Ismail, Mustafa996abf0a2016-04-18 10:32:59 -0500515 unsigned long flags;
Faisal Latif4e9042e2016-01-20 13:40:08 -0600516
517 iwqp = to_iwqp(ibqp);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600518 iwdev = iwqp->iwdev;
Ismail, Mustafa996abf0a2016-04-18 10:32:59 -0500519 spin_lock_irqsave(&iwdev->qptable_lock, flags);
520 if (!atomic_dec_and_test(&iwqp->refcount)) {
521 spin_unlock_irqrestore(&iwdev->qptable_lock, flags);
522 return;
523 }
524
Faisal Latif4e9042e2016-01-20 13:40:08 -0600525 qp_num = iwqp->ibqp.qp_num;
526 iwdev->qp_table[qp_num] = NULL;
Ismail, Mustafa996abf0a2016-04-18 10:32:59 -0500527 spin_unlock_irqrestore(&iwdev->qptable_lock, flags);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600528 cqp_request = i40iw_get_cqp_request(&iwdev->cqp, false);
529 if (!cqp_request)
530 return;
531
532 cqp_request->callback_fcn = i40iw_free_qp;
533 cqp_request->param = (void *)&iwqp->sc_qp;
534 cqp_info = &cqp_request->info;
535 cqp_info->cqp_cmd = OP_QP_DESTROY;
536 cqp_info->post_sq = 1;
537 cqp_info->in.u.qp_destroy.qp = &iwqp->sc_qp;
538 cqp_info->in.u.qp_destroy.scratch = (uintptr_t)cqp_request;
539 cqp_info->in.u.qp_destroy.remove_hash_idx = true;
540 status = i40iw_handle_cqp_op(iwdev, cqp_request);
541 if (status)
542 i40iw_pr_err("CQP-OP Destroy QP fail");
543}
544
545/**
546 * i40iw_get_qp - get qp address
547 * @device: iwarp device
548 * @qpn: qp number
549 */
550struct ib_qp *i40iw_get_qp(struct ib_device *device, int qpn)
551{
552 struct i40iw_device *iwdev = to_iwdev(device);
553
554 if ((qpn < IW_FIRST_QPN) || (qpn >= iwdev->max_qp))
555 return NULL;
556
557 return &iwdev->qp_table[qpn]->ibqp;
558}
559
560/**
561 * i40iw_debug_buf - print debug msg and buffer is mask set
562 * @dev: hardware control device structure
563 * @mask: mask to compare if to print debug buffer
564 * @buf: points buffer addr
565 * @size: saize of buffer to print
566 */
567void i40iw_debug_buf(struct i40iw_sc_dev *dev,
568 enum i40iw_debug_flag mask,
569 char *desc,
570 u64 *buf,
571 u32 size)
572{
573 u32 i;
574
575 if (!(dev->debug_mask & mask))
576 return;
577 i40iw_debug(dev, mask, "%s\n", desc);
578 i40iw_debug(dev, mask, "starting address virt=%p phy=%llxh\n", buf,
579 (unsigned long long)virt_to_phys(buf));
580
581 for (i = 0; i < size; i += 8)
582 i40iw_debug(dev, mask, "index %03d val: %016llx\n", i, buf[i / 8]);
583}
584
585/**
586 * i40iw_get_hw_addr - return hw addr
587 * @par: points to shared dev
588 */
589u8 __iomem *i40iw_get_hw_addr(void *par)
590{
591 struct i40iw_sc_dev *dev = (struct i40iw_sc_dev *)par;
592
593 return dev->hw->hw_addr;
594}
595
596/**
597 * i40iw_remove_head - return head entry and remove from list
598 * @list: list for entry
599 */
600void *i40iw_remove_head(struct list_head *list)
601{
602 struct list_head *entry;
603
604 if (list_empty(list))
605 return NULL;
606
607 entry = (void *)list->next;
608 list_del(entry);
609 return (void *)entry;
610}
611
612/**
613 * i40iw_allocate_dma_mem - Memory alloc helper fn
614 * @hw: pointer to the HW structure
615 * @mem: ptr to mem struct to fill out
616 * @size: size of memory requested
617 * @alignment: what to align the allocation to
618 */
619enum i40iw_status_code i40iw_allocate_dma_mem(struct i40iw_hw *hw,
620 struct i40iw_dma_mem *mem,
621 u64 size,
622 u32 alignment)
623{
624 struct pci_dev *pcidev = (struct pci_dev *)hw->dev_context;
625
626 if (!mem)
627 return I40IW_ERR_PARAM;
628 mem->size = ALIGN(size, alignment);
629 mem->va = dma_zalloc_coherent(&pcidev->dev, mem->size,
630 (dma_addr_t *)&mem->pa, GFP_KERNEL);
631 if (!mem->va)
632 return I40IW_ERR_NO_MEMORY;
633 return 0;
634}
635
636/**
637 * i40iw_free_dma_mem - Memory free helper fn
638 * @hw: pointer to the HW structure
639 * @mem: ptr to mem struct to free
640 */
641void i40iw_free_dma_mem(struct i40iw_hw *hw, struct i40iw_dma_mem *mem)
642{
643 struct pci_dev *pcidev = (struct pci_dev *)hw->dev_context;
644
645 if (!mem || !mem->va)
646 return;
647
648 dma_free_coherent(&pcidev->dev, mem->size,
649 mem->va, (dma_addr_t)mem->pa);
650 mem->va = NULL;
651}
652
653/**
654 * i40iw_allocate_virt_mem - virtual memory alloc helper fn
655 * @hw: pointer to the HW structure
656 * @mem: ptr to mem struct to fill out
657 * @size: size of memory requested
658 */
659enum i40iw_status_code i40iw_allocate_virt_mem(struct i40iw_hw *hw,
660 struct i40iw_virt_mem *mem,
661 u32 size)
662{
663 if (!mem)
664 return I40IW_ERR_PARAM;
665
666 mem->size = size;
667 mem->va = kzalloc(size, GFP_KERNEL);
668
669 if (mem->va)
670 return 0;
671 else
672 return I40IW_ERR_NO_MEMORY;
673}
674
675/**
676 * i40iw_free_virt_mem - virtual memory free helper fn
677 * @hw: pointer to the HW structure
678 * @mem: ptr to mem struct to free
679 */
680enum i40iw_status_code i40iw_free_virt_mem(struct i40iw_hw *hw,
681 struct i40iw_virt_mem *mem)
682{
683 if (!mem)
684 return I40IW_ERR_PARAM;
Mustafa Ismail7eaf8312016-08-22 19:01:47 -0500685 /*
686 * mem->va points to the parent of mem, so both mem and mem->va
687 * can not be touched once mem->va is freed
688 */
Faisal Latif4e9042e2016-01-20 13:40:08 -0600689 kfree(mem->va);
Faisal Latif4e9042e2016-01-20 13:40:08 -0600690 return 0;
691}
692
693/**
694 * i40iw_cqp_sds_cmd - create cqp command for sd
695 * @dev: hardware control device structure
696 * @sd_info: information for sd cqp
697 *
698 */
699enum i40iw_status_code i40iw_cqp_sds_cmd(struct i40iw_sc_dev *dev,
700 struct i40iw_update_sds_info *sdinfo)
701{
702 enum i40iw_status_code status;
703 struct i40iw_cqp_request *cqp_request;
704 struct cqp_commands_info *cqp_info;
705 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
706
707 cqp_request = i40iw_get_cqp_request(&iwdev->cqp, true);
708 if (!cqp_request)
709 return I40IW_ERR_NO_MEMORY;
710 cqp_info = &cqp_request->info;
711 memcpy(&cqp_info->in.u.update_pe_sds.info, sdinfo,
712 sizeof(cqp_info->in.u.update_pe_sds.info));
713 cqp_info->cqp_cmd = OP_UPDATE_PE_SDS;
714 cqp_info->post_sq = 1;
715 cqp_info->in.u.update_pe_sds.dev = dev;
716 cqp_info->in.u.update_pe_sds.scratch = (uintptr_t)cqp_request;
717 status = i40iw_handle_cqp_op(iwdev, cqp_request);
718 if (status)
719 i40iw_pr_err("CQP-OP Update SD's fail");
720 return status;
721}
722
723/**
Henry Orosco0fc2dc52016-10-10 21:12:10 -0500724 * i40iw_qp_suspend_resume - cqp command for suspend/resume
725 * @dev: hardware control device structure
726 * @qp: hardware control qp
727 * @suspend: flag if suspend or resume
728 */
729void i40iw_qp_suspend_resume(struct i40iw_sc_dev *dev, struct i40iw_sc_qp *qp, bool suspend)
730{
731 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
732 struct i40iw_cqp_request *cqp_request;
733 struct i40iw_sc_cqp *cqp = dev->cqp;
734 struct cqp_commands_info *cqp_info;
735 enum i40iw_status_code status;
736
737 cqp_request = i40iw_get_cqp_request(&iwdev->cqp, false);
738 if (!cqp_request)
739 return;
740
741 cqp_info = &cqp_request->info;
742 cqp_info->cqp_cmd = (suspend) ? OP_SUSPEND : OP_RESUME;
743 cqp_info->in.u.suspend_resume.cqp = cqp;
744 cqp_info->in.u.suspend_resume.qp = qp;
745 cqp_info->in.u.suspend_resume.scratch = (uintptr_t)cqp_request;
746 status = i40iw_handle_cqp_op(iwdev, cqp_request);
747 if (status)
748 i40iw_pr_err("CQP-OP QP Suspend/Resume fail");
749}
750
751/**
752 * i40iw_qp_mss_modify - modify mss for qp
753 * @dev: hardware control device structure
754 * @qp: hardware control qp
755 */
756void i40iw_qp_mss_modify(struct i40iw_sc_dev *dev, struct i40iw_sc_qp *qp)
757{
758 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
759 struct i40iw_qp *iwqp = (struct i40iw_qp *)qp->back_qp;
760 struct i40iw_modify_qp_info info;
761
762 memset(&info, 0, sizeof(info));
763 info.mss_change = true;
764 info.new_mss = dev->mss;
765 i40iw_hw_modify_qp(iwdev, iwqp, &info, false);
766}
767
768/**
Faisal Latif4e9042e2016-01-20 13:40:08 -0600769 * i40iw_term_modify_qp - modify qp for term message
770 * @qp: hardware control qp
771 * @next_state: qp's next state
772 * @term: terminate code
773 * @term_len: length
774 */
775void i40iw_term_modify_qp(struct i40iw_sc_qp *qp, u8 next_state, u8 term, u8 term_len)
776{
777 struct i40iw_qp *iwqp;
778
779 iwqp = (struct i40iw_qp *)qp->back_qp;
780 i40iw_next_iw_state(iwqp, next_state, 0, term, term_len);
781};
782
783/**
784 * i40iw_terminate_done - after terminate is completed
785 * @qp: hardware control qp
786 * @timeout_occurred: indicates if terminate timer expired
787 */
788void i40iw_terminate_done(struct i40iw_sc_qp *qp, int timeout_occurred)
789{
790 struct i40iw_qp *iwqp;
791 u32 next_iwarp_state = I40IW_QP_STATE_ERROR;
792 u8 hte = 0;
793 bool first_time;
794 unsigned long flags;
795
796 iwqp = (struct i40iw_qp *)qp->back_qp;
797 spin_lock_irqsave(&iwqp->lock, flags);
798 if (iwqp->hte_added) {
799 iwqp->hte_added = 0;
800 hte = 1;
801 }
802 first_time = !(qp->term_flags & I40IW_TERM_DONE);
803 qp->term_flags |= I40IW_TERM_DONE;
804 spin_unlock_irqrestore(&iwqp->lock, flags);
805 if (first_time) {
806 if (!timeout_occurred)
807 i40iw_terminate_del_timer(qp);
808 else
809 next_iwarp_state = I40IW_QP_STATE_CLOSING;
810
811 i40iw_next_iw_state(iwqp, next_iwarp_state, hte, 0, 0);
812 i40iw_cm_disconn(iwqp);
813 }
814}
815
816/**
817 * i40iw_terminate_imeout - timeout happened
818 * @context: points to iwarp qp
819 */
820static void i40iw_terminate_timeout(unsigned long context)
821{
822 struct i40iw_qp *iwqp = (struct i40iw_qp *)context;
823 struct i40iw_sc_qp *qp = (struct i40iw_sc_qp *)&iwqp->sc_qp;
824
825 i40iw_terminate_done(qp, 1);
826}
827
828/**
829 * i40iw_terminate_start_timer - start terminate timeout
830 * @qp: hardware control qp
831 */
832void i40iw_terminate_start_timer(struct i40iw_sc_qp *qp)
833{
834 struct i40iw_qp *iwqp;
835
836 iwqp = (struct i40iw_qp *)qp->back_qp;
837 init_timer(&iwqp->terminate_timer);
838 iwqp->terminate_timer.function = i40iw_terminate_timeout;
839 iwqp->terminate_timer.expires = jiffies + HZ;
840 iwqp->terminate_timer.data = (unsigned long)iwqp;
841 add_timer(&iwqp->terminate_timer);
842}
843
844/**
845 * i40iw_terminate_del_timer - delete terminate timeout
846 * @qp: hardware control qp
847 */
848void i40iw_terminate_del_timer(struct i40iw_sc_qp *qp)
849{
850 struct i40iw_qp *iwqp;
851
852 iwqp = (struct i40iw_qp *)qp->back_qp;
853 del_timer(&iwqp->terminate_timer);
854}
855
856/**
857 * i40iw_cqp_generic_worker - generic worker for cqp
858 * @work: work pointer
859 */
860static void i40iw_cqp_generic_worker(struct work_struct *work)
861{
862 struct i40iw_virtchnl_work_info *work_info =
863 &((struct virtchnl_work *)work)->work_info;
864
865 if (work_info->worker_vf_dev)
866 work_info->callback_fcn(work_info->worker_vf_dev);
867}
868
869/**
870 * i40iw_cqp_spawn_worker - spawn worket thread
871 * @iwdev: device struct pointer
872 * @work_info: work request info
873 * @iw_vf_idx: virtual function index
874 */
875void i40iw_cqp_spawn_worker(struct i40iw_sc_dev *dev,
876 struct i40iw_virtchnl_work_info *work_info,
877 u32 iw_vf_idx)
878{
879 struct virtchnl_work *work;
880 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
881
882 work = &iwdev->virtchnl_w[iw_vf_idx];
883 memcpy(&work->work_info, work_info, sizeof(*work_info));
884 INIT_WORK(&work->work, i40iw_cqp_generic_worker);
885 queue_work(iwdev->virtchnl_wq, &work->work);
886}
887
888/**
889 * i40iw_cqp_manage_hmc_fcn_worker -
890 * @work: work pointer for hmc info
891 */
892static void i40iw_cqp_manage_hmc_fcn_worker(struct work_struct *work)
893{
894 struct i40iw_cqp_request *cqp_request =
895 ((struct virtchnl_work *)work)->cqp_request;
896 struct i40iw_ccq_cqe_info ccq_cqe_info;
897 struct i40iw_hmc_fcn_info *hmcfcninfo =
898 &cqp_request->info.in.u.manage_hmc_pm.info;
899 struct i40iw_device *iwdev =
900 (struct i40iw_device *)cqp_request->info.in.u.manage_hmc_pm.dev->back_dev;
901
902 ccq_cqe_info.cqp = NULL;
903 ccq_cqe_info.maj_err_code = cqp_request->compl_info.maj_err_code;
904 ccq_cqe_info.min_err_code = cqp_request->compl_info.min_err_code;
905 ccq_cqe_info.op_code = cqp_request->compl_info.op_code;
906 ccq_cqe_info.op_ret_val = cqp_request->compl_info.op_ret_val;
907 ccq_cqe_info.scratch = 0;
908 ccq_cqe_info.error = cqp_request->compl_info.error;
909 hmcfcninfo->callback_fcn(cqp_request->info.in.u.manage_hmc_pm.dev,
910 hmcfcninfo->cqp_callback_param, &ccq_cqe_info);
911 i40iw_put_cqp_request(&iwdev->cqp, cqp_request);
912}
913
914/**
915 * i40iw_cqp_manage_hmc_fcn_callback - called function after cqp completion
916 * @cqp_request: cqp request info struct for hmc fun
917 * @unused: unused param of callback
918 */
919static void i40iw_cqp_manage_hmc_fcn_callback(struct i40iw_cqp_request *cqp_request,
920 u32 unused)
921{
922 struct virtchnl_work *work;
923 struct i40iw_hmc_fcn_info *hmcfcninfo =
924 &cqp_request->info.in.u.manage_hmc_pm.info;
925 struct i40iw_device *iwdev =
926 (struct i40iw_device *)cqp_request->info.in.u.manage_hmc_pm.dev->
927 back_dev;
928
929 if (hmcfcninfo && hmcfcninfo->callback_fcn) {
930 i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s1\n", __func__);
931 atomic_inc(&cqp_request->refcount);
932 work = &iwdev->virtchnl_w[hmcfcninfo->iw_vf_idx];
933 work->cqp_request = cqp_request;
934 INIT_WORK(&work->work, i40iw_cqp_manage_hmc_fcn_worker);
935 queue_work(iwdev->virtchnl_wq, &work->work);
936 i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s2\n", __func__);
937 } else {
938 i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s: Something wrong\n", __func__);
939 }
940}
941
942/**
943 * i40iw_cqp_manage_hmc_fcn_cmd - issue cqp command to manage hmc
944 * @dev: hardware control device structure
945 * @hmcfcninfo: info for hmc
946 */
947enum i40iw_status_code i40iw_cqp_manage_hmc_fcn_cmd(struct i40iw_sc_dev *dev,
948 struct i40iw_hmc_fcn_info *hmcfcninfo)
949{
950 enum i40iw_status_code status;
951 struct i40iw_cqp_request *cqp_request;
952 struct cqp_commands_info *cqp_info;
953 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
954
955 i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s\n", __func__);
956 cqp_request = i40iw_get_cqp_request(&iwdev->cqp, false);
957 if (!cqp_request)
958 return I40IW_ERR_NO_MEMORY;
959 cqp_info = &cqp_request->info;
960 cqp_request->callback_fcn = i40iw_cqp_manage_hmc_fcn_callback;
961 cqp_request->param = hmcfcninfo;
962 memcpy(&cqp_info->in.u.manage_hmc_pm.info, hmcfcninfo,
963 sizeof(*hmcfcninfo));
964 cqp_info->in.u.manage_hmc_pm.dev = dev;
965 cqp_info->cqp_cmd = OP_MANAGE_HMC_PM_FUNC_TABLE;
966 cqp_info->post_sq = 1;
967 cqp_info->in.u.manage_hmc_pm.scratch = (uintptr_t)cqp_request;
968 status = i40iw_handle_cqp_op(iwdev, cqp_request);
969 if (status)
970 i40iw_pr_err("CQP-OP Manage HMC fail");
971 return status;
972}
973
974/**
975 * i40iw_cqp_query_fpm_values_cmd - send cqp command for fpm
976 * @iwdev: function device struct
977 * @values_mem: buffer for fpm
978 * @hmc_fn_id: function id for fpm
979 */
980enum i40iw_status_code i40iw_cqp_query_fpm_values_cmd(struct i40iw_sc_dev *dev,
981 struct i40iw_dma_mem *values_mem,
982 u8 hmc_fn_id)
983{
984 enum i40iw_status_code status;
985 struct i40iw_cqp_request *cqp_request;
986 struct cqp_commands_info *cqp_info;
987 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
988
989 cqp_request = i40iw_get_cqp_request(&iwdev->cqp, true);
990 if (!cqp_request)
991 return I40IW_ERR_NO_MEMORY;
992 cqp_info = &cqp_request->info;
993 cqp_request->param = NULL;
994 cqp_info->in.u.query_fpm_values.cqp = dev->cqp;
995 cqp_info->in.u.query_fpm_values.fpm_values_pa = values_mem->pa;
996 cqp_info->in.u.query_fpm_values.fpm_values_va = values_mem->va;
997 cqp_info->in.u.query_fpm_values.hmc_fn_id = hmc_fn_id;
998 cqp_info->cqp_cmd = OP_QUERY_FPM_VALUES;
999 cqp_info->post_sq = 1;
1000 cqp_info->in.u.query_fpm_values.scratch = (uintptr_t)cqp_request;
1001 status = i40iw_handle_cqp_op(iwdev, cqp_request);
1002 if (status)
1003 i40iw_pr_err("CQP-OP Query FPM fail");
1004 return status;
1005}
1006
1007/**
1008 * i40iw_cqp_commit_fpm_values_cmd - commit fpm values in hw
1009 * @dev: hardware control device structure
1010 * @values_mem: buffer with fpm values
1011 * @hmc_fn_id: function id for fpm
1012 */
1013enum i40iw_status_code i40iw_cqp_commit_fpm_values_cmd(struct i40iw_sc_dev *dev,
1014 struct i40iw_dma_mem *values_mem,
1015 u8 hmc_fn_id)
1016{
1017 enum i40iw_status_code status;
1018 struct i40iw_cqp_request *cqp_request;
1019 struct cqp_commands_info *cqp_info;
1020 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
1021
1022 cqp_request = i40iw_get_cqp_request(&iwdev->cqp, true);
1023 if (!cqp_request)
1024 return I40IW_ERR_NO_MEMORY;
1025 cqp_info = &cqp_request->info;
1026 cqp_request->param = NULL;
1027 cqp_info->in.u.commit_fpm_values.cqp = dev->cqp;
1028 cqp_info->in.u.commit_fpm_values.fpm_values_pa = values_mem->pa;
1029 cqp_info->in.u.commit_fpm_values.fpm_values_va = values_mem->va;
1030 cqp_info->in.u.commit_fpm_values.hmc_fn_id = hmc_fn_id;
1031 cqp_info->cqp_cmd = OP_COMMIT_FPM_VALUES;
1032 cqp_info->post_sq = 1;
1033 cqp_info->in.u.commit_fpm_values.scratch = (uintptr_t)cqp_request;
1034 status = i40iw_handle_cqp_op(iwdev, cqp_request);
1035 if (status)
1036 i40iw_pr_err("CQP-OP Commit FPM fail");
1037 return status;
1038}
1039
1040/**
1041 * i40iw_vf_wait_vchnl_resp - wait for channel msg
1042 * @iwdev: function's device struct
1043 */
1044enum i40iw_status_code i40iw_vf_wait_vchnl_resp(struct i40iw_sc_dev *dev)
1045{
1046 struct i40iw_device *iwdev = dev->back_dev;
Faisal Latif4e9042e2016-01-20 13:40:08 -06001047 int timeout_ret;
1048
1049 i40iw_debug(dev, I40IW_DEBUG_VIRT, "%s[%u] dev %p, iwdev %p\n",
1050 __func__, __LINE__, dev, iwdev);
Ismail, Mustafaf69c3332016-04-18 10:33:03 -05001051
1052 atomic_set(&iwdev->vchnl_msgs, 2);
Faisal Latif4e9042e2016-01-20 13:40:08 -06001053 timeout_ret = wait_event_timeout(iwdev->vchnl_waitq,
1054 (atomic_read(&iwdev->vchnl_msgs) == 1),
1055 I40IW_VCHNL_EVENT_TIMEOUT);
1056 atomic_dec(&iwdev->vchnl_msgs);
1057 if (!timeout_ret) {
1058 i40iw_pr_err("virt channel completion timeout = 0x%x\n", timeout_ret);
Ismail, Mustafaf69c3332016-04-18 10:33:03 -05001059 atomic_set(&iwdev->vchnl_msgs, 0);
1060 dev->vchnl_up = false;
1061 return I40IW_ERR_TIMEOUT;
Faisal Latif4e9042e2016-01-20 13:40:08 -06001062 }
Ismail, Mustafaf69c3332016-04-18 10:33:03 -05001063 wake_up(&dev->vf_reqs);
1064 return 0;
Faisal Latif4e9042e2016-01-20 13:40:08 -06001065}
1066
1067/**
1068 * i40iw_ieq_mpa_crc_ae - generate AE for crc error
1069 * @dev: hardware control device structure
1070 * @qp: hardware control qp
1071 */
1072void i40iw_ieq_mpa_crc_ae(struct i40iw_sc_dev *dev, struct i40iw_sc_qp *qp)
1073{
1074 struct i40iw_qp_flush_info info;
1075 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
1076
1077 i40iw_debug(dev, I40IW_DEBUG_AEQ, "%s entered\n", __func__);
1078 memset(&info, 0, sizeof(info));
1079 info.ae_code = I40IW_AE_LLP_RECEIVED_MPA_CRC_ERROR;
1080 info.generate_ae = true;
1081 info.ae_source = 0x3;
1082 (void)i40iw_hw_flush_wqes(iwdev, qp, &info, false);
1083}
1084
1085/**
1086 * i40iw_init_hash_desc - initialize hash for crc calculation
1087 * @desc: cryption type
1088 */
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001089enum i40iw_status_code i40iw_init_hash_desc(struct shash_desc **desc)
Faisal Latif4e9042e2016-01-20 13:40:08 -06001090{
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001091 struct crypto_shash *tfm;
1092 struct shash_desc *tdesc;
1093
1094 tfm = crypto_alloc_shash("crc32c", 0, 0);
1095 if (IS_ERR(tfm))
Faisal Latif4e9042e2016-01-20 13:40:08 -06001096 return I40IW_ERR_MPA_CRC;
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001097
1098 tdesc = kzalloc(sizeof(*tdesc) + crypto_shash_descsize(tfm),
1099 GFP_KERNEL);
1100 if (!tdesc) {
1101 crypto_free_shash(tfm);
1102 return I40IW_ERR_MPA_CRC;
1103 }
1104 tdesc->tfm = tfm;
1105 *desc = tdesc;
1106
Faisal Latif4e9042e2016-01-20 13:40:08 -06001107 return 0;
1108}
1109
1110/**
1111 * i40iw_free_hash_desc - free hash desc
1112 * @desc: to be freed
1113 */
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001114void i40iw_free_hash_desc(struct shash_desc *desc)
Faisal Latif4e9042e2016-01-20 13:40:08 -06001115{
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001116 if (desc) {
1117 crypto_free_shash(desc->tfm);
1118 kfree(desc);
1119 }
Faisal Latif4e9042e2016-01-20 13:40:08 -06001120}
1121
1122/**
1123 * i40iw_alloc_query_fpm_buf - allocate buffer for fpm
1124 * @dev: hardware control device structure
1125 * @mem: buffer ptr for fpm to be allocated
1126 * @return: memory allocation status
1127 */
1128enum i40iw_status_code i40iw_alloc_query_fpm_buf(struct i40iw_sc_dev *dev,
1129 struct i40iw_dma_mem *mem)
1130{
1131 enum i40iw_status_code status;
1132 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
1133
1134 status = i40iw_obj_aligned_mem(iwdev, mem, I40IW_QUERY_FPM_BUF_SIZE,
1135 I40IW_FPM_QUERY_BUF_ALIGNMENT_MASK);
1136 return status;
1137}
1138
1139/**
1140 * i40iw_ieq_check_mpacrc - check if mpa crc is OK
1141 * @desc: desc for hash
1142 * @addr: address of buffer for crc
1143 * @length: length of buffer
1144 * @value: value to be compared
1145 */
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001146enum i40iw_status_code i40iw_ieq_check_mpacrc(struct shash_desc *desc,
Faisal Latif4e9042e2016-01-20 13:40:08 -06001147 void *addr,
1148 u32 length,
1149 u32 value)
1150{
Faisal Latif4e9042e2016-01-20 13:40:08 -06001151 u32 crc = 0;
1152 int ret;
1153 enum i40iw_status_code ret_code = 0;
1154
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001155 crypto_shash_init(desc);
1156 ret = crypto_shash_update(desc, addr, length);
Faisal Latif4e9042e2016-01-20 13:40:08 -06001157 if (!ret)
Tatyana Nikolova34abf9e2016-03-18 10:38:33 -05001158 crypto_shash_final(desc, (u8 *)&crc);
Faisal Latif4e9042e2016-01-20 13:40:08 -06001159 if (crc != value) {
1160 i40iw_pr_err("mpa crc check fail\n");
1161 ret_code = I40IW_ERR_MPA_CRC;
1162 }
1163 return ret_code;
1164}
1165
1166/**
1167 * i40iw_ieq_get_qp - get qp based on quad in puda buffer
1168 * @dev: hardware control device structure
1169 * @buf: receive puda buffer on exception q
1170 */
1171struct i40iw_sc_qp *i40iw_ieq_get_qp(struct i40iw_sc_dev *dev,
1172 struct i40iw_puda_buf *buf)
1173{
1174 struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev;
1175 struct i40iw_qp *iwqp;
1176 struct i40iw_cm_node *cm_node;
1177 u32 loc_addr[4], rem_addr[4];
1178 u16 loc_port, rem_port;
1179 struct ipv6hdr *ip6h;
1180 struct iphdr *iph = (struct iphdr *)buf->iph;
1181 struct tcphdr *tcph = (struct tcphdr *)buf->tcph;
1182
1183 if (iph->version == 4) {
1184 memset(loc_addr, 0, sizeof(loc_addr));
1185 loc_addr[0] = ntohl(iph->daddr);
1186 memset(rem_addr, 0, sizeof(rem_addr));
1187 rem_addr[0] = ntohl(iph->saddr);
1188 } else {
1189 ip6h = (struct ipv6hdr *)buf->iph;
1190 i40iw_copy_ip_ntohl(loc_addr, ip6h->daddr.in6_u.u6_addr32);
1191 i40iw_copy_ip_ntohl(rem_addr, ip6h->saddr.in6_u.u6_addr32);
1192 }
1193 loc_port = ntohs(tcph->dest);
1194 rem_port = ntohs(tcph->source);
1195
1196 cm_node = i40iw_find_node(&iwdev->cm_core, rem_port, rem_addr, loc_port,
1197 loc_addr, false);
1198 if (!cm_node)
1199 return NULL;
1200 iwqp = cm_node->iwqp;
1201 return &iwqp->sc_qp;
1202}
1203
1204/**
1205 * i40iw_ieq_update_tcpip_info - update tcpip in the buffer
1206 * @buf: puda to update
1207 * @length: length of buffer
1208 * @seqnum: seq number for tcp
1209 */
1210void i40iw_ieq_update_tcpip_info(struct i40iw_puda_buf *buf, u16 length, u32 seqnum)
1211{
1212 struct tcphdr *tcph;
1213 struct iphdr *iph;
1214 u16 iphlen;
1215 u16 packetsize;
1216 u8 *addr = (u8 *)buf->mem.va;
1217
1218 iphlen = (buf->ipv4) ? 20 : 40;
1219 iph = (struct iphdr *)(addr + buf->maclen);
1220 tcph = (struct tcphdr *)(addr + buf->maclen + iphlen);
1221 packetsize = length + buf->tcphlen + iphlen;
1222
1223 iph->tot_len = htons(packetsize);
1224 tcph->seq = htonl(seqnum);
1225}
1226
1227/**
1228 * i40iw_puda_get_tcpip_info - get tcpip info from puda buffer
1229 * @info: to get information
1230 * @buf: puda buffer
1231 */
1232enum i40iw_status_code i40iw_puda_get_tcpip_info(struct i40iw_puda_completion_info *info,
1233 struct i40iw_puda_buf *buf)
1234{
1235 struct iphdr *iph;
1236 struct ipv6hdr *ip6h;
1237 struct tcphdr *tcph;
1238 u16 iphlen;
1239 u16 pkt_len;
1240 u8 *mem = (u8 *)buf->mem.va;
1241 struct ethhdr *ethh = (struct ethhdr *)buf->mem.va;
1242
1243 if (ethh->h_proto == htons(0x8100)) {
1244 info->vlan_valid = true;
1245 buf->vlan_id = ntohs(((struct vlan_ethhdr *)ethh)->h_vlan_TCI) & VLAN_VID_MASK;
1246 }
1247 buf->maclen = (info->vlan_valid) ? 18 : 14;
1248 iphlen = (info->l3proto) ? 40 : 20;
1249 buf->ipv4 = (info->l3proto) ? false : true;
1250 buf->iph = mem + buf->maclen;
1251 iph = (struct iphdr *)buf->iph;
1252
1253 buf->tcph = buf->iph + iphlen;
1254 tcph = (struct tcphdr *)buf->tcph;
1255
1256 if (buf->ipv4) {
1257 pkt_len = ntohs(iph->tot_len);
1258 } else {
1259 ip6h = (struct ipv6hdr *)buf->iph;
1260 pkt_len = ntohs(ip6h->payload_len) + iphlen;
1261 }
1262
1263 buf->totallen = pkt_len + buf->maclen;
1264
Henry Orosco7581e962016-10-19 15:33:32 -05001265 if (info->payload_len < buf->totallen) {
Faisal Latif4e9042e2016-01-20 13:40:08 -06001266 i40iw_pr_err("payload_len = 0x%x totallen expected0x%x\n",
1267 info->payload_len, buf->totallen);
1268 return I40IW_ERR_INVALID_SIZE;
1269 }
1270
1271 buf->tcphlen = (tcph->doff) << 2;
1272 buf->datalen = pkt_len - iphlen - buf->tcphlen;
1273 buf->data = (buf->datalen) ? buf->tcph + buf->tcphlen : NULL;
1274 buf->hdrlen = buf->maclen + iphlen + buf->tcphlen;
1275 buf->seqnum = ntohl(tcph->seq);
1276 return 0;
1277}
1278
1279/**
1280 * i40iw_hw_stats_timeout - Stats timer-handler which updates all HW stats
1281 * @dev: hardware control device structure
1282 */
1283static void i40iw_hw_stats_timeout(unsigned long dev)
1284{
1285 struct i40iw_sc_dev *pf_dev = (struct i40iw_sc_dev *)dev;
1286 struct i40iw_dev_pestat *pf_devstat = &pf_dev->dev_pestat;
1287 struct i40iw_dev_pestat *vf_devstat = NULL;
1288 u16 iw_vf_idx;
1289 unsigned long flags;
1290
1291 /*PF*/
1292 pf_devstat->ops.iw_hw_stat_read_all(pf_devstat, &pf_devstat->hw_stats);
1293 for (iw_vf_idx = 0; iw_vf_idx < I40IW_MAX_PE_ENABLED_VF_COUNT; iw_vf_idx++) {
1294 spin_lock_irqsave(&pf_devstat->stats_lock, flags);
1295 if (pf_dev->vf_dev[iw_vf_idx]) {
1296 if (pf_dev->vf_dev[iw_vf_idx]->stats_initialized) {
1297 vf_devstat = &pf_dev->vf_dev[iw_vf_idx]->dev_pestat;
1298 vf_devstat->ops.iw_hw_stat_read_all(vf_devstat, &vf_devstat->hw_stats);
1299 }
1300 }
1301 spin_unlock_irqrestore(&pf_devstat->stats_lock, flags);
1302 }
1303
1304 mod_timer(&pf_devstat->stats_timer,
1305 jiffies + msecs_to_jiffies(STATS_TIMER_DELAY));
1306}
1307
1308/**
1309 * i40iw_hw_stats_start_timer - Start periodic stats timer
1310 * @dev: hardware control device structure
1311 */
1312void i40iw_hw_stats_start_timer(struct i40iw_sc_dev *dev)
1313{
1314 struct i40iw_dev_pestat *devstat = &dev->dev_pestat;
1315
1316 init_timer(&devstat->stats_timer);
1317 devstat->stats_timer.function = i40iw_hw_stats_timeout;
1318 devstat->stats_timer.data = (unsigned long)dev;
1319 mod_timer(&devstat->stats_timer,
1320 jiffies + msecs_to_jiffies(STATS_TIMER_DELAY));
1321}
1322
1323/**
1324 * i40iw_hw_stats_del_timer - Delete periodic stats timer
1325 * @dev: hardware control device structure
1326 */
1327void i40iw_hw_stats_del_timer(struct i40iw_sc_dev *dev)
1328{
1329 struct i40iw_dev_pestat *devstat = &dev->dev_pestat;
1330
1331 del_timer_sync(&devstat->stats_timer);
1332}