scatterlist.h 7.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _LINUX_SCATTERLIST_H
#define _LINUX_SCATTERLIST_H

H
Hugh Dickins 已提交
4
#include <asm/types.h>
H
Herbert Xu 已提交
5 6 7
#include <asm/scatterlist.h>
#include <linux/mm.h>
#include <linux/string.h>
J
Jens Axboe 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#include <asm/io.h>

/*
 * Notes on SG table design.
 *
 * Architectures must provide an unsigned long page_link field in the
 * scatterlist struct. We use that to place the page pointer AND encode
 * information about the sg table as well. The two lower bits are reserved
 * for this information.
 *
 * If bit 0 is set, then the page_link contains a pointer to the next sg
 * table list. Otherwise the next entry is at sg + 1.
 *
 * If bit 1 is set, then this sg entry is the last element in a list.
 *
 * See sg_next().
 *
 */
L
Linus Torvalds 已提交
26

J
Jens Axboe 已提交
27 28
#define SG_MAGIC	0x87654321

T
Tejun Heo 已提交
29 30 31 32 33 34 35 36 37 38
/*
 * We overload the LSB of the page pointer to indicate whether it's
 * a valid sg entry, or whether it points to the start of a new scatterlist.
 * Those low bits are there for everyone! (thanks mason :-)
 */
#define sg_is_chain(sg)		((sg)->page_link & 0x01)
#define sg_is_last(sg)		((sg)->page_link & 0x02)
#define sg_chain_ptr(sg)	\
	((struct scatterlist *) ((sg)->page_link & ~0x03))

39
/**
40 41 42
 * sg_assign_page - Assign a given page to an SG entry
 * @sg:		    SG entry
 * @page:	    The page
43 44
 *
 * Description:
45 46
 *   Assign page to sg entry. Also see sg_set_page(), the most commonly used
 *   variant.
47 48
 *
 **/
49
static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
50
{
J
Jens Axboe 已提交
51 52
	unsigned long page_link = sg->page_link & 0x3;

53 54 55 56 57
	/*
	 * In order for the low bit stealing approach to work, pages
	 * must be aligned at a 32-bit boundary as a minimum.
	 */
	BUG_ON((unsigned long) page & 0x03);
J
Jens Axboe 已提交
58 59
#ifdef CONFIG_DEBUG_SG
	BUG_ON(sg->sg_magic != SG_MAGIC);
T
Tejun Heo 已提交
60
	BUG_ON(sg_is_chain(sg));
J
Jens Axboe 已提交
61
#endif
J
Jens Axboe 已提交
62
	sg->page_link = page_link | (unsigned long) page;
63 64
}

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
/**
 * sg_set_page - Set sg entry to point at given page
 * @sg:		 SG entry
 * @page:	 The page
 * @len:	 Length of data
 * @offset:	 Offset into page
 *
 * Description:
 *   Use this function to set an sg entry pointing at a page, never assign
 *   the page directly. We encode sg table information in the lower bits
 *   of the page pointer. See sg_page() for looking up the page belonging
 *   to an sg entry.
 *
 **/
static inline void sg_set_page(struct scatterlist *sg, struct page *page,
			       unsigned int len, unsigned int offset)
{
	sg_assign_page(sg, page);
	sg->offset = offset;
	sg->length = len;
}

T
Tejun Heo 已提交
87 88 89 90 91 92 93 94
static inline struct page *sg_page(struct scatterlist *sg)
{
#ifdef CONFIG_DEBUG_SG
	BUG_ON(sg->sg_magic != SG_MAGIC);
	BUG_ON(sg_is_chain(sg));
#endif
	return (struct page *)((sg)->page_link & ~0x3);
}
95

J
Jens Axboe 已提交
96 97 98 99 100 101 102
/**
 * sg_set_buf - Set sg entry to point at given data
 * @sg:		 SG entry
 * @buf:	 Data
 * @buflen:	 Data length
 *
 **/
103
static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
H
Herbert Xu 已提交
104 105
			      unsigned int buflen)
{
106
	sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
L
Linus Torvalds 已提交
107 108
}

109 110 111 112
/**
 * sg_next - return the next scatterlist entry in a list
 * @sg:		The current sg entry
 *
J
Jens Axboe 已提交
113 114 115 116
 * Description:
 *   Usually the next entry will be @sg@ + 1, but if this sg element is part
 *   of a chained scatterlist, it could jump to the start of a new
 *   scatterlist array.
117
 *
J
Jens Axboe 已提交
118
 **/
119 120
static inline struct scatterlist *sg_next(struct scatterlist *sg)
{
J
Jens Axboe 已提交
121 122 123
#ifdef CONFIG_DEBUG_SG
	BUG_ON(sg->sg_magic != SG_MAGIC);
#endif
J
Jens Axboe 已提交
124 125
	if (sg_is_last(sg))
		return NULL;
126

J
Jens Axboe 已提交
127
	sg++;
128 129 130 131 132
	if (unlikely(sg_is_chain(sg)))
		sg = sg_chain_ptr(sg);

	return sg;
}
133 134 135 136 137 138 139

/*
 * Loop over each sg element, following the pointer to a new list if necessary
 */
#define for_each_sg(sglist, sg, nr, __i)	\
	for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))

