blob: c3580bfb3c58e01fa657500ffa7736dacf29d13b [file] [log] [blame]
Heiko J Schickfab97222006-09-22 15:22:22 -07001/*
2 * IBM eServer eHCA Infiniband device driver for Linux on POWER
3 *
4 * Struct definition for eHCA internal structures
5 *
6 * Authors: Heiko J Schick <schickhj@de.ibm.com>
7 * Christoph Raisch <raisch@de.ibm.com>
8 *
9 * Copyright (c) 2005 IBM Corporation
10 *
11 * All rights reserved.
12 *
13 * This source code is distributed under a dual license of GPL v2.0 and OpenIB
14 * BSD.
15 *
16 * OpenIB BSD License
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are met:
20 *
21 * Redistributions of source code must retain the above copyright notice, this
22 * list of conditions and the following disclaimer.
23 *
24 * Redistributions in binary form must reproduce the above copyright notice,
25 * this list of conditions and the following disclaimer in the documentation
26 * and/or other materials
27 * provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
33 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
34 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
35 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
36 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
37 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
38 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39 * POSSIBILITY OF SUCH DAMAGE.
40 */
41
42#ifndef __EHCA_CLASSES_H__
43#define __EHCA_CLASSES_H__
44
45#include "ehca_classes.h"
46#include "ipz_pt_fn.h"
47
48struct ehca_module;
49struct ehca_qp;
50struct ehca_cq;
51struct ehca_eq;
52struct ehca_mr;
53struct ehca_mw;
54struct ehca_pd;
55struct ehca_av;
56
57#ifdef CONFIG_PPC64
58#include "ehca_classes_pSeries.h"
59#endif
60
61#include <rdma/ib_verbs.h>
62#include <rdma/ib_user_verbs.h>
63
64#include "ehca_irq.h"
65
66struct ehca_eq {
67 u32 length;
68 struct ipz_queue ipz_queue;
69 struct ipz_eq_handle ipz_eq_handle;
70 struct work_struct work;
71 struct h_galpas galpas;
72 int is_initialized;
73 struct ehca_pfeq pf;
74 spinlock_t spinlock;
75 struct tasklet_struct interrupt_task;
76 u32 ist;
77};
78
79struct ehca_sport {
80 struct ib_cq *ibcq_aqp1;
81 struct ib_qp *ibqp_aqp1;
82 enum ib_rate rate;
83 enum ib_port_state port_state;
84};
85
86struct ehca_shca {
87 struct ib_device ib_device;
88 struct ibmebus_dev *ibmebus_dev;
89 u8 num_ports;
90 int hw_level;
91 struct list_head shca_list;
92 struct ipz_adapter_handle ipz_hca_handle;
93 struct ehca_sport sport[2];
94 struct ehca_eq eq;
95 struct ehca_eq neq;
96 struct ehca_mr *maxmr;
97 struct ehca_pd *pd;
98 struct h_galpas galpas;
99};
100
101struct ehca_pd {
102 struct ib_pd ib_pd;
103 struct ipz_pd fw_pd;
104 u32 ownpid;
105};
106
107struct ehca_qp {
108 struct ib_qp ib_qp;
109 u32 qp_type;
110 struct ipz_queue ipz_squeue;
111 struct ipz_queue ipz_rqueue;
112 struct h_galpas galpas;
113 u32 qkey;
114 u32 real_qp_num;
115 u32 token;
116 spinlock_t spinlock_s;
117 spinlock_t spinlock_r;
118 u32 sq_max_inline_data_size;
119 struct ipz_qp_handle ipz_qp_handle;
120 struct ehca_pfqp pf;
121 struct ib_qp_init_attr init_attr;
Heiko J Schickfab97222006-09-22 15:22:22 -0700122 struct ehca_cq *send_cq;
123 struct ehca_cq *recv_cq;
124 unsigned int sqerr_purgeflag;
125 struct hlist_node list_entries;
Hoang-Nam Nguyen4c34bdf2007-01-24 00:13:35 +0100126 /* mmap counter for resources mapped into user space */
127 u32 mm_count_squeue;
128 u32 mm_count_rqueue;
129 u32 mm_count_galpa;
Heiko J Schickfab97222006-09-22 15:22:22 -0700130};
131
132/* must be power of 2 */
133#define QP_HASHTAB_LEN 8
134
135struct ehca_cq {
136 struct ib_cq ib_cq;
137 struct ipz_queue ipz_queue;
138 struct h_galpas galpas;
139 spinlock_t spinlock;
140 u32 cq_number;
141 u32 token;
142 u32 nr_of_entries;
143 struct ipz_cq_handle ipz_cq_handle;
144 struct ehca_pfcq pf;
145 spinlock_t cb_lock;
Heiko J Schickfab97222006-09-22 15:22:22 -0700146 struct hlist_head qp_hashtab[QP_HASHTAB_LEN];
147 struct list_head entry;
148 u32 nr_callbacks;
149 spinlock_t task_lock;
150 u32 ownpid;
Hoang-Nam Nguyen4c34bdf2007-01-24 00:13:35 +0100151 /* mmap counter for resources mapped into user space */
152 u32 mm_count_queue;
153 u32 mm_count_galpa;
Heiko J Schickfab97222006-09-22 15:22:22 -0700154};
155
156enum ehca_mr_flag {
157 EHCA_MR_FLAG_FMR = 0x80000000, /* FMR, created with ehca_alloc_fmr */
158 EHCA_MR_FLAG_MAXMR = 0x40000000, /* max-MR */
159};
160
161struct ehca_mr {
162 union {
163 struct ib_mr ib_mr; /* must always be first in ehca_mr */
164 struct ib_fmr ib_fmr; /* must always be first in ehca_mr */
165 } ib;
166 spinlock_t mrlock;
167
168 enum ehca_mr_flag flags;
169 u32 num_pages; /* number of MR pages */
170 u32 num_4k; /* number of 4k "page" portions to form MR */
171 int acl; /* ACL (stored here for usage in reregister) */
172 u64 *start; /* virtual start address (stored here for */
173 /* usage in reregister) */
174 u64 size; /* size (stored here for usage in reregister) */
175 u32 fmr_page_size; /* page size for FMR */
176 u32 fmr_max_pages; /* max pages for FMR */
177 u32 fmr_max_maps; /* max outstanding maps for FMR */
178 u32 fmr_map_cnt; /* map counter for FMR */
179 /* fw specific data */
180 struct ipz_mrmw_handle ipz_mr_handle; /* MR handle for h-calls */
181 struct h_galpas galpas;
182 /* data for userspace bridge */
183 u32 nr_of_pages;
184 void *pagearray;
185};
186
187struct ehca_mw {
188 struct ib_mw ib_mw; /* gen2 mw, must always be first in ehca_mw */
189 spinlock_t mwlock;
190
191 u8 never_bound; /* indication MW was never bound */
192 struct ipz_mrmw_handle ipz_mw_handle; /* MW handle for h-calls */
193 struct h_galpas galpas;
194};
195
196enum ehca_mr_pgi_type {
197 EHCA_MR_PGI_PHYS = 1, /* type of ehca_reg_phys_mr,
198 * ehca_rereg_phys_mr,
199 * ehca_reg_internal_maxmr */
200 EHCA_MR_PGI_USER = 2, /* type of ehca_reg_user_mr */
201 EHCA_MR_PGI_FMR = 3 /* type of ehca_map_phys_fmr */
202};
203
204struct ehca_mr_pginfo {
205 enum ehca_mr_pgi_type type;
206 u64 num_pages;
207 u64 page_cnt;
208 u64 num_4k; /* number of 4k "page" portions */
209 u64 page_4k_cnt; /* counter for 4k "page" portions */
210 u64 next_4k; /* next 4k "page" portion in buffer/chunk/listelem */
211
212 /* type EHCA_MR_PGI_PHYS section */
213 int num_phys_buf;
214 struct ib_phys_buf *phys_buf_array;
215 u64 next_buf;
216
217 /* type EHCA_MR_PGI_USER section */
218 struct ib_umem *region;
219 struct ib_umem_chunk *next_chunk;
220 u64 next_nmap;
221
222 /* type EHCA_MR_PGI_FMR section */
223 u64 *page_list;
224 u64 next_listelem;
225 /* next_4k also used within EHCA_MR_PGI_FMR */
226};
227
228/* output parameters for MR/FMR hipz calls */
229struct ehca_mr_hipzout_parms {
230 struct ipz_mrmw_handle handle;
231 u32 lkey;
232 u32 rkey;
233 u64 len;
234 u64 vaddr;
235 u32 acl;
236};
237
238/* output parameters for MW hipz calls */
239struct ehca_mw_hipzout_parms {
240 struct ipz_mrmw_handle handle;
241 u32 rkey;
242};
243
244struct ehca_av {
245 struct ib_ah ib_ah;
246 struct ehca_ud_av av;
247};
248
249struct ehca_ucontext {
250 struct ib_ucontext ib_ucontext;
251};
252
253struct ehca_module *ehca_module_new(void);
254
255int ehca_module_delete(struct ehca_module *me);
256
257int ehca_eq_ctor(struct ehca_eq *eq);
258
259int ehca_eq_dtor(struct ehca_eq *eq);
260
261struct ehca_shca *ehca_shca_new(void);
262
263int ehca_shca_delete(struct ehca_shca *me);
264
265struct ehca_sport *ehca_sport_new(struct ehca_shca *anchor);
266
267int ehca_init_pd_cache(void);
268void ehca_cleanup_pd_cache(void);
269int ehca_init_cq_cache(void);
270void ehca_cleanup_cq_cache(void);
271int ehca_init_qp_cache(void);
272void ehca_cleanup_qp_cache(void);
273int ehca_init_av_cache(void);
274void ehca_cleanup_av_cache(void);
275int ehca_init_mrmw_cache(void);
276void ehca_cleanup_mrmw_cache(void);
277
278extern spinlock_t ehca_qp_idr_lock;
279extern spinlock_t ehca_cq_idr_lock;
280extern struct idr ehca_qp_idr;
281extern struct idr ehca_cq_idr;
282
283extern int ehca_static_rate;
284extern int ehca_port_act_time;
285extern int ehca_use_hp_mr;
286
287struct ipzu_queue_resp {
Heiko J Schickfab97222006-09-22 15:22:22 -0700288 u32 qe_size; /* queue entry size */
289 u32 act_nr_of_sg;
290 u32 queue_length; /* queue length allocated in bytes */
291 u32 pagesize;
292 u32 toggle_state;
293 u32 dummy; /* padding for 8 byte alignment */
294};
295
296struct ehca_create_cq_resp {
297 u32 cq_number;
298 u32 token;
299 struct ipzu_queue_resp ipz_queue;
Heiko J Schickfab97222006-09-22 15:22:22 -0700300};
301
302struct ehca_create_qp_resp {
303 u32 qp_num;
304 u32 token;
305 u32 qp_type;
306 u32 qkey;
307 /* qp_num assigned by ehca: sqp0/1 may have got different numbers */
308 u32 real_qp_num;
309 u32 dummy; /* padding for 8 byte alignment */
310 struct ipzu_queue_resp ipz_squeue;
311 struct ipzu_queue_resp ipz_rqueue;
Heiko J Schickfab97222006-09-22 15:22:22 -0700312};
313
314struct ehca_alloc_cq_parms {
315 u32 nr_cqe;
316 u32 act_nr_of_entries;
317 u32 act_pages;
318 struct ipz_eq_handle eq_handle;
319};
320
321struct ehca_alloc_qp_parms {
322 int servicetype;
323 int sigtype;
324 int daqp_ctrl;
325 int max_send_sge;
326 int max_recv_sge;
327 int ud_av_l_key_ctl;
328
329 u16 act_nr_send_wqes;
330 u16 act_nr_recv_wqes;
331 u8 act_nr_recv_sges;
332 u8 act_nr_send_sges;
333
334 u32 nr_rq_pages;
335 u32 nr_sq_pages;
336
337 struct ipz_eq_handle ipz_eq_handle;
338 struct ipz_pd pd;
339};
340
341int ehca_cq_assign_qp(struct ehca_cq *cq, struct ehca_qp *qp);
342int ehca_cq_unassign_qp(struct ehca_cq *cq, unsigned int qp_num);
343struct ehca_qp* ehca_cq_get_qp(struct ehca_cq *cq, int qp_num);
344
345#endif