1 /* 2 * Copyright (c) 2016 Hisilicon Limited. 3 * 4 * This software is available to you under a choice of one of two 5 * licenses. You may choose to be licensed under the terms of the GNU 6 * General Public License (GPL) Version 2, available from the file 7 * COPYING in the main directory of this source tree, or the 8 * OpenIB.org BSD license below: 9 * 10 * Redistribution and use in source and binary forms, with or 11 * without modification, are permitted provided that the following 12 * conditions are met: 13 * 14 * - Redistributions of source code must retain the above 15 * copyright notice, this list of conditions and the following 16 * disclaimer. 17 * 18 * - Redistributions in binary form must reproduce the above 19 * copyright notice, this list of conditions and the following 20 * disclaimer in the documentation and/or other materials 21 * provided with the distribution. 22 * 23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 30 * SOFTWARE. 31 */ 32 33 #ifndef _HNS_ROCE_DEVICE_H 34 #define _HNS_ROCE_DEVICE_H 35 36 #include <rdma/ib_verbs.h> 37 38 #define DRV_NAME "hns_roce" 39 40 #define HNS_ROCE_HW_VER1 ('h' << 24 | 'i' << 16 | '0' << 8 | '6') 41 42 #define MAC_ADDR_OCTET_NUM 6 43 #define HNS_ROCE_MAX_MSG_LEN 0x80000000 44 45 #define HNS_ROCE_ALOGN_UP(a, b) ((((a) + (b) - 1) / (b)) * (b)) 46 47 #define HNS_ROCE_IB_MIN_SQ_STRIDE 6 48 49 #define HNS_ROCE_BA_SIZE (32 * 4096) 50 51 /* Hardware specification only for v1 engine */ 52 #define HNS_ROCE_MIN_CQE_NUM 0x40 53 #define HNS_ROCE_MIN_WQE_NUM 0x20 54 55 /* Hardware specification only for v1 engine */ 56 #define HNS_ROCE_MAX_INNER_MTPT_NUM 0x7 57 #define HNS_ROCE_MAX_MTPT_PBL_NUM 0x100000 58 59 #define HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS 20 60 #define HNS_ROCE_MAX_FREE_CQ_WAIT_CNT \ 61 (5000 / HNS_ROCE_EACH_FREE_CQ_WAIT_MSECS) 62 #define HNS_ROCE_CQE_WCMD_EMPTY_BIT 0x2 63 #define HNS_ROCE_MIN_CQE_CNT 16 64 65 #define HNS_ROCE_MAX_IRQ_NUM 128 66 67 #define EQ_ENABLE 1 68 #define EQ_DISABLE 0 69 70 #define HNS_ROCE_CEQ 0 71 #define HNS_ROCE_AEQ 1 72 73 #define HNS_ROCE_CEQ_ENTRY_SIZE 0x4 74 #define HNS_ROCE_AEQ_ENTRY_SIZE 0x10 75 76 /* 4G/4K = 1M */ 77 #define HNS_ROCE_SL_SHIFT 28 78 #define HNS_ROCE_TCLASS_SHIFT 20 79 #define HNS_ROCE_FLOW_LABEL_MASK 0xfffff 80 81 #define HNS_ROCE_MAX_PORTS 6 82 #define HNS_ROCE_MAX_GID_NUM 16 83 #define HNS_ROCE_GID_SIZE 16 84 85 #define HNS_ROCE_HOP_NUM_0 0xff 86 87 #define BITMAP_NO_RR 0 88 #define BITMAP_RR 1 89 90 #define MR_TYPE_MR 0x00 91 #define MR_TYPE_FRMR 0x01 92 #define MR_TYPE_DMA 0x03 93 94 #define HNS_ROCE_FRMR_MAX_PA 512 95 96 #define PKEY_ID 0xffff 97 #define GUID_LEN 8 98 #define NODE_DESC_SIZE 64 99 #define DB_REG_OFFSET 0x1000 100 101 #define SERV_TYPE_RC 0 102 #define SERV_TYPE_RD 1 103 #define SERV_TYPE_UC 2 104 #define SERV_TYPE_UD 3 105 106 /* Configure to HW for PAGE_SIZE larger than 4KB */ 107 #define PG_SHIFT_OFFSET (PAGE_SHIFT - 12) 108 109 #define PAGES_SHIFT_8 8 110 #define PAGES_SHIFT_16 16 111 #define PAGES_SHIFT_24 24 112 #define PAGES_SHIFT_32 32 113 114 #define HNS_ROCE_IDX_QUE_ENTRY_SZ 4 115 #define SRQ_DB_REG 0x230 116 117 enum { 118 HNS_ROCE_SUPPORT_RQ_RECORD_DB = 1 << 0, 119 HNS_ROCE_SUPPORT_SQ_RECORD_DB = 1 << 1, 120 }; 121 122 enum { 123 HNS_ROCE_SUPPORT_CQ_RECORD_DB = 1 << 0, 124 }; 125 126 enum hns_roce_qp_state { 127 HNS_ROCE_QP_STATE_RST, 128 HNS_ROCE_QP_STATE_INIT, 129 HNS_ROCE_QP_STATE_RTR, 130 HNS_ROCE_QP_STATE_RTS, 131 HNS_ROCE_QP_STATE_SQD, 132 HNS_ROCE_QP_STATE_ERR, 133 HNS_ROCE_QP_NUM_STATE, 134 }; 135 136 enum hns_roce_event { 137 HNS_ROCE_EVENT_TYPE_PATH_MIG = 0x01, 138 HNS_ROCE_EVENT_TYPE_PATH_MIG_FAILED = 0x02, 139 HNS_ROCE_EVENT_TYPE_COMM_EST = 0x03, 140 HNS_ROCE_EVENT_TYPE_SQ_DRAINED = 0x04, 141 HNS_ROCE_EVENT_TYPE_WQ_CATAS_ERROR = 0x05, 142 HNS_ROCE_EVENT_TYPE_INV_REQ_LOCAL_WQ_ERROR = 0x06, 143 HNS_ROCE_EVENT_TYPE_LOCAL_WQ_ACCESS_ERROR = 0x07, 144 HNS_ROCE_EVENT_TYPE_SRQ_LIMIT_REACH = 0x08, 145 HNS_ROCE_EVENT_TYPE_SRQ_LAST_WQE_REACH = 0x09, 146 HNS_ROCE_EVENT_TYPE_SRQ_CATAS_ERROR = 0x0a, 147 HNS_ROCE_EVENT_TYPE_CQ_ACCESS_ERROR = 0x0b, 148 HNS_ROCE_EVENT_TYPE_CQ_OVERFLOW = 0x0c, 149 HNS_ROCE_EVENT_TYPE_CQ_ID_INVALID = 0x0d, 150 HNS_ROCE_EVENT_TYPE_PORT_CHANGE = 0x0f, 151 /* 0x10 and 0x11 is unused in currently application case */ 152 HNS_ROCE_EVENT_TYPE_DB_OVERFLOW = 0x12, 153 HNS_ROCE_EVENT_TYPE_MB = 0x13, 154 HNS_ROCE_EVENT_TYPE_CEQ_OVERFLOW = 0x14, 155 HNS_ROCE_EVENT_TYPE_FLR = 0x15, 156 }; 157 158 /* Local Work Queue Catastrophic Error,SUBTYPE 0x5 */ 159 enum { 160 HNS_ROCE_LWQCE_QPC_ERROR = 1, 161 HNS_ROCE_LWQCE_MTU_ERROR = 2, 162 HNS_ROCE_LWQCE_WQE_BA_ADDR_ERROR = 3, 163 HNS_ROCE_LWQCE_WQE_ADDR_ERROR = 4, 164 HNS_ROCE_LWQCE_SQ_WQE_SHIFT_ERROR = 5, 165 HNS_ROCE_LWQCE_SL_ERROR = 6, 166 HNS_ROCE_LWQCE_PORT_ERROR = 7, 167 }; 168 169 /* Local Access Violation Work Queue Error,SUBTYPE 0x7 */ 170 enum { 171 HNS_ROCE_LAVWQE_R_KEY_VIOLATION = 1, 172 HNS_ROCE_LAVWQE_LENGTH_ERROR = 2, 173 HNS_ROCE_LAVWQE_VA_ERROR = 3, 174 HNS_ROCE_LAVWQE_PD_ERROR = 4, 175 HNS_ROCE_LAVWQE_RW_ACC_ERROR = 5, 176 HNS_ROCE_LAVWQE_KEY_STATE_ERROR = 6, 177 HNS_ROCE_LAVWQE_MR_OPERATION_ERROR = 7, 178 }; 179 180 /* DOORBELL overflow subtype */ 181 enum { 182 HNS_ROCE_DB_SUBTYPE_SDB_OVF = 1, 183 HNS_ROCE_DB_SUBTYPE_SDB_ALM_OVF = 2, 184 HNS_ROCE_DB_SUBTYPE_ODB_OVF = 3, 185 HNS_ROCE_DB_SUBTYPE_ODB_ALM_OVF = 4, 186 HNS_ROCE_DB_SUBTYPE_SDB_ALM_EMP = 5, 187 HNS_ROCE_DB_SUBTYPE_ODB_ALM_EMP = 6, 188 }; 189 190 enum { 191 /* RQ&SRQ related operations */ 192 HNS_ROCE_OPCODE_SEND_DATA_RECEIVE = 0x06, 193 HNS_ROCE_OPCODE_RDMA_WITH_IMM_RECEIVE = 0x07, 194 }; 195 196 enum { 197 HNS_ROCE_CAP_FLAG_REREG_MR = BIT(0), 198 HNS_ROCE_CAP_FLAG_ROCE_V1_V2 = BIT(1), 199 HNS_ROCE_CAP_FLAG_RQ_INLINE = BIT(2), 200 HNS_ROCE_CAP_FLAG_RECORD_DB = BIT(3), 201 HNS_ROCE_CAP_FLAG_SQ_RECORD_DB = BIT(4), 202 HNS_ROCE_CAP_FLAG_SRQ = BIT(5), 203 HNS_ROCE_CAP_FLAG_MW = BIT(7), 204 HNS_ROCE_CAP_FLAG_FRMR = BIT(8), 205 HNS_ROCE_CAP_FLAG_QP_FLOW_CTRL = BIT(9), 206 HNS_ROCE_CAP_FLAG_ATOMIC = BIT(10), 207 }; 208 209 enum hns_roce_mtt_type { 210 MTT_TYPE_WQE, 211 MTT_TYPE_CQE, 212 MTT_TYPE_SRQWQE, 213 MTT_TYPE_IDX 214 }; 215 216 enum { 217 HNS_ROCE_DB_PER_PAGE = PAGE_SIZE / 4 218 }; 219 220 enum hns_roce_reset_stage { 221 HNS_ROCE_STATE_NON_RST, 222 HNS_ROCE_STATE_RST_BEF_DOWN, 223 HNS_ROCE_STATE_RST_DOWN, 224 HNS_ROCE_STATE_RST_UNINIT, 225 HNS_ROCE_STATE_RST_INIT, 226 HNS_ROCE_STATE_RST_INITED, 227 }; 228 229 enum hns_roce_instance_state { 230 HNS_ROCE_STATE_NON_INIT, 231 HNS_ROCE_STATE_INIT, 232 HNS_ROCE_STATE_INITED, 233 HNS_ROCE_STATE_UNINIT, 234 }; 235 236 enum { 237 HNS_ROCE_RST_DIRECT_RETURN = 0, 238 }; 239 240 enum { 241 CMD_RST_PRC_OTHERS, 242 CMD_RST_PRC_SUCCESS, 243 CMD_RST_PRC_EBUSY, 244 }; 245 246 #define HNS_ROCE_CMD_SUCCESS 1 247 248 #define HNS_ROCE_PORT_DOWN 0 249 #define HNS_ROCE_PORT_UP 1 250 251 #define HNS_ROCE_MTT_ENTRY_PER_SEG 8 252 253 #define PAGE_ADDR_SHIFT 12 254 255 struct hns_roce_uar { 256 u64 pfn; 257 unsigned long index; 258 unsigned long logic_idx; 259 }; 260 261 struct hns_roce_ucontext { 262 struct ib_ucontext ibucontext; 263 struct hns_roce_uar uar; 264 struct list_head page_list; 265 struct mutex page_mutex; 266 }; 267 268 struct hns_roce_pd { 269 struct ib_pd ibpd; 270 unsigned long pdn; 271 }; 272 273 struct hns_roce_bitmap { 274 /* Bitmap Traversal last a bit which is 1 */ 275 unsigned long last; 276 unsigned long top; 277 unsigned long max; 278 unsigned long reserved_top; 279 unsigned long mask; 280 spinlock_t lock; 281 unsigned long *table; 282 }; 283 284 /* Order bitmap length -- bit num compute formula: 1 << (max_order - order) */ 285 /* Order = 0: bitmap is biggest, order = max bitmap is least (only a bit) */ 286 /* Every bit repesent to a partner free/used status in bitmap */ 287 /* 288 * Initial, bits of other bitmap are all 0 except that a bit of max_order is 1 289 * Bit = 1 represent to idle and available; bit = 0: not available 290 */ 291 struct hns_roce_buddy { 292 /* Members point to every order level bitmap */ 293 unsigned long **bits; 294 /* Represent to avail bits of the order level bitmap */ 295 u32 *num_free; 296 int max_order; 297 spinlock_t lock; 298 }; 299 300 /* For Hardware Entry Memory */ 301 struct hns_roce_hem_table { 302 /* HEM type: 0 = qpc, 1 = mtt, 2 = cqc, 3 = srq, 4 = other */ 303 u32 type; 304 /* HEM array elment num */ 305 unsigned long num_hem; 306 /* HEM entry record obj total num */ 307 unsigned long num_obj; 308 /*Single obj size */ 309 unsigned long obj_size; 310 unsigned long table_chunk_size; 311 int lowmem; 312 struct mutex mutex; 313 struct hns_roce_hem **hem; 314 u64 **bt_l1; 315 dma_addr_t *bt_l1_dma_addr; 316 u64 **bt_l0; 317 dma_addr_t *bt_l0_dma_addr; 318 }; 319 320 struct hns_roce_mtt { 321 unsigned long first_seg; 322 int order; 323 int page_shift; 324 enum hns_roce_mtt_type mtt_type; 325 }; 326 327 struct hns_roce_mw { 328 struct ib_mw ibmw; 329 u32 pdn; 330 u32 rkey; 331 int enabled; /* MW's active status */ 332 u32 pbl_hop_num; 333 u32 pbl_ba_pg_sz; 334 u32 pbl_buf_pg_sz; 335 }; 336 337 /* Only support 4K page size for mr register */ 338 #define MR_SIZE_4K 0 339 340 struct hns_roce_mr { 341 struct ib_mr ibmr; 342 struct ib_umem *umem; 343 u64 iova; /* MR's virtual orignal addr */ 344 u64 size; /* Address range of MR */ 345 u32 key; /* Key of MR */ 346 u32 pd; /* PD num of MR */ 347 u32 access;/* Access permission of MR */ 348 u32 npages; 349 int enabled; /* MR's active status */ 350 int type; /* MR's register type */ 351 u64 *pbl_buf;/* MR's PBL space */ 352 dma_addr_t pbl_dma_addr; /* MR's PBL space PA */ 353 u32 pbl_size;/* PA number in the PBL */ 354 u64 pbl_ba;/* page table address */ 355 u32 l0_chunk_last_num;/* L0 last number */ 356 u32 l1_chunk_last_num;/* L1 last number */ 357 u64 **pbl_bt_l2;/* PBL BT L2 */ 358 u64 **pbl_bt_l1;/* PBL BT L1 */ 359 u64 *pbl_bt_l0;/* PBL BT L0 */ 360 dma_addr_t *pbl_l2_dma_addr;/* PBL BT L2 dma addr */ 361 dma_addr_t *pbl_l1_dma_addr;/* PBL BT L1 dma addr */ 362 dma_addr_t pbl_l0_dma_addr;/* PBL BT L0 dma addr */ 363 u32 pbl_ba_pg_sz;/* BT chunk page size */ 364 u32 pbl_buf_pg_sz;/* buf chunk page size */ 365 u32 pbl_hop_num;/* multi-hop number */ 366 }; 367 368 struct hns_roce_mr_table { 369 struct hns_roce_bitmap mtpt_bitmap; 370 struct hns_roce_buddy mtt_buddy; 371 struct hns_roce_hem_table mtt_table; 372 struct hns_roce_hem_table mtpt_table; 373 struct hns_roce_buddy mtt_cqe_buddy; 374 struct hns_roce_hem_table mtt_cqe_table; 375 struct hns_roce_buddy mtt_srqwqe_buddy; 376 struct hns_roce_hem_table mtt_srqwqe_table; 377 struct hns_roce_buddy mtt_idx_buddy; 378 struct hns_roce_hem_table mtt_idx_table; 379 }; 380 381 struct hns_roce_wq { 382 u64 *wrid; /* Work request ID */ 383 spinlock_t lock; 384 int wqe_cnt; /* WQE num */ 385 u32 max_post; 386 int max_gs; 387 int offset; 388 int wqe_shift;/* WQE size */ 389 u32 head; 390 u32 tail; 391 void __iomem *db_reg_l; 392 }; 393 394 struct hns_roce_sge { 395 int sge_cnt; /* SGE num */ 396 int offset; 397 int sge_shift;/* SGE size */ 398 }; 399 400 struct hns_roce_buf_list { 401 void *buf; 402 dma_addr_t map; 403 }; 404 405 struct hns_roce_buf { 406 struct hns_roce_buf_list direct; 407 struct hns_roce_buf_list *page_list; 408 int nbufs; 409 u32 npages; 410 int page_shift; 411 }; 412 413 struct hns_roce_db_pgdir { 414 struct list_head list; 415 DECLARE_BITMAP(order0, HNS_ROCE_DB_PER_PAGE); 416 DECLARE_BITMAP(order1, HNS_ROCE_DB_PER_PAGE / 2); 417 unsigned long *bits[2]; 418 u32 *page; 419 dma_addr_t db_dma; 420 }; 421 422 struct hns_roce_user_db_page { 423 struct list_head list; 424 struct ib_umem *umem; 425 unsigned long user_virt; 426 refcount_t refcount; 427 }; 428 429 struct hns_roce_db { 430 u32 *db_record; 431 union { 432 struct hns_roce_db_pgdir *pgdir; 433 struct hns_roce_user_db_page *user_page; 434 } u; 435 dma_addr_t dma; 436 void *virt_addr; 437 int index; 438 int order; 439 }; 440 441 struct hns_roce_cq_buf { 442 struct hns_roce_buf hr_buf; 443 struct hns_roce_mtt hr_mtt; 444 }; 445 446 struct hns_roce_cq { 447 struct ib_cq ib_cq; 448 struct hns_roce_cq_buf hr_buf; 449 struct hns_roce_db db; 450 u8 db_en; 451 spinlock_t lock; 452 struct ib_umem *umem; 453 void (*comp)(struct hns_roce_cq *cq); 454 void (*event)(struct hns_roce_cq *cq, enum hns_roce_event event_type); 455 456 struct hns_roce_uar *uar; 457 u32 cq_depth; 458 u32 cons_index; 459 u32 *set_ci_db; 460 void __iomem *cq_db_l; 461 u16 *tptr_addr; 462 int arm_sn; 463 unsigned long cqn; 464 u32 vector; 465 atomic_t refcount; 466 struct completion free; 467 }; 468 469 struct hns_roce_idx_que { 470 struct hns_roce_buf idx_buf; 471 int entry_sz; 472 u32 buf_size; 473 struct ib_umem *umem; 474 struct hns_roce_mtt mtt; 475 u64 *bitmap; 476 }; 477 478 struct hns_roce_srq { 479 struct ib_srq ibsrq; 480 void (*event)(struct hns_roce_srq *srq, enum hns_roce_event event); 481 unsigned long srqn; 482 int max; 483 int max_gs; 484 int wqe_shift; 485 void __iomem *db_reg_l; 486 487 atomic_t refcount; 488 struct completion free; 489 490 struct hns_roce_buf buf; 491 u64 *wrid; 492 struct ib_umem *umem; 493 struct hns_roce_mtt mtt; 494 struct hns_roce_idx_que idx_que; 495 spinlock_t lock; 496 int head; 497 int tail; 498 u16 wqe_ctr; 499 struct mutex mutex; 500 }; 501 502 struct hns_roce_uar_table { 503 struct hns_roce_bitmap bitmap; 504 }; 505 506 struct hns_roce_qp_table { 507 struct hns_roce_bitmap bitmap; 508 spinlock_t lock; 509 struct hns_roce_hem_table qp_table; 510 struct hns_roce_hem_table irrl_table; 511 struct hns_roce_hem_table trrl_table; 512 struct hns_roce_hem_table sccc_table; 513 struct mutex scc_mutex; 514 }; 515 516 struct hns_roce_cq_table { 517 struct hns_roce_bitmap bitmap; 518 spinlock_t lock; 519 struct radix_tree_root tree; 520 struct hns_roce_hem_table table; 521 }; 522 523 struct hns_roce_srq_table { 524 struct hns_roce_bitmap bitmap; 525 struct xarray xa; 526 struct hns_roce_hem_table table; 527 }; 528 529 struct hns_roce_raq_table { 530 struct hns_roce_buf_list *e_raq_buf; 531 }; 532 533 struct hns_roce_av { 534 __le32 port_pd; 535 u8 gid_index; 536 u8 stat_rate; 537 u8 hop_limit; 538 __le32 sl_tclass_flowlabel; 539 u8 dgid[HNS_ROCE_GID_SIZE]; 540 u8 mac[6]; 541 __le16 vlan; 542 bool vlan_en; 543 }; 544 545 struct hns_roce_ah { 546 struct ib_ah ibah; 547 struct hns_roce_av av; 548 }; 549 550 struct hns_roce_cmd_context { 551 struct completion done; 552 int result; 553 int next; 554 u64 out_param; 555 u16 token; 556 }; 557 558 struct hns_roce_cmdq { 559 struct dma_pool *pool; 560 struct mutex hcr_mutex; 561 struct semaphore poll_sem; 562 /* 563 * Event mode: cmd register mutex protection, 564 * ensure to not exceed max_cmds and user use limit region 565 */ 566 struct semaphore event_sem; 567 int max_cmds; 568 spinlock_t context_lock; 569 int free_head; 570 struct hns_roce_cmd_context *context; 571 /* 572 * Result of get integer part 573 * which max_comds compute according a power of 2 574 */ 575 u16 token_mask; 576 /* 577 * Process whether use event mode, init default non-zero 578 * After the event queue of cmd event ready, 579 * can switch into event mode 580 * close device, switch into poll mode(non event mode) 581 */ 582 u8 use_events; 583 u8 toggle; 584 }; 585 586 struct hns_roce_cmd_mailbox { 587 void *buf; 588 dma_addr_t dma; 589 }; 590 591 struct hns_roce_dev; 592 593 struct hns_roce_rinl_sge { 594 void *addr; 595 u32 len; 596 }; 597 598 struct hns_roce_rinl_wqe { 599 struct hns_roce_rinl_sge *sg_list; 600 u32 sge_cnt; 601 }; 602 603 struct hns_roce_rinl_buf { 604 struct hns_roce_rinl_wqe *wqe_list; 605 u32 wqe_cnt; 606 }; 607 608 struct hns_roce_qp { 609 struct ib_qp ibqp; 610 struct hns_roce_buf hr_buf; 611 struct hns_roce_wq rq; 612 struct hns_roce_db rdb; 613 struct hns_roce_db sdb; 614 u8 rdb_en; 615 u8 sdb_en; 616 u32 doorbell_qpn; 617 __le32 sq_signal_bits; 618 u32 sq_next_wqe; 619 int sq_max_wqes_per_wr; 620 int sq_spare_wqes; 621 struct hns_roce_wq sq; 622 623 struct ib_umem *umem; 624 struct hns_roce_mtt mtt; 625 u32 buff_size; 626 struct mutex mutex; 627 u8 port; 628 u8 phy_port; 629 u8 sl; 630 u8 resp_depth; 631 u8 state; 632 u32 access_flags; 633 u32 atomic_rd_en; 634 u32 pkey_index; 635 u32 qkey; 636 void (*event)(struct hns_roce_qp *qp, 637 enum hns_roce_event event_type); 638 unsigned long qpn; 639 640 atomic_t refcount; 641 struct completion free; 642 643 struct hns_roce_sge sge; 644 u32 next_sge; 645 646 struct hns_roce_rinl_buf rq_inl_buf; 647 }; 648 649 struct hns_roce_sqp { 650 struct hns_roce_qp hr_qp; 651 }; 652 653 struct hns_roce_ib_iboe { 654 spinlock_t lock; 655 struct net_device *netdevs[HNS_ROCE_MAX_PORTS]; 656 struct notifier_block nb; 657 u8 phy_port[HNS_ROCE_MAX_PORTS]; 658 }; 659 660 enum { 661 HNS_ROCE_EQ_STAT_INVALID = 0, 662 HNS_ROCE_EQ_STAT_VALID = 2, 663 }; 664 665 struct hns_roce_ceqe { 666 u32 comp; 667 }; 668 669 struct hns_roce_aeqe { 670 __le32 asyn; 671 union { 672 struct { 673 __le32 qp; 674 u32 rsv0; 675 u32 rsv1; 676 } qp_event; 677 678 struct { 679 __le32 srq; 680 u32 rsv0; 681 u32 rsv1; 682 } srq_event; 683 684 struct { 685 __le32 cq; 686 u32 rsv0; 687 u32 rsv1; 688 } cq_event; 689 690 struct { 691 __le32 ceqe; 692 u32 rsv0; 693 u32 rsv1; 694 } ce_event; 695 696 struct { 697 __le64 out_param; 698 __le16 token; 699 u8 status; 700 u8 rsv0; 701 } __packed cmd; 702 } event; 703 }; 704 705 struct hns_roce_eq { 706 struct hns_roce_dev *hr_dev; 707 void __iomem *doorbell; 708 709 int type_flag;/* Aeq:1 ceq:0 */ 710 int eqn; 711 u32 entries; 712 int log_entries; 713 int eqe_size; 714 int irq; 715 int log_page_size; 716 int cons_index; 717 struct hns_roce_buf_list *buf_list; 718 int over_ignore; 719 int coalesce; 720 int arm_st; 721 u64 eqe_ba; 722 int eqe_ba_pg_sz; 723 int eqe_buf_pg_sz; 724 int hop_num; 725 u64 *bt_l0; /* Base address table for L0 */ 726 u64 **bt_l1; /* Base address table for L1 */ 727 u64 **buf; 728 dma_addr_t l0_dma; 729 dma_addr_t *l1_dma; 730 dma_addr_t *buf_dma; 731 u32 l0_last_num; /* L0 last chunk num */ 732 u32 l1_last_num; /* L1 last chunk num */ 733 int eq_max_cnt; 734 int eq_period; 735 int shift; 736 dma_addr_t cur_eqe_ba; 737 dma_addr_t nxt_eqe_ba; 738 int event_type; 739 int sub_type; 740 }; 741 742 struct hns_roce_eq_table { 743 struct hns_roce_eq *eq; 744 void __iomem **eqc_base; /* only for hw v1 */ 745 }; 746 747 struct hns_roce_caps { 748 u64 fw_ver; 749 u8 num_ports; 750 int gid_table_len[HNS_ROCE_MAX_PORTS]; 751 int pkey_table_len[HNS_ROCE_MAX_PORTS]; 752 int local_ca_ack_delay; 753 int num_uars; 754 u32 phy_num_uars; 755 u32 max_sq_sg; /* 2 */ 756 u32 max_sq_inline; /* 32 */ 757 u32 max_rq_sg; /* 2 */ 758 u32 max_extend_sg; 759 int num_qps; /* 256k */ 760 int reserved_qps; 761 int num_qpc_timer; 762 int num_cqc_timer; 763 u32 max_srq_sg; 764 int num_srqs; 765 u32 max_wqes; /* 16k */ 766 u32 max_srqs; 767 u32 max_srq_wrs; 768 u32 max_srq_sges; 769 u32 max_sq_desc_sz; /* 64 */ 770 u32 max_rq_desc_sz; /* 64 */ 771 u32 max_srq_desc_sz; 772 int max_qp_init_rdma; 773 int max_qp_dest_rdma; 774 int num_cqs; 775 int max_cqes; 776 int min_cqes; 777 u32 min_wqes; 778 int reserved_cqs; 779 int reserved_srqs; 780 u32 max_srqwqes; 781 int num_aeq_vectors; /* 1 */ 782 int num_comp_vectors; 783 int num_other_vectors; 784 int num_mtpts; 785 u32 num_mtt_segs; 786 u32 num_cqe_segs; 787 u32 num_srqwqe_segs; 788 u32 num_idx_segs; 789 int reserved_mrws; 790 int reserved_uars; 791 int num_pds; 792 int reserved_pds; 793 u32 mtt_entry_sz; 794 u32 cq_entry_sz; 795 u32 page_size_cap; 796 u32 reserved_lkey; 797 int mtpt_entry_sz; 798 int qpc_entry_sz; 799 int irrl_entry_sz; 800 int trrl_entry_sz; 801 int cqc_entry_sz; 802 int sccc_entry_sz; 803 int qpc_timer_entry_sz; 804 int cqc_timer_entry_sz; 805 int srqc_entry_sz; 806 int idx_entry_sz; 807 u32 pbl_ba_pg_sz; 808 u32 pbl_buf_pg_sz; 809 u32 pbl_hop_num; 810 int aeqe_depth; 811 int ceqe_depth; 812 enum ib_mtu max_mtu; 813 u32 qpc_bt_num; 814 u32 qpc_timer_bt_num; 815 u32 srqc_bt_num; 816 u32 cqc_bt_num; 817 u32 cqc_timer_bt_num; 818 u32 mpt_bt_num; 819 u32 sccc_bt_num; 820 u32 qpc_ba_pg_sz; 821 u32 qpc_buf_pg_sz; 822 u32 qpc_hop_num; 823 u32 srqc_ba_pg_sz; 824 u32 srqc_buf_pg_sz; 825 u32 srqc_hop_num; 826 u32 cqc_ba_pg_sz; 827 u32 cqc_buf_pg_sz; 828 u32 cqc_hop_num; 829 u32 mpt_ba_pg_sz; 830 u32 mpt_buf_pg_sz; 831 u32 mpt_hop_num; 832 u32 mtt_ba_pg_sz; 833 u32 mtt_buf_pg_sz; 834 u32 mtt_hop_num; 835 u32 sccc_ba_pg_sz; 836 u32 sccc_buf_pg_sz; 837 u32 sccc_hop_num; 838 u32 qpc_timer_ba_pg_sz; 839 u32 qpc_timer_buf_pg_sz; 840 u32 qpc_timer_hop_num; 841 u32 cqc_timer_ba_pg_sz; 842 u32 cqc_timer_buf_pg_sz; 843 u32 cqc_timer_hop_num; 844 u32 cqe_ba_pg_sz; 845 u32 cqe_buf_pg_sz; 846 u32 cqe_hop_num; 847 u32 srqwqe_ba_pg_sz; 848 u32 srqwqe_buf_pg_sz; 849 u32 srqwqe_hop_num; 850 u32 idx_ba_pg_sz; 851 u32 idx_buf_pg_sz; 852 u32 idx_hop_num; 853 u32 eqe_ba_pg_sz; 854 u32 eqe_buf_pg_sz; 855 u32 eqe_hop_num; 856 u32 sl_num; 857 u32 tsq_buf_pg_sz; 858 u32 tpq_buf_pg_sz; 859 u32 chunk_sz; /* chunk size in non multihop mode*/ 860 u64 flags; 861 }; 862 863 struct hns_roce_work { 864 struct hns_roce_dev *hr_dev; 865 struct work_struct work; 866 u32 qpn; 867 u32 cqn; 868 int event_type; 869 int sub_type; 870 }; 871 872 struct hns_roce_hw { 873 int (*reset)(struct hns_roce_dev *hr_dev, bool enable); 874 int (*cmq_init)(struct hns_roce_dev *hr_dev); 875 void (*cmq_exit)(struct hns_roce_dev *hr_dev); 876 int (*hw_profile)(struct hns_roce_dev *hr_dev); 877 int (*hw_init)(struct hns_roce_dev *hr_dev); 878 void (*hw_exit)(struct hns_roce_dev *hr_dev); 879 int (*post_mbox)(struct hns_roce_dev *hr_dev, u64 in_param, 880 u64 out_param, u32 in_modifier, u8 op_modifier, u16 op, 881 u16 token, int event); 882 int (*chk_mbox)(struct hns_roce_dev *hr_dev, unsigned long timeout); 883 int (*rst_prc_mbox)(struct hns_roce_dev *hr_dev); 884 int (*set_gid)(struct hns_roce_dev *hr_dev, u8 port, int gid_index, 885 const union ib_gid *gid, const struct ib_gid_attr *attr); 886 int (*set_mac)(struct hns_roce_dev *hr_dev, u8 phy_port, u8 *addr); 887 void (*set_mtu)(struct hns_roce_dev *hr_dev, u8 phy_port, 888 enum ib_mtu mtu); 889 int (*write_mtpt)(void *mb_buf, struct hns_roce_mr *mr, 890 unsigned long mtpt_idx); 891 int (*rereg_write_mtpt)(struct hns_roce_dev *hr_dev, 892 struct hns_roce_mr *mr, int flags, u32 pdn, 893 int mr_access_flags, u64 iova, u64 size, 894 void *mb_buf); 895 int (*frmr_write_mtpt)(void *mb_buf, struct hns_roce_mr *mr); 896 int (*mw_write_mtpt)(void *mb_buf, struct hns_roce_mw *mw); 897 void (*write_cqc)(struct hns_roce_dev *hr_dev, 898 struct hns_roce_cq *hr_cq, void *mb_buf, u64 *mtts, 899 dma_addr_t dma_handle, int nent, u32 vector); 900 int (*set_hem)(struct hns_roce_dev *hr_dev, 901 struct hns_roce_hem_table *table, int obj, int step_idx); 902 int (*clear_hem)(struct hns_roce_dev *hr_dev, 903 struct hns_roce_hem_table *table, int obj, 904 int step_idx); 905 int (*query_qp)(struct ib_qp *ibqp, struct ib_qp_attr *qp_attr, 906 int qp_attr_mask, struct ib_qp_init_attr *qp_init_attr); 907 int (*modify_qp)(struct ib_qp *ibqp, const struct ib_qp_attr *attr, 908 int attr_mask, enum ib_qp_state cur_state, 909 enum ib_qp_state new_state); 910 int (*destroy_qp)(struct ib_qp *ibqp); 911 int (*qp_flow_control_init)(struct hns_roce_dev *hr_dev, 912 struct hns_roce_qp *hr_qp); 913 int (*post_send)(struct ib_qp *ibqp, const struct ib_send_wr *wr, 914 const struct ib_send_wr **bad_wr); 915 int (*post_recv)(struct ib_qp *qp, const struct ib_recv_wr *recv_wr, 916 const struct ib_recv_wr **bad_recv_wr); 917 int (*req_notify_cq)(struct ib_cq *ibcq, enum ib_cq_notify_flags flags); 918 int (*poll_cq)(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc); 919 int (*dereg_mr)(struct hns_roce_dev *hr_dev, struct hns_roce_mr *mr); 920 int (*destroy_cq)(struct ib_cq *ibcq); 921 int (*modify_cq)(struct ib_cq *cq, u16 cq_count, u16 cq_period); 922 int (*init_eq)(struct hns_roce_dev *hr_dev); 923 void (*cleanup_eq)(struct hns_roce_dev *hr_dev); 924 void (*write_srqc)(struct hns_roce_dev *hr_dev, 925 struct hns_roce_srq *srq, u32 pdn, u16 xrcd, u32 cqn, 926 void *mb_buf, u64 *mtts_wqe, u64 *mtts_idx, 927 dma_addr_t dma_handle_wqe, 928 dma_addr_t dma_handle_idx); 929 int (*modify_srq)(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr, 930 enum ib_srq_attr_mask srq_attr_mask, 931 struct ib_udata *udata); 932 int (*query_srq)(struct ib_srq *ibsrq, struct ib_srq_attr *attr); 933 int (*post_srq_recv)(struct ib_srq *ibsrq, const struct ib_recv_wr *wr, 934 const struct ib_recv_wr **bad_wr); 935 const struct ib_device_ops *hns_roce_dev_ops; 936 const struct ib_device_ops *hns_roce_dev_srq_ops; 937 }; 938 939 struct hns_roce_dev { 940 struct ib_device ib_dev; 941 struct platform_device *pdev; 942 struct pci_dev *pci_dev; 943 struct device *dev; 944 struct hns_roce_uar priv_uar; 945 const char *irq_names[HNS_ROCE_MAX_IRQ_NUM]; 946 spinlock_t sm_lock; 947 spinlock_t bt_cmd_lock; 948 bool active; 949 bool is_reset; 950 bool dis_db; 951 unsigned long reset_cnt; 952 struct hns_roce_ib_iboe iboe; 953 954 struct list_head pgdir_list; 955 struct mutex pgdir_mutex; 956 int irq[HNS_ROCE_MAX_IRQ_NUM]; 957 u8 __iomem *reg_base; 958 struct hns_roce_caps caps; 959 struct radix_tree_root qp_table_tree; 960 961 unsigned char dev_addr[HNS_ROCE_MAX_PORTS][MAC_ADDR_OCTET_NUM]; 962 u64 sys_image_guid; 963 u32 vendor_id; 964 u32 vendor_part_id; 965 u32 hw_rev; 966 void __iomem *priv_addr; 967 968 struct hns_roce_cmdq cmd; 969 struct hns_roce_bitmap pd_bitmap; 970 struct hns_roce_uar_table uar_table; 971 struct hns_roce_mr_table mr_table; 972 struct hns_roce_cq_table cq_table; 973 struct hns_roce_srq_table srq_table; 974 struct hns_roce_qp_table qp_table; 975 struct hns_roce_eq_table eq_table; 976 struct hns_roce_hem_table qpc_timer_table; 977 struct hns_roce_hem_table cqc_timer_table; 978 979 int cmd_mod; 980 int loop_idc; 981 u32 sdb_offset; 982 u32 odb_offset; 983 dma_addr_t tptr_dma_addr; /*only for hw v1*/ 984 u32 tptr_size; /*only for hw v1*/ 985 const struct hns_roce_hw *hw; 986 void *priv; 987 struct workqueue_struct *irq_workq; 988 }; 989 990 static inline struct hns_roce_dev *to_hr_dev(struct ib_device *ib_dev) 991 { 992 return container_of(ib_dev, struct hns_roce_dev, ib_dev); 993 } 994 995 static inline struct hns_roce_ucontext 996 *to_hr_ucontext(struct ib_ucontext *ibucontext) 997 { 998 return container_of(ibucontext, struct hns_roce_ucontext, ibucontext); 999 } 1000 1001 static inline struct hns_roce_pd *to_hr_pd(struct ib_pd *ibpd) 1002 { 1003 return container_of(ibpd, struct hns_roce_pd, ibpd); 1004 } 1005 1006 static inline struct hns_roce_ah *to_hr_ah(struct ib_ah *ibah) 1007 { 1008 return container_of(ibah, struct hns_roce_ah, ibah); 1009 } 1010 1011 static inline struct hns_roce_mr *to_hr_mr(struct ib_mr *ibmr) 1012 { 1013 return container_of(ibmr, struct hns_roce_mr, ibmr); 1014 } 1015 1016 static inline struct hns_roce_mw *to_hr_mw(struct ib_mw *ibmw) 1017 { 1018 return container_of(ibmw, struct hns_roce_mw, ibmw); 1019 } 1020 1021 static inline struct hns_roce_qp *to_hr_qp(struct ib_qp *ibqp) 1022 { 1023 return container_of(ibqp, struct hns_roce_qp, ibqp); 1024 } 1025 1026 static inline struct hns_roce_cq *to_hr_cq(struct ib_cq *ib_cq) 1027 { 1028 return container_of(ib_cq, struct hns_roce_cq, ib_cq); 1029 } 1030 1031 static inline struct hns_roce_srq *to_hr_srq(struct ib_srq *ibsrq) 1032 { 1033 return container_of(ibsrq, struct hns_roce_srq, ibsrq); 1034 } 1035 1036 static inline struct hns_roce_sqp *hr_to_hr_sqp(struct hns_roce_qp *hr_qp) 1037 { 1038 return container_of(hr_qp, struct hns_roce_sqp, hr_qp); 1039 } 1040 1041 static inline void hns_roce_write64_k(__le32 val[2], void __iomem *dest) 1042 { 1043 __raw_writeq(*(u64 *) val, dest); 1044 } 1045 1046 static inline struct hns_roce_qp 1047 *__hns_roce_qp_lookup(struct hns_roce_dev *hr_dev, u32 qpn) 1048 { 1049 return radix_tree_lookup(&hr_dev->qp_table_tree, 1050 qpn & (hr_dev->caps.num_qps - 1)); 1051 } 1052 1053 static inline void *hns_roce_buf_offset(struct hns_roce_buf *buf, int offset) 1054 { 1055 u32 page_size = 1 << buf->page_shift; 1056 1057 if (buf->nbufs == 1) 1058 return (char *)(buf->direct.buf) + offset; 1059 else 1060 return (char *)(buf->page_list[offset >> buf->page_shift].buf) + 1061 (offset & (page_size - 1)); 1062 } 1063 1064 int hns_roce_init_uar_table(struct hns_roce_dev *dev); 1065 int hns_roce_uar_alloc(struct hns_roce_dev *dev, struct hns_roce_uar *uar); 1066 void hns_roce_uar_free(struct hns_roce_dev *dev, struct hns_roce_uar *uar); 1067 void hns_roce_cleanup_uar_table(struct hns_roce_dev *dev); 1068 1069 int hns_roce_cmd_init(struct hns_roce_dev *hr_dev); 1070 void hns_roce_cmd_cleanup(struct hns_roce_dev *hr_dev); 1071 void hns_roce_cmd_event(struct hns_roce_dev *hr_dev, u16 token, u8 status, 1072 u64 out_param); 1073 int hns_roce_cmd_use_events(struct hns_roce_dev *hr_dev); 1074 void hns_roce_cmd_use_polling(struct hns_roce_dev *hr_dev); 1075 1076 int hns_roce_mtt_init(struct hns_roce_dev *hr_dev, int npages, int page_shift, 1077 struct hns_roce_mtt *mtt); 1078 void hns_roce_mtt_cleanup(struct hns_roce_dev *hr_dev, 1079 struct hns_roce_mtt *mtt); 1080 int hns_roce_buf_write_mtt(struct hns_roce_dev *hr_dev, 1081 struct hns_roce_mtt *mtt, struct hns_roce_buf *buf); 1082 1083 int hns_roce_init_pd_table(struct hns_roce_dev *hr_dev); 1084 int hns_roce_init_mr_table(struct hns_roce_dev *hr_dev); 1085 int hns_roce_init_eq_table(struct hns_roce_dev *hr_dev); 1086 int hns_roce_init_cq_table(struct hns_roce_dev *hr_dev); 1087 int hns_roce_init_qp_table(struct hns_roce_dev *hr_dev); 1088 int hns_roce_init_srq_table(struct hns_roce_dev *hr_dev); 1089 1090 void hns_roce_cleanup_pd_table(struct hns_roce_dev *hr_dev); 1091 void hns_roce_cleanup_mr_table(struct hns_roce_dev *hr_dev); 1092 void hns_roce_cleanup_eq_table(struct hns_roce_dev *hr_dev); 1093 void hns_roce_cleanup_cq_table(struct hns_roce_dev *hr_dev); 1094 void hns_roce_cleanup_qp_table(struct hns_roce_dev *hr_dev); 1095 void hns_roce_cleanup_srq_table(struct hns_roce_dev *hr_dev); 1096 1097 int hns_roce_bitmap_alloc(struct hns_roce_bitmap *bitmap, unsigned long *obj); 1098 void hns_roce_bitmap_free(struct hns_roce_bitmap *bitmap, unsigned long obj, 1099 int rr); 1100 int hns_roce_bitmap_init(struct hns_roce_bitmap *bitmap, u32 num, u32 mask, 1101 u32 reserved_bot, u32 resetrved_top); 1102 void hns_roce_bitmap_cleanup(struct hns_roce_bitmap *bitmap); 1103 void hns_roce_cleanup_bitmap(struct hns_roce_dev *hr_dev); 1104 int hns_roce_bitmap_alloc_range(struct hns_roce_bitmap *bitmap, int cnt, 1105 int align, unsigned long *obj); 1106 void hns_roce_bitmap_free_range(struct hns_roce_bitmap *bitmap, 1107 unsigned long obj, int cnt, 1108 int rr); 1109 1110 struct ib_ah *hns_roce_create_ah(struct ib_pd *pd, 1111 struct rdma_ah_attr *ah_attr, 1112 u32 flags, 1113 struct ib_udata *udata); 1114 int hns_roce_query_ah(struct ib_ah *ibah, struct rdma_ah_attr *ah_attr); 1115 int hns_roce_destroy_ah(struct ib_ah *ah, u32 flags); 1116 1117 int hns_roce_alloc_pd(struct ib_pd *pd, struct ib_ucontext *context, 1118 struct ib_udata *udata); 1119 void hns_roce_dealloc_pd(struct ib_pd *pd); 1120 1121 struct ib_mr *hns_roce_get_dma_mr(struct ib_pd *pd, int acc); 1122 struct ib_mr *hns_roce_reg_user_mr(struct ib_pd *pd, u64 start, u64 length, 1123 u64 virt_addr, int access_flags, 1124 struct ib_udata *udata); 1125 int hns_roce_rereg_user_mr(struct ib_mr *mr, int flags, u64 start, u64 length, 1126 u64 virt_addr, int mr_access_flags, struct ib_pd *pd, 1127 struct ib_udata *udata); 1128 struct ib_mr *hns_roce_alloc_mr(struct ib_pd *pd, enum ib_mr_type mr_type, 1129 u32 max_num_sg); 1130 int hns_roce_map_mr_sg(struct ib_mr *ibmr, struct scatterlist *sg, int sg_nents, 1131 unsigned int *sg_offset); 1132 int hns_roce_dereg_mr(struct ib_mr *ibmr); 1133 int hns_roce_hw2sw_mpt(struct hns_roce_dev *hr_dev, 1134 struct hns_roce_cmd_mailbox *mailbox, 1135 unsigned long mpt_index); 1136 unsigned long key_to_hw_index(u32 key); 1137 1138 struct ib_mw *hns_roce_alloc_mw(struct ib_pd *pd, enum ib_mw_type, 1139 struct ib_udata *udata); 1140 int hns_roce_dealloc_mw(struct ib_mw *ibmw); 1141 1142 void hns_roce_buf_free(struct hns_roce_dev *hr_dev, u32 size, 1143 struct hns_roce_buf *buf); 1144 int hns_roce_buf_alloc(struct hns_roce_dev *hr_dev, u32 size, u32 max_direct, 1145 struct hns_roce_buf *buf, u32 page_shift); 1146 1147 int hns_roce_ib_umem_write_mtt(struct hns_roce_dev *hr_dev, 1148 struct hns_roce_mtt *mtt, struct ib_umem *umem); 1149 1150 struct ib_srq *hns_roce_create_srq(struct ib_pd *pd, 1151 struct ib_srq_init_attr *srq_init_attr, 1152 struct ib_udata *udata); 1153 int hns_roce_modify_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr, 1154 enum ib_srq_attr_mask srq_attr_mask, 1155 struct ib_udata *udata); 1156 int hns_roce_destroy_srq(struct ib_srq *ibsrq); 1157 1158 struct ib_qp *hns_roce_create_qp(struct ib_pd *ib_pd, 1159 struct ib_qp_init_attr *init_attr, 1160 struct ib_udata *udata); 1161 int hns_roce_modify_qp(struct ib_qp *ibqp, struct ib_qp_attr *attr, 1162 int attr_mask, struct ib_udata *udata); 1163 void *get_recv_wqe(struct hns_roce_qp *hr_qp, int n); 1164 void *get_send_wqe(struct hns_roce_qp *hr_qp, int n); 1165 void *get_send_extend_sge(struct hns_roce_qp *hr_qp, int n); 1166 bool hns_roce_wq_overflow(struct hns_roce_wq *hr_wq, int nreq, 1167 struct ib_cq *ib_cq); 1168 enum hns_roce_qp_state to_hns_roce_state(enum ib_qp_state state); 1169 void hns_roce_lock_cqs(struct hns_roce_cq *send_cq, 1170 struct hns_roce_cq *recv_cq); 1171 void hns_roce_unlock_cqs(struct hns_roce_cq *send_cq, 1172 struct hns_roce_cq *recv_cq); 1173 void hns_roce_qp_remove(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp); 1174 void hns_roce_qp_free(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp); 1175 void hns_roce_release_range_qp(struct hns_roce_dev *hr_dev, int base_qpn, 1176 int cnt); 1177 __be32 send_ieth(const struct ib_send_wr *wr); 1178 int to_hr_qp_type(int qp_type); 1179 1180 struct ib_cq *hns_roce_ib_create_cq(struct ib_device *ib_dev, 1181 const struct ib_cq_init_attr *attr, 1182 struct ib_ucontext *context, 1183 struct ib_udata *udata); 1184 1185 int hns_roce_ib_destroy_cq(struct ib_cq *ib_cq); 1186 void hns_roce_free_cq(struct hns_roce_dev *hr_dev, struct hns_roce_cq *hr_cq); 1187 1188 int hns_roce_db_map_user(struct hns_roce_ucontext *context, 1189 struct ib_udata *udata, unsigned long virt, 1190 struct hns_roce_db *db); 1191 void hns_roce_db_unmap_user(struct hns_roce_ucontext *context, 1192 struct hns_roce_db *db); 1193 int hns_roce_alloc_db(struct hns_roce_dev *hr_dev, struct hns_roce_db *db, 1194 int order); 1195 void hns_roce_free_db(struct hns_roce_dev *hr_dev, struct hns_roce_db *db); 1196 1197 void hns_roce_cq_completion(struct hns_roce_dev *hr_dev, u32 cqn); 1198 void hns_roce_cq_event(struct hns_roce_dev *hr_dev, u32 cqn, int event_type); 1199 void hns_roce_qp_event(struct hns_roce_dev *hr_dev, u32 qpn, int event_type); 1200 void hns_roce_srq_event(struct hns_roce_dev *hr_dev, u32 srqn, int event_type); 1201 int hns_get_gid_index(struct hns_roce_dev *hr_dev, u8 port, int gid_index); 1202 int hns_roce_init(struct hns_roce_dev *hr_dev); 1203 void hns_roce_exit(struct hns_roce_dev *hr_dev); 1204 1205 #endif /* _HNS_ROCE_DEVICE_H */ 1206