| /* |
| * Copyright (c) 2012 Mellanox Technologies, Inc. All rights reserved. |
| * |
| * This software is available to you under a choice of one of two |
| * licenses. You may choose to be licensed under the terms of the GNU |
| * General Public License (GPL) Version 2, available from the file |
| * COPYING in the main directory of this source tree, or the |
| * OpenIB.org BSD license below: |
| * |
| * Redistribution and use in source and binary forms, with or |
| * without modification, are permitted provided that the following |
| * conditions are met: |
| * |
| * - Redistributions of source code must retain the above |
| * copyright notice, this list of conditions and the following |
| * disclaimer. |
| * |
| * - Redistributions in binary form must reproduce the above |
| * copyright notice, this list of conditions and the following |
| * disclaimer in the documentation and/or other materials |
| * provided with the distribution. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| * SOFTWARE. |
| */ |
| #define _GNU_SOURCE |
| #include <config.h> |
| |
| #include <stdlib.h> |
| #include <pthread.h> |
| #include <string.h> |
| |
| #include "mlx5.h" |
| |
| struct mlx5_db_page { |
| struct mlx5_db_page *prev, *next; |
| struct mlx5_buf buf; |
| int num_db; |
| int use_cnt; |
| unsigned long free[0]; |
| }; |
| |
| static struct mlx5_db_page *__add_page(struct mlx5_context *context) |
| { |
| struct mlx5_db_page *page; |
| int ps = to_mdev(context->ibv_ctx.context.device)->page_size; |
| int pp; |
| int i; |
| int nlong; |
| int ret; |
| |
| pp = ps / context->cache_line_size; |
| nlong = (pp + 8 * sizeof(long) - 1) / (8 * sizeof(long)); |
| |
| page = malloc(sizeof *page + nlong * sizeof(long)); |
| if (!page) |
| return NULL; |
| |
| if (mlx5_is_extern_alloc(context)) |
| ret = mlx5_alloc_buf_extern(context, &page->buf, ps); |
| else |
| ret = mlx5_alloc_buf(&page->buf, ps, ps); |
| if (ret) { |
| free(page); |
| return NULL; |
| } |
| |
| page->num_db = pp; |
| page->use_cnt = 0; |
| for (i = 0; i < nlong; ++i) |
| page->free[i] = ~0; |
| |
| page->prev = NULL; |
| page->next = context->db_list; |
| context->db_list = page; |
| if (page->next) |
| page->next->prev = page; |
| |
| return page; |
| } |
| |
| __be32 *mlx5_alloc_dbrec(struct mlx5_context *context, struct ibv_pd *pd, |
| bool *custom_alloc) |
| { |
| struct mlx5_db_page *page; |
| __be32 *db = NULL; |
| int i, j; |
| |
| if (mlx5_is_custom_alloc(pd)) { |
| struct mlx5_parent_domain *mparent_domain = to_mparent_domain(pd); |
| |
| db = mparent_domain->alloc(&mparent_domain->mpd.ibv_pd, |
| mparent_domain->pd_context, 8, 8, |
| MLX5DV_RES_TYPE_DBR); |
| |
| if (db == IBV_ALLOCATOR_USE_DEFAULT) |
| goto default_alloc; |
| |
| if (!db) |
| return NULL; |
| |
| *custom_alloc = true; |
| return db; |
| } |
| |
| default_alloc: |
| pthread_mutex_lock(&context->db_list_mutex); |
| |
| for (page = context->db_list; page; page = page->next) |
| if (page->use_cnt < page->num_db) |
| goto found; |
| |
| page = __add_page(context); |
| if (!page) |
| goto out; |
| |
| found: |
| ++page->use_cnt; |
| |
| for (i = 0; !page->free[i]; ++i) |
| /* nothing */; |
| |
| j = ffsl(page->free[i]); |
| --j; |
| page->free[i] &= ~(1UL << j); |
| db = page->buf.buf + (i * 8 * sizeof(long) + j) * context->cache_line_size; |
| |
| out: |
| pthread_mutex_unlock(&context->db_list_mutex); |
| |
| return db; |
| } |
| |
| void mlx5_free_db(struct mlx5_context *context, __be32 *db, struct ibv_pd *pd, |
| bool custom_alloc) |
| { |
| struct mlx5_db_page *page; |
| uintptr_t ps = to_mdev(context->ibv_ctx.context.device)->page_size; |
| int i; |
| |
| if (custom_alloc) { |
| struct mlx5_parent_domain *mparent_domain = to_mparent_domain(pd); |
| |
| mparent_domain->free(&mparent_domain->mpd.ibv_pd, |
| mparent_domain->pd_context, |
| db, |
| MLX5DV_RES_TYPE_DBR); |
| return; |
| } |
| |
| pthread_mutex_lock(&context->db_list_mutex); |
| |
| for (page = context->db_list; page; page = page->next) |
| if (((uintptr_t) db & ~(ps - 1)) == (uintptr_t) page->buf.buf) |
| break; |
| |
| if (!page) |
| goto out; |
| |
| i = ((void *) db - page->buf.buf) / context->cache_line_size; |
| page->free[i / (8 * sizeof(long))] |= 1UL << (i % (8 * sizeof(long))); |
| |
| if (!--page->use_cnt) { |
| if (page->prev) |
| page->prev->next = page->next; |
| else |
| context->db_list = page->next; |
| if (page->next) |
| page->next->prev = page->prev; |
| |
| if (page->buf.type == MLX5_ALLOC_TYPE_EXTERNAL) |
| mlx5_free_buf_extern(context, &page->buf); |
| else |
| mlx5_free_buf(&page->buf); |
| |
| free(page); |
| } |
| |
| out: |
| pthread_mutex_unlock(&context->db_list_mutex); |
| } |