2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, 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
33 * $Id: fmr_pool.c 2730 2005-06-28 16:43:03Z sean.hefty $
36 #include <linux/errno.h>
37 #include <linux/spinlock.h>
38 #include <linux/slab.h>
39 #include <linux/jhash.h>
40 #include <linux/kthread.h>
42 #include <rdma/ib_fmr_pool.h>
44 #include "core_priv.h"
46 #define PFX "fmr_pool: "
49 IB_FMR_MAX_REMAPS = 32,
52 IB_FMR_HASH_SIZE = 1 << IB_FMR_HASH_BITS,
53 IB_FMR_HASH_MASK = IB_FMR_HASH_SIZE - 1
57 * If an FMR is not in use, then the list member will point to either
58 * its pool's free_list (if the FMR can be mapped again; that is,
59 * remap_count < pool->max_remaps) or its pool's dirty_list (if the
60 * FMR needs to be unmapped before being remapped). In either of
61 * these cases it is a bug if the ref_count is not 0. In other words,
62 * if ref_count is > 0, then the list member must not be linked into
63 * either free_list or dirty_list.
65 * The cache_node member is used to link the FMR into a cache bucket
66 * (if caching is enabled). This is independent of the reference
67 * count of the FMR. When a valid FMR is released, its ref_count is
68 * decremented, and if ref_count reaches 0, the FMR is placed in
69 * either free_list or dirty_list as appropriate. However, it is not
70 * removed from the cache and may be "revived" if a call to
71 * ib_fmr_register_physical() occurs before the FMR is remapped. In
72 * this case we just increment the ref_count and remove the FMR from
73 * free_list/dirty_list.
75 * Before we remap an FMR from free_list, we remove it from the cache
76 * (to prevent another user from obtaining a stale FMR). When an FMR
77 * is released, we add it to the tail of the free list, so that our
78 * cache eviction policy is "least recently used."
80 * All manipulation of ref_count, list and cache_node is protected by
81 * pool_lock to maintain consistency.
92 struct list_head free_list;
93 struct list_head dirty_list;
94 struct hlist_head *cache_bucket;
96 void (*flush_function)(struct ib_fmr_pool *pool,
100 struct task_struct *thread;
105 wait_queue_head_t force_wait;
108 static inline u32 ib_fmr_hash(u64 first_page)
110 return jhash_2words((u32) first_page, (u32) (first_page >> 32), 0) &
111 (IB_FMR_HASH_SIZE - 1);
114 /* Caller must hold pool_lock */
115 static inline struct ib_pool_fmr *ib_fmr_cache_lookup(struct ib_fmr_pool *pool,
118 u64 io_virtual_address)
120 struct hlist_head *bucket;
121 struct ib_pool_fmr *fmr;
122 struct hlist_node *pos;
124 if (!pool->cache_bucket)
127 bucket = pool->cache_bucket + ib_fmr_hash(*page_list);
129 hlist_for_each_entry(fmr, pos, bucket, cache_node)
130 if (io_virtual_address == fmr->io_virtual_address &&
131 page_list_len == fmr->page_list_len &&
132 !memcmp(page_list, fmr->page_list,
133 page_list_len * sizeof *page_list))
139 static void ib_fmr_batch_release(struct ib_fmr_pool *pool)
142 struct ib_pool_fmr *fmr;
143 LIST_HEAD(unmap_list);
146 spin_lock_irq(&pool->pool_lock);
148 list_for_each_entry(fmr, &pool->dirty_list, list) {
149 hlist_del_init(&fmr->cache_node);
150 fmr->remap_count = 0;
151 list_add_tail(&fmr->fmr->list, &fmr_list);
154 if (fmr->ref_count !=0) {
155 printk(KERN_WARNING PFX "Unmapping FMR 0x%08x with ref count %d\n",
156 fmr, fmr->ref_count);
161 list_splice_init(&pool->dirty_list, &unmap_list);
164 spin_unlock_irq(&pool->pool_lock);
166 if (list_empty(&unmap_list)) {
170 ret = ib_unmap_fmr(&fmr_list);
172 printk(KERN_WARNING PFX "ib_unmap_fmr returned %d\n", ret);
174 spin_lock_irq(&pool->pool_lock);
175 list_splice(&unmap_list, &pool->free_list);
176 spin_unlock_irq(&pool->pool_lock);
179 static int ib_fmr_cleanup_thread(void *pool_ptr)
181 struct ib_fmr_pool *pool = pool_ptr;
184 if (atomic_read(&pool->flush_ser) - atomic_read(&pool->req_ser) < 0) {
185 ib_fmr_batch_release(pool);
187 atomic_inc(&pool->flush_ser);
188 wake_up_interruptible(&pool->force_wait);
190 if (pool->flush_function)
191 pool->flush_function(pool, pool->flush_arg);
194 set_current_state(TASK_INTERRUPTIBLE);
195 if (atomic_read(&pool->flush_ser) - atomic_read(&pool->req_ser) >= 0 &&
196 !kthread_should_stop())
198 __set_current_state(TASK_RUNNING);
199 } while (!kthread_should_stop());
205 * ib_create_fmr_pool - Create an FMR pool
206 * @pd:Protection domain for FMRs
207 * @params:FMR pool parameters
209 * Create a pool of FMRs. Return value is pointer to new pool or
210 * error code if creation failed.
212 struct ib_fmr_pool *ib_create_fmr_pool(struct ib_pd *pd,
213 struct ib_fmr_pool_param *params)
215 struct ib_device *device;
216 struct ib_fmr_pool *pool;
217 struct ib_device_attr *attr;
223 return ERR_PTR(-EINVAL);
226 if (!device->alloc_fmr || !device->dealloc_fmr ||
227 !device->map_phys_fmr || !device->unmap_fmr) {
228 printk(KERN_INFO PFX "Device %s does not support FMRs\n",
230 return ERR_PTR(-ENOSYS);
233 attr = kmalloc(sizeof *attr, GFP_KERNEL);
235 printk(KERN_WARNING PFX "couldn't allocate device attr struct\n");
236 return ERR_PTR(-ENOMEM);
239 ret = ib_query_device(device, attr);
241 printk(KERN_WARNING PFX "couldn't query device: %d\n", ret);
246 if (!attr->max_map_per_fmr)
247 max_remaps = IB_FMR_MAX_REMAPS;
249 max_remaps = attr->max_map_per_fmr;
253 pool = kmalloc(sizeof *pool, GFP_KERNEL);
255 printk(KERN_WARNING PFX "couldn't allocate pool struct\n");
256 return ERR_PTR(-ENOMEM);
259 pool->cache_bucket = NULL;
261 pool->flush_function = params->flush_function;
262 pool->flush_arg = params->flush_arg;
264 INIT_LIST_HEAD(&pool->free_list);
265 INIT_LIST_HEAD(&pool->dirty_list);
269 kmalloc(IB_FMR_HASH_SIZE * sizeof *pool->cache_bucket,
271 if (!pool->cache_bucket) {
272 printk(KERN_WARNING PFX "Failed to allocate cache in pool\n");
277 for (i = 0; i < IB_FMR_HASH_SIZE; ++i)
278 INIT_HLIST_HEAD(pool->cache_bucket + i);
282 pool->max_pages = params->max_pages_per_fmr;
283 pool->max_remaps = max_remaps;
284 pool->dirty_watermark = params->dirty_watermark;
286 spin_lock_init(&pool->pool_lock);
287 atomic_set(&pool->req_ser, 0);
288 atomic_set(&pool->flush_ser, 0);
289 init_waitqueue_head(&pool->force_wait);
291 pool->thread = kthread_run(ib_fmr_cleanup_thread,
295 if (IS_ERR(pool->thread)) {
296 printk(KERN_WARNING PFX "couldn't start cleanup thread\n");
297 ret = PTR_ERR(pool->thread);
302 struct ib_pool_fmr *fmr;
303 struct ib_fmr_attr fmr_attr = {
304 .max_pages = params->max_pages_per_fmr,
305 .max_maps = pool->max_remaps,
306 .page_shift = params->page_shift
308 int bytes_per_fmr = sizeof *fmr;
310 if (pool->cache_bucket)
311 bytes_per_fmr += params->max_pages_per_fmr * sizeof (u64);
313 for (i = 0; i < params->pool_size; ++i) {
314 fmr = kmalloc(bytes_per_fmr, GFP_KERNEL);
316 printk(KERN_WARNING PFX "failed to allocate fmr "
317 "struct for FMR %d\n", i);
322 fmr->remap_count = 0;
324 INIT_HLIST_NODE(&fmr->cache_node);
326 fmr->fmr = ib_alloc_fmr(pd, params->access, &fmr_attr);
327 if (IS_ERR(fmr->fmr)) {
328 printk(KERN_WARNING PFX "fmr_create failed "
334 list_add_tail(&fmr->list, &pool->free_list);
342 kfree(pool->cache_bucket);
348 ib_destroy_fmr_pool(pool);
350 return ERR_PTR(-ENOMEM);
352 EXPORT_SYMBOL(ib_create_fmr_pool);
355 * ib_destroy_fmr_pool - Free FMR pool
356 * @pool:FMR pool to free
358 * Destroy an FMR pool and free all associated resources.
360 void ib_destroy_fmr_pool(struct ib_fmr_pool *pool)
362 struct ib_pool_fmr *fmr;
363 struct ib_pool_fmr *tmp;
367 kthread_stop(pool->thread);
368 ib_fmr_batch_release(pool);
371 list_for_each_entry_safe(fmr, tmp, &pool->free_list, list) {
372 if (fmr->remap_count) {
373 INIT_LIST_HEAD(&fmr_list);
374 list_add_tail(&fmr->fmr->list, &fmr_list);
375 ib_unmap_fmr(&fmr_list);
377 ib_dealloc_fmr(fmr->fmr);
378 list_del(&fmr->list);
383 if (i < pool->pool_size)
384 printk(KERN_WARNING PFX "pool still has %d regions registered\n",
385 pool->pool_size - i);
387 kfree(pool->cache_bucket);
390 EXPORT_SYMBOL(ib_destroy_fmr_pool);
393 * ib_flush_fmr_pool - Invalidate all unmapped FMRs
394 * @pool:FMR pool to flush
396 * Ensure that all unmapped FMRs are fully invalidated.
398 int ib_flush_fmr_pool(struct ib_fmr_pool *pool)
401 struct ib_pool_fmr *fmr, *next;
404 * The free_list holds FMRs that may have been used
405 * but have not been remapped enough times to be dirty.
406 * Put them on the dirty list now so that the cleanup
407 * thread will reap them too.
409 spin_lock_irq(&pool->pool_lock);
410 list_for_each_entry_safe(fmr, next, &pool->free_list, list) {
411 if (fmr->remap_count > 0)
412 list_move(&fmr->list, &pool->dirty_list);
414 spin_unlock_irq(&pool->pool_lock);
416 serial = atomic_inc_return(&pool->req_ser);
417 wake_up_process(pool->thread);
419 if (wait_event_interruptible(pool->force_wait,
420 atomic_read(&pool->flush_ser) - serial >= 0))
425 EXPORT_SYMBOL(ib_flush_fmr_pool);
428 * ib_fmr_pool_map_phys -
429 * @pool:FMR pool to allocate FMR from
430 * @page_list:List of pages to map
431 * @list_len:Number of pages in @page_list
432 * @io_virtual_address:I/O virtual address for new FMR
434 * Map an FMR from an FMR pool.
436 struct ib_pool_fmr *ib_fmr_pool_map_phys(struct ib_fmr_pool *pool_handle,
439 u64 io_virtual_address)
441 struct ib_fmr_pool *pool = pool_handle;
442 struct ib_pool_fmr *fmr;
446 if (list_len < 1 || list_len > pool->max_pages)
447 return ERR_PTR(-EINVAL);
449 spin_lock_irqsave(&pool->pool_lock, flags);
450 fmr = ib_fmr_cache_lookup(pool,
457 if (fmr->ref_count == 1) {
458 list_del(&fmr->list);
461 spin_unlock_irqrestore(&pool->pool_lock, flags);
466 if (list_empty(&pool->free_list)) {
467 spin_unlock_irqrestore(&pool->pool_lock, flags);
468 return ERR_PTR(-EAGAIN);
471 fmr = list_entry(pool->free_list.next, struct ib_pool_fmr, list);
472 list_del(&fmr->list);
473 hlist_del_init(&fmr->cache_node);
474 spin_unlock_irqrestore(&pool->pool_lock, flags);
476 result = ib_map_phys_fmr(fmr->fmr, page_list, list_len,
480 spin_lock_irqsave(&pool->pool_lock, flags);
481 list_add(&fmr->list, &pool->free_list);
482 spin_unlock_irqrestore(&pool->pool_lock, flags);
484 printk(KERN_WARNING PFX "fmr_map returns %d\n", result);
486 return ERR_PTR(result);
492 if (pool->cache_bucket) {
493 fmr->io_virtual_address = io_virtual_address;
494 fmr->page_list_len = list_len;
495 memcpy(fmr->page_list, page_list, list_len * sizeof(*page_list));
497 spin_lock_irqsave(&pool->pool_lock, flags);
498 hlist_add_head(&fmr->cache_node,
499 pool->cache_bucket + ib_fmr_hash(fmr->page_list[0]));
500 spin_unlock_irqrestore(&pool->pool_lock, flags);
505 EXPORT_SYMBOL(ib_fmr_pool_map_phys);
508 * ib_fmr_pool_unmap - Unmap FMR
511 * Unmap an FMR. The FMR mapping may remain valid until the FMR is
512 * reused (or until ib_flush_fmr_pool() is called).
514 int ib_fmr_pool_unmap(struct ib_pool_fmr *fmr)
516 struct ib_fmr_pool *pool;
521 spin_lock_irqsave(&pool->pool_lock, flags);
524 if (!fmr->ref_count) {
525 if (fmr->remap_count < pool->max_remaps) {
526 list_add_tail(&fmr->list, &pool->free_list);
528 list_add_tail(&fmr->list, &pool->dirty_list);
529 if (++pool->dirty_len >= pool->dirty_watermark) {
530 atomic_inc(&pool->req_ser);
531 wake_up_process(pool->thread);
537 if (fmr->ref_count < 0)
538 printk(KERN_WARNING PFX "FMR %p has ref count %d < 0\n",
539 fmr, fmr->ref_count);
542 spin_unlock_irqrestore(&pool->pool_lock, flags);
546 EXPORT_SYMBOL(ib_fmr_pool_unmap);