1 // SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB 2 /* 3 * Copyright (c) 2016 Mellanox Technologies Ltd. All rights reserved. 4 * Copyright (c) 2015 System Fabric Works, Inc. All rights reserved. 5 */ 6 7 #include <rdma/rdma_netlink.h> 8 #include <net/addrconf.h> 9 #include "rxe.h" 10 #include "rxe_loc.h" 11 12 MODULE_AUTHOR("Bob Pearson, Frank Zago, John Groves, Kamal Heib"); 13 MODULE_DESCRIPTION("Soft RDMA transport"); 14 MODULE_LICENSE("Dual BSD/GPL"); 15 16 /* free resources for a rxe device all objects created for this device must 17 * have been destroyed 18 */ 19 void rxe_dealloc(struct ib_device *ib_dev) 20 { 21 struct rxe_dev *rxe = container_of(ib_dev, struct rxe_dev, ib_dev); 22 23 rxe_pool_cleanup(&rxe->uc_pool); 24 rxe_pool_cleanup(&rxe->pd_pool); 25 rxe_pool_cleanup(&rxe->ah_pool); 26 rxe_pool_cleanup(&rxe->srq_pool); 27 rxe_pool_cleanup(&rxe->qp_pool); 28 rxe_pool_cleanup(&rxe->cq_pool); 29 rxe_pool_cleanup(&rxe->mr_pool); 30 rxe_pool_cleanup(&rxe->mw_pool); 31 rxe_pool_cleanup(&rxe->mc_grp_pool); 32 rxe_pool_cleanup(&rxe->mc_elem_pool); 33 34 if (rxe->tfm) 35 crypto_free_shash(rxe->tfm); 36 } 37 38 /* initialize rxe device parameters */ 39 static void rxe_init_device_param(struct rxe_dev *rxe) 40 { 41 rxe->max_inline_data = RXE_MAX_INLINE_DATA; 42 43 rxe->attr.vendor_id = RXE_VENDOR_ID; 44 rxe->attr.max_mr_size = RXE_MAX_MR_SIZE; 45 rxe->attr.page_size_cap = RXE_PAGE_SIZE_CAP; 46 rxe->attr.max_qp = RXE_MAX_QP; 47 rxe->attr.max_qp_wr = RXE_MAX_QP_WR; 48 rxe->attr.device_cap_flags = RXE_DEVICE_CAP_FLAGS; 49 rxe->attr.max_send_sge = RXE_MAX_SGE; 50 rxe->attr.max_recv_sge = RXE_MAX_SGE; 51 rxe->attr.max_sge_rd = RXE_MAX_SGE_RD; 52 rxe->attr.max_cq = RXE_MAX_CQ; 53 rxe->attr.max_cqe = (1 << RXE_MAX_LOG_CQE) - 1; 54 rxe->attr.max_mr = RXE_MAX_MR; 55 rxe->attr.max_mw = RXE_MAX_MW; 56 rxe->attr.max_pd = RXE_MAX_PD; 57 rxe->attr.max_qp_rd_atom = RXE_MAX_QP_RD_ATOM; 58 rxe->attr.max_res_rd_atom = RXE_MAX_RES_RD_ATOM; 59 rxe->attr.max_qp_init_rd_atom = RXE_MAX_QP_INIT_RD_ATOM; 60 rxe->attr.atomic_cap = IB_ATOMIC_HCA; 61 rxe->attr.max_mcast_grp = RXE_MAX_MCAST_GRP; 62 rxe->attr.max_mcast_qp_attach = RXE_MAX_MCAST_QP_ATTACH; 63 rxe->attr.max_total_mcast_qp_attach = RXE_MAX_TOT_MCAST_QP_ATTACH; 64 rxe->attr.max_ah = RXE_MAX_AH; 65 rxe->attr.max_srq = RXE_MAX_SRQ; 66 rxe->attr.max_srq_wr = RXE_MAX_SRQ_WR; 67 rxe->attr.max_srq_sge = RXE_MAX_SRQ_SGE; 68 rxe->attr.max_fast_reg_page_list_len = RXE_MAX_FMR_PAGE_LIST_LEN; 69 rxe->attr.max_pkeys = RXE_MAX_PKEYS; 70 rxe->attr.local_ca_ack_delay = RXE_LOCAL_CA_ACK_DELAY; 71 addrconf_addr_eui48((unsigned char *)&rxe->attr.sys_image_guid, 72 rxe->ndev->dev_addr); 73 74 rxe->max_ucontext = RXE_MAX_UCONTEXT; 75 } 76 77 /* initialize port attributes */ 78 static void rxe_init_port_param(struct rxe_port *port) 79 { 80 port->attr.state = IB_PORT_DOWN; 81 port->attr.max_mtu = IB_MTU_4096; 82 port->attr.active_mtu = IB_MTU_256; 83 port->attr.gid_tbl_len = RXE_PORT_GID_TBL_LEN; 84 port->attr.port_cap_flags = RXE_PORT_PORT_CAP_FLAGS; 85 port->attr.max_msg_sz = RXE_PORT_MAX_MSG_SZ; 86 port->attr.bad_pkey_cntr = RXE_PORT_BAD_PKEY_CNTR; 87 port->attr.qkey_viol_cntr = RXE_PORT_QKEY_VIOL_CNTR; 88 port->attr.pkey_tbl_len = RXE_PORT_PKEY_TBL_LEN; 89 port->attr.lid = RXE_PORT_LID; 90 port->attr.sm_lid = RXE_PORT_SM_LID; 91 port->attr.lmc = RXE_PORT_LMC; 92 port->attr.max_vl_num = RXE_PORT_MAX_VL_NUM; 93 port->attr.sm_sl = RXE_PORT_SM_SL; 94 port->attr.subnet_timeout = RXE_PORT_SUBNET_TIMEOUT; 95 port->attr.init_type_reply = RXE_PORT_INIT_TYPE_REPLY; 96 port->attr.active_width = RXE_PORT_ACTIVE_WIDTH; 97 port->attr.active_speed = RXE_PORT_ACTIVE_SPEED; 98 port->attr.phys_state = RXE_PORT_PHYS_STATE; 99 port->mtu_cap = ib_mtu_enum_to_int(IB_MTU_256); 100 port->subnet_prefix = cpu_to_be64(RXE_PORT_SUBNET_PREFIX); 101 } 102 103 /* initialize port state, note IB convention that HCA ports are always 104 * numbered from 1 105 */ 106 static void rxe_init_ports(struct rxe_dev *rxe) 107 { 108 struct rxe_port *port = &rxe->port; 109 110 rxe_init_port_param(port); 111 addrconf_addr_eui48((unsigned char *)&port->port_guid, 112 rxe->ndev->dev_addr); 113 spin_lock_init(&port->port_lock); 114 } 115 116 /* init pools of managed objects */ 117 static int rxe_init_pools(struct rxe_dev *rxe) 118 { 119 int err; 120 121 err = rxe_pool_init(rxe, &rxe->uc_pool, RXE_TYPE_UC, 122 rxe->max_ucontext); 123 if (err) 124 goto err1; 125 126 err = rxe_pool_init(rxe, &rxe->pd_pool, RXE_TYPE_PD, 127 rxe->attr.max_pd); 128 if (err) 129 goto err2; 130 131 err = rxe_pool_init(rxe, &rxe->ah_pool, RXE_TYPE_AH, 132 rxe->attr.max_ah); 133 if (err) 134 goto err3; 135 136 err = rxe_pool_init(rxe, &rxe->srq_pool, RXE_TYPE_SRQ, 137 rxe->attr.max_srq); 138 if (err) 139 goto err4; 140 141 err = rxe_pool_init(rxe, &rxe->qp_pool, RXE_TYPE_QP, 142 rxe->attr.max_qp); 143 if (err) 144 goto err5; 145 146 err = rxe_pool_init(rxe, &rxe->cq_pool, RXE_TYPE_CQ, 147 rxe->attr.max_cq); 148 if (err) 149 goto err6; 150 151 err = rxe_pool_init(rxe, &rxe->mr_pool, RXE_TYPE_MR, 152 rxe->attr.max_mr); 153 if (err) 154 goto err7; 155 156 err = rxe_pool_init(rxe, &rxe->mw_pool, RXE_TYPE_MW, 157 rxe->attr.max_mw); 158 if (err) 159 goto err8; 160 161 err = rxe_pool_init(rxe, &rxe->mc_grp_pool, RXE_TYPE_MC_GRP, 162 rxe->attr.max_mcast_grp); 163 if (err) 164 goto err9; 165 166 err = rxe_pool_init(rxe, &rxe->mc_elem_pool, RXE_TYPE_MC_ELEM, 167 rxe->attr.max_total_mcast_qp_attach); 168 if (err) 169 goto err10; 170 171 return 0; 172 173 err10: 174 rxe_pool_cleanup(&rxe->mc_grp_pool); 175 err9: 176 rxe_pool_cleanup(&rxe->mw_pool); 177 err8: 178 rxe_pool_cleanup(&rxe->mr_pool); 179 err7: 180 rxe_pool_cleanup(&rxe->cq_pool); 181 err6: 182 rxe_pool_cleanup(&rxe->qp_pool); 183 err5: 184 rxe_pool_cleanup(&rxe->srq_pool); 185 err4: 186 rxe_pool_cleanup(&rxe->ah_pool); 187 err3: 188 rxe_pool_cleanup(&rxe->pd_pool); 189 err2: 190 rxe_pool_cleanup(&rxe->uc_pool); 191 err1: 192 return err; 193 } 194 195 /* initialize rxe device state */ 196 static int rxe_init(struct rxe_dev *rxe) 197 { 198 int err; 199 200 /* init default device parameters */ 201 rxe_init_device_param(rxe); 202 203 rxe_init_ports(rxe); 204 205 err = rxe_init_pools(rxe); 206 if (err) 207 return err; 208 209 /* init pending mmap list */ 210 spin_lock_init(&rxe->mmap_offset_lock); 211 spin_lock_init(&rxe->pending_lock); 212 INIT_LIST_HEAD(&rxe->pending_mmaps); 213 214 spin_lock_init(&rxe->mcg_lock); 215 216 mutex_init(&rxe->usdev_lock); 217 218 return 0; 219 } 220 221 void rxe_set_mtu(struct rxe_dev *rxe, unsigned int ndev_mtu) 222 { 223 struct rxe_port *port = &rxe->port; 224 enum ib_mtu mtu; 225 226 mtu = eth_mtu_int_to_enum(ndev_mtu); 227 228 /* Make sure that new MTU in range */ 229 mtu = mtu ? min_t(enum ib_mtu, mtu, IB_MTU_4096) : IB_MTU_256; 230 231 port->attr.active_mtu = mtu; 232 port->mtu_cap = ib_mtu_enum_to_int(mtu); 233 } 234 235 /* called by ifc layer to create new rxe device. 236 * The caller should allocate memory for rxe by calling ib_alloc_device. 237 */ 238 int rxe_add(struct rxe_dev *rxe, unsigned int mtu, const char *ibdev_name) 239 { 240 int err; 241 242 err = rxe_init(rxe); 243 if (err) 244 return err; 245 246 rxe_set_mtu(rxe, mtu); 247 248 return rxe_register_device(rxe, ibdev_name); 249 } 250 251 static int rxe_newlink(const char *ibdev_name, struct net_device *ndev) 252 { 253 struct rxe_dev *exists; 254 int err = 0; 255 256 if (is_vlan_dev(ndev)) { 257 pr_err("rxe creation allowed on top of a real device only\n"); 258 err = -EPERM; 259 goto err; 260 } 261 262 exists = rxe_get_dev_from_net(ndev); 263 if (exists) { 264 ib_device_put(&exists->ib_dev); 265 pr_err("already configured on %s\n", ndev->name); 266 err = -EEXIST; 267 goto err; 268 } 269 270 err = rxe_net_add(ibdev_name, ndev); 271 if (err) { 272 pr_err("failed to add %s\n", ndev->name); 273 goto err; 274 } 275 err: 276 return err; 277 } 278 279 static struct rdma_link_ops rxe_link_ops = { 280 .type = "rxe", 281 .newlink = rxe_newlink, 282 }; 283 284 static int __init rxe_module_init(void) 285 { 286 int err; 287 288 err = rxe_net_init(); 289 if (err) 290 return err; 291 292 rdma_link_register(&rxe_link_ops); 293 pr_info("loaded\n"); 294 return 0; 295 } 296 297 static void __exit rxe_module_exit(void) 298 { 299 rdma_link_unregister(&rxe_link_ops); 300 ib_unregister_driver(RDMA_DRIVER_RXE); 301 rxe_net_exit(); 302 303 pr_info("unloaded\n"); 304 } 305 306 late_initcall(rxe_module_init); 307 module_exit(rxe_module_exit); 308 309 MODULE_ALIAS_RDMA_LINK("rxe"); 310