140 141 142 143 144
/**
 * sg_last - return the last scatterlist entry in a list
 * @sgl:	First entry in the scatterlist
 * @nents:	Number of entries in the scatterlist
 *
J
Jens Axboe 已提交
145 146 147
 * Description:
 *   Should only be used casually, it (currently) scan the entire list
 *   to get the last entry.
148
 *
J
Jens Axboe 已提交
149 150 151
 *   Note that the @sgl@ pointer passed in need not be the first one,
 *   the important bit is that @nents@ denotes the number of entries that
 *   exist from @sgl@.
152
 *
J
Jens Axboe 已提交
153
 **/
154 155 156 157 158 159 160
static inline struct scatterlist *sg_last(struct scatterlist *sgl,
					  unsigned int nents)
{
#ifndef ARCH_HAS_SG_CHAIN
	struct scatterlist *ret = &sgl[nents - 1];
#else
	struct scatterlist *sg, *ret = NULL;
161
	unsigned int i;
162 163 164 165

	for_each_sg(sgl, sg, nents, i)
		ret = sg;

J
Jens Axboe 已提交
166 167 168 169
#endif
#ifdef CONFIG_DEBUG_SG
	BUG_ON(sgl[0].sg_magic != SG_MAGIC);
	BUG_ON(!sg_is_last(ret));
170 171 172 173 174 175 176 177 178 179
#endif
	return ret;
}

/**
 * sg_chain - Chain two sglists together
 * @prv:	First scatterlist
 * @prv_nents:	Number of entries in prv
 * @sgl:	Second scatterlist
 *
J
Jens Axboe 已提交
180 181
 * Description:
 *   Links @prv@ and @sgl@ together, to form a longer scatterlist.
182
 *
J
Jens Axboe 已提交
183
 **/
184 185 186 187 188 189
static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
			    struct scatterlist *sgl)
{
#ifndef ARCH_HAS_SG_CHAIN
	BUG();
#endif
T
Tejun Heo 已提交
190 191 192 193 194 195 196

	/*
	 * offset and length are unused for chain entry.  Clear them.
	 */
	prv->offset = 0;
	prv->length = 0;

197 198 199 200 201
	/*
	 * Set lowest bit to indicate a link pointer, and make sure to clear
	 * the termination bit if it happens to be set.
	 */
	prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
202 203
}

204 205
/**
 * sg_mark_end - Mark the end of the scatterlist
J
Jens Axboe 已提交
206
 * @sg:		 SG entryScatterlist
207 208
 *
 * Description:
J
Jens Axboe 已提交
209 210
 *   Marks the passed in sg entry as the termination point for the sg
 *   table. A call to sg_next() on this entry will return NULL.
211 212
 *
 **/
J
Jens Axboe 已提交
213
static inline void sg_mark_end(struct scatterlist *sg)
214
{
J
Jens Axboe 已提交
215 216 217 218 219 220
#ifdef CONFIG_DEBUG_SG
	BUG_ON(sg->sg_magic != SG_MAGIC);
#endif
	/*
	 * Set termination bit, clear potential chain bit
	 */
J
Jens Axboe 已提交
221
	sg->page_link |= 0x02;
J
Jens Axboe 已提交
222
	sg->page_link &= ~0x01;
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
}

/**
 * sg_init_table - Initialize SG table
 * @sgl:	   The SG table
 * @nents:	   Number of entries in table
 *
 * Notes:
 *   If this is part of a chained sg table, sg_mark_end() should be
 *   used only on the last table part.
 *
 **/
static inline void sg_init_table(struct scatterlist *sgl, unsigned int nents)
{
	memset(sgl, 0, sizeof(*sgl) * nents);
J
Jens Axboe 已提交
238 239
#ifdef CONFIG_DEBUG_SG
	{
240
		unsigned int i;
J
Jens Axboe 已提交
241 242 243 244
		for (i = 0; i < nents; i++)
			sgl[i].sg_magic = SG_MAGIC;
	}
#endif
J
Jens Axboe 已提交
245
	sg_mark_end(&sgl[nents - 1]);
246 247
}

248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
/**
 * sg_init_one - Initialize a single entry sg list
 * @sg:		 SG entry
 * @buf:	 Virtual address for IO
 * @buflen:	 IO length
 *
 * Notes:
 *   This should not be used on a single entry that is part of a larger
 *   table. Use sg_init_table() for that.
 *
 **/
static inline void sg_init_one(struct scatterlist *sg, const void *buf,
			       unsigned int buflen)
{
	sg_init_table(sg, 1);
	sg_set_buf(sg, buf, buflen);
}

266 267 268 269 270 271 272 273 274 275
/**
 * sg_phys - Return physical address of an sg entry
 * @sg:	     SG entry
 *
 * Description:
 *   This calls page_to_phys() on the page in this sg entry, and adds the
 *   sg offset. The caller must know that it is legal to call page_to_phys()
 *   on the sg page.
 *
 **/
H
Hugh Dickins 已提交
276
static inline dma_addr_t sg_phys(struct scatterlist *sg)
277 278 279 280 281 282
{
	return page_to_phys(sg_page(sg)) + sg->offset;
}

/**
 * sg_virt - Return virtual address of an sg entry
J
Jens Axboe 已提交
283
 * @sg:      SG entry
284 285 286 287 288 289 290 291 292 293 294 295
 *
 * Description:
 *   This calls page_address() on the page in this sg entry, and adds the
 *   sg offset. The caller must know that the sg page has a valid virtual
 *   mapping.
 *
 **/
static inline void *sg_virt(struct scatterlist *sg)
{
	return page_address(sg_page(sg)) + sg->offset;
}

L
Linus Torvalds 已提交
296
#endif /* _LINUX_SCATTERLIST_H */