mem.c 6.3 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
 *
 * 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.
 */

#include <linux/module.h>
#include <rdma/ib_umem.h>
35
#include <rdma/ib_umem_odp.h>
36 37 38 39
#include "mlx5_ib.h"

/* @umem: umem object to scan
 * @addr: ib virtual address requested by the user
40
 * @max_page_shift: high limit for page_shift - 0 means no limit
41 42 43 44 45
 * @count: number of PAGE_SIZE pages covered by umem
 * @shift: page shift for the compound pages found in the region
 * @ncont: number of compund pages
 * @order: log2 of the number of compound pages
 */
46 47 48
void mlx5_ib_cont_pages(struct ib_umem *umem, u64 addr,
			unsigned long max_page_shift,
			int *count, int *shift,
49 50 51 52
			int *ncont, int *order)
{
	unsigned long tmp;
	unsigned long m;
53
	int i, k;
54 55 56 57 58 59
	u64 base = 0;
	int p = 0;
	int skip;
	int mask;
	u64 len;
	u64 pfn;
60 61
	struct scatterlist *sg;
	int entry;
62
	unsigned long page_shift = umem->page_shift;
63

64
	if (umem->odp_data) {
65 66 67
		*ncont = ib_umem_page_count(umem);
		*count = *ncont << (page_shift - PAGE_SHIFT);
		*shift = page_shift;
68
		if (order)
69
			*order = ilog2(roundup_pow_of_two(*ncont));
70 71 72 73

		return;
	}

74
	addr = addr >> page_shift;
75
	tmp = (unsigned long)addr;
76
	m = find_first_bit(&tmp, BITS_PER_LONG);
77 78
	if (max_page_shift)
		m = min_t(unsigned long, max_page_shift - page_shift, m);
79 80 81
	skip = 1 << m;
	mask = skip - 1;
	i = 0;
82
	for_each_sg(umem->sg_head.sgl, sg, umem->nmap, entry) {
83 84
		len = sg_dma_len(sg) >> page_shift;
		pfn = sg_dma_address(sg) >> page_shift;
85 86 87
		for (k = 0; k < len; k++) {
			if (!(i & mask)) {
				tmp = (unsigned long)pfn;
88
				m = min_t(unsigned long, m, find_first_bit(&tmp, BITS_PER_LONG));
89 90 91 92 93 94 95
				skip = 1 << m;
				mask = skip - 1;
				base = pfn;
				p = 0;
			} else {
				if (base + p != pfn) {
					tmp = (unsigned long)p;
96
					m = find_first_bit(&tmp, BITS_PER_LONG);
97 98 99 100 101 102
					skip = 1 << m;
					mask = skip - 1;
					base = pfn;
					p = 0;
				}
			}
103 104
			p++;
			i++;
105
		}
106
	}
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122

	if (i) {
		m = min_t(unsigned long, ilog2(roundup_pow_of_two(i)), m);

		if (order)
			*order = ilog2(roundup_pow_of_two(i) >> m);

		*ncont = DIV_ROUND_UP(i, (1 << m));
	} else {
		m  = 0;

		if (order)
			*order = 0;

		*ncont = 0;
	}
123
	*shift = page_shift + m;
124 125 126
	*count = i;
}

127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
static u64 umem_dma_to_mtt(dma_addr_t umem_dma)
{
	u64 mtt_entry = umem_dma & ODP_DMA_ADDR_MASK;

	if (umem_dma & ODP_READ_ALLOWED_BIT)
		mtt_entry |= MLX5_IB_MTT_READ;
	if (umem_dma & ODP_WRITE_ALLOWED_BIT)
		mtt_entry |= MLX5_IB_MTT_WRITE;

	return mtt_entry;
}
#endif

/*
 * Populate the given array with bus addresses from the umem.
 *
 * dev - mlx5_ib device
 * umem - umem to use to fill the pages
 * page_shift - determines the page size used in the resulting array
147 148 149
 * offset - offset into the umem to start from,
 *          only implemented for ODP umems
 * num_pages - total number of pages to fill
150 151 152 153
 * pas - bus addresses array to fill
 * access_flags - access flags to set on all present pages.
		  use enum mlx5_ib_mtt_access_flags for this.
 */
154 155 156
void __mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
			    int page_shift, size_t offset, size_t num_pages,
			    __be64 *pas, int access_flags)
157
{
158
	unsigned long umem_page_shift = umem->page_shift;
159
	int shift = page_shift - umem_page_shift;
160
	int mask = (1 << shift) - 1;
161
	int i, k, idx;
162 163 164
	u64 cur = 0;
	u64 base;
	int len;
165 166
	struct scatterlist *sg;
	int entry;
167 168 169 170 171 172 173 174
#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
	const bool odp = umem->odp_data != NULL;

	if (odp) {
		WARN_ON(shift != 0);
		WARN_ON(access_flags != (MLX5_IB_MTT_READ | MLX5_IB_MTT_WRITE));

		for (i = 0; i < num_pages; ++i) {
175
			dma_addr_t pa = umem->odp_data->dma_list[offset + i];
176 177 178 179 180 181

			pas[i] = cpu_to_be64(umem_dma_to_mtt(pa));
		}
		return;
	}
#endif
182 183

	i = 0;
184
	for_each_sg(umem->sg_head.sgl, sg, umem->nmap, entry) {
185
		len = sg_dma_len(sg) >> umem_page_shift;
186
		base = sg_dma_address(sg);
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

		/* Skip elements below offset */
		if (i + len < offset << shift) {
			i += len;
			continue;
		}

		/* Skip pages below offset */
		if (i < offset << shift) {
			k = (offset << shift) - i;
			i = offset << shift;
		} else {
			k = 0;
		}

		for (; k < len; k++) {
203
			if (!(i & mask)) {
204
				cur = base + (k << umem_page_shift);
205
				cur |= access_flags;
206
				idx = (i >> shift) - offset;
207

208
				pas[idx] = cpu_to_be64(cur);
209
				mlx5_ib_dbg(dev, "pas[%d] 0x%llx\n",
210 211
					    i >> shift, be64_to_cpu(pas[idx]));
			}
212
			i++;
213 214 215 216

			/* Stop after num_pages reached */
			if (i >> shift >= offset + num_pages)
				return;
217
		}
218
	}
219 220
}

221 222 223 224 225 226 227
void mlx5_ib_populate_pas(struct mlx5_ib_dev *dev, struct ib_umem *umem,
			  int page_shift, __be64 *pas, int access_flags)
{
	return __mlx5_ib_populate_pas(dev, umem, page_shift, 0,
				      ib_umem_num_pages(umem), pas,
				      access_flags);
}
228 229 230 231 232 233 234 235
int mlx5_ib_get_buf_offset(u64 addr, int page_shift, u32 *offset)
{
	u64 page_size;
	u64 page_mask;
	u64 off_size;
	u64 off_mask;
	u64 buf_off;

236
	page_size = (u64)1 << page_shift;
237 238 239 240 241 242 243 244 245 246 247
	page_mask = page_size - 1;
	buf_off = addr & page_mask;
	off_size = page_size >> 6;
	off_mask = off_size - 1;

	if (buf_off & off_mask)
		return -EINVAL;

	*offset = buf_off >> ilog2(off_size);
	return 0;
}