Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved. |
| 3 | * |
| 4 | * This software is available to you under a choice of one of two |
| 5 | * licenses. You may choose to be licensed under the terms of the GNU |
| 6 | * General Public License (GPL) Version 2, available from the file |
| 7 | * COPYING in the main directory of this source tree, or the |
| 8 | * OpenIB.org BSD license below: |
| 9 | * |
| 10 | * Redistribution and use in source and binary forms, with or |
| 11 | * without modification, are permitted provided that the following |
| 12 | * conditions are met: |
| 13 | * |
| 14 | * - Redistributions of source code must retain the above |
| 15 | * copyright notice, this list of conditions and the following |
| 16 | * disclaimer. |
| 17 | * |
| 18 | * - Redistributions in binary form must reproduce the above |
| 19 | * copyright notice, this list of conditions and the following |
| 20 | * disclaimer in the documentation and/or other materials |
| 21 | * provided with the distribution. |
| 22 | * |
| 23 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 24 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 25 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 26 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 27 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 28 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 29 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 30 | * SOFTWARE. |
| 31 | */ |
| 32 | #include <linux/module.h> |
| 33 | #include <linux/moduleparam.h> |
| 34 | #include <linux/device.h> |
| 35 | #include <linux/netdevice.h> |
| 36 | #include <linux/etherdevice.h> |
| 37 | #include <linux/delay.h> |
| 38 | #include <linux/errno.h> |
| 39 | #include <linux/list.h> |
| 40 | #include <linux/spinlock.h> |
| 41 | #include <linux/ethtool.h> |
| 42 | #include <linux/rtnetlink.h> |
| 43 | #include <linux/inetdevice.h> |
| 44 | #include <linux/io.h> |
| 45 | |
| 46 | #include <asm/irq.h> |
| 47 | #include <asm/byteorder.h> |
| 48 | |
| 49 | #include <rdma/iw_cm.h> |
| 50 | #include <rdma/ib_verbs.h> |
| 51 | #include <rdma/ib_smi.h> |
| 52 | #include <rdma/ib_umem.h> |
| 53 | #include <rdma/ib_user_verbs.h> |
| 54 | |
| 55 | #include "iw_cxgb4.h" |
| 56 | |
Steve Wise | 40dbf6e | 2010-09-17 15:40:15 -0500 | [diff] [blame] | 57 | static int fastreg_support = 1; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 58 | module_param(fastreg_support, int, 0644); |
Steve Wise | 40dbf6e | 2010-09-17 15:40:15 -0500 | [diff] [blame] | 59 | MODULE_PARM_DESC(fastreg_support, "Advertise fastreg support (default=1)"); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 60 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 61 | static struct ib_ah *c4iw_ah_create(struct ib_pd *pd, |
Moni Shoua | 477864c | 2016-11-23 08:23:24 +0200 | [diff] [blame] | 62 | struct ib_ah_attr *ah_attr, |
| 63 | struct ib_udata *udata) |
| 64 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 65 | { |
| 66 | return ERR_PTR(-ENOSYS); |
| 67 | } |
| 68 | |
| 69 | static int c4iw_ah_destroy(struct ib_ah *ah) |
| 70 | { |
| 71 | return -ENOSYS; |
| 72 | } |
| 73 | |
| 74 | static int c4iw_multicast_attach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid) |
| 75 | { |
| 76 | return -ENOSYS; |
| 77 | } |
| 78 | |
| 79 | static int c4iw_multicast_detach(struct ib_qp *ibqp, union ib_gid *gid, u16 lid) |
| 80 | { |
| 81 | return -ENOSYS; |
| 82 | } |
| 83 | |
| 84 | static int c4iw_process_mad(struct ib_device *ibdev, int mad_flags, |
Ira Weiny | a97e2d8 | 2015-05-31 17:15:30 -0400 | [diff] [blame] | 85 | u8 port_num, const struct ib_wc *in_wc, |
| 86 | const struct ib_grh *in_grh, |
Ira Weiny | 4cd7c94 | 2015-06-06 14:38:31 -0400 | [diff] [blame] | 87 | const struct ib_mad_hdr *in_mad, |
| 88 | size_t in_mad_size, |
| 89 | struct ib_mad_hdr *out_mad, |
| 90 | size_t *out_mad_size, |
| 91 | u16 *out_mad_pkey_index) |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 92 | { |
| 93 | return -ENOSYS; |
| 94 | } |
| 95 | |
Steve Wise | c12a67f | 2016-12-22 07:40:36 -0800 | [diff] [blame^] | 96 | void _c4iw_free_ucontext(struct kref *kref) |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 97 | { |
Steve Wise | c12a67f | 2016-12-22 07:40:36 -0800 | [diff] [blame^] | 98 | struct c4iw_ucontext *ucontext; |
| 99 | struct c4iw_dev *rhp; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 100 | struct c4iw_mm_entry *mm, *tmp; |
| 101 | |
Steve Wise | c12a67f | 2016-12-22 07:40:36 -0800 | [diff] [blame^] | 102 | ucontext = container_of(kref, struct c4iw_ucontext, kref); |
| 103 | rhp = to_c4iw_dev(ucontext->ibucontext.device); |
| 104 | |
| 105 | PDBG("%s ucontext %p\n", __func__, ucontext); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 106 | list_for_each_entry_safe(mm, tmp, &ucontext->mmaps, entry) |
| 107 | kfree(mm); |
| 108 | c4iw_release_dev_ucontext(&rhp->rdev, &ucontext->uctx); |
| 109 | kfree(ucontext); |
Steve Wise | c12a67f | 2016-12-22 07:40:36 -0800 | [diff] [blame^] | 110 | } |
| 111 | |
| 112 | static int c4iw_dealloc_ucontext(struct ib_ucontext *context) |
| 113 | { |
| 114 | struct c4iw_ucontext *ucontext = to_c4iw_ucontext(context); |
| 115 | |
| 116 | PDBG("%s context %p\n", __func__, context); |
| 117 | c4iw_put_ucontext(ucontext); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 118 | return 0; |
| 119 | } |
| 120 | |
| 121 | static struct ib_ucontext *c4iw_alloc_ucontext(struct ib_device *ibdev, |
| 122 | struct ib_udata *udata) |
| 123 | { |
| 124 | struct c4iw_ucontext *context; |
| 125 | struct c4iw_dev *rhp = to_c4iw_dev(ibdev); |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 126 | static int warned; |
| 127 | struct c4iw_alloc_ucontext_resp uresp; |
| 128 | int ret = 0; |
| 129 | struct c4iw_mm_entry *mm = NULL; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 130 | |
| 131 | PDBG("%s ibdev %p\n", __func__, ibdev); |
| 132 | context = kzalloc(sizeof(*context), GFP_KERNEL); |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 133 | if (!context) { |
| 134 | ret = -ENOMEM; |
| 135 | goto err; |
| 136 | } |
| 137 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 138 | c4iw_init_dev_ucontext(&rhp->rdev, &context->uctx); |
| 139 | INIT_LIST_HEAD(&context->mmaps); |
| 140 | spin_lock_init(&context->mmap_lock); |
Steve Wise | c12a67f | 2016-12-22 07:40:36 -0800 | [diff] [blame^] | 141 | kref_init(&context->kref); |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 142 | |
Yann Droneaud | b7dfa88 | 2014-05-05 19:35:26 +0200 | [diff] [blame] | 143 | if (udata->outlen < sizeof(uresp) - sizeof(uresp.reserved)) { |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 144 | if (!warned++) |
| 145 | pr_err(MOD "Warning - downlevel libcxgb4 (non-fatal), device status page disabled."); |
| 146 | rhp->rdev.flags |= T4_STATUS_PAGE_DISABLED; |
| 147 | } else { |
| 148 | mm = kmalloc(sizeof(*mm), GFP_KERNEL); |
Yann Droneaud | bfd2793 | 2014-03-28 14:55:21 -0400 | [diff] [blame] | 149 | if (!mm) { |
| 150 | ret = -ENOMEM; |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 151 | goto err_free; |
Yann Droneaud | bfd2793 | 2014-03-28 14:55:21 -0400 | [diff] [blame] | 152 | } |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 153 | |
| 154 | uresp.status_page_size = PAGE_SIZE; |
| 155 | |
| 156 | spin_lock(&context->mmap_lock); |
| 157 | uresp.status_page_key = context->key; |
| 158 | context->key += PAGE_SIZE; |
| 159 | spin_unlock(&context->mmap_lock); |
| 160 | |
Yann Droneaud | b7dfa88 | 2014-05-05 19:35:26 +0200 | [diff] [blame] | 161 | ret = ib_copy_to_udata(udata, &uresp, |
| 162 | sizeof(uresp) - sizeof(uresp.reserved)); |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 163 | if (ret) |
| 164 | goto err_mm; |
| 165 | |
| 166 | mm->key = uresp.status_page_key; |
| 167 | mm->addr = virt_to_phys(rhp->rdev.status_page); |
| 168 | mm->len = PAGE_SIZE; |
| 169 | insert_mmap(context, mm); |
| 170 | } |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 171 | return &context->ibucontext; |
Steve Wise | 05eb238 | 2014-03-14 21:52:08 +0530 | [diff] [blame] | 172 | err_mm: |
| 173 | kfree(mm); |
| 174 | err_free: |
| 175 | kfree(context); |
| 176 | err: |
| 177 | return ERR_PTR(ret); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | static int c4iw_mmap(struct ib_ucontext *context, struct vm_area_struct *vma) |
| 181 | { |
| 182 | int len = vma->vm_end - vma->vm_start; |
| 183 | u32 key = vma->vm_pgoff << PAGE_SHIFT; |
| 184 | struct c4iw_rdev *rdev; |
| 185 | int ret = 0; |
| 186 | struct c4iw_mm_entry *mm; |
| 187 | struct c4iw_ucontext *ucontext; |
| 188 | u64 addr; |
| 189 | |
| 190 | PDBG("%s pgoff 0x%lx key 0x%x len %d\n", __func__, vma->vm_pgoff, |
| 191 | key, len); |
| 192 | |
| 193 | if (vma->vm_start & (PAGE_SIZE-1)) |
| 194 | return -EINVAL; |
| 195 | |
| 196 | rdev = &(to_c4iw_dev(context->device)->rdev); |
| 197 | ucontext = to_c4iw_ucontext(context); |
| 198 | |
| 199 | mm = remove_mmap(ucontext, key, len); |
| 200 | if (!mm) |
| 201 | return -EINVAL; |
| 202 | addr = mm->addr; |
| 203 | kfree(mm); |
| 204 | |
Steve Wise | c6d7b26 | 2010-09-13 11:23:57 -0500 | [diff] [blame] | 205 | if ((addr >= pci_resource_start(rdev->lldi.pdev, 0)) && |
| 206 | (addr < (pci_resource_start(rdev->lldi.pdev, 0) + |
| 207 | pci_resource_len(rdev->lldi.pdev, 0)))) { |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 208 | |
| 209 | /* |
Steve Wise | c6d7b26 | 2010-09-13 11:23:57 -0500 | [diff] [blame] | 210 | * MA_SYNC register... |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 211 | */ |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 212 | vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot); |
Steve Wise | c6d7b26 | 2010-09-13 11:23:57 -0500 | [diff] [blame] | 213 | ret = io_remap_pfn_range(vma, vma->vm_start, |
| 214 | addr >> PAGE_SHIFT, |
| 215 | len, vma->vm_page_prot); |
| 216 | } else if ((addr >= pci_resource_start(rdev->lldi.pdev, 2)) && |
| 217 | (addr < (pci_resource_start(rdev->lldi.pdev, 2) + |
| 218 | pci_resource_len(rdev->lldi.pdev, 2)))) { |
| 219 | |
| 220 | /* |
| 221 | * Map user DB or OCQP memory... |
| 222 | */ |
| 223 | if (addr >= rdev->oc_mw_pa) |
| 224 | vma->vm_page_prot = t4_pgprot_wc(vma->vm_page_prot); |
Vipul Pandya | f079af7 | 2013-03-14 05:08:58 +0000 | [diff] [blame] | 225 | else { |
Hariprasad S | 963cab5 | 2015-09-23 17:19:27 +0530 | [diff] [blame] | 226 | if (!is_t4(rdev->lldi.adapter_type)) |
Vipul Pandya | f079af7 | 2013-03-14 05:08:58 +0000 | [diff] [blame] | 227 | vma->vm_page_prot = |
| 228 | t4_pgprot_wc(vma->vm_page_prot); |
| 229 | else |
| 230 | vma->vm_page_prot = |
| 231 | pgprot_noncached(vma->vm_page_prot); |
| 232 | } |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 233 | ret = io_remap_pfn_range(vma, vma->vm_start, |
| 234 | addr >> PAGE_SHIFT, |
| 235 | len, vma->vm_page_prot); |
| 236 | } else { |
| 237 | |
| 238 | /* |
| 239 | * Map WQ or CQ contig dma memory... |
| 240 | */ |
| 241 | ret = remap_pfn_range(vma, vma->vm_start, |
| 242 | addr >> PAGE_SHIFT, |
| 243 | len, vma->vm_page_prot); |
| 244 | } |
| 245 | |
| 246 | return ret; |
| 247 | } |
| 248 | |
| 249 | static int c4iw_deallocate_pd(struct ib_pd *pd) |
| 250 | { |
| 251 | struct c4iw_dev *rhp; |
| 252 | struct c4iw_pd *php; |
| 253 | |
| 254 | php = to_c4iw_pd(pd); |
| 255 | rhp = php->rhp; |
| 256 | PDBG("%s ibpd %p pdid 0x%x\n", __func__, pd, php->pdid); |
Vipul Pandya | ec3eead | 2012-05-18 15:29:32 +0530 | [diff] [blame] | 257 | c4iw_put_resource(&rhp->rdev.resource.pdid_table, php->pdid); |
Vipul Pandya | 8d81ef3 | 2012-05-18 15:29:27 +0530 | [diff] [blame] | 258 | mutex_lock(&rhp->rdev.stats.lock); |
| 259 | rhp->rdev.stats.pd.cur--; |
| 260 | mutex_unlock(&rhp->rdev.stats.lock); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 261 | kfree(php); |
| 262 | return 0; |
| 263 | } |
| 264 | |
| 265 | static struct ib_pd *c4iw_allocate_pd(struct ib_device *ibdev, |
| 266 | struct ib_ucontext *context, |
| 267 | struct ib_udata *udata) |
| 268 | { |
| 269 | struct c4iw_pd *php; |
| 270 | u32 pdid; |
| 271 | struct c4iw_dev *rhp; |
| 272 | |
| 273 | PDBG("%s ibdev %p\n", __func__, ibdev); |
| 274 | rhp = (struct c4iw_dev *) ibdev; |
Vipul Pandya | ec3eead | 2012-05-18 15:29:32 +0530 | [diff] [blame] | 275 | pdid = c4iw_get_resource(&rhp->rdev.resource.pdid_table); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 276 | if (!pdid) |
| 277 | return ERR_PTR(-EINVAL); |
| 278 | php = kzalloc(sizeof(*php), GFP_KERNEL); |
| 279 | if (!php) { |
Vipul Pandya | ec3eead | 2012-05-18 15:29:32 +0530 | [diff] [blame] | 280 | c4iw_put_resource(&rhp->rdev.resource.pdid_table, pdid); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 281 | return ERR_PTR(-ENOMEM); |
| 282 | } |
| 283 | php->pdid = pdid; |
| 284 | php->rhp = rhp; |
| 285 | if (context) { |
| 286 | if (ib_copy_to_udata(udata, &php->pdid, sizeof(u32))) { |
| 287 | c4iw_deallocate_pd(&php->ibpd); |
| 288 | return ERR_PTR(-EFAULT); |
| 289 | } |
| 290 | } |
Vipul Pandya | 8d81ef3 | 2012-05-18 15:29:27 +0530 | [diff] [blame] | 291 | mutex_lock(&rhp->rdev.stats.lock); |
| 292 | rhp->rdev.stats.pd.cur++; |
| 293 | if (rhp->rdev.stats.pd.cur > rhp->rdev.stats.pd.max) |
| 294 | rhp->rdev.stats.pd.max = rhp->rdev.stats.pd.cur; |
| 295 | mutex_unlock(&rhp->rdev.stats.lock); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 296 | PDBG("%s pdid 0x%0x ptr 0x%p\n", __func__, pdid, php); |
| 297 | return &php->ibpd; |
| 298 | } |
| 299 | |
| 300 | static int c4iw_query_pkey(struct ib_device *ibdev, u8 port, u16 index, |
| 301 | u16 *pkey) |
| 302 | { |
| 303 | PDBG("%s ibdev %p\n", __func__, ibdev); |
| 304 | *pkey = 0; |
| 305 | return 0; |
| 306 | } |
| 307 | |
| 308 | static int c4iw_query_gid(struct ib_device *ibdev, u8 port, int index, |
| 309 | union ib_gid *gid) |
| 310 | { |
| 311 | struct c4iw_dev *dev; |
| 312 | |
| 313 | PDBG("%s ibdev %p, port %d, index %d, gid %p\n", |
| 314 | __func__, ibdev, port, index, gid); |
| 315 | dev = to_c4iw_dev(ibdev); |
| 316 | BUG_ON(port == 0); |
| 317 | memset(&(gid->raw[0]), 0, sizeof(gid->raw)); |
| 318 | memcpy(&(gid->raw[0]), dev->rdev.lldi.ports[port-1]->dev_addr, 6); |
| 319 | return 0; |
| 320 | } |
| 321 | |
Matan Barak | 2528e33 | 2015-06-11 16:35:25 +0300 | [diff] [blame] | 322 | static int c4iw_query_device(struct ib_device *ibdev, struct ib_device_attr *props, |
| 323 | struct ib_udata *uhw) |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 324 | { |
| 325 | |
| 326 | struct c4iw_dev *dev; |
Matan Barak | 2528e33 | 2015-06-11 16:35:25 +0300 | [diff] [blame] | 327 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 328 | PDBG("%s ibdev %p\n", __func__, ibdev); |
| 329 | |
Matan Barak | 2528e33 | 2015-06-11 16:35:25 +0300 | [diff] [blame] | 330 | if (uhw->inlen || uhw->outlen) |
| 331 | return -EINVAL; |
| 332 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 333 | dev = to_c4iw_dev(ibdev); |
| 334 | memset(props, 0, sizeof *props); |
| 335 | memcpy(&props->sys_image_guid, dev->rdev.lldi.ports[0]->dev_addr, 6); |
Vipul Pandya | f079af7 | 2013-03-14 05:08:58 +0000 | [diff] [blame] | 336 | props->hw_ver = CHELSIO_CHIP_RELEASE(dev->rdev.lldi.adapter_type); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 337 | props->fw_ver = dev->rdev.lldi.fw_vers; |
| 338 | props->device_cap_flags = dev->device_cap_flags; |
| 339 | props->page_size_cap = T4_PAGESIZE_MASK; |
| 340 | props->vendor_id = (u32)dev->rdev.lldi.pdev->vendor; |
| 341 | props->vendor_part_id = (u32)dev->rdev.lldi.pdev->device; |
| 342 | props->max_mr_size = T4_MAX_MR_SIZE; |
Hariprasad Shenai | 66eb19a | 2014-07-21 20:55:15 +0530 | [diff] [blame] | 343 | props->max_qp = dev->rdev.lldi.vr->qp.size / 2; |
Hariprasad Shenai | 04e10e2 | 2014-07-14 21:34:51 +0530 | [diff] [blame] | 344 | props->max_qp_wr = dev->rdev.hw_queue.t4_max_qp_depth; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 345 | props->max_sge = T4_MAX_RECV_SGE; |
| 346 | props->max_sge_rd = 1; |
Hariprasad Shenai | 4c2c576 | 2014-07-14 21:34:52 +0530 | [diff] [blame] | 347 | props->max_res_rd_atom = dev->rdev.lldi.max_ird_adapter; |
| 348 | props->max_qp_rd_atom = min(dev->rdev.lldi.max_ordird_qp, |
| 349 | c4iw_max_read_depth); |
| 350 | props->max_qp_init_rd_atom = props->max_qp_rd_atom; |
Hariprasad Shenai | 66eb19a | 2014-07-21 20:55:15 +0530 | [diff] [blame] | 351 | props->max_cq = dev->rdev.lldi.vr->qp.size; |
Hariprasad Shenai | 04e10e2 | 2014-07-14 21:34:51 +0530 | [diff] [blame] | 352 | props->max_cqe = dev->rdev.hw_queue.t4_max_cq_depth; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 353 | props->max_mr = c4iw_num_stags(&dev->rdev); |
| 354 | props->max_pd = T4_MAX_NUM_PD; |
| 355 | props->local_ca_ack_delay = 0; |
Hariprasad S | ee30f7d | 2016-02-12 16:10:35 +0530 | [diff] [blame] | 356 | props->max_fast_reg_page_list_len = |
| 357 | t4_max_fr_depth(dev->rdev.lldi.ulptx_memwrite_dsgl && use_dsgl); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 358 | |
| 359 | return 0; |
| 360 | } |
| 361 | |
| 362 | static int c4iw_query_port(struct ib_device *ibdev, u8 port, |
| 363 | struct ib_port_attr *props) |
| 364 | { |
| 365 | struct c4iw_dev *dev; |
| 366 | struct net_device *netdev; |
| 367 | struct in_device *inetdev; |
| 368 | |
| 369 | PDBG("%s ibdev %p\n", __func__, ibdev); |
| 370 | |
| 371 | dev = to_c4iw_dev(ibdev); |
| 372 | netdev = dev->rdev.lldi.ports[port-1]; |
| 373 | |
| 374 | memset(props, 0, sizeof(struct ib_port_attr)); |
| 375 | props->max_mtu = IB_MTU_4096; |
| 376 | if (netdev->mtu >= 4096) |
| 377 | props->active_mtu = IB_MTU_4096; |
| 378 | else if (netdev->mtu >= 2048) |
| 379 | props->active_mtu = IB_MTU_2048; |
| 380 | else if (netdev->mtu >= 1024) |
| 381 | props->active_mtu = IB_MTU_1024; |
| 382 | else if (netdev->mtu >= 512) |
| 383 | props->active_mtu = IB_MTU_512; |
| 384 | else |
| 385 | props->active_mtu = IB_MTU_256; |
| 386 | |
| 387 | if (!netif_carrier_ok(netdev)) |
| 388 | props->state = IB_PORT_DOWN; |
| 389 | else { |
| 390 | inetdev = in_dev_get(netdev); |
| 391 | if (inetdev) { |
| 392 | if (inetdev->ifa_list) |
| 393 | props->state = IB_PORT_ACTIVE; |
| 394 | else |
| 395 | props->state = IB_PORT_INIT; |
| 396 | in_dev_put(inetdev); |
| 397 | } else |
| 398 | props->state = IB_PORT_INIT; |
| 399 | } |
| 400 | |
| 401 | props->port_cap_flags = |
| 402 | IB_PORT_CM_SUP | |
| 403 | IB_PORT_SNMP_TUNNEL_SUP | |
| 404 | IB_PORT_REINIT_SUP | |
| 405 | IB_PORT_DEVICE_MGMT_SUP | |
| 406 | IB_PORT_VENDOR_CLASS_SUP | IB_PORT_BOOT_MGMT_SUP; |
| 407 | props->gid_tbl_len = 1; |
| 408 | props->pkey_tbl_len = 1; |
| 409 | props->active_width = 2; |
Or Gerlitz | 2e96691 | 2012-02-28 18:49:50 +0200 | [diff] [blame] | 410 | props->active_speed = IB_SPEED_DDR; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 411 | props->max_msg_sz = -1; |
| 412 | |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | static ssize_t show_rev(struct device *dev, struct device_attribute *attr, |
| 417 | char *buf) |
| 418 | { |
| 419 | struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev, |
| 420 | ibdev.dev); |
| 421 | PDBG("%s dev 0x%p\n", __func__, dev); |
Vipul Pandya | f079af7 | 2013-03-14 05:08:58 +0000 | [diff] [blame] | 422 | return sprintf(buf, "%d\n", |
| 423 | CHELSIO_CHIP_RELEASE(c4iw_dev->rdev.lldi.adapter_type)); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 424 | } |
| 425 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 426 | static ssize_t show_hca(struct device *dev, struct device_attribute *attr, |
| 427 | char *buf) |
| 428 | { |
| 429 | struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev, |
| 430 | ibdev.dev); |
| 431 | struct ethtool_drvinfo info; |
| 432 | struct net_device *lldev = c4iw_dev->rdev.lldi.ports[0]; |
| 433 | |
| 434 | PDBG("%s dev 0x%p\n", __func__, dev); |
| 435 | lldev->ethtool_ops->get_drvinfo(lldev, &info); |
| 436 | return sprintf(buf, "%s\n", info.driver); |
| 437 | } |
| 438 | |
| 439 | static ssize_t show_board(struct device *dev, struct device_attribute *attr, |
| 440 | char *buf) |
| 441 | { |
| 442 | struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev, |
| 443 | ibdev.dev); |
| 444 | PDBG("%s dev 0x%p\n", __func__, dev); |
| 445 | return sprintf(buf, "%x.%x\n", c4iw_dev->rdev.lldi.pdev->vendor, |
| 446 | c4iw_dev->rdev.lldi.pdev->device); |
| 447 | } |
| 448 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 449 | enum counters { |
| 450 | IP4INSEGS, |
| 451 | IP4OUTSEGS, |
| 452 | IP4RETRANSSEGS, |
| 453 | IP4OUTRSTS, |
| 454 | IP6INSEGS, |
| 455 | IP6OUTSEGS, |
| 456 | IP6RETRANSSEGS, |
| 457 | IP6OUTRSTS, |
| 458 | NR_COUNTERS |
| 459 | }; |
| 460 | |
| 461 | static const char * const names[] = { |
| 462 | [IP4INSEGS] = "ip4InSegs", |
| 463 | [IP4OUTSEGS] = "ip4OutSegs", |
| 464 | [IP4RETRANSSEGS] = "ip4RetransSegs", |
| 465 | [IP4OUTRSTS] = "ip4OutRsts", |
| 466 | [IP6INSEGS] = "ip6InSegs", |
| 467 | [IP6OUTSEGS] = "ip6OutSegs", |
| 468 | [IP6RETRANSSEGS] = "ip6RetransSegs", |
| 469 | [IP6OUTRSTS] = "ip6OutRsts" |
| 470 | }; |
| 471 | |
| 472 | static struct rdma_hw_stats *c4iw_alloc_stats(struct ib_device *ibdev, |
| 473 | u8 port_num) |
| 474 | { |
| 475 | BUILD_BUG_ON(ARRAY_SIZE(names) != NR_COUNTERS); |
| 476 | |
| 477 | if (port_num != 0) |
| 478 | return NULL; |
| 479 | |
| 480 | return rdma_alloc_hw_stats_struct(names, NR_COUNTERS, |
| 481 | RDMA_HW_STATS_DEFAULT_LIFESPAN); |
| 482 | } |
| 483 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 484 | static int c4iw_get_mib(struct ib_device *ibdev, |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 485 | struct rdma_hw_stats *stats, |
| 486 | u8 port, int index) |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 487 | { |
Steve Wise | de5dd81 | 2010-10-18 15:16:40 +0000 | [diff] [blame] | 488 | struct tp_tcp_stats v4, v6; |
| 489 | struct c4iw_dev *c4iw_dev = to_c4iw_dev(ibdev); |
| 490 | |
| 491 | cxgb4_get_tcp_stats(c4iw_dev->rdev.lldi.pdev, &v4, &v6); |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 492 | stats->value[IP4INSEGS] = v4.tcp_in_segs; |
| 493 | stats->value[IP4OUTSEGS] = v4.tcp_out_segs; |
| 494 | stats->value[IP4RETRANSSEGS] = v4.tcp_retrans_segs; |
| 495 | stats->value[IP4OUTRSTS] = v4.tcp_out_rsts; |
| 496 | stats->value[IP6INSEGS] = v6.tcp_in_segs; |
| 497 | stats->value[IP6OUTSEGS] = v6.tcp_out_segs; |
| 498 | stats->value[IP6RETRANSSEGS] = v6.tcp_retrans_segs; |
| 499 | stats->value[IP6OUTRSTS] = v6.tcp_out_rsts; |
Steve Wise | de5dd81 | 2010-10-18 15:16:40 +0000 | [diff] [blame] | 500 | |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 501 | return stats->num_counters; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 505 | static DEVICE_ATTR(hca_type, S_IRUGO, show_hca, NULL); |
| 506 | static DEVICE_ATTR(board_id, S_IRUGO, show_board, NULL); |
| 507 | |
| 508 | static struct device_attribute *c4iw_class_attributes[] = { |
| 509 | &dev_attr_hw_rev, |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 510 | &dev_attr_hca_type, |
| 511 | &dev_attr_board_id, |
| 512 | }; |
| 513 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 514 | static int c4iw_port_immutable(struct ib_device *ibdev, u8 port_num, |
| 515 | struct ib_port_immutable *immutable) |
| 516 | { |
| 517 | struct ib_port_attr attr; |
| 518 | int err; |
| 519 | |
| 520 | err = c4iw_query_port(ibdev, port_num, &attr); |
| 521 | if (err) |
| 522 | return err; |
| 523 | |
| 524 | immutable->pkey_tbl_len = attr.pkey_tbl_len; |
| 525 | immutable->gid_tbl_len = attr.gid_tbl_len; |
Ira Weiny | f9b22e3 | 2015-05-13 20:02:59 -0400 | [diff] [blame] | 526 | immutable->core_cap_flags = RDMA_CORE_PORT_IWARP; |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 527 | |
| 528 | return 0; |
| 529 | } |
| 530 | |
Ira Weiny | ce19224 | 2016-06-15 02:21:58 -0400 | [diff] [blame] | 531 | static void get_dev_fw_str(struct ib_device *dev, char *str, |
| 532 | size_t str_len) |
| 533 | { |
| 534 | struct c4iw_dev *c4iw_dev = container_of(dev, struct c4iw_dev, |
| 535 | ibdev); |
| 536 | PDBG("%s dev 0x%p\n", __func__, dev); |
| 537 | |
| 538 | snprintf(str, str_len, "%u.%u.%u.%u", |
| 539 | FW_HDR_FW_VER_MAJOR_G(c4iw_dev->rdev.lldi.fw_vers), |
| 540 | FW_HDR_FW_VER_MINOR_G(c4iw_dev->rdev.lldi.fw_vers), |
| 541 | FW_HDR_FW_VER_MICRO_G(c4iw_dev->rdev.lldi.fw_vers), |
| 542 | FW_HDR_FW_VER_BUILD_G(c4iw_dev->rdev.lldi.fw_vers)); |
| 543 | } |
| 544 | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 545 | int c4iw_register_device(struct c4iw_dev *dev) |
| 546 | { |
| 547 | int ret; |
| 548 | int i; |
| 549 | |
| 550 | PDBG("%s c4iw_dev %p\n", __func__, dev); |
| 551 | BUG_ON(!dev->rdev.lldi.ports[0]); |
| 552 | strlcpy(dev->ibdev.name, "cxgb4_%d", IB_DEVICE_NAME_MAX); |
| 553 | memset(&dev->ibdev.node_guid, 0, sizeof(dev->ibdev.node_guid)); |
| 554 | memcpy(&dev->ibdev.node_guid, dev->rdev.lldi.ports[0]->dev_addr, 6); |
| 555 | dev->ibdev.owner = THIS_MODULE; |
| 556 | dev->device_cap_flags = IB_DEVICE_LOCAL_DMA_LKEY | IB_DEVICE_MEM_WINDOW; |
| 557 | if (fastreg_support) |
| 558 | dev->device_cap_flags |= IB_DEVICE_MEM_MGT_EXTENSIONS; |
| 559 | dev->ibdev.local_dma_lkey = 0; |
| 560 | dev->ibdev.uverbs_cmd_mask = |
| 561 | (1ull << IB_USER_VERBS_CMD_GET_CONTEXT) | |
| 562 | (1ull << IB_USER_VERBS_CMD_QUERY_DEVICE) | |
| 563 | (1ull << IB_USER_VERBS_CMD_QUERY_PORT) | |
| 564 | (1ull << IB_USER_VERBS_CMD_ALLOC_PD) | |
| 565 | (1ull << IB_USER_VERBS_CMD_DEALLOC_PD) | |
| 566 | (1ull << IB_USER_VERBS_CMD_REG_MR) | |
| 567 | (1ull << IB_USER_VERBS_CMD_DEREG_MR) | |
| 568 | (1ull << IB_USER_VERBS_CMD_CREATE_COMP_CHANNEL) | |
| 569 | (1ull << IB_USER_VERBS_CMD_CREATE_CQ) | |
| 570 | (1ull << IB_USER_VERBS_CMD_DESTROY_CQ) | |
| 571 | (1ull << IB_USER_VERBS_CMD_REQ_NOTIFY_CQ) | |
| 572 | (1ull << IB_USER_VERBS_CMD_CREATE_QP) | |
| 573 | (1ull << IB_USER_VERBS_CMD_MODIFY_QP) | |
Vipul Pandya | 67bbc05 | 2012-05-18 15:29:33 +0530 | [diff] [blame] | 574 | (1ull << IB_USER_VERBS_CMD_QUERY_QP) | |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 575 | (1ull << IB_USER_VERBS_CMD_POLL_CQ) | |
| 576 | (1ull << IB_USER_VERBS_CMD_DESTROY_QP) | |
| 577 | (1ull << IB_USER_VERBS_CMD_POST_SEND) | |
| 578 | (1ull << IB_USER_VERBS_CMD_POST_RECV); |
| 579 | dev->ibdev.node_type = RDMA_NODE_RNIC; |
Yuval Shaia | bd99fde | 2016-08-25 10:57:07 -0700 | [diff] [blame] | 580 | BUILD_BUG_ON(sizeof(C4IW_NODE_DESC) > IB_DEVICE_NODE_DESC_MAX); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 581 | memcpy(dev->ibdev.node_desc, C4IW_NODE_DESC, sizeof(C4IW_NODE_DESC)); |
| 582 | dev->ibdev.phys_port_cnt = dev->rdev.lldi.nports; |
Hariprasad Shenai | cf38be6 | 2014-06-06 21:40:42 +0530 | [diff] [blame] | 583 | dev->ibdev.num_comp_vectors = dev->rdev.lldi.nciq; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 584 | dev->ibdev.dma_device = &(dev->rdev.lldi.pdev->dev); |
| 585 | dev->ibdev.query_device = c4iw_query_device; |
| 586 | dev->ibdev.query_port = c4iw_query_port; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 587 | dev->ibdev.query_pkey = c4iw_query_pkey; |
| 588 | dev->ibdev.query_gid = c4iw_query_gid; |
| 589 | dev->ibdev.alloc_ucontext = c4iw_alloc_ucontext; |
| 590 | dev->ibdev.dealloc_ucontext = c4iw_dealloc_ucontext; |
| 591 | dev->ibdev.mmap = c4iw_mmap; |
| 592 | dev->ibdev.alloc_pd = c4iw_allocate_pd; |
| 593 | dev->ibdev.dealloc_pd = c4iw_deallocate_pd; |
| 594 | dev->ibdev.create_ah = c4iw_ah_create; |
| 595 | dev->ibdev.destroy_ah = c4iw_ah_destroy; |
| 596 | dev->ibdev.create_qp = c4iw_create_qp; |
| 597 | dev->ibdev.modify_qp = c4iw_ib_modify_qp; |
Vipul Pandya | 67bbc05 | 2012-05-18 15:29:33 +0530 | [diff] [blame] | 598 | dev->ibdev.query_qp = c4iw_ib_query_qp; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 599 | dev->ibdev.destroy_qp = c4iw_destroy_qp; |
| 600 | dev->ibdev.create_cq = c4iw_create_cq; |
| 601 | dev->ibdev.destroy_cq = c4iw_destroy_cq; |
| 602 | dev->ibdev.resize_cq = c4iw_resize_cq; |
| 603 | dev->ibdev.poll_cq = c4iw_poll_cq; |
| 604 | dev->ibdev.get_dma_mr = c4iw_get_dma_mr; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 605 | dev->ibdev.reg_user_mr = c4iw_reg_user_mr; |
| 606 | dev->ibdev.dereg_mr = c4iw_dereg_mr; |
| 607 | dev->ibdev.alloc_mw = c4iw_alloc_mw; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 608 | dev->ibdev.dealloc_mw = c4iw_dealloc_mw; |
Sagi Grimberg | a216403 | 2015-07-30 10:32:44 +0300 | [diff] [blame] | 609 | dev->ibdev.alloc_mr = c4iw_alloc_mr; |
Sagi Grimberg | 8376b86 | 2015-10-13 19:11:30 +0300 | [diff] [blame] | 610 | dev->ibdev.map_mr_sg = c4iw_map_mr_sg; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 611 | dev->ibdev.attach_mcast = c4iw_multicast_attach; |
| 612 | dev->ibdev.detach_mcast = c4iw_multicast_detach; |
| 613 | dev->ibdev.process_mad = c4iw_process_mad; |
| 614 | dev->ibdev.req_notify_cq = c4iw_arm_cq; |
| 615 | dev->ibdev.post_send = c4iw_post_send; |
| 616 | dev->ibdev.post_recv = c4iw_post_receive; |
Christoph Lameter | b40f475 | 2016-05-16 12:49:33 -0500 | [diff] [blame] | 617 | dev->ibdev.alloc_hw_stats = c4iw_alloc_stats; |
| 618 | dev->ibdev.get_hw_stats = c4iw_get_mib; |
Steve Wise | c6d7b26 | 2010-09-13 11:23:57 -0500 | [diff] [blame] | 619 | dev->ibdev.uverbs_abi_ver = C4IW_UVERBS_ABI_VERSION; |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 620 | dev->ibdev.get_port_immutable = c4iw_port_immutable; |
Ira Weiny | ce19224 | 2016-06-15 02:21:58 -0400 | [diff] [blame] | 621 | dev->ibdev.get_dev_fw_str = get_dev_fw_str; |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 622 | |
| 623 | dev->ibdev.iwcm = kmalloc(sizeof(struct iw_cm_verbs), GFP_KERNEL); |
| 624 | if (!dev->ibdev.iwcm) |
| 625 | return -ENOMEM; |
| 626 | |
| 627 | dev->ibdev.iwcm->connect = c4iw_connect; |
| 628 | dev->ibdev.iwcm->accept = c4iw_accept_cr; |
| 629 | dev->ibdev.iwcm->reject = c4iw_reject_cr; |
| 630 | dev->ibdev.iwcm->create_listen = c4iw_create_listen; |
| 631 | dev->ibdev.iwcm->destroy_listen = c4iw_destroy_listen; |
| 632 | dev->ibdev.iwcm->add_ref = c4iw_qp_add_ref; |
| 633 | dev->ibdev.iwcm->rem_ref = c4iw_qp_rem_ref; |
| 634 | dev->ibdev.iwcm->get_qp = c4iw_get_qp; |
Steve Wise | 851d7b6 | 2016-04-12 06:54:54 -0700 | [diff] [blame] | 635 | memcpy(dev->ibdev.iwcm->ifname, dev->rdev.lldi.ports[0]->name, |
| 636 | sizeof(dev->ibdev.iwcm->ifname)); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 637 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 638 | ret = ib_register_device(&dev->ibdev, NULL); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 639 | if (ret) |
| 640 | goto bail1; |
| 641 | |
| 642 | for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i) { |
| 643 | ret = device_create_file(&dev->ibdev.dev, |
| 644 | c4iw_class_attributes[i]); |
| 645 | if (ret) |
| 646 | goto bail2; |
| 647 | } |
| 648 | return 0; |
| 649 | bail2: |
| 650 | ib_unregister_device(&dev->ibdev); |
| 651 | bail1: |
| 652 | kfree(dev->ibdev.iwcm); |
| 653 | return ret; |
| 654 | } |
| 655 | |
| 656 | void c4iw_unregister_device(struct c4iw_dev *dev) |
| 657 | { |
| 658 | int i; |
| 659 | |
| 660 | PDBG("%s c4iw_dev %p\n", __func__, dev); |
| 661 | for (i = 0; i < ARRAY_SIZE(c4iw_class_attributes); ++i) |
| 662 | device_remove_file(&dev->ibdev.dev, |
| 663 | c4iw_class_attributes[i]); |
| 664 | ib_unregister_device(&dev->ibdev); |
| 665 | kfree(dev->ibdev.iwcm); |
Steve Wise | cfdda9d | 2010-04-21 15:30:06 -0700 | [diff] [blame] | 666 | return; |
| 667 | } |