blob: 45712317138973ad8147ed0567c30bb4d62da55a [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
Jens Axboe82f66fb2007-10-22 17:07:37 +020029/**
Jens Axboe642f1492007-10-24 11:20:47 +020030 * sg_assign_page - Assign a given page to an SG entry
31 * @sg: SG entry
32 * @page: The page
Jens Axboe82f66fb2007-10-22 17:07:37 +020033 *
34 * Description:
Jens Axboe642f1492007-10-24 11:20:47 +020035 * Assign page to sg entry. Also see sg_set_page(), the most commonly used
36 * variant.
Jens Axboe82f66fb2007-10-22 17:07:37 +020037 *
38 **/
Jens Axboe642f1492007-10-24 11:20:47 +020039static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
Jens Axboe82f66fb2007-10-22 17:07:37 +020040{
Jens Axboe18dabf42007-10-22 19:57:20 +020041 unsigned long page_link = sg->page_link & 0x3;
42
Jens Axboede261032007-10-23 20:35:58 +020043 /*
44 * In order for the low bit stealing approach to work, pages
45 * must be aligned at a 32-bit boundary as a minimum.
46 */
47 BUG_ON((unsigned long) page & 0x03);
Jens Axboed6ec0842007-10-22 20:01:06 +020048#ifdef CONFIG_DEBUG_SG
49 BUG_ON(sg->sg_magic != SG_MAGIC);
50#endif
Jens Axboe18dabf42007-10-22 19:57:20 +020051 sg->page_link = page_link | (unsigned long) page;
Jens Axboe82f66fb2007-10-22 17:07:37 +020052}
53
Jens Axboe642f1492007-10-24 11:20:47 +020054/**
55 * sg_set_page - Set sg entry to point at given page
56 * @sg: SG entry
57 * @page: The page
58 * @len: Length of data
59 * @offset: Offset into page
60 *
61 * Description:
62 * Use this function to set an sg entry pointing at a page, never assign
63 * the page directly. We encode sg table information in the lower bits
64 * of the page pointer. See sg_page() for looking up the page belonging
65 * to an sg entry.
66 *
67 **/
68static inline void sg_set_page(struct scatterlist *sg, struct page *page,
69 unsigned int len, unsigned int offset)
70{
71 sg_assign_page(sg, page);
72 sg->offset = offset;
73 sg->length = len;
74}
75
Jens Axboe18dabf42007-10-22 19:57:20 +020076#define sg_page(sg) ((struct page *) ((sg)->page_link & ~0x3))
Jens Axboe82f66fb2007-10-22 17:07:37 +020077
Jens Axboe18dabf42007-10-22 19:57:20 +020078/**
79 * sg_set_buf - Set sg entry to point at given data
80 * @sg: SG entry
81 * @buf: Data
82 * @buflen: Data length
83 *
84 **/
Herbert Xu03fd9ce2006-08-14 23:11:53 +100085static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
Herbert Xud32311f2005-09-17 14:41:40 +100086 unsigned int buflen)
87{
Jens Axboe642f1492007-10-24 11:20:47 +020088 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Jens Axboe70eb8042007-07-16 21:17:16 +020091/*
92 * We overload the LSB of the page pointer to indicate whether it's
93 * a valid sg entry, or whether it points to the start of a new scatterlist.
94 * Those low bits are there for everyone! (thanks mason :-)
95 */
Jens Axboe18dabf42007-10-22 19:57:20 +020096#define sg_is_chain(sg) ((sg)->page_link & 0x01)
97#define sg_is_last(sg) ((sg)->page_link & 0x02)
Jens Axboe70eb8042007-07-16 21:17:16 +020098#define sg_chain_ptr(sg) \
Jens Axboe18dabf42007-10-22 19:57:20 +020099 ((struct scatterlist *) ((sg)->page_link & ~0x03))
Jens Axboe70eb8042007-07-16 21:17:16 +0200100
101/**
102 * sg_next - return the next scatterlist entry in a list
103 * @sg: The current sg entry
104 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200105 * Description:
106 * Usually the next entry will be @sg@ + 1, but if this sg element is part
107 * of a chained scatterlist, it could jump to the start of a new
108 * scatterlist array.
Jens Axboe70eb8042007-07-16 21:17:16 +0200109 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200110 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200111static inline struct scatterlist *sg_next(struct scatterlist *sg)
112{
Jens Axboed6ec0842007-10-22 20:01:06 +0200113#ifdef CONFIG_DEBUG_SG
114 BUG_ON(sg->sg_magic != SG_MAGIC);
115#endif
Jens Axboe18dabf42007-10-22 19:57:20 +0200116 if (sg_is_last(sg))
117 return NULL;
Jens Axboe70eb8042007-07-16 21:17:16 +0200118
Jens Axboe18dabf42007-10-22 19:57:20 +0200119 sg++;
Jens Axboe70eb8042007-07-16 21:17:16 +0200120 if (unlikely(sg_is_chain(sg)))
121 sg = sg_chain_ptr(sg);
122
123 return sg;
124}
Jens Axboe96b418c2007-05-09 09:02:57 +0200125
126/*
127 * Loop over each sg element, following the pointer to a new list if necessary
128 */
129#define for_each_sg(sglist, sg, nr, __i) \
130 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
131
Jens Axboe70eb8042007-07-16 21:17:16 +0200132/**
133 * sg_last - return the last scatterlist entry in a list
134 * @sgl: First entry in the scatterlist
135 * @nents: Number of entries in the scatterlist
136 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200137 * Description:
138 * Should only be used casually, it (currently) scan the entire list
139 * to get the last entry.
Jens Axboe70eb8042007-07-16 21:17:16 +0200140 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200141 * Note that the @sgl@ pointer passed in need not be the first one,
142 * the important bit is that @nents@ denotes the number of entries that
143 * exist from @sgl@.
Jens Axboe70eb8042007-07-16 21:17:16 +0200144 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200145 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200146static inline struct scatterlist *sg_last(struct scatterlist *sgl,
147 unsigned int nents)
148{
149#ifndef ARCH_HAS_SG_CHAIN
150 struct scatterlist *ret = &sgl[nents - 1];
151#else
152 struct scatterlist *sg, *ret = NULL;
153 int i;
154
155 for_each_sg(sgl, sg, nents, i)
156 ret = sg;
157
158#endif
Jens Axboed6ec0842007-10-22 20:01:06 +0200159#ifdef CONFIG_DEBUG_SG
160 BUG_ON(sgl[0].sg_magic != SG_MAGIC);
161 BUG_ON(!sg_is_last(ret));
162#endif
Jens Axboe70eb8042007-07-16 21:17:16 +0200163 return ret;
164}
165
166/**
167 * sg_chain - Chain two sglists together
168 * @prv: First scatterlist
169 * @prv_nents: Number of entries in prv
170 * @sgl: Second scatterlist
171 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200172 * Description:
173 * Links @prv@ and @sgl@ together, to form a longer scatterlist.
Jens Axboe70eb8042007-07-16 21:17:16 +0200174 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200175 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200176static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
177 struct scatterlist *sgl)
178{
179#ifndef ARCH_HAS_SG_CHAIN
180 BUG();
181#endif
Jens Axboe18dabf42007-10-22 19:57:20 +0200182 prv[prv_nents - 1].page_link = (unsigned long) sgl | 0x01;
Jens Axboe70eb8042007-07-16 21:17:16 +0200183}
184
Jens Axboe82f66fb2007-10-22 17:07:37 +0200185/**
186 * sg_mark_end - Mark the end of the scatterlist
187 * @sgl: Scatterlist
188 * @nents: Number of entries in sgl
189 *
190 * Description:
191 * Marks the last entry as the termination point for sg_next()
192 *
193 **/
194static inline void sg_mark_end(struct scatterlist *sgl, unsigned int nents)
195{
Jens Axboe18dabf42007-10-22 19:57:20 +0200196 sgl[nents - 1].page_link = 0x02;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200197}
198
199static inline void __sg_mark_end(struct scatterlist *sg)
200{
Jens Axboe18dabf42007-10-22 19:57:20 +0200201 sg->page_link |= 0x02;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200202}
203
Jens Axboe82f66fb2007-10-22 17:07:37 +0200204/**
205 * sg_init_one - Initialize a single entry sg list
206 * @sg: SG entry
207 * @buf: Virtual address for IO
208 * @buflen: IO length
209 *
210 * Notes:
211 * This should not be used on a single entry that is part of a larger
212 * table. Use sg_init_table() for that.
213 *
214 **/
215static inline void sg_init_one(struct scatterlist *sg, const void *buf,
216 unsigned int buflen)
217{
218 memset(sg, 0, sizeof(*sg));
Jens Axboed6ec0842007-10-22 20:01:06 +0200219#ifdef CONFIG_DEBUG_SG
220 sg->sg_magic = SG_MAGIC;
221#endif
Jens Axboe82f66fb2007-10-22 17:07:37 +0200222 sg_mark_end(sg, 1);
223 sg_set_buf(sg, buf, buflen);
224}
225
226/**
227 * sg_init_table - Initialize SG table
228 * @sgl: The SG table
229 * @nents: Number of entries in table
230 *
231 * Notes:
232 * If this is part of a chained sg table, sg_mark_end() should be
233 * used only on the last table part.
234 *
235 **/
236static inline void sg_init_table(struct scatterlist *sgl, unsigned int nents)
237{
238 memset(sgl, 0, sizeof(*sgl) * nents);
239 sg_mark_end(sgl, nents);
Jens Axboed6ec0842007-10-22 20:01:06 +0200240#ifdef CONFIG_DEBUG_SG
241 {
242 int i;
243 for (i = 0; i < nents; i++)
244 sgl[i].sg_magic = SG_MAGIC;
245 }
246#endif
Jens Axboe82f66fb2007-10-22 17:07:37 +0200247}
248
249/**
250 * sg_phys - Return physical address of an sg entry
251 * @sg: SG entry
252 *
253 * Description:
254 * This calls page_to_phys() on the page in this sg entry, and adds the
255 * sg offset. The caller must know that it is legal to call page_to_phys()
256 * on the sg page.
257 *
258 **/
Hugh Dickins85cdffc2007-10-25 09:55:05 +0200259static inline dma_addr_t sg_phys(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200260{
261 return page_to_phys(sg_page(sg)) + sg->offset;
262}
263
264/**
265 * sg_virt - Return virtual address of an sg entry
Jens Axboe18dabf42007-10-22 19:57:20 +0200266 * @sg: SG entry
Jens Axboe82f66fb2007-10-22 17:07:37 +0200267 *
268 * Description:
269 * This calls page_address() on the page in this sg entry, and adds the
270 * sg offset. The caller must know that the sg page has a valid virtual
271 * mapping.
272 *
273 **/
274static inline void *sg_virt(struct scatterlist *sg)
275{
276 return page_address(sg_page(sg)) + sg->offset;
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#endif /* _LINUX_SCATTERLIST_H */