2 * Copyright (c) 2006, 2007 QLogic Corporation. All rights reserved.
3 * Copyright (c) 2005, 2006 PathScale, Inc. All rights reserved.
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the
9 * OpenIB.org BSD license below:
11 * Redistribution and use in source and binary forms, with or
12 * without modification, are permitted provided that the following
15 * - Redistributions of source code must retain the above
16 * copyright notice, this list of conditions and the following
19 * - Redistributions in binary form must reproduce the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer in the documentation and/or other materials
22 * provided with the distribution.
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include "ipath_verbs.h"
37 #include "ipath_kernel.h"
40 * ipath_alloc_lkey - allocate an lkey
41 * @rkt: lkey table in which to allocate the lkey
42 * @mr: memory region that this lkey protects
44 * Returns 1 if successful, otherwise returns 0.
47 int ipath_alloc_lkey(struct ipath_lkey_table
*rkt
, struct ipath_mregion
*mr
)
54 spin_lock_irqsave(&rkt
->lock
, flags
);
56 /* Find the next available LKEY */
59 if (rkt
->table
[r
] == NULL
)
61 r
= (r
+ 1) & (rkt
->max
- 1);
63 spin_unlock_irqrestore(&rkt
->lock
, flags
);
64 ipath_dbg("LKEY table full\n");
69 rkt
->next
= (r
+ 1) & (rkt
->max
- 1);
71 * Make sure lkey is never zero which is reserved to indicate an
75 mr
->lkey
= (r
<< (32 - ib_ipath_lkey_table_size
)) |
76 ((((1 << (24 - ib_ipath_lkey_table_size
)) - 1) & rkt
->gen
)
83 spin_unlock_irqrestore(&rkt
->lock
, flags
);
92 * ipath_free_lkey - free an lkey
93 * @rkt: table from which to free the lkey
94 * @lkey: lkey id to free
96 void ipath_free_lkey(struct ipath_lkey_table
*rkt
, u32 lkey
)
103 r
= lkey
>> (32 - ib_ipath_lkey_table_size
);
104 spin_lock_irqsave(&rkt
->lock
, flags
);
105 rkt
->table
[r
] = NULL
;
106 spin_unlock_irqrestore(&rkt
->lock
, flags
);
110 * ipath_lkey_ok - check IB SGE for validity and initialize
111 * @rkt: table containing lkey to check SGE against
112 * @isge: outgoing internal SGE
116 * Return 1 if valid and successful, otherwise returns 0.
118 * Check the IB SGE for validity and initialize our internal version
121 int ipath_lkey_ok(struct ipath_qp
*qp
, struct ipath_sge
*isge
,
122 struct ib_sge
*sge
, int acc
)
124 struct ipath_lkey_table
*rkt
= &to_idev(qp
->ibqp
.device
)->lk_table
;
125 struct ipath_mregion
*mr
;
131 * We use LKEY == zero for kernel virtual addresses
132 * (see ipath_get_dma_mr and ipath_dma.c).
134 if (sge
->lkey
== 0) {
135 /* always a kernel port, no locking needed */
136 struct ipath_pd
*pd
= to_ipd(qp
->ibqp
.pd
);
143 isge
->vaddr
= (void *) sge
->addr
;
144 isge
->length
= sge
->length
;
145 isge
->sge_length
= sge
->length
;
149 mr
= rkt
->table
[(sge
->lkey
>> (32 - ib_ipath_lkey_table_size
))];
150 if (unlikely(mr
== NULL
|| mr
->lkey
!= sge
->lkey
||
151 qp
->ibqp
.pd
!= mr
->pd
)) {
156 off
= sge
->addr
- mr
->user_base
;
157 if (unlikely(sge
->addr
< mr
->user_base
||
158 off
+ sge
->length
> mr
->length
||
159 (mr
->access_flags
& acc
) != acc
)) {
167 while (off
>= mr
->map
[m
]->segs
[n
].length
) {
168 off
-= mr
->map
[m
]->segs
[n
].length
;
170 if (n
>= IPATH_SEGSZ
) {
176 isge
->vaddr
= mr
->map
[m
]->segs
[n
].vaddr
+ off
;
177 isge
->length
= mr
->map
[m
]->segs
[n
].length
- off
;
178 isge
->sge_length
= sge
->length
;
189 * ipath_rkey_ok - check the IB virtual address, length, and RKEY
190 * @dev: infiniband device
192 * @len: length of data
193 * @vaddr: virtual address to place data
194 * @rkey: rkey to check
197 * Return 1 if successful, otherwise 0.
199 int ipath_rkey_ok(struct ipath_qp
*qp
, struct ipath_sge_state
*ss
,
200 u32 len
, u64 vaddr
, u32 rkey
, int acc
)
202 struct ipath_ibdev
*dev
= to_idev(qp
->ibqp
.device
);
203 struct ipath_lkey_table
*rkt
= &dev
->lk_table
;
204 struct ipath_sge
*sge
= &ss
->sge
;
205 struct ipath_mregion
*mr
;
211 * We use RKEY == zero for kernel virtual addresses
212 * (see ipath_get_dma_mr and ipath_dma.c).
215 /* always a kernel port, no locking needed */
216 struct ipath_pd
*pd
= to_ipd(qp
->ibqp
.pd
);
223 sge
->vaddr
= (void *) vaddr
;
225 sge
->sge_length
= len
;
232 mr
= rkt
->table
[(rkey
>> (32 - ib_ipath_lkey_table_size
))];
233 if (unlikely(mr
== NULL
|| mr
->lkey
!= rkey
||
234 qp
->ibqp
.pd
!= mr
->pd
)) {
239 off
= vaddr
- mr
->iova
;
240 if (unlikely(vaddr
< mr
->iova
|| off
+ len
> mr
->length
||
241 (mr
->access_flags
& acc
) == 0)) {
249 while (off
>= mr
->map
[m
]->segs
[n
].length
) {
250 off
-= mr
->map
[m
]->segs
[n
].length
;
252 if (n
>= IPATH_SEGSZ
) {
258 sge
->vaddr
= mr
->map
[m
]->segs
[n
].vaddr
+ off
;
259 sge
->length
= mr
->map
[m
]->segs
[n
].length
- off
;
260 sge
->sge_length
= len
;