Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 3 | * redistributing this file, you may do so under either license. |
| 4 | * |
| 5 | * GPL LICENSE SUMMARY |
| 6 | * |
| 7 | * Copyright(c) 2012 Intel Corporation. All rights reserved. |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 8 | * Copyright (C) 2015 EMC Corporation. All Rights Reserved. |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of version 2 of the GNU General Public License as |
| 12 | * published by the Free Software Foundation. |
| 13 | * |
| 14 | * BSD LICENSE |
| 15 | * |
| 16 | * Copyright(c) 2012 Intel Corporation. All rights reserved. |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 17 | * Copyright (C) 2015 EMC Corporation. All Rights Reserved. |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 18 | * |
| 19 | * Redistribution and use in source and binary forms, with or without |
| 20 | * modification, are permitted provided that the following conditions |
| 21 | * are met: |
| 22 | * |
| 23 | * * Redistributions of source code must retain the above copyright |
| 24 | * notice, this list of conditions and the following disclaimer. |
| 25 | * * Redistributions in binary form must reproduce the above copy |
| 26 | * notice, this list of conditions and the following disclaimer in |
| 27 | * the documentation and/or other materials provided with the |
| 28 | * distribution. |
| 29 | * * Neither the name of Intel Corporation nor the names of its |
| 30 | * contributors may be used to endorse or promote products derived |
| 31 | * from this software without specific prior written permission. |
| 32 | * |
| 33 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 34 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 35 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 36 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 37 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 38 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 39 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 40 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 41 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 42 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 43 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 44 | * |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 45 | * PCIe NTB Transport Linux driver |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 46 | * |
| 47 | * Contact Information: |
| 48 | * Jon Mason <jon.mason@intel.com> |
| 49 | */ |
| 50 | #include <linux/debugfs.h> |
| 51 | #include <linux/delay.h> |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 52 | #include <linux/dmaengine.h> |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 53 | #include <linux/dma-mapping.h> |
| 54 | #include <linux/errno.h> |
| 55 | #include <linux/export.h> |
| 56 | #include <linux/interrupt.h> |
| 57 | #include <linux/module.h> |
| 58 | #include <linux/pci.h> |
| 59 | #include <linux/slab.h> |
| 60 | #include <linux/types.h> |
Dave Jiang | 06917f7 | 2015-05-19 16:45:46 -0400 | [diff] [blame] | 61 | #include <linux/uaccess.h> |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 62 | #include "linux/ntb.h" |
| 63 | #include "linux/ntb_transport.h" |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 64 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 65 | #define NTB_TRANSPORT_VERSION 4 |
| 66 | #define NTB_TRANSPORT_VER "4" |
| 67 | #define NTB_TRANSPORT_NAME "ntb_transport" |
| 68 | #define NTB_TRANSPORT_DESC "Software Queue-Pair Transport over NTB" |
| 69 | |
| 70 | MODULE_DESCRIPTION(NTB_TRANSPORT_DESC); |
| 71 | MODULE_VERSION(NTB_TRANSPORT_VER); |
| 72 | MODULE_LICENSE("Dual BSD/GPL"); |
| 73 | MODULE_AUTHOR("Intel Corporation"); |
| 74 | |
| 75 | static unsigned long max_mw_size; |
| 76 | module_param(max_mw_size, ulong, 0644); |
| 77 | MODULE_PARM_DESC(max_mw_size, "Limit size of large memory windows"); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 78 | |
Dave Jiang | 9891417 | 2015-06-03 11:29:38 -0400 | [diff] [blame] | 79 | static unsigned int transport_mtu = 0x10000; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 80 | module_param(transport_mtu, uint, 0644); |
| 81 | MODULE_PARM_DESC(transport_mtu, "Maximum size of NTB transport packets"); |
| 82 | |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 83 | static unsigned char max_num_clients; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 84 | module_param(max_num_clients, byte, 0644); |
| 85 | MODULE_PARM_DESC(max_num_clients, "Maximum number of NTB transport clients"); |
| 86 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 87 | static unsigned int copy_bytes = 1024; |
| 88 | module_param(copy_bytes, uint, 0644); |
| 89 | MODULE_PARM_DESC(copy_bytes, "Threshold under which NTB will use the CPU to copy instead of DMA"); |
| 90 | |
Dave Jiang | a41ef05 | 2015-05-19 16:52:04 -0400 | [diff] [blame] | 91 | static bool use_dma; |
| 92 | module_param(use_dma, bool, 0644); |
| 93 | MODULE_PARM_DESC(use_dma, "Use DMA engine to perform large data copy"); |
| 94 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 95 | static struct dentry *nt_debugfs_dir; |
| 96 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 97 | struct ntb_queue_entry { |
| 98 | /* ntb_queue list reference */ |
| 99 | struct list_head entry; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 100 | /* pointers to data to be transferred */ |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 101 | void *cb_data; |
| 102 | void *buf; |
| 103 | unsigned int len; |
| 104 | unsigned int flags; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 105 | |
| 106 | struct ntb_transport_qp *qp; |
| 107 | union { |
| 108 | struct ntb_payload_header __iomem *tx_hdr; |
| 109 | struct ntb_payload_header *rx_hdr; |
| 110 | }; |
| 111 | unsigned int index; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 112 | }; |
| 113 | |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 114 | struct ntb_rx_info { |
| 115 | unsigned int entry; |
| 116 | }; |
| 117 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 118 | struct ntb_transport_qp { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 119 | struct ntb_transport_ctx *transport; |
| 120 | struct ntb_dev *ndev; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 121 | void *cb_data; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 122 | struct dma_chan *dma_chan; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 123 | |
| 124 | bool client_ready; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 125 | bool link_is_up; |
| 126 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 127 | u8 qp_num; /* Only 64 QP's are allowed. 0-63 */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 128 | u64 qp_bit; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 129 | |
Jon Mason | 7446564 | 2013-01-21 15:28:52 -0700 | [diff] [blame] | 130 | struct ntb_rx_info __iomem *rx_info; |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 131 | struct ntb_rx_info *remote_rx_info; |
| 132 | |
Jon Mason | 53ca4fe | 2013-11-26 11:21:50 -0700 | [diff] [blame] | 133 | void (*tx_handler)(struct ntb_transport_qp *qp, void *qp_data, |
| 134 | void *data, int len); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 135 | struct list_head tx_free_q; |
| 136 | spinlock_t ntb_tx_free_q_lock; |
Jon Mason | 7446564 | 2013-01-21 15:28:52 -0700 | [diff] [blame] | 137 | void __iomem *tx_mw; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 138 | dma_addr_t tx_mw_phys; |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 139 | unsigned int tx_index; |
| 140 | unsigned int tx_max_entry; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 141 | unsigned int tx_max_frame; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 142 | |
Jon Mason | 53ca4fe | 2013-11-26 11:21:50 -0700 | [diff] [blame] | 143 | void (*rx_handler)(struct ntb_transport_qp *qp, void *qp_data, |
| 144 | void *data, int len); |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 145 | struct list_head rx_post_q; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 146 | struct list_head rx_pend_q; |
| 147 | struct list_head rx_free_q; |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 148 | /* ntb_rx_q_lock: synchronize access to rx_XXXX_q */ |
| 149 | spinlock_t ntb_rx_q_lock; |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 150 | void *rx_buff; |
| 151 | unsigned int rx_index; |
| 152 | unsigned int rx_max_entry; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 153 | unsigned int rx_max_frame; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 154 | dma_cookie_t last_cookie; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 155 | struct tasklet_struct rxc_db_work; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 156 | |
Jon Mason | 53ca4fe | 2013-11-26 11:21:50 -0700 | [diff] [blame] | 157 | void (*event_handler)(void *data, int status); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 158 | struct delayed_work link_work; |
Jon Mason | 7b4f2d3 | 2013-01-19 02:02:19 -0700 | [diff] [blame] | 159 | struct work_struct link_cleanup; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 160 | |
| 161 | struct dentry *debugfs_dir; |
| 162 | struct dentry *debugfs_stats; |
| 163 | |
| 164 | /* Stats */ |
| 165 | u64 rx_bytes; |
| 166 | u64 rx_pkts; |
| 167 | u64 rx_ring_empty; |
| 168 | u64 rx_err_no_buf; |
| 169 | u64 rx_err_oflow; |
| 170 | u64 rx_err_ver; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 171 | u64 rx_memcpy; |
| 172 | u64 rx_async; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 173 | u64 tx_bytes; |
| 174 | u64 tx_pkts; |
| 175 | u64 tx_ring_full; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 176 | u64 tx_err_no_buf; |
| 177 | u64 tx_memcpy; |
| 178 | u64 tx_async; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | struct ntb_transport_mw { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 182 | phys_addr_t phys_addr; |
| 183 | resource_size_t phys_size; |
| 184 | resource_size_t xlat_align; |
| 185 | resource_size_t xlat_align_size; |
| 186 | void __iomem *vbase; |
| 187 | size_t xlat_size; |
| 188 | size_t buff_size; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 189 | void *virt_addr; |
| 190 | dma_addr_t dma_addr; |
| 191 | }; |
| 192 | |
| 193 | struct ntb_transport_client_dev { |
| 194 | struct list_head entry; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 195 | struct ntb_transport_ctx *nt; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 196 | struct device dev; |
| 197 | }; |
| 198 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 199 | struct ntb_transport_ctx { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 200 | struct list_head entry; |
| 201 | struct list_head client_devs; |
| 202 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 203 | struct ntb_dev *ndev; |
| 204 | |
| 205 | struct ntb_transport_mw *mw_vec; |
| 206 | struct ntb_transport_qp *qp_vec; |
| 207 | unsigned int mw_count; |
| 208 | unsigned int qp_count; |
| 209 | u64 qp_bitmap; |
| 210 | u64 qp_bitmap_free; |
| 211 | |
| 212 | bool link_is_up; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 213 | struct delayed_work link_work; |
Jon Mason | 7b4f2d3 | 2013-01-19 02:02:19 -0700 | [diff] [blame] | 214 | struct work_struct link_cleanup; |
Dave Jiang | c8650fd | 2015-07-13 08:07:09 -0400 | [diff] [blame] | 215 | |
| 216 | struct dentry *debugfs_node_dir; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | enum { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 220 | DESC_DONE_FLAG = BIT(0), |
| 221 | LINK_DOWN_FLAG = BIT(1), |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | struct ntb_payload_header { |
Jon Mason | 7446564 | 2013-01-21 15:28:52 -0700 | [diff] [blame] | 225 | unsigned int ver; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 226 | unsigned int len; |
| 227 | unsigned int flags; |
| 228 | }; |
| 229 | |
| 230 | enum { |
| 231 | VERSION = 0, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 232 | QP_LINKS, |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 233 | NUM_QPS, |
| 234 | NUM_MWS, |
| 235 | MW0_SZ_HIGH, |
| 236 | MW0_SZ_LOW, |
| 237 | MW1_SZ_HIGH, |
| 238 | MW1_SZ_LOW, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 239 | MAX_SPAD, |
| 240 | }; |
| 241 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 242 | #define dev_client_dev(__dev) \ |
| 243 | container_of((__dev), struct ntb_transport_client_dev, dev) |
| 244 | |
| 245 | #define drv_client(__drv) \ |
| 246 | container_of((__drv), struct ntb_transport_client, driver) |
| 247 | |
| 248 | #define QP_TO_MW(nt, qp) ((qp) % nt->mw_count) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 249 | #define NTB_QP_DEF_NUM_ENTRIES 100 |
| 250 | #define NTB_LINK_DOWN_TIMEOUT 10 |
| 251 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 252 | static void ntb_transport_rxc_db(unsigned long data); |
| 253 | static const struct ntb_ctx_ops ntb_transport_ops; |
| 254 | static struct ntb_client ntb_transport_client; |
| 255 | |
| 256 | static int ntb_transport_bus_match(struct device *dev, |
| 257 | struct device_driver *drv) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 258 | { |
| 259 | return !strncmp(dev_name(dev), drv->name, strlen(drv->name)); |
| 260 | } |
| 261 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 262 | static int ntb_transport_bus_probe(struct device *dev) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 263 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 264 | const struct ntb_transport_client *client; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 265 | int rc = -EINVAL; |
| 266 | |
| 267 | get_device(dev); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 268 | |
| 269 | client = drv_client(dev->driver); |
| 270 | rc = client->probe(dev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 271 | if (rc) |
| 272 | put_device(dev); |
| 273 | |
| 274 | return rc; |
| 275 | } |
| 276 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 277 | static int ntb_transport_bus_remove(struct device *dev) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 278 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 279 | const struct ntb_transport_client *client; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 280 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 281 | client = drv_client(dev->driver); |
| 282 | client->remove(dev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 283 | |
| 284 | put_device(dev); |
| 285 | |
| 286 | return 0; |
| 287 | } |
| 288 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 289 | static struct bus_type ntb_transport_bus = { |
| 290 | .name = "ntb_transport", |
| 291 | .match = ntb_transport_bus_match, |
| 292 | .probe = ntb_transport_bus_probe, |
| 293 | .remove = ntb_transport_bus_remove, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 294 | }; |
| 295 | |
| 296 | static LIST_HEAD(ntb_transport_list); |
| 297 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 298 | static int ntb_bus_init(struct ntb_transport_ctx *nt) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 299 | { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 300 | list_add(&nt->entry, &ntb_transport_list); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 301 | return 0; |
| 302 | } |
| 303 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 304 | static void ntb_bus_remove(struct ntb_transport_ctx *nt) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 305 | { |
| 306 | struct ntb_transport_client_dev *client_dev, *cd; |
| 307 | |
| 308 | list_for_each_entry_safe(client_dev, cd, &nt->client_devs, entry) { |
| 309 | dev_err(client_dev->dev.parent, "%s still attached to bus, removing\n", |
| 310 | dev_name(&client_dev->dev)); |
| 311 | list_del(&client_dev->entry); |
| 312 | device_unregister(&client_dev->dev); |
| 313 | } |
| 314 | |
| 315 | list_del(&nt->entry); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 318 | static void ntb_transport_client_release(struct device *dev) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 319 | { |
| 320 | struct ntb_transport_client_dev *client_dev; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 321 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 322 | client_dev = dev_client_dev(dev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 323 | kfree(client_dev); |
| 324 | } |
| 325 | |
| 326 | /** |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 327 | * ntb_transport_unregister_client_dev - Unregister NTB client device |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 328 | * @device_name: Name of NTB client device |
| 329 | * |
| 330 | * Unregister an NTB client device with the NTB transport layer |
| 331 | */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 332 | void ntb_transport_unregister_client_dev(char *device_name) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 333 | { |
| 334 | struct ntb_transport_client_dev *client, *cd; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 335 | struct ntb_transport_ctx *nt; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 336 | |
| 337 | list_for_each_entry(nt, &ntb_transport_list, entry) |
| 338 | list_for_each_entry_safe(client, cd, &nt->client_devs, entry) |
| 339 | if (!strncmp(dev_name(&client->dev), device_name, |
| 340 | strlen(device_name))) { |
| 341 | list_del(&client->entry); |
| 342 | device_unregister(&client->dev); |
| 343 | } |
| 344 | } |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 345 | EXPORT_SYMBOL_GPL(ntb_transport_unregister_client_dev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 346 | |
| 347 | /** |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 348 | * ntb_transport_register_client_dev - Register NTB client device |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 349 | * @device_name: Name of NTB client device |
| 350 | * |
| 351 | * Register an NTB client device with the NTB transport layer |
| 352 | */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 353 | int ntb_transport_register_client_dev(char *device_name) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 354 | { |
| 355 | struct ntb_transport_client_dev *client_dev; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 356 | struct ntb_transport_ctx *nt; |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 357 | int node; |
Jon Mason | 8b19d45 | 2013-04-26 14:51:57 -0700 | [diff] [blame] | 358 | int rc, i = 0; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 359 | |
Jon Mason | 8222b40 | 2013-01-19 02:02:16 -0700 | [diff] [blame] | 360 | if (list_empty(&ntb_transport_list)) |
| 361 | return -ENODEV; |
| 362 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 363 | list_for_each_entry(nt, &ntb_transport_list, entry) { |
| 364 | struct device *dev; |
| 365 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 366 | node = dev_to_node(&nt->ndev->dev); |
| 367 | |
| 368 | client_dev = kzalloc_node(sizeof(*client_dev), |
| 369 | GFP_KERNEL, node); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 370 | if (!client_dev) { |
| 371 | rc = -ENOMEM; |
| 372 | goto err; |
| 373 | } |
| 374 | |
| 375 | dev = &client_dev->dev; |
| 376 | |
| 377 | /* setup and register client devices */ |
Jon Mason | 8b19d45 | 2013-04-26 14:51:57 -0700 | [diff] [blame] | 378 | dev_set_name(dev, "%s%d", device_name, i); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 379 | dev->bus = &ntb_transport_bus; |
| 380 | dev->release = ntb_transport_client_release; |
| 381 | dev->parent = &nt->ndev->dev; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 382 | |
| 383 | rc = device_register(dev); |
| 384 | if (rc) { |
| 385 | kfree(client_dev); |
| 386 | goto err; |
| 387 | } |
| 388 | |
| 389 | list_add_tail(&client_dev->entry, &nt->client_devs); |
Jon Mason | 8b19d45 | 2013-04-26 14:51:57 -0700 | [diff] [blame] | 390 | i++; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | return 0; |
| 394 | |
| 395 | err: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 396 | ntb_transport_unregister_client_dev(device_name); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 397 | |
| 398 | return rc; |
| 399 | } |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 400 | EXPORT_SYMBOL_GPL(ntb_transport_register_client_dev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 401 | |
| 402 | /** |
Allen Hubbe | ec110bc | 2015-05-07 06:45:21 -0400 | [diff] [blame] | 403 | * ntb_transport_register_client - Register NTB client driver |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 404 | * @drv: NTB client driver to be registered |
| 405 | * |
| 406 | * Register an NTB client driver with the NTB transport layer |
| 407 | * |
| 408 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
| 409 | */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 410 | int ntb_transport_register_client(struct ntb_transport_client *drv) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 411 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 412 | drv->driver.bus = &ntb_transport_bus; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 413 | |
Jon Mason | 8222b40 | 2013-01-19 02:02:16 -0700 | [diff] [blame] | 414 | if (list_empty(&ntb_transport_list)) |
| 415 | return -ENODEV; |
| 416 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 417 | return driver_register(&drv->driver); |
| 418 | } |
Allen Hubbe | ec110bc | 2015-05-07 06:45:21 -0400 | [diff] [blame] | 419 | EXPORT_SYMBOL_GPL(ntb_transport_register_client); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 420 | |
| 421 | /** |
Allen Hubbe | ec110bc | 2015-05-07 06:45:21 -0400 | [diff] [blame] | 422 | * ntb_transport_unregister_client - Unregister NTB client driver |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 423 | * @drv: NTB client driver to be unregistered |
| 424 | * |
| 425 | * Unregister an NTB client driver with the NTB transport layer |
| 426 | * |
| 427 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
| 428 | */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 429 | void ntb_transport_unregister_client(struct ntb_transport_client *drv) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 430 | { |
| 431 | driver_unregister(&drv->driver); |
| 432 | } |
Allen Hubbe | ec110bc | 2015-05-07 06:45:21 -0400 | [diff] [blame] | 433 | EXPORT_SYMBOL_GPL(ntb_transport_unregister_client); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 434 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 435 | static ssize_t debugfs_read(struct file *filp, char __user *ubuf, size_t count, |
| 436 | loff_t *offp) |
| 437 | { |
| 438 | struct ntb_transport_qp *qp; |
Jon Mason | d7237e2 | 2013-01-19 02:02:25 -0700 | [diff] [blame] | 439 | char *buf; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 440 | ssize_t ret, out_offset, out_count; |
| 441 | |
Dave Jiang | 260bee9 | 2015-07-13 08:07:11 -0400 | [diff] [blame^] | 442 | qp = filp->private_data; |
| 443 | |
| 444 | if (!qp || !qp->link_is_up) |
| 445 | return 0; |
| 446 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 447 | out_count = 1000; |
Jon Mason | d7237e2 | 2013-01-19 02:02:25 -0700 | [diff] [blame] | 448 | |
| 449 | buf = kmalloc(out_count, GFP_KERNEL); |
| 450 | if (!buf) |
| 451 | return -ENOMEM; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 452 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 453 | out_offset = 0; |
| 454 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 455 | "NTB QP stats\n"); |
| 456 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 457 | "rx_bytes - \t%llu\n", qp->rx_bytes); |
| 458 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 459 | "rx_pkts - \t%llu\n", qp->rx_pkts); |
| 460 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 461 | "rx_memcpy - \t%llu\n", qp->rx_memcpy); |
| 462 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 463 | "rx_async - \t%llu\n", qp->rx_async); |
| 464 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 465 | "rx_ring_empty - %llu\n", qp->rx_ring_empty); |
| 466 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 467 | "rx_err_no_buf - %llu\n", qp->rx_err_no_buf); |
| 468 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 469 | "rx_err_oflow - \t%llu\n", qp->rx_err_oflow); |
| 470 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 471 | "rx_err_ver - \t%llu\n", qp->rx_err_ver); |
| 472 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 473 | "rx_buff - \t%p\n", qp->rx_buff); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 474 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 475 | "rx_index - \t%u\n", qp->rx_index); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 476 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 477 | "rx_max_entry - \t%u\n", qp->rx_max_entry); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 478 | |
| 479 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 480 | "tx_bytes - \t%llu\n", qp->tx_bytes); |
| 481 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 482 | "tx_pkts - \t%llu\n", qp->tx_pkts); |
| 483 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 484 | "tx_memcpy - \t%llu\n", qp->tx_memcpy); |
| 485 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
| 486 | "tx_async - \t%llu\n", qp->tx_async); |
| 487 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 488 | "tx_ring_full - \t%llu\n", qp->tx_ring_full); |
| 489 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 490 | "tx_err_no_buf - %llu\n", qp->tx_err_no_buf); |
| 491 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 492 | "tx_mw - \t%p\n", qp->tx_mw); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 493 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 494 | "tx_index - \t%u\n", qp->tx_index); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 495 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 496 | "tx_max_entry - \t%u\n", qp->tx_max_entry); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 497 | |
| 498 | out_offset += snprintf(buf + out_offset, out_count - out_offset, |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 499 | "\nQP Link %s\n", |
| 500 | qp->link_is_up ? "Up" : "Down"); |
Jon Mason | d7237e2 | 2013-01-19 02:02:25 -0700 | [diff] [blame] | 501 | if (out_offset > out_count) |
| 502 | out_offset = out_count; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 503 | |
| 504 | ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset); |
Jon Mason | d7237e2 | 2013-01-19 02:02:25 -0700 | [diff] [blame] | 505 | kfree(buf); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 506 | return ret; |
| 507 | } |
| 508 | |
| 509 | static const struct file_operations ntb_qp_debugfs_stats = { |
| 510 | .owner = THIS_MODULE, |
Jon Mason | d66d7ac | 2013-01-19 02:02:20 -0700 | [diff] [blame] | 511 | .open = simple_open, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 512 | .read = debugfs_read, |
| 513 | }; |
| 514 | |
| 515 | static void ntb_list_add(spinlock_t *lock, struct list_head *entry, |
| 516 | struct list_head *list) |
| 517 | { |
| 518 | unsigned long flags; |
| 519 | |
| 520 | spin_lock_irqsave(lock, flags); |
| 521 | list_add_tail(entry, list); |
| 522 | spin_unlock_irqrestore(lock, flags); |
| 523 | } |
| 524 | |
| 525 | static struct ntb_queue_entry *ntb_list_rm(spinlock_t *lock, |
Jon Mason | 53ca4fe | 2013-11-26 11:21:50 -0700 | [diff] [blame] | 526 | struct list_head *list) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 527 | { |
| 528 | struct ntb_queue_entry *entry; |
| 529 | unsigned long flags; |
| 530 | |
| 531 | spin_lock_irqsave(lock, flags); |
| 532 | if (list_empty(list)) { |
| 533 | entry = NULL; |
| 534 | goto out; |
| 535 | } |
| 536 | entry = list_first_entry(list, struct ntb_queue_entry, entry); |
| 537 | list_del(&entry->entry); |
| 538 | out: |
| 539 | spin_unlock_irqrestore(lock, flags); |
| 540 | |
| 541 | return entry; |
| 542 | } |
| 543 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 544 | static struct ntb_queue_entry *ntb_list_mv(spinlock_t *lock, |
| 545 | struct list_head *list, |
| 546 | struct list_head *to_list) |
| 547 | { |
| 548 | struct ntb_queue_entry *entry; |
| 549 | unsigned long flags; |
| 550 | |
| 551 | spin_lock_irqsave(lock, flags); |
| 552 | |
| 553 | if (list_empty(list)) { |
| 554 | entry = NULL; |
| 555 | } else { |
| 556 | entry = list_first_entry(list, struct ntb_queue_entry, entry); |
| 557 | list_move_tail(&entry->entry, to_list); |
| 558 | } |
| 559 | |
| 560 | spin_unlock_irqrestore(lock, flags); |
| 561 | |
| 562 | return entry; |
| 563 | } |
| 564 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 565 | static int ntb_transport_setup_qp_mw(struct ntb_transport_ctx *nt, |
| 566 | unsigned int qp_num) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 567 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 568 | struct ntb_transport_qp *qp = &nt->qp_vec[qp_num]; |
| 569 | struct ntb_transport_mw *mw; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 570 | unsigned int rx_size, num_qps_mw; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 571 | unsigned int mw_num, mw_count, qp_count; |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 572 | unsigned int i; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 573 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 574 | mw_count = nt->mw_count; |
| 575 | qp_count = nt->qp_count; |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 576 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 577 | mw_num = QP_TO_MW(nt, qp_num); |
| 578 | mw = &nt->mw_vec[mw_num]; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 579 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 580 | if (!mw->virt_addr) |
| 581 | return -ENOMEM; |
| 582 | |
| 583 | if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count) |
| 584 | num_qps_mw = qp_count / mw_count + 1; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 585 | else |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 586 | num_qps_mw = qp_count / mw_count; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 587 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 588 | rx_size = (unsigned int)mw->xlat_size / num_qps_mw; |
| 589 | qp->rx_buff = mw->virt_addr + rx_size * qp_num / mw_count; |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 590 | rx_size -= sizeof(struct ntb_rx_info); |
| 591 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 592 | qp->remote_rx_info = qp->rx_buff + rx_size; |
| 593 | |
Jon Mason | c9d534c | 2013-02-01 15:45:16 -0700 | [diff] [blame] | 594 | /* Due to housekeeping, there must be atleast 2 buffs */ |
| 595 | qp->rx_max_frame = min(transport_mtu, rx_size / 2); |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 596 | qp->rx_max_entry = rx_size / qp->rx_max_frame; |
| 597 | qp->rx_index = 0; |
| 598 | |
Jon Mason | c9d534c | 2013-02-01 15:45:16 -0700 | [diff] [blame] | 599 | qp->remote_rx_info->entry = qp->rx_max_entry - 1; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 600 | |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 601 | /* setup the hdr offsets with 0's */ |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 602 | for (i = 0; i < qp->rx_max_entry; i++) { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 603 | void *offset = (qp->rx_buff + qp->rx_max_frame * (i + 1) - |
| 604 | sizeof(struct ntb_payload_header)); |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 605 | memset(offset, 0, sizeof(struct ntb_payload_header)); |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 606 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 607 | |
| 608 | qp->rx_pkts = 0; |
| 609 | qp->tx_pkts = 0; |
Jon Mason | 90f9e93 | 2013-02-01 15:34:35 -0700 | [diff] [blame] | 610 | qp->tx_index = 0; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 611 | |
| 612 | return 0; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 613 | } |
| 614 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 615 | static void ntb_free_mw(struct ntb_transport_ctx *nt, int num_mw) |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 616 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 617 | struct ntb_transport_mw *mw = &nt->mw_vec[num_mw]; |
| 618 | struct pci_dev *pdev = nt->ndev->pdev; |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 619 | |
| 620 | if (!mw->virt_addr) |
| 621 | return; |
| 622 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 623 | ntb_mw_clear_trans(nt->ndev, num_mw); |
| 624 | dma_free_coherent(&pdev->dev, mw->buff_size, |
| 625 | mw->virt_addr, mw->dma_addr); |
| 626 | mw->xlat_size = 0; |
| 627 | mw->buff_size = 0; |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 628 | mw->virt_addr = NULL; |
| 629 | } |
| 630 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 631 | static int ntb_set_mw(struct ntb_transport_ctx *nt, int num_mw, |
| 632 | unsigned int size) |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 633 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 634 | struct ntb_transport_mw *mw = &nt->mw_vec[num_mw]; |
| 635 | struct pci_dev *pdev = nt->ndev->pdev; |
| 636 | unsigned int xlat_size, buff_size; |
| 637 | int rc; |
| 638 | |
| 639 | xlat_size = round_up(size, mw->xlat_align_size); |
| 640 | buff_size = round_up(size, mw->xlat_align); |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 641 | |
| 642 | /* No need to re-setup */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 643 | if (mw->xlat_size == xlat_size) |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 644 | return 0; |
| 645 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 646 | if (mw->buff_size) |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 647 | ntb_free_mw(nt, num_mw); |
| 648 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 649 | /* Alloc memory for receiving data. Must be aligned */ |
| 650 | mw->xlat_size = xlat_size; |
| 651 | mw->buff_size = buff_size; |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 652 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 653 | mw->virt_addr = dma_alloc_coherent(&pdev->dev, buff_size, |
| 654 | &mw->dma_addr, GFP_KERNEL); |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 655 | if (!mw->virt_addr) { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 656 | mw->xlat_size = 0; |
| 657 | mw->buff_size = 0; |
| 658 | dev_err(&pdev->dev, "Unable to alloc MW buff of size %d\n", |
| 659 | buff_size); |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 660 | return -ENOMEM; |
| 661 | } |
| 662 | |
Dave Jiang | 3cc5ba1 | 2014-08-28 13:53:02 -0700 | [diff] [blame] | 663 | /* |
| 664 | * we must ensure that the memory address allocated is BAR size |
| 665 | * aligned in order for the XLAT register to take the value. This |
| 666 | * is a requirement of the hardware. It is recommended to setup CMA |
| 667 | * for BAR sizes equal or greater than 4MB. |
| 668 | */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 669 | if (!IS_ALIGNED(mw->dma_addr, mw->xlat_align)) { |
| 670 | dev_err(&pdev->dev, "DMA memory %pad is not aligned\n", |
Dave Jiang | 3cc5ba1 | 2014-08-28 13:53:02 -0700 | [diff] [blame] | 671 | &mw->dma_addr); |
| 672 | ntb_free_mw(nt, num_mw); |
| 673 | return -ENOMEM; |
| 674 | } |
| 675 | |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 676 | /* Notify HW the memory location of the receive buffer */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 677 | rc = ntb_mw_set_trans(nt->ndev, num_mw, mw->dma_addr, mw->xlat_size); |
| 678 | if (rc) { |
| 679 | dev_err(&pdev->dev, "Unable to set mw%d translation", num_mw); |
| 680 | ntb_free_mw(nt, num_mw); |
| 681 | return -EIO; |
| 682 | } |
Jon Mason | b77b263 | 2013-02-01 15:25:37 -0700 | [diff] [blame] | 683 | |
| 684 | return 0; |
| 685 | } |
| 686 | |
Allen Hubbe | 2849b5d7 | 2015-05-12 08:09:15 -0400 | [diff] [blame] | 687 | static void ntb_qp_link_down_reset(struct ntb_transport_qp *qp) |
| 688 | { |
| 689 | qp->link_is_up = false; |
| 690 | |
| 691 | qp->tx_index = 0; |
| 692 | qp->rx_index = 0; |
| 693 | qp->rx_bytes = 0; |
| 694 | qp->rx_pkts = 0; |
| 695 | qp->rx_ring_empty = 0; |
| 696 | qp->rx_err_no_buf = 0; |
| 697 | qp->rx_err_oflow = 0; |
| 698 | qp->rx_err_ver = 0; |
| 699 | qp->rx_memcpy = 0; |
| 700 | qp->rx_async = 0; |
| 701 | qp->tx_bytes = 0; |
| 702 | qp->tx_pkts = 0; |
| 703 | qp->tx_ring_full = 0; |
| 704 | qp->tx_err_no_buf = 0; |
| 705 | qp->tx_memcpy = 0; |
| 706 | qp->tx_async = 0; |
| 707 | } |
| 708 | |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 709 | static void ntb_qp_link_cleanup(struct ntb_transport_qp *qp) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 710 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 711 | struct ntb_transport_ctx *nt = qp->transport; |
| 712 | struct pci_dev *pdev = nt->ndev->pdev; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 713 | |
Allen Hubbe | e22e0b9 | 2015-05-12 06:55:44 -0400 | [diff] [blame] | 714 | dev_info(&pdev->dev, "qp %d: Link Cleanup\n", qp->qp_num); |
Allen Hubbe | 2849b5d7 | 2015-05-12 08:09:15 -0400 | [diff] [blame] | 715 | |
| 716 | cancel_delayed_work_sync(&qp->link_work); |
| 717 | ntb_qp_link_down_reset(qp); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 718 | |
| 719 | if (qp->event_handler) |
| 720 | qp->event_handler(qp->cb_data, qp->link_is_up); |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 721 | } |
| 722 | |
| 723 | static void ntb_qp_link_cleanup_work(struct work_struct *work) |
| 724 | { |
| 725 | struct ntb_transport_qp *qp = container_of(work, |
| 726 | struct ntb_transport_qp, |
| 727 | link_cleanup); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 728 | struct ntb_transport_ctx *nt = qp->transport; |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 729 | |
| 730 | ntb_qp_link_cleanup(qp); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 731 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 732 | if (nt->link_is_up) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 733 | schedule_delayed_work(&qp->link_work, |
| 734 | msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT)); |
| 735 | } |
| 736 | |
Jon Mason | 7b4f2d3 | 2013-01-19 02:02:19 -0700 | [diff] [blame] | 737 | static void ntb_qp_link_down(struct ntb_transport_qp *qp) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 738 | { |
Jon Mason | 7b4f2d3 | 2013-01-19 02:02:19 -0700 | [diff] [blame] | 739 | schedule_work(&qp->link_cleanup); |
| 740 | } |
| 741 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 742 | static void ntb_transport_link_cleanup(struct ntb_transport_ctx *nt) |
Jon Mason | 7b4f2d3 | 2013-01-19 02:02:19 -0700 | [diff] [blame] | 743 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 744 | struct ntb_transport_qp *qp; |
| 745 | u64 qp_bitmap_alloc; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 746 | int i; |
| 747 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 748 | qp_bitmap_alloc = nt->qp_bitmap & ~nt->qp_bitmap_free; |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 749 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 750 | /* Pass along the info to any clients */ |
| 751 | for (i = 0; i < nt->qp_count; i++) |
| 752 | if (qp_bitmap_alloc & BIT_ULL(i)) { |
| 753 | qp = &nt->qp_vec[i]; |
| 754 | ntb_qp_link_cleanup(qp); |
| 755 | cancel_work_sync(&qp->link_cleanup); |
| 756 | cancel_delayed_work_sync(&qp->link_work); |
| 757 | } |
| 758 | |
| 759 | if (!nt->link_is_up) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 760 | cancel_delayed_work_sync(&nt->link_work); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 761 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 762 | /* The scratchpad registers keep the values if the remote side |
| 763 | * goes down, blast them now to give them a sane value the next |
| 764 | * time they are accessed |
| 765 | */ |
| 766 | for (i = 0; i < MAX_SPAD; i++) |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 767 | ntb_spad_write(nt->ndev, i, 0); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 768 | } |
| 769 | |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 770 | static void ntb_transport_link_cleanup_work(struct work_struct *work) |
| 771 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 772 | struct ntb_transport_ctx *nt = |
| 773 | container_of(work, struct ntb_transport_ctx, link_cleanup); |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 774 | |
| 775 | ntb_transport_link_cleanup(nt); |
| 776 | } |
| 777 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 778 | static void ntb_transport_event_callback(void *data) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 779 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 780 | struct ntb_transport_ctx *nt = data; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 781 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 782 | if (ntb_link_is_up(nt->ndev, NULL, NULL) == 1) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 783 | schedule_delayed_work(&nt->link_work, 0); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 784 | else |
Jon Mason | 7b4f2d3 | 2013-01-19 02:02:19 -0700 | [diff] [blame] | 785 | schedule_work(&nt->link_cleanup); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | static void ntb_transport_link_work(struct work_struct *work) |
| 789 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 790 | struct ntb_transport_ctx *nt = |
| 791 | container_of(work, struct ntb_transport_ctx, link_work.work); |
| 792 | struct ntb_dev *ndev = nt->ndev; |
| 793 | struct pci_dev *pdev = ndev->pdev; |
| 794 | resource_size_t size; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 795 | u32 val; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 796 | int rc, i, spad; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 797 | |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 798 | /* send the local info, in the opposite order of the way we read it */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 799 | for (i = 0; i < nt->mw_count; i++) { |
| 800 | size = nt->mw_vec[i].phys_size; |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 801 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 802 | if (max_mw_size && size > max_mw_size) |
| 803 | size = max_mw_size; |
| 804 | |
| 805 | spad = MW0_SZ_HIGH + (i * 2); |
| 806 | ntb_peer_spad_write(ndev, spad, (u32)(size >> 32)); |
| 807 | |
| 808 | spad = MW0_SZ_LOW + (i * 2); |
| 809 | ntb_peer_spad_write(ndev, spad, (u32)size); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 810 | } |
| 811 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 812 | ntb_peer_spad_write(ndev, NUM_MWS, nt->mw_count); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 813 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 814 | ntb_peer_spad_write(ndev, NUM_QPS, nt->qp_count); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 815 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 816 | ntb_peer_spad_write(ndev, VERSION, NTB_TRANSPORT_VERSION); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 817 | |
| 818 | /* Query the remote side for its info */ |
Dave Jiang | 0f69a7d | 2015-06-02 03:45:07 -0400 | [diff] [blame] | 819 | val = ntb_spad_read(ndev, VERSION); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 820 | dev_dbg(&pdev->dev, "Remote version = %d\n", val); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 821 | if (val != NTB_TRANSPORT_VERSION) |
| 822 | goto out; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 823 | |
Dave Jiang | 0f69a7d | 2015-06-02 03:45:07 -0400 | [diff] [blame] | 824 | val = ntb_spad_read(ndev, NUM_QPS); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 825 | dev_dbg(&pdev->dev, "Remote max number of qps = %d\n", val); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 826 | if (val != nt->qp_count) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 827 | goto out; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 828 | |
Dave Jiang | 0f69a7d | 2015-06-02 03:45:07 -0400 | [diff] [blame] | 829 | val = ntb_spad_read(ndev, NUM_MWS); |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 830 | dev_dbg(&pdev->dev, "Remote number of mws = %d\n", val); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 831 | if (val != nt->mw_count) |
| 832 | goto out; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 833 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 834 | for (i = 0; i < nt->mw_count; i++) { |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 835 | u64 val64; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 836 | |
Dave Jiang | 0f69a7d | 2015-06-02 03:45:07 -0400 | [diff] [blame] | 837 | val = ntb_spad_read(ndev, MW0_SZ_HIGH + (i * 2)); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 838 | val64 = (u64)val << 32; |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 839 | |
Dave Jiang | 0f69a7d | 2015-06-02 03:45:07 -0400 | [diff] [blame] | 840 | val = ntb_spad_read(ndev, MW0_SZ_LOW + (i * 2)); |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 841 | val64 |= val; |
| 842 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 843 | dev_dbg(&pdev->dev, "Remote MW%d size = %#llx\n", i, val64); |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 844 | |
| 845 | rc = ntb_set_mw(nt, i, val64); |
| 846 | if (rc) |
| 847 | goto out1; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 848 | } |
| 849 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 850 | nt->link_is_up = true; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 851 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 852 | for (i = 0; i < nt->qp_count; i++) { |
| 853 | struct ntb_transport_qp *qp = &nt->qp_vec[i]; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 854 | |
| 855 | ntb_transport_setup_qp_mw(nt, i); |
| 856 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 857 | if (qp->client_ready) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 858 | schedule_delayed_work(&qp->link_work, 0); |
| 859 | } |
| 860 | |
| 861 | return; |
| 862 | |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 863 | out1: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 864 | for (i = 0; i < nt->mw_count; i++) |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 865 | ntb_free_mw(nt, i); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 866 | out: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 867 | if (ntb_link_is_up(ndev, NULL, NULL) == 1) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 868 | schedule_delayed_work(&nt->link_work, |
| 869 | msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT)); |
| 870 | } |
| 871 | |
| 872 | static void ntb_qp_link_work(struct work_struct *work) |
| 873 | { |
| 874 | struct ntb_transport_qp *qp = container_of(work, |
| 875 | struct ntb_transport_qp, |
| 876 | link_work.work); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 877 | struct pci_dev *pdev = qp->ndev->pdev; |
| 878 | struct ntb_transport_ctx *nt = qp->transport; |
| 879 | int val; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 880 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 881 | WARN_ON(!nt->link_is_up); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 882 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 883 | val = ntb_spad_read(nt->ndev, QP_LINKS); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 884 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 885 | ntb_peer_spad_write(nt->ndev, QP_LINKS, val | BIT(qp->qp_num)); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 886 | |
| 887 | /* query remote spad for qp ready bits */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 888 | ntb_peer_spad_read(nt->ndev, QP_LINKS); |
Allen Hubbe | 2876228 | 2015-05-11 10:08:26 -0400 | [diff] [blame] | 889 | dev_dbg_ratelimited(&pdev->dev, "Remote QP link status = %x\n", val); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 890 | |
| 891 | /* See if the remote side is up */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 892 | if (val & BIT(qp->qp_num)) { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 893 | dev_info(&pdev->dev, "qp %d: Link Up\n", qp->qp_num); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 894 | qp->link_is_up = true; |
| 895 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 896 | if (qp->event_handler) |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 897 | qp->event_handler(qp->cb_data, qp->link_is_up); |
| 898 | } else if (nt->link_is_up) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 899 | schedule_delayed_work(&qp->link_work, |
| 900 | msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT)); |
| 901 | } |
| 902 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 903 | static int ntb_transport_init_queue(struct ntb_transport_ctx *nt, |
Jon Mason | 53ca4fe | 2013-11-26 11:21:50 -0700 | [diff] [blame] | 904 | unsigned int qp_num) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 905 | { |
| 906 | struct ntb_transport_qp *qp; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 907 | struct ntb_transport_mw *mw; |
| 908 | phys_addr_t mw_base; |
| 909 | resource_size_t mw_size; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 910 | unsigned int num_qps_mw, tx_size; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 911 | unsigned int mw_num, mw_count, qp_count; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 912 | u64 qp_offset; |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 913 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 914 | mw_count = nt->mw_count; |
| 915 | qp_count = nt->qp_count; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 916 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 917 | mw_num = QP_TO_MW(nt, qp_num); |
| 918 | mw = &nt->mw_vec[mw_num]; |
| 919 | |
| 920 | qp = &nt->qp_vec[qp_num]; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 921 | qp->qp_num = qp_num; |
| 922 | qp->transport = nt; |
| 923 | qp->ndev = nt->ndev; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 924 | qp->client_ready = false; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 925 | qp->event_handler = NULL; |
Allen Hubbe | 2849b5d7 | 2015-05-12 08:09:15 -0400 | [diff] [blame] | 926 | ntb_qp_link_down_reset(qp); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 927 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 928 | if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count) |
| 929 | num_qps_mw = qp_count / mw_count + 1; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 930 | else |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 931 | num_qps_mw = qp_count / mw_count; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 932 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 933 | mw_base = nt->mw_vec[mw_num].phys_addr; |
| 934 | mw_size = nt->mw_vec[mw_num].phys_size; |
| 935 | |
| 936 | tx_size = (unsigned int)mw_size / num_qps_mw; |
| 937 | qp_offset = tx_size * qp_num / mw_count; |
| 938 | |
| 939 | qp->tx_mw = nt->mw_vec[mw_num].vbase + qp_offset; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 940 | if (!qp->tx_mw) |
| 941 | return -EINVAL; |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 942 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 943 | qp->tx_mw_phys = mw_base + qp_offset; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 944 | if (!qp->tx_mw_phys) |
| 945 | return -EINVAL; |
| 946 | |
| 947 | tx_size -= sizeof(struct ntb_rx_info); |
| 948 | qp->rx_info = qp->tx_mw + tx_size; |
| 949 | |
Jon Mason | c9d534c | 2013-02-01 15:45:16 -0700 | [diff] [blame] | 950 | /* Due to housekeeping, there must be atleast 2 buffs */ |
| 951 | qp->tx_max_frame = min(transport_mtu, tx_size / 2); |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 952 | qp->tx_max_entry = tx_size / qp->tx_max_frame; |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 953 | |
Dave Jiang | c8650fd | 2015-07-13 08:07:09 -0400 | [diff] [blame] | 954 | if (nt->debugfs_node_dir) { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 955 | char debugfs_name[4]; |
| 956 | |
| 957 | snprintf(debugfs_name, 4, "qp%d", qp_num); |
| 958 | qp->debugfs_dir = debugfs_create_dir(debugfs_name, |
Dave Jiang | c8650fd | 2015-07-13 08:07:09 -0400 | [diff] [blame] | 959 | nt->debugfs_node_dir); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 960 | |
| 961 | qp->debugfs_stats = debugfs_create_file("stats", S_IRUSR, |
| 962 | qp->debugfs_dir, qp, |
| 963 | &ntb_qp_debugfs_stats); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 964 | } else { |
| 965 | qp->debugfs_dir = NULL; |
| 966 | qp->debugfs_stats = NULL; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 967 | } |
| 968 | |
| 969 | INIT_DELAYED_WORK(&qp->link_work, ntb_qp_link_work); |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 970 | INIT_WORK(&qp->link_cleanup, ntb_qp_link_cleanup_work); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 971 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 972 | spin_lock_init(&qp->ntb_rx_q_lock); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 973 | spin_lock_init(&qp->ntb_tx_free_q_lock); |
| 974 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 975 | INIT_LIST_HEAD(&qp->rx_post_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 976 | INIT_LIST_HEAD(&qp->rx_pend_q); |
| 977 | INIT_LIST_HEAD(&qp->rx_free_q); |
| 978 | INIT_LIST_HEAD(&qp->tx_free_q); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 979 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 980 | tasklet_init(&qp->rxc_db_work, ntb_transport_rxc_db, |
| 981 | (unsigned long)qp); |
| 982 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 983 | return 0; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 984 | } |
| 985 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 986 | static int ntb_transport_probe(struct ntb_client *self, struct ntb_dev *ndev) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 987 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 988 | struct ntb_transport_ctx *nt; |
| 989 | struct ntb_transport_mw *mw; |
| 990 | unsigned int mw_count, qp_count; |
| 991 | u64 qp_bitmap; |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 992 | int node; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 993 | int rc, i; |
| 994 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 995 | if (ntb_db_is_unsafe(ndev)) |
| 996 | dev_dbg(&ndev->dev, |
| 997 | "doorbell is unsafe, proceed anyway...\n"); |
| 998 | if (ntb_spad_is_unsafe(ndev)) |
| 999 | dev_dbg(&ndev->dev, |
| 1000 | "scratchpad is unsafe, proceed anyway...\n"); |
| 1001 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1002 | node = dev_to_node(&ndev->dev); |
| 1003 | |
| 1004 | nt = kzalloc_node(sizeof(*nt), GFP_KERNEL, node); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1005 | if (!nt) |
| 1006 | return -ENOMEM; |
| 1007 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1008 | nt->ndev = ndev; |
| 1009 | |
| 1010 | mw_count = ntb_mw_count(ndev); |
| 1011 | |
| 1012 | nt->mw_count = mw_count; |
| 1013 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1014 | nt->mw_vec = kzalloc_node(mw_count * sizeof(*nt->mw_vec), |
| 1015 | GFP_KERNEL, node); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1016 | if (!nt->mw_vec) { |
| 1017 | rc = -ENOMEM; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1018 | goto err; |
| 1019 | } |
| 1020 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1021 | for (i = 0; i < mw_count; i++) { |
| 1022 | mw = &nt->mw_vec[i]; |
| 1023 | |
| 1024 | rc = ntb_mw_get_range(ndev, i, &mw->phys_addr, &mw->phys_size, |
| 1025 | &mw->xlat_align, &mw->xlat_align_size); |
| 1026 | if (rc) |
| 1027 | goto err1; |
| 1028 | |
Dave Jiang | 06917f7 | 2015-05-19 16:45:46 -0400 | [diff] [blame] | 1029 | mw->vbase = ioremap_wc(mw->phys_addr, mw->phys_size); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1030 | if (!mw->vbase) { |
| 1031 | rc = -ENOMEM; |
| 1032 | goto err1; |
| 1033 | } |
| 1034 | |
| 1035 | mw->buff_size = 0; |
| 1036 | mw->xlat_size = 0; |
| 1037 | mw->virt_addr = NULL; |
| 1038 | mw->dma_addr = 0; |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1039 | } |
| 1040 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1041 | qp_bitmap = ntb_db_valid_mask(ndev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1042 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1043 | qp_count = ilog2(qp_bitmap); |
| 1044 | if (max_num_clients && max_num_clients < qp_count) |
| 1045 | qp_count = max_num_clients; |
| 1046 | else if (mw_count < qp_count) |
| 1047 | qp_count = mw_count; |
| 1048 | |
| 1049 | qp_bitmap &= BIT_ULL(qp_count) - 1; |
| 1050 | |
| 1051 | nt->qp_count = qp_count; |
| 1052 | nt->qp_bitmap = qp_bitmap; |
| 1053 | nt->qp_bitmap_free = qp_bitmap; |
| 1054 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1055 | nt->qp_vec = kzalloc_node(qp_count * sizeof(*nt->qp_vec), |
| 1056 | GFP_KERNEL, node); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1057 | if (!nt->qp_vec) { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1058 | rc = -ENOMEM; |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1059 | goto err2; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1060 | } |
| 1061 | |
Dave Jiang | c8650fd | 2015-07-13 08:07:09 -0400 | [diff] [blame] | 1062 | if (nt_debugfs_dir) { |
| 1063 | nt->debugfs_node_dir = |
| 1064 | debugfs_create_dir(pci_name(ndev->pdev), |
| 1065 | nt_debugfs_dir); |
| 1066 | } |
| 1067 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1068 | for (i = 0; i < qp_count; i++) { |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1069 | rc = ntb_transport_init_queue(nt, i); |
| 1070 | if (rc) |
| 1071 | goto err3; |
| 1072 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1073 | |
| 1074 | INIT_DELAYED_WORK(&nt->link_work, ntb_transport_link_work); |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 1075 | INIT_WORK(&nt->link_cleanup, ntb_transport_link_cleanup_work); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1076 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1077 | rc = ntb_set_ctx(ndev, nt, &ntb_transport_ops); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1078 | if (rc) |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1079 | goto err3; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1080 | |
| 1081 | INIT_LIST_HEAD(&nt->client_devs); |
| 1082 | rc = ntb_bus_init(nt); |
| 1083 | if (rc) |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1084 | goto err4; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1085 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1086 | nt->link_is_up = false; |
| 1087 | ntb_link_enable(ndev, NTB_SPEED_AUTO, NTB_WIDTH_AUTO); |
| 1088 | ntb_link_event(ndev); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1089 | |
| 1090 | return 0; |
| 1091 | |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1092 | err4: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1093 | ntb_clear_ctx(ndev); |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1094 | err3: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1095 | kfree(nt->qp_vec); |
Jon Mason | 948d3a6 | 2013-04-18 17:07:36 -0700 | [diff] [blame] | 1096 | err2: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1097 | kfree(nt->mw_vec); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1098 | err1: |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1099 | while (i--) { |
| 1100 | mw = &nt->mw_vec[i]; |
| 1101 | iounmap(mw->vbase); |
| 1102 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1103 | err: |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1104 | kfree(nt); |
| 1105 | return rc; |
| 1106 | } |
| 1107 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1108 | static void ntb_transport_free(struct ntb_client *self, struct ntb_dev *ndev) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1109 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1110 | struct ntb_transport_ctx *nt = ndev->ctx; |
| 1111 | struct ntb_transport_qp *qp; |
| 1112 | u64 qp_bitmap_alloc; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1113 | int i; |
| 1114 | |
Jon Mason | fca4d51 | 2013-09-09 13:39:55 -0700 | [diff] [blame] | 1115 | ntb_transport_link_cleanup(nt); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1116 | cancel_work_sync(&nt->link_cleanup); |
| 1117 | cancel_delayed_work_sync(&nt->link_work); |
| 1118 | |
| 1119 | qp_bitmap_alloc = nt->qp_bitmap & ~nt->qp_bitmap_free; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1120 | |
| 1121 | /* verify that all the qp's are freed */ |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1122 | for (i = 0; i < nt->qp_count; i++) { |
| 1123 | qp = &nt->qp_vec[i]; |
| 1124 | if (qp_bitmap_alloc & BIT_ULL(i)) |
| 1125 | ntb_transport_free_queue(qp); |
| 1126 | debugfs_remove_recursive(qp->debugfs_dir); |
Jon Mason | 1517a3f | 2013-07-30 15:58:49 -0700 | [diff] [blame] | 1127 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1128 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1129 | ntb_link_disable(ndev); |
| 1130 | ntb_clear_ctx(ndev); |
| 1131 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1132 | ntb_bus_remove(nt); |
| 1133 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1134 | for (i = nt->mw_count; i--; ) { |
Jon Mason | 113fc50 | 2013-01-30 11:40:52 -0700 | [diff] [blame] | 1135 | ntb_free_mw(nt, i); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1136 | iounmap(nt->mw_vec[i].vbase); |
| 1137 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1138 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1139 | kfree(nt->qp_vec); |
| 1140 | kfree(nt->mw_vec); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1141 | kfree(nt); |
| 1142 | } |
| 1143 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1144 | static void ntb_complete_rxc(struct ntb_transport_qp *qp) |
| 1145 | { |
| 1146 | struct ntb_queue_entry *entry; |
| 1147 | void *cb_data; |
| 1148 | unsigned int len; |
| 1149 | unsigned long irqflags; |
| 1150 | |
| 1151 | spin_lock_irqsave(&qp->ntb_rx_q_lock, irqflags); |
| 1152 | |
| 1153 | while (!list_empty(&qp->rx_post_q)) { |
| 1154 | entry = list_first_entry(&qp->rx_post_q, |
| 1155 | struct ntb_queue_entry, entry); |
| 1156 | if (!(entry->flags & DESC_DONE_FLAG)) |
| 1157 | break; |
| 1158 | |
| 1159 | entry->rx_hdr->flags = 0; |
| 1160 | iowrite32(entry->index, &qp->rx_info->entry); |
| 1161 | |
| 1162 | cb_data = entry->cb_data; |
| 1163 | len = entry->len; |
| 1164 | |
| 1165 | list_move_tail(&entry->entry, &qp->rx_free_q); |
| 1166 | |
| 1167 | spin_unlock_irqrestore(&qp->ntb_rx_q_lock, irqflags); |
| 1168 | |
| 1169 | if (qp->rx_handler && qp->client_ready) |
| 1170 | qp->rx_handler(qp, qp->cb_data, cb_data, len); |
| 1171 | |
| 1172 | spin_lock_irqsave(&qp->ntb_rx_q_lock, irqflags); |
| 1173 | } |
| 1174 | |
| 1175 | spin_unlock_irqrestore(&qp->ntb_rx_q_lock, irqflags); |
| 1176 | } |
| 1177 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1178 | static void ntb_rx_copy_callback(void *data) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1179 | { |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1180 | struct ntb_queue_entry *entry = data; |
Jon Mason | 448c6fb | 2013-01-19 02:02:27 -0700 | [diff] [blame] | 1181 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1182 | entry->flags |= DESC_DONE_FLAG; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1183 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1184 | ntb_complete_rxc(entry->qp); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1187 | static void ntb_memcpy_rx(struct ntb_queue_entry *entry, void *offset) |
| 1188 | { |
| 1189 | void *buf = entry->buf; |
| 1190 | size_t len = entry->len; |
| 1191 | |
| 1192 | memcpy(buf, offset, len); |
| 1193 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1194 | /* Ensure that the data is fully copied out before clearing the flag */ |
| 1195 | wmb(); |
| 1196 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1197 | ntb_rx_copy_callback(entry); |
| 1198 | } |
| 1199 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1200 | static void ntb_async_rx(struct ntb_queue_entry *entry, void *offset) |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1201 | { |
| 1202 | struct dma_async_tx_descriptor *txd; |
| 1203 | struct ntb_transport_qp *qp = entry->qp; |
| 1204 | struct dma_chan *chan = qp->dma_chan; |
| 1205 | struct dma_device *device; |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1206 | size_t pay_off, buff_off, len; |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1207 | struct dmaengine_unmap_data *unmap; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1208 | dma_cookie_t cookie; |
| 1209 | void *buf = entry->buf; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1210 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1211 | len = entry->len; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1212 | |
| 1213 | if (!chan) |
| 1214 | goto err; |
| 1215 | |
Jon Mason | 53ca4fe | 2013-11-26 11:21:50 -0700 | [diff] [blame] | 1216 | if (len < copy_bytes) |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1217 | goto err_wait; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1218 | |
| 1219 | device = chan->device; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1220 | pay_off = (size_t)offset & ~PAGE_MASK; |
| 1221 | buff_off = (size_t)buf & ~PAGE_MASK; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1222 | |
| 1223 | if (!is_dma_copy_aligned(device, pay_off, buff_off, len)) |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1224 | goto err_wait; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1225 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1226 | unmap = dmaengine_get_unmap_data(device->dev, 2, GFP_NOWAIT); |
| 1227 | if (!unmap) |
| 1228 | goto err_wait; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1229 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1230 | unmap->len = len; |
| 1231 | unmap->addr[0] = dma_map_page(device->dev, virt_to_page(offset), |
| 1232 | pay_off, len, DMA_TO_DEVICE); |
| 1233 | if (dma_mapping_error(device->dev, unmap->addr[0])) |
| 1234 | goto err_get_unmap; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1235 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1236 | unmap->to_cnt = 1; |
| 1237 | |
| 1238 | unmap->addr[1] = dma_map_page(device->dev, virt_to_page(buf), |
| 1239 | buff_off, len, DMA_FROM_DEVICE); |
| 1240 | if (dma_mapping_error(device->dev, unmap->addr[1])) |
| 1241 | goto err_get_unmap; |
| 1242 | |
| 1243 | unmap->from_cnt = 1; |
| 1244 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1245 | txd = device->device_prep_dma_memcpy(chan, unmap->addr[1], |
Bartlomiej Zolnierkiewicz | 0776ae7 | 2013-10-18 19:35:33 +0200 | [diff] [blame] | 1246 | unmap->addr[0], len, |
| 1247 | DMA_PREP_INTERRUPT); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1248 | if (!txd) |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1249 | goto err_get_unmap; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1250 | |
| 1251 | txd->callback = ntb_rx_copy_callback; |
| 1252 | txd->callback_param = entry; |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1253 | dma_set_unmap(txd, unmap); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1254 | |
| 1255 | cookie = dmaengine_submit(txd); |
| 1256 | if (dma_submit_error(cookie)) |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1257 | goto err_set_unmap; |
| 1258 | |
| 1259 | dmaengine_unmap_put(unmap); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1260 | |
| 1261 | qp->last_cookie = cookie; |
| 1262 | |
| 1263 | qp->rx_async++; |
| 1264 | |
| 1265 | return; |
| 1266 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1267 | err_set_unmap: |
| 1268 | dmaengine_unmap_put(unmap); |
| 1269 | err_get_unmap: |
| 1270 | dmaengine_unmap_put(unmap); |
| 1271 | err_wait: |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1272 | /* If the callbacks come out of order, the writing of the index to the |
| 1273 | * last completed will be out of order. This may result in the |
| 1274 | * receive stalling forever. |
| 1275 | */ |
| 1276 | dma_sync_wait(chan, qp->last_cookie); |
| 1277 | err: |
| 1278 | ntb_memcpy_rx(entry, offset); |
| 1279 | qp->rx_memcpy++; |
| 1280 | } |
| 1281 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1282 | static int ntb_process_rxc(struct ntb_transport_qp *qp) |
| 1283 | { |
| 1284 | struct ntb_payload_header *hdr; |
| 1285 | struct ntb_queue_entry *entry; |
| 1286 | void *offset; |
| 1287 | |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 1288 | offset = qp->rx_buff + qp->rx_max_frame * qp->rx_index; |
| 1289 | hdr = offset + qp->rx_max_frame - sizeof(struct ntb_payload_header); |
| 1290 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1291 | dev_dbg(&qp->ndev->pdev->dev, "qp %d: RX ver %u len %d flags %x\n", |
| 1292 | qp->qp_num, hdr->ver, hdr->len, hdr->flags); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1293 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1294 | if (!(hdr->flags & DESC_DONE_FLAG)) { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1295 | dev_dbg(&qp->ndev->pdev->dev, "done flag not set\n"); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1296 | qp->rx_ring_empty++; |
| 1297 | return -EAGAIN; |
| 1298 | } |
| 1299 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1300 | if (hdr->flags & LINK_DOWN_FLAG) { |
| 1301 | dev_dbg(&qp->ndev->pdev->dev, "link down flag set\n"); |
| 1302 | ntb_qp_link_down(qp); |
| 1303 | hdr->flags = 0; |
Allen Hubbe | c0900b3 | 2015-05-12 06:24:27 -0400 | [diff] [blame] | 1304 | return -EAGAIN; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1305 | } |
| 1306 | |
| 1307 | if (hdr->ver != (u32)qp->rx_pkts) { |
| 1308 | dev_dbg(&qp->ndev->pdev->dev, |
| 1309 | "version mismatch, expected %llu - got %u\n", |
| 1310 | qp->rx_pkts, hdr->ver); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1311 | qp->rx_err_ver++; |
| 1312 | return -EIO; |
| 1313 | } |
| 1314 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1315 | entry = ntb_list_mv(&qp->ntb_rx_q_lock, &qp->rx_pend_q, &qp->rx_post_q); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1316 | if (!entry) { |
| 1317 | dev_dbg(&qp->ndev->pdev->dev, "no receive buffer\n"); |
| 1318 | qp->rx_err_no_buf++; |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1319 | return -EAGAIN; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1320 | } |
| 1321 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1322 | entry->rx_hdr = hdr; |
| 1323 | entry->index = qp->rx_index; |
| 1324 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1325 | if (hdr->len > entry->len) { |
| 1326 | dev_dbg(&qp->ndev->pdev->dev, |
| 1327 | "receive buffer overflow! Wanted %d got %d\n", |
| 1328 | hdr->len, entry->len); |
| 1329 | qp->rx_err_oflow++; |
| 1330 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1331 | entry->len = -EIO; |
| 1332 | entry->flags |= DESC_DONE_FLAG; |
| 1333 | |
| 1334 | ntb_complete_rxc(qp); |
| 1335 | } else { |
| 1336 | dev_dbg(&qp->ndev->pdev->dev, |
| 1337 | "RX OK index %u ver %u size %d into buf size %d\n", |
| 1338 | qp->rx_index, hdr->ver, hdr->len, entry->len); |
| 1339 | |
| 1340 | qp->rx_bytes += hdr->len; |
| 1341 | qp->rx_pkts++; |
| 1342 | |
| 1343 | entry->len = hdr->len; |
| 1344 | |
| 1345 | ntb_async_rx(entry, offset); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1346 | } |
| 1347 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1348 | qp->rx_index++; |
| 1349 | qp->rx_index %= qp->rx_max_entry; |
| 1350 | |
| 1351 | return 0; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1352 | } |
| 1353 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1354 | static void ntb_transport_rxc_db(unsigned long data) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1355 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1356 | struct ntb_transport_qp *qp = (void *)data; |
Jon Mason | c336acd | 2013-01-17 15:28:45 -0700 | [diff] [blame] | 1357 | int rc, i; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1358 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1359 | dev_dbg(&qp->ndev->pdev->dev, "%s: doorbell %d received\n", |
| 1360 | __func__, qp->qp_num); |
Jon Mason | e8aeb60 | 2013-04-18 17:59:44 -0700 | [diff] [blame] | 1361 | |
Jon Mason | c336acd | 2013-01-17 15:28:45 -0700 | [diff] [blame] | 1362 | /* Limit the number of packets processed in a single interrupt to |
| 1363 | * provide fairness to others |
| 1364 | */ |
| 1365 | for (i = 0; i < qp->rx_max_entry; i++) { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1366 | rc = ntb_process_rxc(qp); |
Jon Mason | c336acd | 2013-01-17 15:28:45 -0700 | [diff] [blame] | 1367 | if (rc) |
| 1368 | break; |
| 1369 | } |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1370 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1371 | if (i && qp->dma_chan) |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1372 | dma_async_issue_pending(qp->dma_chan); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1373 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1374 | if (i == qp->rx_max_entry) { |
| 1375 | /* there is more work to do */ |
| 1376 | tasklet_schedule(&qp->rxc_db_work); |
| 1377 | } else if (ntb_db_read(qp->ndev) & BIT_ULL(qp->qp_num)) { |
| 1378 | /* the doorbell bit is set: clear it */ |
| 1379 | ntb_db_clear(qp->ndev, BIT_ULL(qp->qp_num)); |
| 1380 | /* ntb_db_read ensures ntb_db_clear write is committed */ |
| 1381 | ntb_db_read(qp->ndev); |
| 1382 | |
| 1383 | /* an interrupt may have arrived between finishing |
| 1384 | * ntb_process_rxc and clearing the doorbell bit: |
| 1385 | * there might be some more work to do. |
| 1386 | */ |
| 1387 | tasklet_schedule(&qp->rxc_db_work); |
| 1388 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1389 | } |
| 1390 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1391 | static void ntb_tx_copy_callback(void *data) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1392 | { |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1393 | struct ntb_queue_entry *entry = data; |
| 1394 | struct ntb_transport_qp *qp = entry->qp; |
| 1395 | struct ntb_payload_header __iomem *hdr = entry->tx_hdr; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1396 | |
Jon Mason | 7446564 | 2013-01-21 15:28:52 -0700 | [diff] [blame] | 1397 | iowrite32(entry->flags | DESC_DONE_FLAG, &hdr->flags); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1398 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1399 | ntb_peer_db_set(qp->ndev, BIT_ULL(qp->qp_num)); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1400 | |
| 1401 | /* The entry length can only be zero if the packet is intended to be a |
| 1402 | * "link down" or similar. Since no payload is being sent in these |
| 1403 | * cases, there is nothing to add to the completion queue. |
| 1404 | */ |
| 1405 | if (entry->len > 0) { |
| 1406 | qp->tx_bytes += entry->len; |
| 1407 | |
| 1408 | if (qp->tx_handler) |
| 1409 | qp->tx_handler(qp, qp->cb_data, entry->cb_data, |
| 1410 | entry->len); |
| 1411 | } |
| 1412 | |
| 1413 | ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry, &qp->tx_free_q); |
| 1414 | } |
| 1415 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1416 | static void ntb_memcpy_tx(struct ntb_queue_entry *entry, void __iomem *offset) |
| 1417 | { |
Dave Jiang | 06917f7 | 2015-05-19 16:45:46 -0400 | [diff] [blame] | 1418 | #ifdef ARCH_HAS_NOCACHE_UACCESS |
| 1419 | /* |
| 1420 | * Using non-temporal mov to improve performance on non-cached |
| 1421 | * writes, even though we aren't actually copying from user space. |
| 1422 | */ |
| 1423 | __copy_from_user_inatomic_nocache(offset, entry->buf, entry->len); |
| 1424 | #else |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1425 | memcpy_toio(offset, entry->buf, entry->len); |
Dave Jiang | 06917f7 | 2015-05-19 16:45:46 -0400 | [diff] [blame] | 1426 | #endif |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1427 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1428 | /* Ensure that the data is fully copied out before setting the flags */ |
| 1429 | wmb(); |
| 1430 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1431 | ntb_tx_copy_callback(entry); |
| 1432 | } |
| 1433 | |
| 1434 | static void ntb_async_tx(struct ntb_transport_qp *qp, |
| 1435 | struct ntb_queue_entry *entry) |
| 1436 | { |
| 1437 | struct ntb_payload_header __iomem *hdr; |
| 1438 | struct dma_async_tx_descriptor *txd; |
| 1439 | struct dma_chan *chan = qp->dma_chan; |
| 1440 | struct dma_device *device; |
| 1441 | size_t dest_off, buff_off; |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1442 | struct dmaengine_unmap_data *unmap; |
| 1443 | dma_addr_t dest; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1444 | dma_cookie_t cookie; |
| 1445 | void __iomem *offset; |
| 1446 | size_t len = entry->len; |
| 1447 | void *buf = entry->buf; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1448 | |
| 1449 | offset = qp->tx_mw + qp->tx_max_frame * qp->tx_index; |
| 1450 | hdr = offset + qp->tx_max_frame - sizeof(struct ntb_payload_header); |
| 1451 | entry->tx_hdr = hdr; |
| 1452 | |
| 1453 | iowrite32(entry->len, &hdr->len); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1454 | iowrite32((u32)qp->tx_pkts, &hdr->ver); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1455 | |
| 1456 | if (!chan) |
| 1457 | goto err; |
| 1458 | |
| 1459 | if (len < copy_bytes) |
| 1460 | goto err; |
| 1461 | |
| 1462 | device = chan->device; |
| 1463 | dest = qp->tx_mw_phys + qp->tx_max_frame * qp->tx_index; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1464 | buff_off = (size_t)buf & ~PAGE_MASK; |
| 1465 | dest_off = (size_t)dest & ~PAGE_MASK; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1466 | |
| 1467 | if (!is_dma_copy_aligned(device, buff_off, dest_off, len)) |
| 1468 | goto err; |
| 1469 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1470 | unmap = dmaengine_get_unmap_data(device->dev, 1, GFP_NOWAIT); |
| 1471 | if (!unmap) |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1472 | goto err; |
| 1473 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1474 | unmap->len = len; |
| 1475 | unmap->addr[0] = dma_map_page(device->dev, virt_to_page(buf), |
| 1476 | buff_off, len, DMA_TO_DEVICE); |
| 1477 | if (dma_mapping_error(device->dev, unmap->addr[0])) |
| 1478 | goto err_get_unmap; |
| 1479 | |
| 1480 | unmap->to_cnt = 1; |
| 1481 | |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1482 | txd = device->device_prep_dma_memcpy(chan, dest, unmap->addr[0], len, |
Bartlomiej Zolnierkiewicz | 0776ae7 | 2013-10-18 19:35:33 +0200 | [diff] [blame] | 1483 | DMA_PREP_INTERRUPT); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1484 | if (!txd) |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1485 | goto err_get_unmap; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1486 | |
| 1487 | txd->callback = ntb_tx_copy_callback; |
| 1488 | txd->callback_param = entry; |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1489 | dma_set_unmap(txd, unmap); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1490 | |
| 1491 | cookie = dmaengine_submit(txd); |
| 1492 | if (dma_submit_error(cookie)) |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1493 | goto err_set_unmap; |
| 1494 | |
| 1495 | dmaengine_unmap_put(unmap); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1496 | |
| 1497 | dma_async_issue_pending(chan); |
| 1498 | qp->tx_async++; |
| 1499 | |
| 1500 | return; |
Bartlomiej Zolnierkiewicz | 6f57fd0 | 2013-10-18 19:35:31 +0200 | [diff] [blame] | 1501 | err_set_unmap: |
| 1502 | dmaengine_unmap_put(unmap); |
| 1503 | err_get_unmap: |
| 1504 | dmaengine_unmap_put(unmap); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1505 | err: |
| 1506 | ntb_memcpy_tx(entry, offset); |
| 1507 | qp->tx_memcpy++; |
| 1508 | } |
| 1509 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1510 | static int ntb_process_tx(struct ntb_transport_qp *qp, |
| 1511 | struct ntb_queue_entry *entry) |
| 1512 | { |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 1513 | if (qp->tx_index == qp->remote_rx_info->entry) { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1514 | qp->tx_ring_full++; |
| 1515 | return -EAGAIN; |
| 1516 | } |
| 1517 | |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 1518 | if (entry->len > qp->tx_max_frame - sizeof(struct ntb_payload_header)) { |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1519 | if (qp->tx_handler) |
| 1520 | qp->tx_handler(qp->cb_data, qp, NULL, -EIO); |
| 1521 | |
| 1522 | ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry, |
| 1523 | &qp->tx_free_q); |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1527 | ntb_async_tx(qp, entry); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1528 | |
Jon Mason | 793c20e | 2013-01-19 02:02:26 -0700 | [diff] [blame] | 1529 | qp->tx_index++; |
| 1530 | qp->tx_index %= qp->tx_max_entry; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1531 | |
| 1532 | qp->tx_pkts++; |
| 1533 | |
| 1534 | return 0; |
| 1535 | } |
| 1536 | |
| 1537 | static void ntb_send_link_down(struct ntb_transport_qp *qp) |
| 1538 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1539 | struct pci_dev *pdev = qp->ndev->pdev; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1540 | struct ntb_queue_entry *entry; |
| 1541 | int i, rc; |
| 1542 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1543 | if (!qp->link_is_up) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1544 | return; |
| 1545 | |
Allen Hubbe | e22e0b9 | 2015-05-12 06:55:44 -0400 | [diff] [blame] | 1546 | dev_info(&pdev->dev, "qp %d: Send Link Down\n", qp->qp_num); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1547 | |
| 1548 | for (i = 0; i < NTB_LINK_DOWN_TIMEOUT; i++) { |
Jon Mason | f766755 | 2013-01-19 02:02:24 -0700 | [diff] [blame] | 1549 | entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1550 | if (entry) |
| 1551 | break; |
| 1552 | msleep(100); |
| 1553 | } |
| 1554 | |
| 1555 | if (!entry) |
| 1556 | return; |
| 1557 | |
| 1558 | entry->cb_data = NULL; |
| 1559 | entry->buf = NULL; |
| 1560 | entry->len = 0; |
| 1561 | entry->flags = LINK_DOWN_FLAG; |
| 1562 | |
| 1563 | rc = ntb_process_tx(qp, entry); |
| 1564 | if (rc) |
| 1565 | dev_err(&pdev->dev, "ntb: QP%d unable to send linkdown msg\n", |
| 1566 | qp->qp_num); |
Allen Hubbe | 2849b5d7 | 2015-05-12 08:09:15 -0400 | [diff] [blame] | 1567 | |
| 1568 | ntb_qp_link_down_reset(qp); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1569 | } |
| 1570 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1571 | static bool ntb_dma_filter_fn(struct dma_chan *chan, void *node) |
| 1572 | { |
| 1573 | return dev_to_node(&chan->dev->device) == (int)(unsigned long)node; |
| 1574 | } |
| 1575 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1576 | /** |
| 1577 | * ntb_transport_create_queue - Create a new NTB transport layer queue |
| 1578 | * @rx_handler: receive callback function |
| 1579 | * @tx_handler: transmit callback function |
| 1580 | * @event_handler: event callback function |
| 1581 | * |
| 1582 | * Create a new NTB transport layer queue and provide the queue with a callback |
| 1583 | * routine for both transmit and receive. The receive callback routine will be |
| 1584 | * used to pass up data when the transport has received it on the queue. The |
| 1585 | * transmit callback routine will be called when the transport has completed the |
| 1586 | * transmission of the data on the queue and the data is ready to be freed. |
| 1587 | * |
| 1588 | * RETURNS: pointer to newly created ntb_queue, NULL on error. |
| 1589 | */ |
| 1590 | struct ntb_transport_qp * |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1591 | ntb_transport_create_queue(void *data, struct device *client_dev, |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1592 | const struct ntb_queue_handlers *handlers) |
| 1593 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1594 | struct ntb_dev *ndev; |
| 1595 | struct pci_dev *pdev; |
| 1596 | struct ntb_transport_ctx *nt; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1597 | struct ntb_queue_entry *entry; |
| 1598 | struct ntb_transport_qp *qp; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1599 | u64 qp_bit; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1600 | unsigned int free_queue; |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1601 | dma_cap_mask_t dma_mask; |
| 1602 | int node; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1603 | int i; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1604 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1605 | ndev = dev_ntb(client_dev->parent); |
| 1606 | pdev = ndev->pdev; |
| 1607 | nt = ndev->ctx; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1608 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1609 | node = dev_to_node(&ndev->dev); |
| 1610 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1611 | free_queue = ffs(nt->qp_bitmap); |
| 1612 | if (!free_queue) |
| 1613 | goto err; |
| 1614 | |
| 1615 | /* decrement free_queue to make it zero based */ |
| 1616 | free_queue--; |
| 1617 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1618 | qp = &nt->qp_vec[free_queue]; |
| 1619 | qp_bit = BIT_ULL(qp->qp_num); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1620 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1621 | nt->qp_bitmap_free &= ~qp_bit; |
| 1622 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1623 | qp->cb_data = data; |
| 1624 | qp->rx_handler = handlers->rx_handler; |
| 1625 | qp->tx_handler = handlers->tx_handler; |
| 1626 | qp->event_handler = handlers->event_handler; |
| 1627 | |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1628 | dma_cap_zero(dma_mask); |
| 1629 | dma_cap_set(DMA_MEMCPY, dma_mask); |
| 1630 | |
Dave Jiang | a41ef05 | 2015-05-19 16:52:04 -0400 | [diff] [blame] | 1631 | if (use_dma) { |
| 1632 | qp->dma_chan = dma_request_channel(dma_mask, ntb_dma_filter_fn, |
| 1633 | (void *)(unsigned long)node); |
| 1634 | if (!qp->dma_chan) |
| 1635 | dev_info(&pdev->dev, "Unable to allocate DMA channel\n"); |
| 1636 | } else { |
| 1637 | qp->dma_chan = NULL; |
| 1638 | } |
| 1639 | dev_dbg(&pdev->dev, "Using %s memcpy\n", qp->dma_chan ? "DMA" : "CPU"); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1640 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1641 | for (i = 0; i < NTB_QP_DEF_NUM_ENTRIES; i++) { |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1642 | entry = kzalloc_node(sizeof(*entry), GFP_ATOMIC, node); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1643 | if (!entry) |
| 1644 | goto err1; |
| 1645 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1646 | entry->qp = qp; |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1647 | ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry, |
Jon Mason | f766755 | 2013-01-19 02:02:24 -0700 | [diff] [blame] | 1648 | &qp->rx_free_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1649 | } |
| 1650 | |
| 1651 | for (i = 0; i < NTB_QP_DEF_NUM_ENTRIES; i++) { |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1652 | entry = kzalloc_node(sizeof(*entry), GFP_ATOMIC, node); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1653 | if (!entry) |
| 1654 | goto err2; |
| 1655 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1656 | entry->qp = qp; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1657 | ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry, |
Jon Mason | f766755 | 2013-01-19 02:02:24 -0700 | [diff] [blame] | 1658 | &qp->tx_free_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1659 | } |
| 1660 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1661 | ntb_db_clear(qp->ndev, qp_bit); |
| 1662 | ntb_db_clear_mask(qp->ndev, qp_bit); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1663 | |
| 1664 | dev_info(&pdev->dev, "NTB Transport QP %d created\n", qp->qp_num); |
| 1665 | |
| 1666 | return qp; |
| 1667 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1668 | err2: |
Jon Mason | f766755 | 2013-01-19 02:02:24 -0700 | [diff] [blame] | 1669 | while ((entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q))) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1670 | kfree(entry); |
| 1671 | err1: |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1672 | while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_free_q))) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1673 | kfree(entry); |
Jon Mason | 9468119 | 2013-11-19 09:34:47 -0700 | [diff] [blame] | 1674 | if (qp->dma_chan) |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1675 | dma_release_channel(qp->dma_chan); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1676 | nt->qp_bitmap_free |= qp_bit; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1677 | err: |
| 1678 | return NULL; |
| 1679 | } |
| 1680 | EXPORT_SYMBOL_GPL(ntb_transport_create_queue); |
| 1681 | |
| 1682 | /** |
| 1683 | * ntb_transport_free_queue - Frees NTB transport queue |
| 1684 | * @qp: NTB queue to be freed |
| 1685 | * |
| 1686 | * Frees NTB transport queue |
| 1687 | */ |
| 1688 | void ntb_transport_free_queue(struct ntb_transport_qp *qp) |
| 1689 | { |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1690 | struct ntb_transport_ctx *nt = qp->transport; |
Jon Mason | 186f27f | 2013-01-22 11:35:40 -0700 | [diff] [blame] | 1691 | struct pci_dev *pdev; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1692 | struct ntb_queue_entry *entry; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1693 | u64 qp_bit; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1694 | |
| 1695 | if (!qp) |
| 1696 | return; |
| 1697 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1698 | pdev = qp->ndev->pdev; |
Jon Mason | 186f27f | 2013-01-22 11:35:40 -0700 | [diff] [blame] | 1699 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1700 | if (qp->dma_chan) { |
| 1701 | struct dma_chan *chan = qp->dma_chan; |
| 1702 | /* Putting the dma_chan to NULL will force any new traffic to be |
| 1703 | * processed by the CPU instead of the DAM engine |
| 1704 | */ |
| 1705 | qp->dma_chan = NULL; |
| 1706 | |
| 1707 | /* Try to be nice and wait for any queued DMA engine |
| 1708 | * transactions to process before smashing it with a rock |
| 1709 | */ |
| 1710 | dma_sync_wait(chan, qp->last_cookie); |
| 1711 | dmaengine_terminate_all(chan); |
Allen Hubbe | 1199aa6 | 2015-05-18 06:20:47 -0400 | [diff] [blame] | 1712 | dma_release_channel(chan); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1713 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1714 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1715 | qp_bit = BIT_ULL(qp->qp_num); |
| 1716 | |
| 1717 | ntb_db_set_mask(qp->ndev, qp_bit); |
| 1718 | tasklet_disable(&qp->rxc_db_work); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1719 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1720 | cancel_delayed_work_sync(&qp->link_work); |
| 1721 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1722 | qp->cb_data = NULL; |
| 1723 | qp->rx_handler = NULL; |
| 1724 | qp->tx_handler = NULL; |
| 1725 | qp->event_handler = NULL; |
| 1726 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1727 | while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_free_q))) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1728 | kfree(entry); |
| 1729 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1730 | while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_pend_q))) { |
| 1731 | dev_warn(&pdev->dev, "Freeing item from non-empty rx_pend_q\n"); |
| 1732 | kfree(entry); |
| 1733 | } |
| 1734 | |
| 1735 | while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_post_q))) { |
| 1736 | dev_warn(&pdev->dev, "Freeing item from non-empty rx_post_q\n"); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1737 | kfree(entry); |
| 1738 | } |
| 1739 | |
Jon Mason | f766755 | 2013-01-19 02:02:24 -0700 | [diff] [blame] | 1740 | while ((entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q))) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1741 | kfree(entry); |
| 1742 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1743 | nt->qp_bitmap_free |= qp_bit; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1744 | |
| 1745 | dev_info(&pdev->dev, "NTB Transport QP %d freed\n", qp->qp_num); |
| 1746 | } |
| 1747 | EXPORT_SYMBOL_GPL(ntb_transport_free_queue); |
| 1748 | |
| 1749 | /** |
| 1750 | * ntb_transport_rx_remove - Dequeues enqueued rx packet |
| 1751 | * @qp: NTB queue to be freed |
| 1752 | * @len: pointer to variable to write enqueued buffers length |
| 1753 | * |
| 1754 | * Dequeues unused buffers from receive queue. Should only be used during |
| 1755 | * shutdown of qp. |
| 1756 | * |
| 1757 | * RETURNS: NULL error value on error, or void* for success. |
| 1758 | */ |
| 1759 | void *ntb_transport_rx_remove(struct ntb_transport_qp *qp, unsigned int *len) |
| 1760 | { |
| 1761 | struct ntb_queue_entry *entry; |
| 1762 | void *buf; |
| 1763 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1764 | if (!qp || qp->client_ready) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1765 | return NULL; |
| 1766 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1767 | entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_pend_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1768 | if (!entry) |
| 1769 | return NULL; |
| 1770 | |
| 1771 | buf = entry->cb_data; |
| 1772 | *len = entry->len; |
| 1773 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1774 | ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry, &qp->rx_free_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1775 | |
| 1776 | return buf; |
| 1777 | } |
| 1778 | EXPORT_SYMBOL_GPL(ntb_transport_rx_remove); |
| 1779 | |
| 1780 | /** |
| 1781 | * ntb_transport_rx_enqueue - Enqueue a new NTB queue entry |
| 1782 | * @qp: NTB transport layer queue the entry is to be enqueued on |
| 1783 | * @cb: per buffer pointer for callback function to use |
| 1784 | * @data: pointer to data buffer that incoming packets will be copied into |
| 1785 | * @len: length of the data buffer |
| 1786 | * |
| 1787 | * Enqueue a new receive buffer onto the transport queue into which a NTB |
| 1788 | * payload can be received into. |
| 1789 | * |
| 1790 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
| 1791 | */ |
| 1792 | int ntb_transport_rx_enqueue(struct ntb_transport_qp *qp, void *cb, void *data, |
| 1793 | unsigned int len) |
| 1794 | { |
| 1795 | struct ntb_queue_entry *entry; |
| 1796 | |
| 1797 | if (!qp) |
| 1798 | return -EINVAL; |
| 1799 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1800 | entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_free_q); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1801 | if (!entry) |
| 1802 | return -ENOMEM; |
| 1803 | |
| 1804 | entry->cb_data = cb; |
| 1805 | entry->buf = data; |
| 1806 | entry->len = len; |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1807 | entry->flags = 0; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1808 | |
Allen Hubbe | da2e5ae | 2015-07-13 08:07:08 -0400 | [diff] [blame] | 1809 | ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry, &qp->rx_pend_q); |
| 1810 | |
| 1811 | tasklet_schedule(&qp->rxc_db_work); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1812 | |
| 1813 | return 0; |
| 1814 | } |
| 1815 | EXPORT_SYMBOL_GPL(ntb_transport_rx_enqueue); |
| 1816 | |
| 1817 | /** |
| 1818 | * ntb_transport_tx_enqueue - Enqueue a new NTB queue entry |
| 1819 | * @qp: NTB transport layer queue the entry is to be enqueued on |
| 1820 | * @cb: per buffer pointer for callback function to use |
| 1821 | * @data: pointer to data buffer that will be sent |
| 1822 | * @len: length of the data buffer |
| 1823 | * |
| 1824 | * Enqueue a new transmit buffer onto the transport queue from which a NTB |
Jon Mason | f9a2cf8 | 2013-07-29 16:46:43 -0700 | [diff] [blame] | 1825 | * payload will be transmitted. This assumes that a lock is being held to |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1826 | * serialize access to the qp. |
| 1827 | * |
| 1828 | * RETURNS: An appropriate -ERRNO error value on error, or zero for success. |
| 1829 | */ |
| 1830 | int ntb_transport_tx_enqueue(struct ntb_transport_qp *qp, void *cb, void *data, |
| 1831 | unsigned int len) |
| 1832 | { |
| 1833 | struct ntb_queue_entry *entry; |
| 1834 | int rc; |
| 1835 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1836 | if (!qp || !qp->link_is_up || !len) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1837 | return -EINVAL; |
| 1838 | |
| 1839 | entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q); |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1840 | if (!entry) { |
| 1841 | qp->tx_err_no_buf++; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1842 | return -ENOMEM; |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1843 | } |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1844 | |
| 1845 | entry->cb_data = cb; |
| 1846 | entry->buf = data; |
| 1847 | entry->len = len; |
| 1848 | entry->flags = 0; |
| 1849 | |
| 1850 | rc = ntb_process_tx(qp, entry); |
| 1851 | if (rc) |
| 1852 | ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry, |
| 1853 | &qp->tx_free_q); |
| 1854 | |
| 1855 | return rc; |
| 1856 | } |
| 1857 | EXPORT_SYMBOL_GPL(ntb_transport_tx_enqueue); |
| 1858 | |
| 1859 | /** |
| 1860 | * ntb_transport_link_up - Notify NTB transport of client readiness to use queue |
| 1861 | * @qp: NTB transport layer queue to be enabled |
| 1862 | * |
| 1863 | * Notify NTB transport layer of client readiness to use queue |
| 1864 | */ |
| 1865 | void ntb_transport_link_up(struct ntb_transport_qp *qp) |
| 1866 | { |
| 1867 | if (!qp) |
| 1868 | return; |
| 1869 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1870 | qp->client_ready = true; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1871 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1872 | if (qp->transport->link_is_up) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1873 | schedule_delayed_work(&qp->link_work, 0); |
| 1874 | } |
| 1875 | EXPORT_SYMBOL_GPL(ntb_transport_link_up); |
| 1876 | |
| 1877 | /** |
| 1878 | * ntb_transport_link_down - Notify NTB transport to no longer enqueue data |
| 1879 | * @qp: NTB transport layer queue to be disabled |
| 1880 | * |
| 1881 | * Notify NTB transport layer of client's desire to no longer receive data on |
| 1882 | * transport queue specified. It is the client's responsibility to ensure all |
Jon Mason | f9a2cf8 | 2013-07-29 16:46:43 -0700 | [diff] [blame] | 1883 | * entries on queue are purged or otherwise handled appropriately. |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1884 | */ |
| 1885 | void ntb_transport_link_down(struct ntb_transport_qp *qp) |
| 1886 | { |
Jon Mason | 186f27f | 2013-01-22 11:35:40 -0700 | [diff] [blame] | 1887 | struct pci_dev *pdev; |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1888 | int val; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1889 | |
| 1890 | if (!qp) |
| 1891 | return; |
| 1892 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1893 | pdev = qp->ndev->pdev; |
| 1894 | qp->client_ready = false; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1895 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1896 | val = ntb_spad_read(qp->ndev, QP_LINKS); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1897 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1898 | ntb_peer_spad_write(qp->ndev, QP_LINKS, |
| 1899 | val & ~BIT(qp->qp_num)); |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1900 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1901 | if (qp->link_is_up) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1902 | ntb_send_link_down(qp); |
| 1903 | else |
| 1904 | cancel_delayed_work_sync(&qp->link_work); |
| 1905 | } |
| 1906 | EXPORT_SYMBOL_GPL(ntb_transport_link_down); |
| 1907 | |
| 1908 | /** |
| 1909 | * ntb_transport_link_query - Query transport link state |
| 1910 | * @qp: NTB transport layer queue to be queried |
| 1911 | * |
| 1912 | * Query connectivity to the remote system of the NTB transport queue |
| 1913 | * |
| 1914 | * RETURNS: true for link up or false for link down |
| 1915 | */ |
| 1916 | bool ntb_transport_link_query(struct ntb_transport_qp *qp) |
| 1917 | { |
Jon Mason | 186f27f | 2013-01-22 11:35:40 -0700 | [diff] [blame] | 1918 | if (!qp) |
| 1919 | return false; |
| 1920 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1921 | return qp->link_is_up; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1922 | } |
| 1923 | EXPORT_SYMBOL_GPL(ntb_transport_link_query); |
| 1924 | |
| 1925 | /** |
| 1926 | * ntb_transport_qp_num - Query the qp number |
| 1927 | * @qp: NTB transport layer queue to be queried |
| 1928 | * |
| 1929 | * Query qp number of the NTB transport queue |
| 1930 | * |
| 1931 | * RETURNS: a zero based number specifying the qp number |
| 1932 | */ |
| 1933 | unsigned char ntb_transport_qp_num(struct ntb_transport_qp *qp) |
| 1934 | { |
Jon Mason | 186f27f | 2013-01-22 11:35:40 -0700 | [diff] [blame] | 1935 | if (!qp) |
| 1936 | return 0; |
| 1937 | |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1938 | return qp->qp_num; |
| 1939 | } |
| 1940 | EXPORT_SYMBOL_GPL(ntb_transport_qp_num); |
| 1941 | |
| 1942 | /** |
| 1943 | * ntb_transport_max_size - Query the max payload size of a qp |
| 1944 | * @qp: NTB transport layer queue to be queried |
| 1945 | * |
| 1946 | * Query the maximum payload size permissible on the given qp |
| 1947 | * |
| 1948 | * RETURNS: the max payload size of a qp |
| 1949 | */ |
Jon Mason | ef114ed | 2013-01-19 02:02:18 -0700 | [diff] [blame] | 1950 | unsigned int ntb_transport_max_size(struct ntb_transport_qp *qp) |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1951 | { |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1952 | unsigned int max; |
| 1953 | |
Jon Mason | 186f27f | 2013-01-22 11:35:40 -0700 | [diff] [blame] | 1954 | if (!qp) |
| 1955 | return 0; |
| 1956 | |
Jon Mason | 282a2fe | 2013-02-12 09:52:50 -0700 | [diff] [blame] | 1957 | if (!qp->dma_chan) |
| 1958 | return qp->tx_max_frame - sizeof(struct ntb_payload_header); |
| 1959 | |
| 1960 | /* If DMA engine usage is possible, try to find the max size for that */ |
| 1961 | max = qp->tx_max_frame - sizeof(struct ntb_payload_header); |
| 1962 | max -= max % (1 << qp->dma_chan->device->copy_align); |
| 1963 | |
| 1964 | return max; |
Jon Mason | fce8a7b | 2012-11-16 19:27:12 -0700 | [diff] [blame] | 1965 | } |
| 1966 | EXPORT_SYMBOL_GPL(ntb_transport_max_size); |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 1967 | |
| 1968 | static void ntb_transport_doorbell_callback(void *data, int vector) |
| 1969 | { |
| 1970 | struct ntb_transport_ctx *nt = data; |
| 1971 | struct ntb_transport_qp *qp; |
| 1972 | u64 db_bits; |
| 1973 | unsigned int qp_num; |
| 1974 | |
| 1975 | db_bits = (nt->qp_bitmap & ~nt->qp_bitmap_free & |
| 1976 | ntb_db_vector_mask(nt->ndev, vector)); |
| 1977 | |
| 1978 | while (db_bits) { |
| 1979 | qp_num = __ffs(db_bits); |
| 1980 | qp = &nt->qp_vec[qp_num]; |
| 1981 | |
| 1982 | tasklet_schedule(&qp->rxc_db_work); |
| 1983 | |
| 1984 | db_bits &= ~BIT_ULL(qp_num); |
| 1985 | } |
| 1986 | } |
| 1987 | |
| 1988 | static const struct ntb_ctx_ops ntb_transport_ops = { |
| 1989 | .link_event = ntb_transport_event_callback, |
| 1990 | .db_event = ntb_transport_doorbell_callback, |
| 1991 | }; |
| 1992 | |
| 1993 | static struct ntb_client ntb_transport_client = { |
| 1994 | .ops = { |
| 1995 | .probe = ntb_transport_probe, |
| 1996 | .remove = ntb_transport_free, |
| 1997 | }, |
| 1998 | }; |
| 1999 | |
| 2000 | static int __init ntb_transport_init(void) |
| 2001 | { |
| 2002 | int rc; |
| 2003 | |
Dave Jiang | 7eb3878 | 2015-06-15 08:21:33 -0400 | [diff] [blame] | 2004 | pr_info("%s, version %s\n", NTB_TRANSPORT_DESC, NTB_TRANSPORT_VER); |
| 2005 | |
Allen Hubbe | e26a584 | 2015-04-09 10:33:20 -0400 | [diff] [blame] | 2006 | if (debugfs_initialized()) |
| 2007 | nt_debugfs_dir = debugfs_create_dir(KBUILD_MODNAME, NULL); |
| 2008 | |
| 2009 | rc = bus_register(&ntb_transport_bus); |
| 2010 | if (rc) |
| 2011 | goto err_bus; |
| 2012 | |
| 2013 | rc = ntb_register_client(&ntb_transport_client); |
| 2014 | if (rc) |
| 2015 | goto err_client; |
| 2016 | |
| 2017 | return 0; |
| 2018 | |
| 2019 | err_client: |
| 2020 | bus_unregister(&ntb_transport_bus); |
| 2021 | err_bus: |
| 2022 | debugfs_remove_recursive(nt_debugfs_dir); |
| 2023 | return rc; |
| 2024 | } |
| 2025 | module_init(ntb_transport_init); |
| 2026 | |
| 2027 | static void __exit ntb_transport_exit(void) |
| 2028 | { |
| 2029 | debugfs_remove_recursive(nt_debugfs_dir); |
| 2030 | |
| 2031 | ntb_unregister_client(&ntb_transport_client); |
| 2032 | bus_unregister(&ntb_transport_bus); |
| 2033 | } |
| 2034 | module_exit(ntb_transport_exit); |