blob: e3ff21dbac536f11d7f62be1dae027d37466b465 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_SCATTERLIST_H
2#define _LINUX_SCATTERLIST_H
3
Hugh Dickins85cdffc2007-10-25 09:55:05 +02004#include <asm/types.h>
Herbert Xud32311f2005-09-17 14:41:40 +10005#include <asm/scatterlist.h>
6#include <linux/mm.h>
7#include <linux/string.h>
Jens Axboe18dabf42007-10-22 19:57:20 +02008#include <asm/io.h>
9
10/*
11 * Notes on SG table design.
12 *
13 * Architectures must provide an unsigned long page_link field in the
14 * scatterlist struct. We use that to place the page pointer AND encode
15 * information about the sg table as well. The two lower bits are reserved
16 * for this information.
17 *
18 * If bit 0 is set, then the page_link contains a pointer to the next sg
19 * table list. Otherwise the next entry is at sg + 1.
20 *
21 * If bit 1 is set, then this sg entry is the last element in a list.
22 *
23 * See sg_next().
24 *
25 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Jens Axboed6ec0842007-10-22 20:01:06 +020027#define SG_MAGIC 0x87654321
28
Tejun Heo645a8d92007-11-27 09:30:39 +010029/*
30 * We overload the LSB of the page pointer to indicate whether it's
31 * a valid sg entry, or whether it points to the start of a new scatterlist.
32 * Those low bits are there for everyone! (thanks mason :-)
33 */
34#define sg_is_chain(sg) ((sg)->page_link & 0x01)
35#define sg_is_last(sg) ((sg)->page_link & 0x02)
36#define sg_chain_ptr(sg) \
37 ((struct scatterlist *) ((sg)->page_link & ~0x03))
38
Jens Axboe82f66fb2007-10-22 17:07:37 +020039/**
Jens Axboe642f1492007-10-24 11:20:47 +020040 * sg_assign_page - Assign a given page to an SG entry
41 * @sg: SG entry
42 * @page: The page
Jens Axboe82f66fb2007-10-22 17:07:37 +020043 *
44 * Description:
Jens Axboe642f1492007-10-24 11:20:47 +020045 * Assign page to sg entry. Also see sg_set_page(), the most commonly used
46 * variant.
Jens Axboe82f66fb2007-10-22 17:07:37 +020047 *
48 **/
Jens Axboe642f1492007-10-24 11:20:47 +020049static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
Jens Axboe82f66fb2007-10-22 17:07:37 +020050{
Jens Axboe18dabf42007-10-22 19:57:20 +020051 unsigned long page_link = sg->page_link & 0x3;
52
Jens Axboede261032007-10-23 20:35:58 +020053 /*
54 * In order for the low bit stealing approach to work, pages
55 * must be aligned at a 32-bit boundary as a minimum.
56 */
57 BUG_ON((unsigned long) page & 0x03);
Jens Axboed6ec0842007-10-22 20:01:06 +020058#ifdef CONFIG_DEBUG_SG
59 BUG_ON(sg->sg_magic != SG_MAGIC);
Tejun Heo645a8d92007-11-27 09:30:39 +010060 BUG_ON(sg_is_chain(sg));
Jens Axboed6ec0842007-10-22 20:01:06 +020061#endif
Jens Axboe18dabf42007-10-22 19:57:20 +020062 sg->page_link = page_link | (unsigned long) page;
Jens Axboe82f66fb2007-10-22 17:07:37 +020063}
64
Jens Axboe642f1492007-10-24 11:20:47 +020065/**
66 * sg_set_page - Set sg entry to point at given page
67 * @sg: SG entry
68 * @page: The page
69 * @len: Length of data
70 * @offset: Offset into page
71 *
72 * Description:
73 * Use this function to set an sg entry pointing at a page, never assign
74 * the page directly. We encode sg table information in the lower bits
75 * of the page pointer. See sg_page() for looking up the page belonging
76 * to an sg entry.
77 *
78 **/
79static inline void sg_set_page(struct scatterlist *sg, struct page *page,
80 unsigned int len, unsigned int offset)
81{
82 sg_assign_page(sg, page);
83 sg->offset = offset;
84 sg->length = len;
85}
86
Tejun Heo645a8d92007-11-27 09:30:39 +010087static inline struct page *sg_page(struct scatterlist *sg)
88{
89#ifdef CONFIG_DEBUG_SG
90 BUG_ON(sg->sg_magic != SG_MAGIC);
91 BUG_ON(sg_is_chain(sg));
92#endif
93 return (struct page *)((sg)->page_link & ~0x3);
94}
Jens Axboe82f66fb2007-10-22 17:07:37 +020095
Jens Axboe18dabf42007-10-22 19:57:20 +020096/**
97 * sg_set_buf - Set sg entry to point at given data
98 * @sg: SG entry
99 * @buf: Data
100 * @buflen: Data length
101 *
102 **/
Herbert Xu03fd9ce2006-08-14 23:11:53 +1000103static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
Herbert Xud32311f2005-09-17 14:41:40 +1000104 unsigned int buflen)
105{
Jens Axboe642f1492007-10-24 11:20:47 +0200106 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Jens Axboe70eb8042007-07-16 21:17:16 +0200109/**
110 * sg_next - return the next scatterlist entry in a list
111 * @sg: The current sg entry
112 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200113 * Description:
114 * Usually the next entry will be @sg@ + 1, but if this sg element is part
115 * of a chained scatterlist, it could jump to the start of a new
116 * scatterlist array.
Jens Axboe70eb8042007-07-16 21:17:16 +0200117 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200118 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200119static inline struct scatterlist *sg_next(struct scatterlist *sg)
120{
Jens Axboed6ec0842007-10-22 20:01:06 +0200121#ifdef CONFIG_DEBUG_SG
122 BUG_ON(sg->sg_magic != SG_MAGIC);
123#endif
Jens Axboe18dabf42007-10-22 19:57:20 +0200124 if (sg_is_last(sg))
125 return NULL;
Jens Axboe70eb8042007-07-16 21:17:16 +0200126
Jens Axboe18dabf42007-10-22 19:57:20 +0200127 sg++;
Jens Axboe70eb8042007-07-16 21:17:16 +0200128 if (unlikely(sg_is_chain(sg)))
129 sg = sg_chain_ptr(sg);
130
131 return sg;
132}
Jens Axboe96b418c2007-05-09 09:02:57 +0200133
134/*
135 * Loop over each sg element, following the pointer to a new list if necessary
136 */
137#define for_each_sg(sglist, sg, nr, __i) \
138 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
139
Jens Axboe70eb8042007-07-16 21:17:16 +0200140/**
141 * sg_last - return the last scatterlist entry in a list
142 * @sgl: First entry in the scatterlist
143 * @nents: Number of entries in the scatterlist
144 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200145 * Description:
146 * Should only be used casually, it (currently) scan the entire list
147 * to get the last entry.
Jens Axboe70eb8042007-07-16 21:17:16 +0200148 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200149 * Note that the @sgl@ pointer passed in need not be the first one,
150 * the important bit is that @nents@ denotes the number of entries that
151 * exist from @sgl@.
Jens Axboe70eb8042007-07-16 21:17:16 +0200152 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200153 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200154static inline struct scatterlist *sg_last(struct scatterlist *sgl,
155 unsigned int nents)
156{
157#ifndef ARCH_HAS_SG_CHAIN
158 struct scatterlist *ret = &sgl[nents - 1];
159#else
160 struct scatterlist *sg, *ret = NULL;
Chuck Lever74eb94f2007-10-26 19:29:47 +0200161 unsigned int i;
Jens Axboe70eb8042007-07-16 21:17:16 +0200162
163 for_each_sg(sgl, sg, nents, i)
164 ret = sg;
165
166#endif
Jens Axboed6ec0842007-10-22 20:01:06 +0200167#ifdef CONFIG_DEBUG_SG
168 BUG_ON(sgl[0].sg_magic != SG_MAGIC);
169 BUG_ON(!sg_is_last(ret));
170#endif
Jens Axboe70eb8042007-07-16 21:17:16 +0200171 return ret;
172}
173
174/**
175 * sg_chain - Chain two sglists together
176 * @prv: First scatterlist
177 * @prv_nents: Number of entries in prv
178 * @sgl: Second scatterlist
179 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200180 * Description:
181 * Links @prv@ and @sgl@ together, to form a longer scatterlist.
Jens Axboe70eb8042007-07-16 21:17:16 +0200182 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200183 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200184static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
185 struct scatterlist *sgl)
186{
187#ifndef ARCH_HAS_SG_CHAIN
188 BUG();
189#endif
Tejun Heo645a8d92007-11-27 09:30:39 +0100190
191 /*
192 * offset and length are unused for chain entry. Clear them.
193 */
Rusty Russellb801a1e2008-01-11 10:12:55 +0100194 prv[prv_nents - 1].offset = 0;
195 prv[prv_nents - 1].length = 0;
Tejun Heo645a8d92007-11-27 09:30:39 +0100196
Jens Axboe73fd5462007-10-26 09:32:16 +0200197 /*
198 * Set lowest bit to indicate a link pointer, and make sure to clear
199 * the termination bit if it happens to be set.
200 */
201 prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
Jens Axboe70eb8042007-07-16 21:17:16 +0200202}
203
Jens Axboe82f66fb2007-10-22 17:07:37 +0200204/**
205 * sg_mark_end - Mark the end of the scatterlist
Jens Axboec46f2332007-10-31 12:06:37 +0100206 * @sg: SG entryScatterlist
Jens Axboe82f66fb2007-10-22 17:07:37 +0200207 *
208 * Description:
Jens Axboec46f2332007-10-31 12:06:37 +0100209 * Marks the passed in sg entry as the termination point for the sg
210 * table. A call to sg_next() on this entry will return NULL.
Jens Axboe82f66fb2007-10-22 17:07:37 +0200211 *
212 **/
Jens Axboec46f2332007-10-31 12:06:37 +0100213static inline void sg_mark_end(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200214{
Jens Axboec46f2332007-10-31 12:06:37 +0100215#ifdef CONFIG_DEBUG_SG
216 BUG_ON(sg->sg_magic != SG_MAGIC);
217#endif
218 /*
219 * Set termination bit, clear potential chain bit
220 */
Jens Axboe18dabf42007-10-22 19:57:20 +0200221 sg->page_link |= 0x02;
Jens Axboec46f2332007-10-31 12:06:37 +0100222 sg->page_link &= ~0x01;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200223}
224
Jens Axboe82f66fb2007-10-22 17:07:37 +0200225/**
Jens Axboe82f66fb2007-10-22 17:07:37 +0200226 * sg_init_table - Initialize SG table
227 * @sgl: The SG table
228 * @nents: Number of entries in table
229 *
230 * Notes:
231 * If this is part of a chained sg table, sg_mark_end() should be
232 * used only on the last table part.
233 *
234 **/
235static inline void sg_init_table(struct scatterlist *sgl, unsigned int nents)
236{
237 memset(sgl, 0, sizeof(*sgl) * nents);
Jens Axboed6ec0842007-10-22 20:01:06 +0200238#ifdef CONFIG_DEBUG_SG
239 {
Chuck Lever513f54b2007-10-26 19:29:48 +0200240 unsigned int i;
Jens Axboed6ec0842007-10-22 20:01:06 +0200241 for (i = 0; i < nents; i++)
242 sgl[i].sg_magic = SG_MAGIC;
243 }
244#endif
Jens Axboec46f2332007-10-31 12:06:37 +0100245 sg_mark_end(&sgl[nents - 1]);
Jens Axboe82f66fb2007-10-22 17:07:37 +0200246}
247
248/**
Jens Axboe013fb332007-10-30 10:34:33 +0100249 * sg_init_one - Initialize a single entry sg list
250 * @sg: SG entry
251 * @buf: Virtual address for IO
252 * @buflen: IO length
253 *
254 * Notes:
255 * This should not be used on a single entry that is part of a larger
256 * table. Use sg_init_table() for that.
257 *
258 **/
259static inline void sg_init_one(struct scatterlist *sg, const void *buf,
260 unsigned int buflen)
261{
262 sg_init_table(sg, 1);
263 sg_set_buf(sg, buf, buflen);
264}
265
266/**
Jens Axboe82f66fb2007-10-22 17:07:37 +0200267 * sg_phys - Return physical address of an sg entry
268 * @sg: SG entry
269 *
270 * Description:
271 * This calls page_to_phys() on the page in this sg entry, and adds the
272 * sg offset. The caller must know that it is legal to call page_to_phys()
273 * on the sg page.
274 *
275 **/
Hugh Dickins85cdffc2007-10-25 09:55:05 +0200276static inline dma_addr_t sg_phys(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200277{
278 return page_to_phys(sg_page(sg)) + sg->offset;
279}
280
281/**
282 * sg_virt - Return virtual address of an sg entry
Jens Axboe18dabf42007-10-22 19:57:20 +0200283 * @sg: SG entry
Jens Axboe82f66fb2007-10-22 17:07:37 +0200284 *
285 * Description:
286 * This calls page_address() on the page in this sg entry, and adds the
287 * sg offset. The caller must know that the sg page has a valid virtual
288 * mapping.
289 *
290 **/
291static inline void *sg_virt(struct scatterlist *sg)
292{
293 return page_address(sg_page(sg)) + sg->offset;
294}
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296#endif /* _LINUX_SCATTERLIST_H */