Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1 | /******************************************************************************* |
| 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 | */ |
| 61 | int i40iw_arp_table(struct i40iw_device *iwdev, |
Ismail, Mustafa | 20c61f7 | 2016-04-18 10:33:07 -0500 | [diff] [blame] | 62 | u32 *ip_addr, |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 63 | 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 | */ |
| 122 | inline 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 | */ |
| 134 | inline 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 | */ |
| 145 | int 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, Mustafa | 20c61f7 | 2016-04-18 10:33:07 -0500 | [diff] [blame] | 155 | u32 local_ipaddr; |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 156 | u32 action = I40IW_ARP_ADD; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 157 | |
| 158 | hdl = i40iw_find_netdev(event_netdev); |
| 159 | if (!hdl) |
| 160 | return NOTIFY_DONE; |
| 161 | |
| 162 | iwdev = &hdl->device; |
Shiraz Saleem | 871a862 | 2017-03-17 18:30:07 -0500 | [diff] [blame] | 163 | if (iwdev->init_state < INET_NOTIFIER) |
| 164 | return NOTIFY_DONE; |
| 165 | |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 166 | netdev = iwdev->ldev->netdev; |
| 167 | upper_dev = netdev_master_upper_dev_get(netdev); |
| 168 | if (netdev != event_netdev) |
| 169 | return NOTIFY_DONE; |
| 170 | |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 171 | if (upper_dev) |
| 172 | local_ipaddr = ntohl( |
| 173 | ((struct in_device *)upper_dev->ip_ptr)->ifa_list->ifa_address); |
| 174 | else |
| 175 | local_ipaddr = ntohl(ifa->ifa_address); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 176 | switch (event) { |
| 177 | case NETDEV_DOWN: |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 178 | action = I40IW_ARP_DELETE; |
| 179 | /* Fall through */ |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 180 | case NETDEV_UP: |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 181 | /* Fall through */ |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 182 | case NETDEV_CHANGEADDR: |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 183 | i40iw_manage_arp_cache(iwdev, |
| 184 | netdev->dev_addr, |
| 185 | &local_ipaddr, |
| 186 | true, |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 187 | action); |
| 188 | i40iw_if_notify(iwdev, netdev, &local_ipaddr, true, |
| 189 | (action == I40IW_ARP_ADD) ? true : false); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 190 | break; |
| 191 | default: |
| 192 | break; |
| 193 | } |
| 194 | return NOTIFY_DONE; |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * i40iw_inet6addr_event - system notifier for ipv6 netdev events |
| 199 | * @notfier: not used |
| 200 | * @event: event for notifier |
| 201 | * @ptr: if address |
| 202 | */ |
| 203 | int i40iw_inet6addr_event(struct notifier_block *notifier, |
| 204 | unsigned long event, |
| 205 | void *ptr) |
| 206 | { |
| 207 | struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr; |
| 208 | struct net_device *event_netdev = ifa->idev->dev; |
| 209 | struct net_device *netdev; |
| 210 | struct i40iw_device *iwdev; |
| 211 | struct i40iw_handler *hdl; |
Ismail, Mustafa | 20c61f7 | 2016-04-18 10:33:07 -0500 | [diff] [blame] | 212 | u32 local_ipaddr6[4]; |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 213 | u32 action = I40IW_ARP_ADD; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 214 | |
| 215 | hdl = i40iw_find_netdev(event_netdev); |
| 216 | if (!hdl) |
| 217 | return NOTIFY_DONE; |
| 218 | |
| 219 | iwdev = &hdl->device; |
Shiraz Saleem | 871a862 | 2017-03-17 18:30:07 -0500 | [diff] [blame] | 220 | if (iwdev->init_state < INET_NOTIFIER) |
| 221 | return NOTIFY_DONE; |
| 222 | |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 223 | netdev = iwdev->ldev->netdev; |
| 224 | if (netdev != event_netdev) |
| 225 | return NOTIFY_DONE; |
| 226 | |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 227 | i40iw_copy_ip_ntohl(local_ipaddr6, ifa->addr.in6_u.u6_addr32); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 228 | switch (event) { |
| 229 | case NETDEV_DOWN: |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 230 | action = I40IW_ARP_DELETE; |
| 231 | /* Fall through */ |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 232 | case NETDEV_UP: |
| 233 | /* Fall through */ |
| 234 | case NETDEV_CHANGEADDR: |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 235 | i40iw_manage_arp_cache(iwdev, |
| 236 | netdev->dev_addr, |
| 237 | local_ipaddr6, |
| 238 | false, |
Mustafa Ismail | e5e74b6 | 2016-11-30 15:07:30 -0600 | [diff] [blame] | 239 | action); |
| 240 | i40iw_if_notify(iwdev, netdev, local_ipaddr6, false, |
| 241 | (action == I40IW_ARP_ADD) ? true : false); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 242 | break; |
| 243 | default: |
| 244 | break; |
| 245 | } |
| 246 | return NOTIFY_DONE; |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * i40iw_net_event - system notifier for net events |
| 251 | * @notfier: not used |
| 252 | * @event: event for notifier |
| 253 | * @ptr: neighbor |
| 254 | */ |
| 255 | int i40iw_net_event(struct notifier_block *notifier, unsigned long event, void *ptr) |
| 256 | { |
| 257 | struct neighbour *neigh = ptr; |
| 258 | struct i40iw_device *iwdev; |
| 259 | struct i40iw_handler *iwhdl; |
| 260 | __be32 *p; |
| 261 | u32 local_ipaddr[4]; |
| 262 | |
| 263 | switch (event) { |
| 264 | case NETEVENT_NEIGH_UPDATE: |
| 265 | iwhdl = i40iw_find_netdev((struct net_device *)neigh->dev); |
| 266 | if (!iwhdl) |
| 267 | return NOTIFY_DONE; |
| 268 | iwdev = &iwhdl->device; |
Shiraz Saleem | 871a862 | 2017-03-17 18:30:07 -0500 | [diff] [blame] | 269 | if (iwdev->init_state < INET_NOTIFIER) |
| 270 | return NOTIFY_DONE; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 271 | p = (__be32 *)neigh->primary_key; |
| 272 | i40iw_copy_ip_ntohl(local_ipaddr, p); |
| 273 | if (neigh->nud_state & NUD_VALID) { |
| 274 | i40iw_manage_arp_cache(iwdev, |
| 275 | neigh->ha, |
| 276 | local_ipaddr, |
| 277 | false, |
| 278 | I40IW_ARP_ADD); |
| 279 | |
| 280 | } else { |
| 281 | i40iw_manage_arp_cache(iwdev, |
| 282 | neigh->ha, |
| 283 | local_ipaddr, |
| 284 | false, |
| 285 | I40IW_ARP_DELETE); |
| 286 | } |
| 287 | break; |
| 288 | default: |
| 289 | break; |
| 290 | } |
| 291 | return NOTIFY_DONE; |
| 292 | } |
| 293 | |
| 294 | /** |
| 295 | * i40iw_get_cqp_request - get cqp struct |
| 296 | * @cqp: device cqp ptr |
| 297 | * @wait: cqp to be used in wait mode |
| 298 | */ |
| 299 | struct i40iw_cqp_request *i40iw_get_cqp_request(struct i40iw_cqp *cqp, bool wait) |
| 300 | { |
| 301 | struct i40iw_cqp_request *cqp_request = NULL; |
| 302 | unsigned long flags; |
| 303 | |
| 304 | spin_lock_irqsave(&cqp->req_lock, flags); |
| 305 | if (!list_empty(&cqp->cqp_avail_reqs)) { |
| 306 | cqp_request = list_entry(cqp->cqp_avail_reqs.next, |
| 307 | struct i40iw_cqp_request, list); |
| 308 | list_del_init(&cqp_request->list); |
| 309 | } |
| 310 | spin_unlock_irqrestore(&cqp->req_lock, flags); |
| 311 | if (!cqp_request) { |
| 312 | cqp_request = kzalloc(sizeof(*cqp_request), GFP_ATOMIC); |
| 313 | if (cqp_request) { |
| 314 | cqp_request->dynamic = true; |
| 315 | INIT_LIST_HEAD(&cqp_request->list); |
| 316 | init_waitqueue_head(&cqp_request->waitq); |
| 317 | } |
| 318 | } |
| 319 | if (!cqp_request) { |
| 320 | i40iw_pr_err("CQP Request Fail: No Memory"); |
| 321 | return NULL; |
| 322 | } |
| 323 | |
| 324 | if (wait) { |
| 325 | atomic_set(&cqp_request->refcount, 2); |
| 326 | cqp_request->waiting = true; |
| 327 | } else { |
| 328 | atomic_set(&cqp_request->refcount, 1); |
| 329 | } |
| 330 | return cqp_request; |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * i40iw_free_cqp_request - free cqp request |
| 335 | * @cqp: cqp ptr |
| 336 | * @cqp_request: to be put back in cqp list |
| 337 | */ |
| 338 | void i40iw_free_cqp_request(struct i40iw_cqp *cqp, struct i40iw_cqp_request *cqp_request) |
| 339 | { |
| 340 | unsigned long flags; |
| 341 | |
| 342 | if (cqp_request->dynamic) { |
| 343 | kfree(cqp_request); |
| 344 | } else { |
| 345 | cqp_request->request_done = false; |
| 346 | cqp_request->callback_fcn = NULL; |
| 347 | cqp_request->waiting = false; |
| 348 | |
| 349 | spin_lock_irqsave(&cqp->req_lock, flags); |
| 350 | list_add_tail(&cqp_request->list, &cqp->cqp_avail_reqs); |
| 351 | spin_unlock_irqrestore(&cqp->req_lock, flags); |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | /** |
| 356 | * i40iw_put_cqp_request - dec ref count and free if 0 |
| 357 | * @cqp: cqp ptr |
| 358 | * @cqp_request: to be put back in cqp list |
| 359 | */ |
| 360 | void i40iw_put_cqp_request(struct i40iw_cqp *cqp, |
| 361 | struct i40iw_cqp_request *cqp_request) |
| 362 | { |
| 363 | if (atomic_dec_and_test(&cqp_request->refcount)) |
| 364 | i40iw_free_cqp_request(cqp, cqp_request); |
| 365 | } |
| 366 | |
| 367 | /** |
| 368 | * i40iw_free_qp - callback after destroy cqp completes |
| 369 | * @cqp_request: cqp request for destroy qp |
| 370 | * @num: not used |
| 371 | */ |
| 372 | static void i40iw_free_qp(struct i40iw_cqp_request *cqp_request, u32 num) |
| 373 | { |
| 374 | struct i40iw_sc_qp *qp = (struct i40iw_sc_qp *)cqp_request->param; |
| 375 | struct i40iw_qp *iwqp = (struct i40iw_qp *)qp->back_qp; |
| 376 | struct i40iw_device *iwdev; |
| 377 | u32 qp_num = iwqp->ibqp.qp_num; |
| 378 | |
| 379 | iwdev = iwqp->iwdev; |
| 380 | |
| 381 | i40iw_rem_pdusecount(iwqp->iwpd, iwdev); |
| 382 | i40iw_free_qp_resources(iwdev, iwqp, qp_num); |
Mustafa Ismail | d596593 | 2016-11-30 14:59:26 -0600 | [diff] [blame] | 383 | i40iw_rem_devusecount(iwdev); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /** |
| 387 | * i40iw_wait_event - wait for completion |
| 388 | * @iwdev: iwarp device |
| 389 | * @cqp_request: cqp request to wait |
| 390 | */ |
| 391 | static int i40iw_wait_event(struct i40iw_device *iwdev, |
| 392 | struct i40iw_cqp_request *cqp_request) |
| 393 | { |
| 394 | struct cqp_commands_info *info = &cqp_request->info; |
| 395 | struct i40iw_cqp *iwcqp = &iwdev->cqp; |
| 396 | bool cqp_error = false; |
| 397 | int err_code = 0; |
| 398 | int timeout_ret = 0; |
| 399 | |
| 400 | timeout_ret = wait_event_timeout(cqp_request->waitq, |
| 401 | cqp_request->request_done, |
| 402 | I40IW_EVENT_TIMEOUT); |
| 403 | if (!timeout_ret) { |
| 404 | i40iw_pr_err("error cqp command 0x%x timed out ret = %d\n", |
| 405 | info->cqp_cmd, timeout_ret); |
| 406 | err_code = -ETIME; |
Henry Orosco | 78300cf | 2016-11-30 15:14:15 -0600 | [diff] [blame] | 407 | if (!iwdev->reset) { |
| 408 | iwdev->reset = true; |
| 409 | i40iw_request_reset(iwdev); |
| 410 | } |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 411 | goto done; |
| 412 | } |
| 413 | cqp_error = cqp_request->compl_info.error; |
| 414 | if (cqp_error) { |
| 415 | i40iw_pr_err("error cqp command 0x%x completion maj = 0x%x min=0x%x\n", |
| 416 | info->cqp_cmd, cqp_request->compl_info.maj_err_code, |
| 417 | cqp_request->compl_info.min_err_code); |
| 418 | err_code = -EPROTO; |
| 419 | goto done; |
| 420 | } |
| 421 | done: |
| 422 | i40iw_put_cqp_request(iwcqp, cqp_request); |
| 423 | return err_code; |
| 424 | } |
| 425 | |
| 426 | /** |
| 427 | * i40iw_handle_cqp_op - process cqp command |
| 428 | * @iwdev: iwarp device |
| 429 | * @cqp_request: cqp request to process |
| 430 | */ |
| 431 | enum i40iw_status_code i40iw_handle_cqp_op(struct i40iw_device *iwdev, |
| 432 | struct i40iw_cqp_request |
| 433 | *cqp_request) |
| 434 | { |
| 435 | struct i40iw_sc_dev *dev = &iwdev->sc_dev; |
| 436 | enum i40iw_status_code status; |
| 437 | struct cqp_commands_info *info = &cqp_request->info; |
| 438 | int err_code = 0; |
| 439 | |
Henry Orosco | 78300cf | 2016-11-30 15:14:15 -0600 | [diff] [blame] | 440 | if (iwdev->reset) { |
| 441 | i40iw_free_cqp_request(&iwdev->cqp, cqp_request); |
| 442 | return I40IW_ERR_CQP_COMPL_ERROR; |
| 443 | } |
| 444 | |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 445 | status = i40iw_process_cqp_cmd(dev, info); |
| 446 | if (status) { |
| 447 | i40iw_pr_err("error cqp command 0x%x failed\n", info->cqp_cmd); |
| 448 | i40iw_free_cqp_request(&iwdev->cqp, cqp_request); |
| 449 | return status; |
| 450 | } |
| 451 | if (cqp_request->waiting) |
| 452 | err_code = i40iw_wait_event(iwdev, cqp_request); |
| 453 | if (err_code) |
| 454 | status = I40IW_ERR_CQP_COMPL_ERROR; |
| 455 | return status; |
| 456 | } |
| 457 | |
| 458 | /** |
Mustafa Ismail | d596593 | 2016-11-30 14:59:26 -0600 | [diff] [blame] | 459 | * i40iw_add_devusecount - add dev refcount |
| 460 | * @iwdev: dev for refcount |
| 461 | */ |
| 462 | void i40iw_add_devusecount(struct i40iw_device *iwdev) |
| 463 | { |
| 464 | atomic64_inc(&iwdev->use_count); |
| 465 | } |
| 466 | |
| 467 | /** |
| 468 | * i40iw_rem_devusecount - decrement refcount for dev |
| 469 | * @iwdev: device |
| 470 | */ |
| 471 | void i40iw_rem_devusecount(struct i40iw_device *iwdev) |
| 472 | { |
| 473 | if (!atomic64_dec_and_test(&iwdev->use_count)) |
| 474 | return; |
| 475 | wake_up(&iwdev->close_wq); |
| 476 | } |
| 477 | |
| 478 | /** |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 479 | * i40iw_add_pdusecount - add pd refcount |
| 480 | * @iwpd: pd for refcount |
| 481 | */ |
| 482 | void i40iw_add_pdusecount(struct i40iw_pd *iwpd) |
| 483 | { |
| 484 | atomic_inc(&iwpd->usecount); |
| 485 | } |
| 486 | |
| 487 | /** |
| 488 | * i40iw_rem_pdusecount - decrement refcount for pd and free if 0 |
| 489 | * @iwpd: pd for refcount |
| 490 | * @iwdev: iwarp device |
| 491 | */ |
| 492 | void i40iw_rem_pdusecount(struct i40iw_pd *iwpd, struct i40iw_device *iwdev) |
| 493 | { |
| 494 | if (!atomic_dec_and_test(&iwpd->usecount)) |
| 495 | return; |
| 496 | i40iw_free_resource(iwdev, iwdev->allocated_pds, iwpd->sc_pd.pd_id); |
| 497 | kfree(iwpd); |
| 498 | } |
| 499 | |
| 500 | /** |
| 501 | * i40iw_add_ref - add refcount for qp |
| 502 | * @ibqp: iqarp qp |
| 503 | */ |
| 504 | void i40iw_add_ref(struct ib_qp *ibqp) |
| 505 | { |
| 506 | struct i40iw_qp *iwqp = (struct i40iw_qp *)ibqp; |
| 507 | |
| 508 | atomic_inc(&iwqp->refcount); |
| 509 | } |
| 510 | |
| 511 | /** |
| 512 | * i40iw_rem_ref - rem refcount for qp and free if 0 |
| 513 | * @ibqp: iqarp qp |
| 514 | */ |
| 515 | void i40iw_rem_ref(struct ib_qp *ibqp) |
| 516 | { |
| 517 | struct i40iw_qp *iwqp; |
| 518 | enum i40iw_status_code status; |
| 519 | struct i40iw_cqp_request *cqp_request; |
| 520 | struct cqp_commands_info *cqp_info; |
| 521 | struct i40iw_device *iwdev; |
| 522 | u32 qp_num; |
Ismail, Mustafa | 996abf0a | 2016-04-18 10:32:59 -0500 | [diff] [blame] | 523 | unsigned long flags; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 524 | |
| 525 | iwqp = to_iwqp(ibqp); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 526 | iwdev = iwqp->iwdev; |
Ismail, Mustafa | 996abf0a | 2016-04-18 10:32:59 -0500 | [diff] [blame] | 527 | spin_lock_irqsave(&iwdev->qptable_lock, flags); |
| 528 | if (!atomic_dec_and_test(&iwqp->refcount)) { |
| 529 | spin_unlock_irqrestore(&iwdev->qptable_lock, flags); |
| 530 | return; |
| 531 | } |
| 532 | |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 533 | qp_num = iwqp->ibqp.qp_num; |
| 534 | iwdev->qp_table[qp_num] = NULL; |
Ismail, Mustafa | 996abf0a | 2016-04-18 10:32:59 -0500 | [diff] [blame] | 535 | spin_unlock_irqrestore(&iwdev->qptable_lock, flags); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 536 | cqp_request = i40iw_get_cqp_request(&iwdev->cqp, false); |
| 537 | if (!cqp_request) |
| 538 | return; |
| 539 | |
| 540 | cqp_request->callback_fcn = i40iw_free_qp; |
| 541 | cqp_request->param = (void *)&iwqp->sc_qp; |
| 542 | cqp_info = &cqp_request->info; |
| 543 | cqp_info->cqp_cmd = OP_QP_DESTROY; |
| 544 | cqp_info->post_sq = 1; |
| 545 | cqp_info->in.u.qp_destroy.qp = &iwqp->sc_qp; |
| 546 | cqp_info->in.u.qp_destroy.scratch = (uintptr_t)cqp_request; |
| 547 | cqp_info->in.u.qp_destroy.remove_hash_idx = true; |
| 548 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 549 | if (status) |
| 550 | i40iw_pr_err("CQP-OP Destroy QP fail"); |
| 551 | } |
| 552 | |
| 553 | /** |
| 554 | * i40iw_get_qp - get qp address |
| 555 | * @device: iwarp device |
| 556 | * @qpn: qp number |
| 557 | */ |
| 558 | struct ib_qp *i40iw_get_qp(struct ib_device *device, int qpn) |
| 559 | { |
| 560 | struct i40iw_device *iwdev = to_iwdev(device); |
| 561 | |
| 562 | if ((qpn < IW_FIRST_QPN) || (qpn >= iwdev->max_qp)) |
| 563 | return NULL; |
| 564 | |
| 565 | return &iwdev->qp_table[qpn]->ibqp; |
| 566 | } |
| 567 | |
| 568 | /** |
| 569 | * i40iw_debug_buf - print debug msg and buffer is mask set |
| 570 | * @dev: hardware control device structure |
| 571 | * @mask: mask to compare if to print debug buffer |
| 572 | * @buf: points buffer addr |
| 573 | * @size: saize of buffer to print |
| 574 | */ |
| 575 | void i40iw_debug_buf(struct i40iw_sc_dev *dev, |
| 576 | enum i40iw_debug_flag mask, |
| 577 | char *desc, |
| 578 | u64 *buf, |
| 579 | u32 size) |
| 580 | { |
| 581 | u32 i; |
| 582 | |
| 583 | if (!(dev->debug_mask & mask)) |
| 584 | return; |
| 585 | i40iw_debug(dev, mask, "%s\n", desc); |
| 586 | i40iw_debug(dev, mask, "starting address virt=%p phy=%llxh\n", buf, |
| 587 | (unsigned long long)virt_to_phys(buf)); |
| 588 | |
| 589 | for (i = 0; i < size; i += 8) |
| 590 | i40iw_debug(dev, mask, "index %03d val: %016llx\n", i, buf[i / 8]); |
| 591 | } |
| 592 | |
| 593 | /** |
| 594 | * i40iw_get_hw_addr - return hw addr |
| 595 | * @par: points to shared dev |
| 596 | */ |
| 597 | u8 __iomem *i40iw_get_hw_addr(void *par) |
| 598 | { |
| 599 | struct i40iw_sc_dev *dev = (struct i40iw_sc_dev *)par; |
| 600 | |
| 601 | return dev->hw->hw_addr; |
| 602 | } |
| 603 | |
| 604 | /** |
| 605 | * i40iw_remove_head - return head entry and remove from list |
| 606 | * @list: list for entry |
| 607 | */ |
| 608 | void *i40iw_remove_head(struct list_head *list) |
| 609 | { |
| 610 | struct list_head *entry; |
| 611 | |
| 612 | if (list_empty(list)) |
| 613 | return NULL; |
| 614 | |
| 615 | entry = (void *)list->next; |
| 616 | list_del(entry); |
| 617 | return (void *)entry; |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * i40iw_allocate_dma_mem - Memory alloc helper fn |
| 622 | * @hw: pointer to the HW structure |
| 623 | * @mem: ptr to mem struct to fill out |
| 624 | * @size: size of memory requested |
| 625 | * @alignment: what to align the allocation to |
| 626 | */ |
| 627 | enum i40iw_status_code i40iw_allocate_dma_mem(struct i40iw_hw *hw, |
| 628 | struct i40iw_dma_mem *mem, |
| 629 | u64 size, |
| 630 | u32 alignment) |
| 631 | { |
| 632 | struct pci_dev *pcidev = (struct pci_dev *)hw->dev_context; |
| 633 | |
| 634 | if (!mem) |
| 635 | return I40IW_ERR_PARAM; |
| 636 | mem->size = ALIGN(size, alignment); |
| 637 | mem->va = dma_zalloc_coherent(&pcidev->dev, mem->size, |
| 638 | (dma_addr_t *)&mem->pa, GFP_KERNEL); |
| 639 | if (!mem->va) |
| 640 | return I40IW_ERR_NO_MEMORY; |
| 641 | return 0; |
| 642 | } |
| 643 | |
| 644 | /** |
| 645 | * i40iw_free_dma_mem - Memory free helper fn |
| 646 | * @hw: pointer to the HW structure |
| 647 | * @mem: ptr to mem struct to free |
| 648 | */ |
| 649 | void i40iw_free_dma_mem(struct i40iw_hw *hw, struct i40iw_dma_mem *mem) |
| 650 | { |
| 651 | struct pci_dev *pcidev = (struct pci_dev *)hw->dev_context; |
| 652 | |
| 653 | if (!mem || !mem->va) |
| 654 | return; |
| 655 | |
| 656 | dma_free_coherent(&pcidev->dev, mem->size, |
| 657 | mem->va, (dma_addr_t)mem->pa); |
| 658 | mem->va = NULL; |
| 659 | } |
| 660 | |
| 661 | /** |
| 662 | * i40iw_allocate_virt_mem - virtual memory alloc helper fn |
| 663 | * @hw: pointer to the HW structure |
| 664 | * @mem: ptr to mem struct to fill out |
| 665 | * @size: size of memory requested |
| 666 | */ |
| 667 | enum i40iw_status_code i40iw_allocate_virt_mem(struct i40iw_hw *hw, |
| 668 | struct i40iw_virt_mem *mem, |
| 669 | u32 size) |
| 670 | { |
| 671 | if (!mem) |
| 672 | return I40IW_ERR_PARAM; |
| 673 | |
| 674 | mem->size = size; |
| 675 | mem->va = kzalloc(size, GFP_KERNEL); |
| 676 | |
| 677 | if (mem->va) |
| 678 | return 0; |
| 679 | else |
| 680 | return I40IW_ERR_NO_MEMORY; |
| 681 | } |
| 682 | |
| 683 | /** |
| 684 | * i40iw_free_virt_mem - virtual memory free helper fn |
| 685 | * @hw: pointer to the HW structure |
| 686 | * @mem: ptr to mem struct to free |
| 687 | */ |
| 688 | enum i40iw_status_code i40iw_free_virt_mem(struct i40iw_hw *hw, |
| 689 | struct i40iw_virt_mem *mem) |
| 690 | { |
| 691 | if (!mem) |
| 692 | return I40IW_ERR_PARAM; |
Mustafa Ismail | 7eaf831 | 2016-08-22 19:01:47 -0500 | [diff] [blame] | 693 | /* |
| 694 | * mem->va points to the parent of mem, so both mem and mem->va |
| 695 | * can not be touched once mem->va is freed |
| 696 | */ |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 697 | kfree(mem->va); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 698 | return 0; |
| 699 | } |
| 700 | |
| 701 | /** |
| 702 | * i40iw_cqp_sds_cmd - create cqp command for sd |
| 703 | * @dev: hardware control device structure |
| 704 | * @sd_info: information for sd cqp |
| 705 | * |
| 706 | */ |
| 707 | enum i40iw_status_code i40iw_cqp_sds_cmd(struct i40iw_sc_dev *dev, |
| 708 | struct i40iw_update_sds_info *sdinfo) |
| 709 | { |
| 710 | enum i40iw_status_code status; |
| 711 | struct i40iw_cqp_request *cqp_request; |
| 712 | struct cqp_commands_info *cqp_info; |
| 713 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 714 | |
| 715 | cqp_request = i40iw_get_cqp_request(&iwdev->cqp, true); |
| 716 | if (!cqp_request) |
| 717 | return I40IW_ERR_NO_MEMORY; |
| 718 | cqp_info = &cqp_request->info; |
| 719 | memcpy(&cqp_info->in.u.update_pe_sds.info, sdinfo, |
| 720 | sizeof(cqp_info->in.u.update_pe_sds.info)); |
| 721 | cqp_info->cqp_cmd = OP_UPDATE_PE_SDS; |
| 722 | cqp_info->post_sq = 1; |
| 723 | cqp_info->in.u.update_pe_sds.dev = dev; |
| 724 | cqp_info->in.u.update_pe_sds.scratch = (uintptr_t)cqp_request; |
| 725 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 726 | if (status) |
| 727 | i40iw_pr_err("CQP-OP Update SD's fail"); |
| 728 | return status; |
| 729 | } |
| 730 | |
| 731 | /** |
Henry Orosco | 0fc2dc5 | 2016-10-10 21:12:10 -0500 | [diff] [blame] | 732 | * i40iw_qp_suspend_resume - cqp command for suspend/resume |
| 733 | * @dev: hardware control device structure |
| 734 | * @qp: hardware control qp |
| 735 | * @suspend: flag if suspend or resume |
| 736 | */ |
| 737 | void i40iw_qp_suspend_resume(struct i40iw_sc_dev *dev, struct i40iw_sc_qp *qp, bool suspend) |
| 738 | { |
| 739 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 740 | struct i40iw_cqp_request *cqp_request; |
| 741 | struct i40iw_sc_cqp *cqp = dev->cqp; |
| 742 | struct cqp_commands_info *cqp_info; |
| 743 | enum i40iw_status_code status; |
| 744 | |
| 745 | cqp_request = i40iw_get_cqp_request(&iwdev->cqp, false); |
| 746 | if (!cqp_request) |
| 747 | return; |
| 748 | |
| 749 | cqp_info = &cqp_request->info; |
| 750 | cqp_info->cqp_cmd = (suspend) ? OP_SUSPEND : OP_RESUME; |
| 751 | cqp_info->in.u.suspend_resume.cqp = cqp; |
| 752 | cqp_info->in.u.suspend_resume.qp = qp; |
| 753 | cqp_info->in.u.suspend_resume.scratch = (uintptr_t)cqp_request; |
| 754 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 755 | if (status) |
| 756 | i40iw_pr_err("CQP-OP QP Suspend/Resume fail"); |
| 757 | } |
| 758 | |
| 759 | /** |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 760 | * i40iw_term_modify_qp - modify qp for term message |
| 761 | * @qp: hardware control qp |
| 762 | * @next_state: qp's next state |
| 763 | * @term: terminate code |
| 764 | * @term_len: length |
| 765 | */ |
| 766 | void i40iw_term_modify_qp(struct i40iw_sc_qp *qp, u8 next_state, u8 term, u8 term_len) |
| 767 | { |
| 768 | struct i40iw_qp *iwqp; |
| 769 | |
| 770 | iwqp = (struct i40iw_qp *)qp->back_qp; |
| 771 | i40iw_next_iw_state(iwqp, next_state, 0, term, term_len); |
| 772 | }; |
| 773 | |
| 774 | /** |
| 775 | * i40iw_terminate_done - after terminate is completed |
| 776 | * @qp: hardware control qp |
| 777 | * @timeout_occurred: indicates if terminate timer expired |
| 778 | */ |
| 779 | void i40iw_terminate_done(struct i40iw_sc_qp *qp, int timeout_occurred) |
| 780 | { |
| 781 | struct i40iw_qp *iwqp; |
| 782 | u32 next_iwarp_state = I40IW_QP_STATE_ERROR; |
| 783 | u8 hte = 0; |
| 784 | bool first_time; |
| 785 | unsigned long flags; |
| 786 | |
| 787 | iwqp = (struct i40iw_qp *)qp->back_qp; |
| 788 | spin_lock_irqsave(&iwqp->lock, flags); |
| 789 | if (iwqp->hte_added) { |
| 790 | iwqp->hte_added = 0; |
| 791 | hte = 1; |
| 792 | } |
| 793 | first_time = !(qp->term_flags & I40IW_TERM_DONE); |
| 794 | qp->term_flags |= I40IW_TERM_DONE; |
| 795 | spin_unlock_irqrestore(&iwqp->lock, flags); |
| 796 | if (first_time) { |
| 797 | if (!timeout_occurred) |
| 798 | i40iw_terminate_del_timer(qp); |
| 799 | else |
| 800 | next_iwarp_state = I40IW_QP_STATE_CLOSING; |
| 801 | |
| 802 | i40iw_next_iw_state(iwqp, next_iwarp_state, hte, 0, 0); |
| 803 | i40iw_cm_disconn(iwqp); |
| 804 | } |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * i40iw_terminate_imeout - timeout happened |
| 809 | * @context: points to iwarp qp |
| 810 | */ |
| 811 | static void i40iw_terminate_timeout(unsigned long context) |
| 812 | { |
| 813 | struct i40iw_qp *iwqp = (struct i40iw_qp *)context; |
| 814 | struct i40iw_sc_qp *qp = (struct i40iw_sc_qp *)&iwqp->sc_qp; |
| 815 | |
| 816 | i40iw_terminate_done(qp, 1); |
Shiraz Saleem | d627b50 | 2016-12-06 15:49:33 -0600 | [diff] [blame] | 817 | i40iw_rem_ref(&iwqp->ibqp); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | /** |
| 821 | * i40iw_terminate_start_timer - start terminate timeout |
| 822 | * @qp: hardware control qp |
| 823 | */ |
| 824 | void i40iw_terminate_start_timer(struct i40iw_sc_qp *qp) |
| 825 | { |
| 826 | struct i40iw_qp *iwqp; |
| 827 | |
| 828 | iwqp = (struct i40iw_qp *)qp->back_qp; |
Shiraz Saleem | d627b50 | 2016-12-06 15:49:33 -0600 | [diff] [blame] | 829 | i40iw_add_ref(&iwqp->ibqp); |
Geliang Tang | 96ff2c1 | 2017-04-22 09:32:54 +0800 | [diff] [blame] | 830 | setup_timer(&iwqp->terminate_timer, i40iw_terminate_timeout, |
| 831 | (unsigned long)iwqp); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 832 | iwqp->terminate_timer.expires = jiffies + HZ; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 833 | add_timer(&iwqp->terminate_timer); |
| 834 | } |
| 835 | |
| 836 | /** |
| 837 | * i40iw_terminate_del_timer - delete terminate timeout |
| 838 | * @qp: hardware control qp |
| 839 | */ |
| 840 | void i40iw_terminate_del_timer(struct i40iw_sc_qp *qp) |
| 841 | { |
| 842 | struct i40iw_qp *iwqp; |
| 843 | |
| 844 | iwqp = (struct i40iw_qp *)qp->back_qp; |
Shiraz Saleem | d627b50 | 2016-12-06 15:49:33 -0600 | [diff] [blame] | 845 | if (del_timer(&iwqp->terminate_timer)) |
| 846 | i40iw_rem_ref(&iwqp->ibqp); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 847 | } |
| 848 | |
| 849 | /** |
| 850 | * i40iw_cqp_generic_worker - generic worker for cqp |
| 851 | * @work: work pointer |
| 852 | */ |
| 853 | static void i40iw_cqp_generic_worker(struct work_struct *work) |
| 854 | { |
| 855 | struct i40iw_virtchnl_work_info *work_info = |
| 856 | &((struct virtchnl_work *)work)->work_info; |
| 857 | |
| 858 | if (work_info->worker_vf_dev) |
| 859 | work_info->callback_fcn(work_info->worker_vf_dev); |
| 860 | } |
| 861 | |
| 862 | /** |
| 863 | * i40iw_cqp_spawn_worker - spawn worket thread |
| 864 | * @iwdev: device struct pointer |
| 865 | * @work_info: work request info |
| 866 | * @iw_vf_idx: virtual function index |
| 867 | */ |
| 868 | void i40iw_cqp_spawn_worker(struct i40iw_sc_dev *dev, |
| 869 | struct i40iw_virtchnl_work_info *work_info, |
| 870 | u32 iw_vf_idx) |
| 871 | { |
| 872 | struct virtchnl_work *work; |
| 873 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 874 | |
| 875 | work = &iwdev->virtchnl_w[iw_vf_idx]; |
| 876 | memcpy(&work->work_info, work_info, sizeof(*work_info)); |
| 877 | INIT_WORK(&work->work, i40iw_cqp_generic_worker); |
| 878 | queue_work(iwdev->virtchnl_wq, &work->work); |
| 879 | } |
| 880 | |
| 881 | /** |
| 882 | * i40iw_cqp_manage_hmc_fcn_worker - |
| 883 | * @work: work pointer for hmc info |
| 884 | */ |
| 885 | static void i40iw_cqp_manage_hmc_fcn_worker(struct work_struct *work) |
| 886 | { |
| 887 | struct i40iw_cqp_request *cqp_request = |
| 888 | ((struct virtchnl_work *)work)->cqp_request; |
| 889 | struct i40iw_ccq_cqe_info ccq_cqe_info; |
| 890 | struct i40iw_hmc_fcn_info *hmcfcninfo = |
| 891 | &cqp_request->info.in.u.manage_hmc_pm.info; |
| 892 | struct i40iw_device *iwdev = |
| 893 | (struct i40iw_device *)cqp_request->info.in.u.manage_hmc_pm.dev->back_dev; |
| 894 | |
| 895 | ccq_cqe_info.cqp = NULL; |
| 896 | ccq_cqe_info.maj_err_code = cqp_request->compl_info.maj_err_code; |
| 897 | ccq_cqe_info.min_err_code = cqp_request->compl_info.min_err_code; |
| 898 | ccq_cqe_info.op_code = cqp_request->compl_info.op_code; |
| 899 | ccq_cqe_info.op_ret_val = cqp_request->compl_info.op_ret_val; |
| 900 | ccq_cqe_info.scratch = 0; |
| 901 | ccq_cqe_info.error = cqp_request->compl_info.error; |
| 902 | hmcfcninfo->callback_fcn(cqp_request->info.in.u.manage_hmc_pm.dev, |
| 903 | hmcfcninfo->cqp_callback_param, &ccq_cqe_info); |
| 904 | i40iw_put_cqp_request(&iwdev->cqp, cqp_request); |
| 905 | } |
| 906 | |
| 907 | /** |
| 908 | * i40iw_cqp_manage_hmc_fcn_callback - called function after cqp completion |
| 909 | * @cqp_request: cqp request info struct for hmc fun |
| 910 | * @unused: unused param of callback |
| 911 | */ |
| 912 | static void i40iw_cqp_manage_hmc_fcn_callback(struct i40iw_cqp_request *cqp_request, |
| 913 | u32 unused) |
| 914 | { |
| 915 | struct virtchnl_work *work; |
| 916 | struct i40iw_hmc_fcn_info *hmcfcninfo = |
| 917 | &cqp_request->info.in.u.manage_hmc_pm.info; |
| 918 | struct i40iw_device *iwdev = |
| 919 | (struct i40iw_device *)cqp_request->info.in.u.manage_hmc_pm.dev-> |
| 920 | back_dev; |
| 921 | |
| 922 | if (hmcfcninfo && hmcfcninfo->callback_fcn) { |
| 923 | i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s1\n", __func__); |
| 924 | atomic_inc(&cqp_request->refcount); |
| 925 | work = &iwdev->virtchnl_w[hmcfcninfo->iw_vf_idx]; |
| 926 | work->cqp_request = cqp_request; |
| 927 | INIT_WORK(&work->work, i40iw_cqp_manage_hmc_fcn_worker); |
| 928 | queue_work(iwdev->virtchnl_wq, &work->work); |
| 929 | i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s2\n", __func__); |
| 930 | } else { |
| 931 | i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s: Something wrong\n", __func__); |
| 932 | } |
| 933 | } |
| 934 | |
| 935 | /** |
| 936 | * i40iw_cqp_manage_hmc_fcn_cmd - issue cqp command to manage hmc |
| 937 | * @dev: hardware control device structure |
| 938 | * @hmcfcninfo: info for hmc |
| 939 | */ |
| 940 | enum i40iw_status_code i40iw_cqp_manage_hmc_fcn_cmd(struct i40iw_sc_dev *dev, |
| 941 | struct i40iw_hmc_fcn_info *hmcfcninfo) |
| 942 | { |
| 943 | enum i40iw_status_code status; |
| 944 | struct i40iw_cqp_request *cqp_request; |
| 945 | struct cqp_commands_info *cqp_info; |
| 946 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 947 | |
| 948 | i40iw_debug(&iwdev->sc_dev, I40IW_DEBUG_HMC, "%s\n", __func__); |
| 949 | cqp_request = i40iw_get_cqp_request(&iwdev->cqp, false); |
| 950 | if (!cqp_request) |
| 951 | return I40IW_ERR_NO_MEMORY; |
| 952 | cqp_info = &cqp_request->info; |
| 953 | cqp_request->callback_fcn = i40iw_cqp_manage_hmc_fcn_callback; |
| 954 | cqp_request->param = hmcfcninfo; |
| 955 | memcpy(&cqp_info->in.u.manage_hmc_pm.info, hmcfcninfo, |
| 956 | sizeof(*hmcfcninfo)); |
| 957 | cqp_info->in.u.manage_hmc_pm.dev = dev; |
| 958 | cqp_info->cqp_cmd = OP_MANAGE_HMC_PM_FUNC_TABLE; |
| 959 | cqp_info->post_sq = 1; |
| 960 | cqp_info->in.u.manage_hmc_pm.scratch = (uintptr_t)cqp_request; |
| 961 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 962 | if (status) |
| 963 | i40iw_pr_err("CQP-OP Manage HMC fail"); |
| 964 | return status; |
| 965 | } |
| 966 | |
| 967 | /** |
| 968 | * i40iw_cqp_query_fpm_values_cmd - send cqp command for fpm |
| 969 | * @iwdev: function device struct |
| 970 | * @values_mem: buffer for fpm |
| 971 | * @hmc_fn_id: function id for fpm |
| 972 | */ |
| 973 | enum i40iw_status_code i40iw_cqp_query_fpm_values_cmd(struct i40iw_sc_dev *dev, |
| 974 | struct i40iw_dma_mem *values_mem, |
| 975 | u8 hmc_fn_id) |
| 976 | { |
| 977 | enum i40iw_status_code status; |
| 978 | struct i40iw_cqp_request *cqp_request; |
| 979 | struct cqp_commands_info *cqp_info; |
| 980 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 981 | |
| 982 | cqp_request = i40iw_get_cqp_request(&iwdev->cqp, true); |
| 983 | if (!cqp_request) |
| 984 | return I40IW_ERR_NO_MEMORY; |
| 985 | cqp_info = &cqp_request->info; |
| 986 | cqp_request->param = NULL; |
| 987 | cqp_info->in.u.query_fpm_values.cqp = dev->cqp; |
| 988 | cqp_info->in.u.query_fpm_values.fpm_values_pa = values_mem->pa; |
| 989 | cqp_info->in.u.query_fpm_values.fpm_values_va = values_mem->va; |
| 990 | cqp_info->in.u.query_fpm_values.hmc_fn_id = hmc_fn_id; |
| 991 | cqp_info->cqp_cmd = OP_QUERY_FPM_VALUES; |
| 992 | cqp_info->post_sq = 1; |
| 993 | cqp_info->in.u.query_fpm_values.scratch = (uintptr_t)cqp_request; |
| 994 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 995 | if (status) |
| 996 | i40iw_pr_err("CQP-OP Query FPM fail"); |
| 997 | return status; |
| 998 | } |
| 999 | |
| 1000 | /** |
| 1001 | * i40iw_cqp_commit_fpm_values_cmd - commit fpm values in hw |
| 1002 | * @dev: hardware control device structure |
| 1003 | * @values_mem: buffer with fpm values |
| 1004 | * @hmc_fn_id: function id for fpm |
| 1005 | */ |
| 1006 | enum i40iw_status_code i40iw_cqp_commit_fpm_values_cmd(struct i40iw_sc_dev *dev, |
| 1007 | struct i40iw_dma_mem *values_mem, |
| 1008 | u8 hmc_fn_id) |
| 1009 | { |
| 1010 | enum i40iw_status_code status; |
| 1011 | struct i40iw_cqp_request *cqp_request; |
| 1012 | struct cqp_commands_info *cqp_info; |
| 1013 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1014 | |
| 1015 | cqp_request = i40iw_get_cqp_request(&iwdev->cqp, true); |
| 1016 | if (!cqp_request) |
| 1017 | return I40IW_ERR_NO_MEMORY; |
| 1018 | cqp_info = &cqp_request->info; |
| 1019 | cqp_request->param = NULL; |
| 1020 | cqp_info->in.u.commit_fpm_values.cqp = dev->cqp; |
| 1021 | cqp_info->in.u.commit_fpm_values.fpm_values_pa = values_mem->pa; |
| 1022 | cqp_info->in.u.commit_fpm_values.fpm_values_va = values_mem->va; |
| 1023 | cqp_info->in.u.commit_fpm_values.hmc_fn_id = hmc_fn_id; |
| 1024 | cqp_info->cqp_cmd = OP_COMMIT_FPM_VALUES; |
| 1025 | cqp_info->post_sq = 1; |
| 1026 | cqp_info->in.u.commit_fpm_values.scratch = (uintptr_t)cqp_request; |
| 1027 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 1028 | if (status) |
| 1029 | i40iw_pr_err("CQP-OP Commit FPM fail"); |
| 1030 | return status; |
| 1031 | } |
| 1032 | |
| 1033 | /** |
| 1034 | * i40iw_vf_wait_vchnl_resp - wait for channel msg |
| 1035 | * @iwdev: function's device struct |
| 1036 | */ |
| 1037 | enum i40iw_status_code i40iw_vf_wait_vchnl_resp(struct i40iw_sc_dev *dev) |
| 1038 | { |
| 1039 | struct i40iw_device *iwdev = dev->back_dev; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1040 | int timeout_ret; |
| 1041 | |
| 1042 | i40iw_debug(dev, I40IW_DEBUG_VIRT, "%s[%u] dev %p, iwdev %p\n", |
| 1043 | __func__, __LINE__, dev, iwdev); |
Ismail, Mustafa | f69c333 | 2016-04-18 10:33:03 -0500 | [diff] [blame] | 1044 | |
| 1045 | atomic_set(&iwdev->vchnl_msgs, 2); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1046 | timeout_ret = wait_event_timeout(iwdev->vchnl_waitq, |
| 1047 | (atomic_read(&iwdev->vchnl_msgs) == 1), |
| 1048 | I40IW_VCHNL_EVENT_TIMEOUT); |
| 1049 | atomic_dec(&iwdev->vchnl_msgs); |
| 1050 | if (!timeout_ret) { |
| 1051 | i40iw_pr_err("virt channel completion timeout = 0x%x\n", timeout_ret); |
Ismail, Mustafa | f69c333 | 2016-04-18 10:33:03 -0500 | [diff] [blame] | 1052 | atomic_set(&iwdev->vchnl_msgs, 0); |
| 1053 | dev->vchnl_up = false; |
| 1054 | return I40IW_ERR_TIMEOUT; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1055 | } |
Ismail, Mustafa | f69c333 | 2016-04-18 10:33:03 -0500 | [diff] [blame] | 1056 | wake_up(&dev->vf_reqs); |
| 1057 | return 0; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1058 | } |
| 1059 | |
| 1060 | /** |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1061 | * i40iw_cqp_cq_create_cmd - create a cq for the cqp |
| 1062 | * @dev: device pointer |
| 1063 | * @cq: pointer to created cq |
| 1064 | */ |
| 1065 | enum i40iw_status_code i40iw_cqp_cq_create_cmd(struct i40iw_sc_dev *dev, |
| 1066 | struct i40iw_sc_cq *cq) |
| 1067 | { |
| 1068 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1069 | struct i40iw_cqp *iwcqp = &iwdev->cqp; |
| 1070 | struct i40iw_cqp_request *cqp_request; |
| 1071 | struct cqp_commands_info *cqp_info; |
| 1072 | enum i40iw_status_code status; |
| 1073 | |
| 1074 | cqp_request = i40iw_get_cqp_request(iwcqp, true); |
| 1075 | if (!cqp_request) |
| 1076 | return I40IW_ERR_NO_MEMORY; |
| 1077 | |
| 1078 | cqp_info = &cqp_request->info; |
| 1079 | cqp_info->cqp_cmd = OP_CQ_CREATE; |
| 1080 | cqp_info->post_sq = 1; |
| 1081 | cqp_info->in.u.cq_create.cq = cq; |
| 1082 | cqp_info->in.u.cq_create.scratch = (uintptr_t)cqp_request; |
| 1083 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 1084 | if (status) |
| 1085 | i40iw_pr_err("CQP-OP Create QP fail"); |
| 1086 | |
| 1087 | return status; |
| 1088 | } |
| 1089 | |
| 1090 | /** |
| 1091 | * i40iw_cqp_qp_create_cmd - create a qp for the cqp |
| 1092 | * @dev: device pointer |
| 1093 | * @qp: pointer to created qp |
| 1094 | */ |
| 1095 | enum i40iw_status_code i40iw_cqp_qp_create_cmd(struct i40iw_sc_dev *dev, |
| 1096 | struct i40iw_sc_qp *qp) |
| 1097 | { |
| 1098 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1099 | struct i40iw_cqp *iwcqp = &iwdev->cqp; |
| 1100 | struct i40iw_cqp_request *cqp_request; |
| 1101 | struct cqp_commands_info *cqp_info; |
| 1102 | struct i40iw_create_qp_info *qp_info; |
| 1103 | enum i40iw_status_code status; |
| 1104 | |
| 1105 | cqp_request = i40iw_get_cqp_request(iwcqp, true); |
| 1106 | if (!cqp_request) |
| 1107 | return I40IW_ERR_NO_MEMORY; |
| 1108 | |
| 1109 | cqp_info = &cqp_request->info; |
| 1110 | qp_info = &cqp_request->info.in.u.qp_create.info; |
| 1111 | |
| 1112 | memset(qp_info, 0, sizeof(*qp_info)); |
| 1113 | |
| 1114 | qp_info->cq_num_valid = true; |
| 1115 | qp_info->next_iwarp_state = I40IW_QP_STATE_RTS; |
| 1116 | |
| 1117 | cqp_info->cqp_cmd = OP_QP_CREATE; |
| 1118 | cqp_info->post_sq = 1; |
| 1119 | cqp_info->in.u.qp_create.qp = qp; |
| 1120 | cqp_info->in.u.qp_create.scratch = (uintptr_t)cqp_request; |
| 1121 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 1122 | if (status) |
| 1123 | i40iw_pr_err("CQP-OP QP create fail"); |
| 1124 | return status; |
| 1125 | } |
| 1126 | |
| 1127 | /** |
| 1128 | * i40iw_cqp_cq_destroy_cmd - destroy the cqp cq |
| 1129 | * @dev: device pointer |
| 1130 | * @cq: pointer to cq |
| 1131 | */ |
| 1132 | void i40iw_cqp_cq_destroy_cmd(struct i40iw_sc_dev *dev, struct i40iw_sc_cq *cq) |
| 1133 | { |
| 1134 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1135 | |
| 1136 | i40iw_cq_wq_destroy(iwdev, cq); |
| 1137 | } |
| 1138 | |
| 1139 | /** |
| 1140 | * i40iw_cqp_qp_destroy_cmd - destroy the cqp |
| 1141 | * @dev: device pointer |
| 1142 | * @qp: pointer to qp |
| 1143 | */ |
| 1144 | void i40iw_cqp_qp_destroy_cmd(struct i40iw_sc_dev *dev, struct i40iw_sc_qp *qp) |
| 1145 | { |
| 1146 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1147 | struct i40iw_cqp *iwcqp = &iwdev->cqp; |
| 1148 | struct i40iw_cqp_request *cqp_request; |
| 1149 | struct cqp_commands_info *cqp_info; |
| 1150 | enum i40iw_status_code status; |
| 1151 | |
| 1152 | cqp_request = i40iw_get_cqp_request(iwcqp, true); |
| 1153 | if (!cqp_request) |
| 1154 | return; |
| 1155 | |
| 1156 | cqp_info = &cqp_request->info; |
| 1157 | memset(cqp_info, 0, sizeof(*cqp_info)); |
| 1158 | |
| 1159 | cqp_info->cqp_cmd = OP_QP_DESTROY; |
| 1160 | cqp_info->post_sq = 1; |
| 1161 | cqp_info->in.u.qp_destroy.qp = qp; |
| 1162 | cqp_info->in.u.qp_destroy.scratch = (uintptr_t)cqp_request; |
| 1163 | cqp_info->in.u.qp_destroy.remove_hash_idx = true; |
| 1164 | status = i40iw_handle_cqp_op(iwdev, cqp_request); |
| 1165 | if (status) |
| 1166 | i40iw_pr_err("CQP QP_DESTROY fail"); |
| 1167 | } |
| 1168 | |
| 1169 | |
| 1170 | /** |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1171 | * i40iw_ieq_mpa_crc_ae - generate AE for crc error |
| 1172 | * @dev: hardware control device structure |
| 1173 | * @qp: hardware control qp |
| 1174 | */ |
| 1175 | void i40iw_ieq_mpa_crc_ae(struct i40iw_sc_dev *dev, struct i40iw_sc_qp *qp) |
| 1176 | { |
| 1177 | struct i40iw_qp_flush_info info; |
| 1178 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1179 | |
| 1180 | i40iw_debug(dev, I40IW_DEBUG_AEQ, "%s entered\n", __func__); |
| 1181 | memset(&info, 0, sizeof(info)); |
| 1182 | info.ae_code = I40IW_AE_LLP_RECEIVED_MPA_CRC_ERROR; |
| 1183 | info.generate_ae = true; |
| 1184 | info.ae_source = 0x3; |
| 1185 | (void)i40iw_hw_flush_wqes(iwdev, qp, &info, false); |
| 1186 | } |
| 1187 | |
| 1188 | /** |
| 1189 | * i40iw_init_hash_desc - initialize hash for crc calculation |
| 1190 | * @desc: cryption type |
| 1191 | */ |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1192 | enum i40iw_status_code i40iw_init_hash_desc(struct shash_desc **desc) |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1193 | { |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1194 | struct crypto_shash *tfm; |
| 1195 | struct shash_desc *tdesc; |
| 1196 | |
| 1197 | tfm = crypto_alloc_shash("crc32c", 0, 0); |
| 1198 | if (IS_ERR(tfm)) |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1199 | return I40IW_ERR_MPA_CRC; |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1200 | |
| 1201 | tdesc = kzalloc(sizeof(*tdesc) + crypto_shash_descsize(tfm), |
| 1202 | GFP_KERNEL); |
| 1203 | if (!tdesc) { |
| 1204 | crypto_free_shash(tfm); |
| 1205 | return I40IW_ERR_MPA_CRC; |
| 1206 | } |
| 1207 | tdesc->tfm = tfm; |
| 1208 | *desc = tdesc; |
| 1209 | |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1210 | return 0; |
| 1211 | } |
| 1212 | |
| 1213 | /** |
| 1214 | * i40iw_free_hash_desc - free hash desc |
| 1215 | * @desc: to be freed |
| 1216 | */ |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1217 | void i40iw_free_hash_desc(struct shash_desc *desc) |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1218 | { |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1219 | if (desc) { |
| 1220 | crypto_free_shash(desc->tfm); |
| 1221 | kfree(desc); |
| 1222 | } |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1223 | } |
| 1224 | |
| 1225 | /** |
| 1226 | * i40iw_alloc_query_fpm_buf - allocate buffer for fpm |
| 1227 | * @dev: hardware control device structure |
| 1228 | * @mem: buffer ptr for fpm to be allocated |
| 1229 | * @return: memory allocation status |
| 1230 | */ |
| 1231 | enum i40iw_status_code i40iw_alloc_query_fpm_buf(struct i40iw_sc_dev *dev, |
| 1232 | struct i40iw_dma_mem *mem) |
| 1233 | { |
| 1234 | enum i40iw_status_code status; |
| 1235 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1236 | |
| 1237 | status = i40iw_obj_aligned_mem(iwdev, mem, I40IW_QUERY_FPM_BUF_SIZE, |
| 1238 | I40IW_FPM_QUERY_BUF_ALIGNMENT_MASK); |
| 1239 | return status; |
| 1240 | } |
| 1241 | |
| 1242 | /** |
| 1243 | * i40iw_ieq_check_mpacrc - check if mpa crc is OK |
| 1244 | * @desc: desc for hash |
| 1245 | * @addr: address of buffer for crc |
| 1246 | * @length: length of buffer |
| 1247 | * @value: value to be compared |
| 1248 | */ |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1249 | enum i40iw_status_code i40iw_ieq_check_mpacrc(struct shash_desc *desc, |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1250 | void *addr, |
| 1251 | u32 length, |
| 1252 | u32 value) |
| 1253 | { |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1254 | u32 crc = 0; |
| 1255 | int ret; |
| 1256 | enum i40iw_status_code ret_code = 0; |
| 1257 | |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1258 | crypto_shash_init(desc); |
| 1259 | ret = crypto_shash_update(desc, addr, length); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1260 | if (!ret) |
Tatyana Nikolova | 34abf9e | 2016-03-18 10:38:33 -0500 | [diff] [blame] | 1261 | crypto_shash_final(desc, (u8 *)&crc); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1262 | if (crc != value) { |
| 1263 | i40iw_pr_err("mpa crc check fail\n"); |
| 1264 | ret_code = I40IW_ERR_MPA_CRC; |
| 1265 | } |
| 1266 | return ret_code; |
| 1267 | } |
| 1268 | |
| 1269 | /** |
| 1270 | * i40iw_ieq_get_qp - get qp based on quad in puda buffer |
| 1271 | * @dev: hardware control device structure |
| 1272 | * @buf: receive puda buffer on exception q |
| 1273 | */ |
| 1274 | struct i40iw_sc_qp *i40iw_ieq_get_qp(struct i40iw_sc_dev *dev, |
| 1275 | struct i40iw_puda_buf *buf) |
| 1276 | { |
| 1277 | struct i40iw_device *iwdev = (struct i40iw_device *)dev->back_dev; |
| 1278 | struct i40iw_qp *iwqp; |
| 1279 | struct i40iw_cm_node *cm_node; |
| 1280 | u32 loc_addr[4], rem_addr[4]; |
| 1281 | u16 loc_port, rem_port; |
| 1282 | struct ipv6hdr *ip6h; |
| 1283 | struct iphdr *iph = (struct iphdr *)buf->iph; |
| 1284 | struct tcphdr *tcph = (struct tcphdr *)buf->tcph; |
| 1285 | |
| 1286 | if (iph->version == 4) { |
| 1287 | memset(loc_addr, 0, sizeof(loc_addr)); |
| 1288 | loc_addr[0] = ntohl(iph->daddr); |
| 1289 | memset(rem_addr, 0, sizeof(rem_addr)); |
| 1290 | rem_addr[0] = ntohl(iph->saddr); |
| 1291 | } else { |
| 1292 | ip6h = (struct ipv6hdr *)buf->iph; |
| 1293 | i40iw_copy_ip_ntohl(loc_addr, ip6h->daddr.in6_u.u6_addr32); |
| 1294 | i40iw_copy_ip_ntohl(rem_addr, ip6h->saddr.in6_u.u6_addr32); |
| 1295 | } |
| 1296 | loc_port = ntohs(tcph->dest); |
| 1297 | rem_port = ntohs(tcph->source); |
| 1298 | |
| 1299 | cm_node = i40iw_find_node(&iwdev->cm_core, rem_port, rem_addr, loc_port, |
| 1300 | loc_addr, false); |
| 1301 | if (!cm_node) |
| 1302 | return NULL; |
| 1303 | iwqp = cm_node->iwqp; |
| 1304 | return &iwqp->sc_qp; |
| 1305 | } |
| 1306 | |
| 1307 | /** |
| 1308 | * i40iw_ieq_update_tcpip_info - update tcpip in the buffer |
| 1309 | * @buf: puda to update |
| 1310 | * @length: length of buffer |
| 1311 | * @seqnum: seq number for tcp |
| 1312 | */ |
| 1313 | void i40iw_ieq_update_tcpip_info(struct i40iw_puda_buf *buf, u16 length, u32 seqnum) |
| 1314 | { |
| 1315 | struct tcphdr *tcph; |
| 1316 | struct iphdr *iph; |
| 1317 | u16 iphlen; |
| 1318 | u16 packetsize; |
| 1319 | u8 *addr = (u8 *)buf->mem.va; |
| 1320 | |
| 1321 | iphlen = (buf->ipv4) ? 20 : 40; |
| 1322 | iph = (struct iphdr *)(addr + buf->maclen); |
| 1323 | tcph = (struct tcphdr *)(addr + buf->maclen + iphlen); |
| 1324 | packetsize = length + buf->tcphlen + iphlen; |
| 1325 | |
| 1326 | iph->tot_len = htons(packetsize); |
| 1327 | tcph->seq = htonl(seqnum); |
| 1328 | } |
| 1329 | |
| 1330 | /** |
| 1331 | * i40iw_puda_get_tcpip_info - get tcpip info from puda buffer |
| 1332 | * @info: to get information |
| 1333 | * @buf: puda buffer |
| 1334 | */ |
| 1335 | enum i40iw_status_code i40iw_puda_get_tcpip_info(struct i40iw_puda_completion_info *info, |
| 1336 | struct i40iw_puda_buf *buf) |
| 1337 | { |
| 1338 | struct iphdr *iph; |
| 1339 | struct ipv6hdr *ip6h; |
| 1340 | struct tcphdr *tcph; |
| 1341 | u16 iphlen; |
| 1342 | u16 pkt_len; |
| 1343 | u8 *mem = (u8 *)buf->mem.va; |
| 1344 | struct ethhdr *ethh = (struct ethhdr *)buf->mem.va; |
| 1345 | |
| 1346 | if (ethh->h_proto == htons(0x8100)) { |
| 1347 | info->vlan_valid = true; |
| 1348 | buf->vlan_id = ntohs(((struct vlan_ethhdr *)ethh)->h_vlan_TCI) & VLAN_VID_MASK; |
| 1349 | } |
| 1350 | buf->maclen = (info->vlan_valid) ? 18 : 14; |
| 1351 | iphlen = (info->l3proto) ? 40 : 20; |
| 1352 | buf->ipv4 = (info->l3proto) ? false : true; |
| 1353 | buf->iph = mem + buf->maclen; |
| 1354 | iph = (struct iphdr *)buf->iph; |
| 1355 | |
| 1356 | buf->tcph = buf->iph + iphlen; |
| 1357 | tcph = (struct tcphdr *)buf->tcph; |
| 1358 | |
| 1359 | if (buf->ipv4) { |
| 1360 | pkt_len = ntohs(iph->tot_len); |
| 1361 | } else { |
| 1362 | ip6h = (struct ipv6hdr *)buf->iph; |
| 1363 | pkt_len = ntohs(ip6h->payload_len) + iphlen; |
| 1364 | } |
| 1365 | |
| 1366 | buf->totallen = pkt_len + buf->maclen; |
| 1367 | |
Henry Orosco | 7581e96 | 2016-10-19 15:33:32 -0500 | [diff] [blame] | 1368 | if (info->payload_len < buf->totallen) { |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1369 | i40iw_pr_err("payload_len = 0x%x totallen expected0x%x\n", |
| 1370 | info->payload_len, buf->totallen); |
| 1371 | return I40IW_ERR_INVALID_SIZE; |
| 1372 | } |
| 1373 | |
| 1374 | buf->tcphlen = (tcph->doff) << 2; |
| 1375 | buf->datalen = pkt_len - iphlen - buf->tcphlen; |
| 1376 | buf->data = (buf->datalen) ? buf->tcph + buf->tcphlen : NULL; |
| 1377 | buf->hdrlen = buf->maclen + iphlen + buf->tcphlen; |
| 1378 | buf->seqnum = ntohl(tcph->seq); |
| 1379 | return 0; |
| 1380 | } |
| 1381 | |
| 1382 | /** |
| 1383 | * i40iw_hw_stats_timeout - Stats timer-handler which updates all HW stats |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1384 | * @vsi: pointer to the vsi structure |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1385 | */ |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1386 | static void i40iw_hw_stats_timeout(unsigned long vsi) |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1387 | { |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1388 | struct i40iw_sc_vsi *sc_vsi = (struct i40iw_sc_vsi *)vsi; |
| 1389 | struct i40iw_sc_dev *pf_dev = sc_vsi->dev; |
| 1390 | struct i40iw_vsi_pestat *pf_devstat = sc_vsi->pestat; |
| 1391 | struct i40iw_vsi_pestat *vf_devstat = NULL; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1392 | u16 iw_vf_idx; |
| 1393 | unsigned long flags; |
| 1394 | |
| 1395 | /*PF*/ |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1396 | i40iw_hw_stats_read_all(pf_devstat, &pf_devstat->hw_stats); |
| 1397 | |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1398 | for (iw_vf_idx = 0; iw_vf_idx < I40IW_MAX_PE_ENABLED_VF_COUNT; iw_vf_idx++) { |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1399 | spin_lock_irqsave(&pf_devstat->lock, flags); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1400 | if (pf_dev->vf_dev[iw_vf_idx]) { |
| 1401 | if (pf_dev->vf_dev[iw_vf_idx]->stats_initialized) { |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1402 | vf_devstat = &pf_dev->vf_dev[iw_vf_idx]->pestat; |
| 1403 | i40iw_hw_stats_read_all(vf_devstat, &vf_devstat->hw_stats); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1404 | } |
| 1405 | } |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1406 | spin_unlock_irqrestore(&pf_devstat->lock, flags); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | mod_timer(&pf_devstat->stats_timer, |
| 1410 | jiffies + msecs_to_jiffies(STATS_TIMER_DELAY)); |
| 1411 | } |
| 1412 | |
| 1413 | /** |
| 1414 | * i40iw_hw_stats_start_timer - Start periodic stats timer |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1415 | * @vsi: pointer to the vsi structure |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1416 | */ |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1417 | void i40iw_hw_stats_start_timer(struct i40iw_sc_vsi *vsi) |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1418 | { |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1419 | struct i40iw_vsi_pestat *devstat = vsi->pestat; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1420 | |
Geliang Tang | 96ff2c1 | 2017-04-22 09:32:54 +0800 | [diff] [blame] | 1421 | setup_timer(&devstat->stats_timer, i40iw_hw_stats_timeout, |
| 1422 | (unsigned long)vsi); |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1423 | mod_timer(&devstat->stats_timer, |
| 1424 | jiffies + msecs_to_jiffies(STATS_TIMER_DELAY)); |
| 1425 | } |
| 1426 | |
| 1427 | /** |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1428 | * i40iw_hw_stats_stop_timer - Delete periodic stats timer |
| 1429 | * @vsi: pointer to the vsi structure |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1430 | */ |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1431 | void i40iw_hw_stats_stop_timer(struct i40iw_sc_vsi *vsi) |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1432 | { |
Henry Orosco | d6f7bbc | 2016-12-06 16:16:20 -0600 | [diff] [blame] | 1433 | struct i40iw_vsi_pestat *devstat = vsi->pestat; |
Faisal Latif | 4e9042e | 2016-01-20 13:40:08 -0600 | [diff] [blame] | 1434 | |
| 1435 | del_timer_sync(&devstat->stats_timer); |
| 1436 | } |