blob: 36c47e7e66a20358e50aac102fb7840f0abe51af [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_SCATTERLIST_H
3#define _LINUX_SCATTERLIST_H
4
Paul Gortmaker187f1882011-11-23 20:12:59 -05005#include <linux/string.h>
Christoph Hellwig84be4562015-05-01 12:46:15 +02006#include <linux/types.h>
Paul Gortmaker187f1882011-11-23 20:12:59 -05007#include <linux/bug.h>
8#include <linux/mm.h>
Jens Axboe18dabf42007-10-22 19:57:20 +02009#include <asm/io.h>
10
Christoph Hellwig84be4562015-05-01 12:46:15 +020011struct scatterlist {
Christoph Hellwig84be4562015-05-01 12:46:15 +020012 unsigned long page_link;
13 unsigned int offset;
14 unsigned int length;
15 dma_addr_t dma_address;
16#ifdef CONFIG_NEED_SG_DMA_LENGTH
17 unsigned int dma_length;
18#endif
19};
20
21/*
Tvrtko Ursulinc1259062017-08-03 10:13:12 +010022 * Since the above length field is an unsigned int, below we define the maximum
23 * length in bytes that can be stored in one scatterlist entry.
24 */
25#define SCATTERLIST_MAX_SEGMENT (UINT_MAX & PAGE_MASK)
26
27/*
Christoph Hellwig84be4562015-05-01 12:46:15 +020028 * These macros should be used after a dma_map_sg call has been done
29 * to get bus addresses of each of the SG entries and their lengths.
30 * You should only work with the number of sg entries dma_map_sg
31 * returns, or alternatively stop on the first sg_dma_len(sg) which
32 * is 0.
33 */
34#define sg_dma_address(sg) ((sg)->dma_address)
35
36#ifdef CONFIG_NEED_SG_DMA_LENGTH
37#define sg_dma_len(sg) ((sg)->dma_length)
38#else
39#define sg_dma_len(sg) ((sg)->length)
40#endif
41
Jens Axboe0db92992007-11-30 09:16:50 +010042struct sg_table {
43 struct scatterlist *sgl; /* the list */
44 unsigned int nents; /* number of mapped entries */
45 unsigned int orig_nents; /* original size of list */
46};
47
Jens Axboe18dabf42007-10-22 19:57:20 +020048/*
49 * Notes on SG table design.
50 *
Christoph Hellwig84be4562015-05-01 12:46:15 +020051 * We use the unsigned long page_link field in the scatterlist struct to place
52 * the page pointer AND encode information about the sg table as well. The two
53 * lower bits are reserved for this information.
Jens Axboe18dabf42007-10-22 19:57:20 +020054 *
55 * If bit 0 is set, then the page_link contains a pointer to the next sg
56 * table list. Otherwise the next entry is at sg + 1.
57 *
58 * If bit 1 is set, then this sg entry is the last element in a list.
59 *
60 * See sg_next().
61 *
62 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Anshuman Khandual723fbf52018-02-15 09:03:56 +053064#define SG_CHAIN 0x01UL
65#define SG_END 0x02UL
Jens Axboed6ec0842007-10-22 20:01:06 +020066
Tejun Heo645a8d92007-11-27 09:30:39 +010067/*
68 * We overload the LSB of the page pointer to indicate whether it's
69 * a valid sg entry, or whether it points to the start of a new scatterlist.
70 * Those low bits are there for everyone! (thanks mason :-)
71 */
Anshuman Khandual723fbf52018-02-15 09:03:56 +053072#define sg_is_chain(sg) ((sg)->page_link & SG_CHAIN)
73#define sg_is_last(sg) ((sg)->page_link & SG_END)
Tejun Heo645a8d92007-11-27 09:30:39 +010074#define sg_chain_ptr(sg) \
Anshuman Khandual723fbf52018-02-15 09:03:56 +053075 ((struct scatterlist *) ((sg)->page_link & ~(SG_CHAIN | SG_END)))
Tejun Heo645a8d92007-11-27 09:30:39 +010076
Jens Axboe82f66fb2007-10-22 17:07:37 +020077/**
Jens Axboe642f149032007-10-24 11:20:47 +020078 * sg_assign_page - Assign a given page to an SG entry
79 * @sg: SG entry
80 * @page: The page
Jens Axboe82f66fb2007-10-22 17:07:37 +020081 *
82 * Description:
Jens Axboe642f149032007-10-24 11:20:47 +020083 * Assign page to sg entry. Also see sg_set_page(), the most commonly used
84 * variant.
Jens Axboe82f66fb2007-10-22 17:07:37 +020085 *
86 **/
Jens Axboe642f149032007-10-24 11:20:47 +020087static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
Jens Axboe82f66fb2007-10-22 17:07:37 +020088{
Anshuman Khandual723fbf52018-02-15 09:03:56 +053089 unsigned long page_link = sg->page_link & (SG_CHAIN | SG_END);
Jens Axboe18dabf42007-10-22 19:57:20 +020090
Jens Axboede261032007-10-23 20:35:58 +020091 /*
92 * In order for the low bit stealing approach to work, pages
93 * must be aligned at a 32-bit boundary as a minimum.
94 */
Anshuman Khandual723fbf52018-02-15 09:03:56 +053095 BUG_ON((unsigned long) page & (SG_CHAIN | SG_END));
Jens Axboed6ec0842007-10-22 20:01:06 +020096#ifdef CONFIG_DEBUG_SG
Tejun Heo645a8d92007-11-27 09:30:39 +010097 BUG_ON(sg_is_chain(sg));
Jens Axboed6ec0842007-10-22 20:01:06 +020098#endif
Jens Axboe18dabf42007-10-22 19:57:20 +020099 sg->page_link = page_link | (unsigned long) page;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200100}
101
Jens Axboe642f149032007-10-24 11:20:47 +0200102/**
103 * sg_set_page - Set sg entry to point at given page
104 * @sg: SG entry
105 * @page: The page
106 * @len: Length of data
107 * @offset: Offset into page
108 *
109 * Description:
110 * Use this function to set an sg entry pointing at a page, never assign
111 * the page directly. We encode sg table information in the lower bits
112 * of the page pointer. See sg_page() for looking up the page belonging
113 * to an sg entry.
114 *
115 **/
116static inline void sg_set_page(struct scatterlist *sg, struct page *page,
117 unsigned int len, unsigned int offset)
118{
119 sg_assign_page(sg, page);
120 sg->offset = offset;
121 sg->length = len;
122}
123
Tejun Heo645a8d92007-11-27 09:30:39 +0100124static inline struct page *sg_page(struct scatterlist *sg)
125{
126#ifdef CONFIG_DEBUG_SG
Tejun Heo645a8d92007-11-27 09:30:39 +0100127 BUG_ON(sg_is_chain(sg));
128#endif
Anshuman Khandual723fbf52018-02-15 09:03:56 +0530129 return (struct page *)((sg)->page_link & ~(SG_CHAIN | SG_END));
Tejun Heo645a8d92007-11-27 09:30:39 +0100130}
Jens Axboe82f66fb2007-10-22 17:07:37 +0200131
Jens Axboe18dabf42007-10-22 19:57:20 +0200132/**
133 * sg_set_buf - Set sg entry to point at given data
134 * @sg: SG entry
135 * @buf: Data
136 * @buflen: Data length
137 *
138 **/
Herbert Xu03fd9ce2006-08-14 23:11:53 +1000139static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
Herbert Xud32311f2005-09-17 14:41:40 +1000140 unsigned int buflen)
141{
Rusty Russellac4e97a2013-05-30 09:19:35 +0200142#ifdef CONFIG_DEBUG_SG
143 BUG_ON(!virt_addr_valid(buf));
144#endif
Jens Axboe642f149032007-10-24 11:20:47 +0200145 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
Jens Axboe96b418c2007-05-09 09:02:57 +0200148/*
149 * Loop over each sg element, following the pointer to a new list if necessary
150 */
151#define for_each_sg(sglist, sg, nr, __i) \
152 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
153
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200154/*
155 * Loop over each sg element in the given sg_table object.
156 */
157#define for_each_sgtable_sg(sgt, sg, i) \
Marek Szyprowski68d23702020-06-30 10:16:02 +0200158 for_each_sg((sgt)->sgl, sg, (sgt)->orig_nents, i)
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200159
160/*
161 * Loop over each sg element in the given *DMA mapped* sg_table object.
162 * Please use sg_dma_address(sg) and sg_dma_len(sg) to extract DMA addresses
163 * of the each element.
164 */
165#define for_each_sgtable_dma_sg(sgt, sg, i) \
Marek Szyprowski68d23702020-06-30 10:16:02 +0200166 for_each_sg((sgt)->sgl, sg, (sgt)->nents, i)
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200167
Maor Gottlieb07da1222020-10-04 18:43:37 +0300168static inline void __sg_chain(struct scatterlist *chain_sg,
169 struct scatterlist *sgl)
170{
171 /*
172 * offset and length are unused for chain entry. Clear them.
173 */
174 chain_sg->offset = 0;
175 chain_sg->length = 0;
176
177 /*
178 * Set lowest bit to indicate a link pointer, and make sure to clear
179 * the termination bit if it happens to be set.
180 */
181 chain_sg->page_link = ((unsigned long) sgl | SG_CHAIN) & ~SG_END;
182}
183
Jens Axboe70eb8042007-07-16 21:17:16 +0200184/**
Jens Axboe70eb8042007-07-16 21:17:16 +0200185 * sg_chain - Chain two sglists together
186 * @prv: First scatterlist
187 * @prv_nents: Number of entries in prv
188 * @sgl: Second scatterlist
189 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200190 * Description:
191 * Links @prv@ and @sgl@ together, to form a longer scatterlist.
Jens Axboe70eb8042007-07-16 21:17:16 +0200192 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200193 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200194static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
195 struct scatterlist *sgl)
196{
Maor Gottlieb07da1222020-10-04 18:43:37 +0300197 __sg_chain(&prv[prv_nents - 1], sgl);
Jens Axboe70eb8042007-07-16 21:17:16 +0200198}
199
Jens Axboe82f66fb2007-10-22 17:07:37 +0200200/**
201 * sg_mark_end - Mark the end of the scatterlist
Jens Axboec46f2332007-10-31 12:06:37 +0100202 * @sg: SG entryScatterlist
Jens Axboe82f66fb2007-10-22 17:07:37 +0200203 *
204 * Description:
Jens Axboec46f2332007-10-31 12:06:37 +0100205 * Marks the passed in sg entry as the termination point for the sg
206 * table. A call to sg_next() on this entry will return NULL.
Jens Axboe82f66fb2007-10-22 17:07:37 +0200207 *
208 **/
Jens Axboec46f2332007-10-31 12:06:37 +0100209static inline void sg_mark_end(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200210{
Jens Axboec46f2332007-10-31 12:06:37 +0100211 /*
212 * Set termination bit, clear potential chain bit
213 */
Anshuman Khandual723fbf52018-02-15 09:03:56 +0530214 sg->page_link |= SG_END;
215 sg->page_link &= ~SG_CHAIN;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200216}
217
Jens Axboe82f66fb2007-10-22 17:07:37 +0200218/**
Paolo Bonzinic8164d82013-03-20 15:37:08 +1030219 * sg_unmark_end - Undo setting the end of the scatterlist
220 * @sg: SG entryScatterlist
221 *
222 * Description:
223 * Removes the termination marker from the given entry of the scatterlist.
224 *
225 **/
226static inline void sg_unmark_end(struct scatterlist *sg)
227{
Anshuman Khandual723fbf52018-02-15 09:03:56 +0530228 sg->page_link &= ~SG_END;
Paolo Bonzinic8164d82013-03-20 15:37:08 +1030229}
230
231/**
Jens Axboe82f66fb2007-10-22 17:07:37 +0200232 * sg_phys - Return physical address of an sg entry
233 * @sg: SG entry
234 *
235 * Description:
236 * This calls page_to_phys() on the page in this sg entry, and adds the
237 * sg offset. The caller must know that it is legal to call page_to_phys()
238 * on the sg page.
239 *
240 **/
Hugh Dickins85cdffc2007-10-25 09:55:05 +0200241static inline dma_addr_t sg_phys(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200242{
243 return page_to_phys(sg_page(sg)) + sg->offset;
244}
245
246/**
247 * sg_virt - Return virtual address of an sg entry
Jens Axboe18dabf42007-10-22 19:57:20 +0200248 * @sg: SG entry
Jens Axboe82f66fb2007-10-22 17:07:37 +0200249 *
250 * Description:
251 * This calls page_address() on the page in this sg entry, and adds the
252 * sg offset. The caller must know that the sg page has a valid virtual
253 * mapping.
254 *
255 **/
256static inline void *sg_virt(struct scatterlist *sg)
257{
258 return page_address(sg_page(sg)) + sg->offset;
259}
260
Prashant Bholef3851782018-03-30 09:20:59 +0900261/**
262 * sg_init_marker - Initialize markers in sg table
263 * @sgl: The SG table
264 * @nents: Number of entries in table
265 *
266 **/
267static inline void sg_init_marker(struct scatterlist *sgl,
268 unsigned int nents)
269{
Prashant Bholef3851782018-03-30 09:20:59 +0900270 sg_mark_end(&sgl[nents - 1]);
271}
272
Maxim Levitsky2e484612012-09-27 12:45:28 +0200273int sg_nents(struct scatterlist *sg);
Tom Lendackycfaed102015-06-01 11:15:25 -0500274int sg_nents_for_len(struct scatterlist *sg, u64 len);
Jens Axboe0db92992007-11-30 09:16:50 +0100275struct scatterlist *sg_next(struct scatterlist *);
276struct scatterlist *sg_last(struct scatterlist *s, unsigned int);
277void sg_init_table(struct scatterlist *, unsigned int);
278void sg_init_one(struct scatterlist *, const void *, unsigned int);
Robert Jarzmikf8bcbe62015-08-08 10:44:10 +0200279int sg_split(struct scatterlist *in, const int in_mapped_nents,
280 const off_t skip, const int nb_splits,
281 const size_t *split_sizes,
282 struct scatterlist **out, int *out_mapped_nents,
283 gfp_t gfp_mask);
Jens Axboe0db92992007-11-30 09:16:50 +0100284
285typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t);
286typedef void (sg_free_fn)(struct scatterlist *, unsigned int);
287
Ming Lei46358732019-04-28 15:39:30 +0800288void __sg_free_table(struct sg_table *, unsigned int, unsigned int,
289 sg_free_fn *);
Jens Axboe0db92992007-11-30 09:16:50 +0100290void sg_free_table(struct sg_table *);
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200291int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int,
Ming Lei46358732019-04-28 15:39:30 +0800292 struct scatterlist *, unsigned int, gfp_t, sg_alloc_fn *);
Jens Axboe0db92992007-11-30 09:16:50 +0100293int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);
Maor Gottlieb07da1222020-10-04 18:43:37 +0300294struct scatterlist *__sg_alloc_table_from_pages(struct sg_table *sgt,
295 struct page **pages, unsigned int n_pages, unsigned int offset,
296 unsigned long size, unsigned int max_segment,
297 struct scatterlist *prv, unsigned int left_pages,
298 gfp_t gfp_mask);
Tvrtko Ursulin89d85892017-08-03 10:13:51 +0100299int sg_alloc_table_from_pages(struct sg_table *sgt, struct page **pages,
300 unsigned int n_pages, unsigned int offset,
301 unsigned long size, gfp_t gfp_mask);
Jens Axboe0db92992007-11-30 09:16:50 +0100302
Bart Van Asschee80a0af2018-01-05 08:26:46 -0800303#ifdef CONFIG_SGL_ALLOC
304struct scatterlist *sgl_alloc_order(unsigned long long length,
305 unsigned int order, bool chainable,
306 gfp_t gfp, unsigned int *nent_p);
307struct scatterlist *sgl_alloc(unsigned long long length, gfp_t gfp,
308 unsigned int *nent_p);
Bart Van Assche8c7a8d12018-01-19 11:00:54 -0800309void sgl_free_n_order(struct scatterlist *sgl, int nents, int order);
Bart Van Asschee80a0af2018-01-05 08:26:46 -0800310void sgl_free_order(struct scatterlist *sgl, int order);
311void sgl_free(struct scatterlist *sgl);
312#endif /* CONFIG_SGL_ALLOC */
313
Dave Gordon386ecb12015-06-30 14:58:57 -0700314size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf,
315 size_t buflen, off_t skip, bool to_buffer);
316
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900317size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700318 const void *buf, size_t buflen);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900319size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
320 void *buf, size_t buflen);
321
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700322size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700323 const void *buf, size_t buflen, off_t skip);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700324size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
325 void *buf, size_t buflen, off_t skip);
Johannes Thumshirn0945e562017-06-07 11:45:28 +0200326size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents,
327 size_t buflen, off_t skip);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700328
Jens Axboe0db92992007-11-30 09:16:50 +0100329/*
330 * Maximum number of entries that will be allocated in one piece, if
331 * a list larger than this is required then chaining will be utilized.
332 */
333#define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist))
334
Imre Deaka321e912013-02-27 17:02:56 -0800335/*
Ming Lin9b1d6c82016-04-04 14:48:11 -0700336 * The maximum number of SG segments that we will put inside a
337 * scatterlist (unless chaining is used). Should ideally fit inside a
338 * single page, to avoid a higher order allocation. We could define this
339 * to SG_MAX_SINGLE_ALLOC to pack correctly at the highest order. The
340 * minimum value is 32
341 */
342#define SG_CHUNK_SIZE 128
343
344/*
345 * Like SG_CHUNK_SIZE, but for archs that have sg chaining. This limit
346 * is totally arbitrary, a setting of 2048 will get you at least 8mb ios.
347 */
Christoph Hellwig7c703e52018-11-09 09:51:00 +0100348#ifdef CONFIG_ARCH_NO_SG_CHAIN
Ming Lin9b1d6c82016-04-04 14:48:11 -0700349#define SG_MAX_SEGMENTS SG_CHUNK_SIZE
Christoph Hellwig7c703e52018-11-09 09:51:00 +0100350#else
351#define SG_MAX_SEGMENTS 2048
Ming Lin9b1d6c82016-04-04 14:48:11 -0700352#endif
353
354#ifdef CONFIG_SG_POOL
Ming Lei46358732019-04-28 15:39:30 +0800355void sg_free_table_chained(struct sg_table *table,
356 unsigned nents_first_chunk);
Ming Lin9b1d6c82016-04-04 14:48:11 -0700357int sg_alloc_table_chained(struct sg_table *table, int nents,
Ming Lei46358732019-04-28 15:39:30 +0800358 struct scatterlist *first_chunk,
359 unsigned nents_first_chunk);
Ming Lin9b1d6c82016-04-04 14:48:11 -0700360#endif
361
362/*
Imre Deaka321e912013-02-27 17:02:56 -0800363 * sg page iterator
364 *
Jason Gunthorped901b272019-01-04 11:40:21 -0700365 * Iterates over sg entries page-by-page. On each successful iteration, you
Gal Pressmand2c4ada2019-05-06 18:02:56 +0300366 * can call sg_page_iter_page(@piter) to get the current page.
367 * @piter->sg will point to the sg holding this page and @piter->sg_pgoffset to
368 * the page's page offset within the sg. The iteration will stop either when a
369 * maximum number of sg entries was reached or a terminating sg
370 * (sg_last(sg) == true) was reached.
Imre Deaka321e912013-02-27 17:02:56 -0800371 */
372struct sg_page_iter {
Imre Deaka321e912013-02-27 17:02:56 -0800373 struct scatterlist *sg; /* sg holding the page */
374 unsigned int sg_pgoffset; /* page offset within the sg */
375
376 /* these are internal states, keep away */
377 unsigned int __nents; /* remaining sg entries */
378 int __pg_advance; /* nr pages to advance at the
379 * next step */
380};
381
Jason Gunthorped901b272019-01-04 11:40:21 -0700382/*
383 * sg page iterator for DMA addresses
384 *
385 * This is the same as sg_page_iter however you can call
386 * sg_page_iter_dma_address(@dma_iter) to get the page's DMA
387 * address. sg_page_iter_page() cannot be called on this iterator.
388 */
389struct sg_dma_page_iter {
390 struct sg_page_iter base;
391};
392
Imre Deaka321e912013-02-27 17:02:56 -0800393bool __sg_page_iter_next(struct sg_page_iter *piter);
Jason Gunthorped901b272019-01-04 11:40:21 -0700394bool __sg_page_iter_dma_next(struct sg_dma_page_iter *dma_iter);
Imre Deaka321e912013-02-27 17:02:56 -0800395void __sg_page_iter_start(struct sg_page_iter *piter,
396 struct scatterlist *sglist, unsigned int nents,
397 unsigned long pgoffset);
Imre Deak2db76d72013-03-26 15:14:18 +0200398/**
399 * sg_page_iter_page - get the current page held by the page iterator
400 * @piter: page iterator holding the page
401 */
402static inline struct page *sg_page_iter_page(struct sg_page_iter *piter)
403{
404 return nth_page(sg_page(piter->sg), piter->sg_pgoffset);
405}
406
407/**
408 * sg_page_iter_dma_address - get the dma address of the current page held by
409 * the page iterator.
Jason Gunthorped901b272019-01-04 11:40:21 -0700410 * @dma_iter: page iterator holding the page
Imre Deak2db76d72013-03-26 15:14:18 +0200411 */
Jason Gunthorped901b272019-01-04 11:40:21 -0700412static inline dma_addr_t
413sg_page_iter_dma_address(struct sg_dma_page_iter *dma_iter)
Imre Deak2db76d72013-03-26 15:14:18 +0200414{
Jason Gunthorped901b272019-01-04 11:40:21 -0700415 return sg_dma_address(dma_iter->base.sg) +
416 (dma_iter->base.sg_pgoffset << PAGE_SHIFT);
Imre Deak2db76d72013-03-26 15:14:18 +0200417}
Imre Deaka321e912013-02-27 17:02:56 -0800418
419/**
420 * for_each_sg_page - iterate over the pages of the given sg list
421 * @sglist: sglist to iterate over
422 * @piter: page iterator to hold current page, sg, sg_pgoffset
423 * @nents: maximum number of sg entries to iterate over
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200424 * @pgoffset: starting page offset (in pages)
Jason Gunthorped901b272019-01-04 11:40:21 -0700425 *
426 * Callers may use sg_page_iter_page() to get each page pointer.
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200427 * In each loop it operates on PAGE_SIZE unit.
Imre Deaka321e912013-02-27 17:02:56 -0800428 */
429#define for_each_sg_page(sglist, piter, nents, pgoffset) \
430 for (__sg_page_iter_start((piter), (sglist), (nents), (pgoffset)); \
431 __sg_page_iter_next(piter);)
Tejun Heo137d3ed2008-07-19 23:03:35 +0900432
Jason Gunthorped901b272019-01-04 11:40:21 -0700433/**
434 * for_each_sg_dma_page - iterate over the pages of the given sg list
435 * @sglist: sglist to iterate over
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200436 * @dma_iter: DMA page iterator to hold current page
Jason Gunthorped901b272019-01-04 11:40:21 -0700437 * @dma_nents: maximum number of sg entries to iterate over, this is the value
438 * returned from dma_map_sg
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200439 * @pgoffset: starting page offset (in pages)
Jason Gunthorped901b272019-01-04 11:40:21 -0700440 *
441 * Callers may use sg_page_iter_dma_address() to get each page's DMA address.
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200442 * In each loop it operates on PAGE_SIZE unit.
Jason Gunthorped901b272019-01-04 11:40:21 -0700443 */
444#define for_each_sg_dma_page(sglist, dma_iter, dma_nents, pgoffset) \
445 for (__sg_page_iter_start(&(dma_iter)->base, sglist, dma_nents, \
446 pgoffset); \
447 __sg_page_iter_dma_next(dma_iter);)
448
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200449/**
450 * for_each_sgtable_page - iterate over all pages in the sg_table object
451 * @sgt: sg_table object to iterate over
452 * @piter: page iterator to hold current page
453 * @pgoffset: starting page offset (in pages)
454 *
455 * Iterates over the all memory pages in the buffer described by
456 * a scatterlist stored in the given sg_table object.
457 * See also for_each_sg_page(). In each loop it operates on PAGE_SIZE unit.
458 */
459#define for_each_sgtable_page(sgt, piter, pgoffset) \
Marek Szyprowski68d23702020-06-30 10:16:02 +0200460 for_each_sg_page((sgt)->sgl, piter, (sgt)->orig_nents, pgoffset)
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200461
462/**
463 * for_each_sgtable_dma_page - iterate over the DMA mapped sg_table object
464 * @sgt: sg_table object to iterate over
465 * @dma_iter: DMA page iterator to hold current page
466 * @pgoffset: starting page offset (in pages)
467 *
468 * Iterates over the all DMA mapped pages in the buffer described by
469 * a scatterlist stored in the given sg_table object.
470 * See also for_each_sg_dma_page(). In each loop it operates on PAGE_SIZE
471 * unit.
472 */
473#define for_each_sgtable_dma_page(sgt, dma_iter, pgoffset) \
Marek Szyprowski68d23702020-06-30 10:16:02 +0200474 for_each_sg_dma_page((sgt)->sgl, dma_iter, (sgt)->nents, pgoffset)
Marek Szyprowski709d6d72020-05-13 15:32:09 +0200475
476
Tejun Heo137d3ed2008-07-19 23:03:35 +0900477/*
478 * Mapping sg iterator
479 *
480 * Iterates over sg entries mapping page-by-page. On each successful
481 * iteration, @miter->page points to the mapped page and
482 * @miter->length bytes of data can be accessed at @miter->addr. As
483 * long as an interation is enclosed between start and stop, the user
484 * is free to choose control structure and when to stop.
485 *
486 * @miter->consumed is set to @miter->length on each iteration. It
487 * can be adjusted if the user can't consume all the bytes in one go.
488 * Also, a stopped iteration can be resumed by calling next on it.
489 * This is useful when iteration needs to release all resources and
490 * continue later (e.g. at the next interrupt).
491 */
492
493#define SG_MITER_ATOMIC (1 << 0) /* use kmap_atomic */
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200494#define SG_MITER_TO_SG (1 << 1) /* flush back to phys on unmap */
495#define SG_MITER_FROM_SG (1 << 2) /* nop */
Tejun Heo137d3ed2008-07-19 23:03:35 +0900496
497struct sg_mapping_iter {
498 /* the following three fields can be accessed directly */
499 struct page *page; /* currently mapped page */
500 void *addr; /* pointer to the mapped area */
501 size_t length; /* length of the mapped area */
502 size_t consumed; /* number of consumed bytes */
Imre Deak4225fc82013-02-27 17:02:57 -0800503 struct sg_page_iter piter; /* page iterator */
Tejun Heo137d3ed2008-07-19 23:03:35 +0900504
505 /* these are internal states, keep away */
Imre Deak4225fc82013-02-27 17:02:57 -0800506 unsigned int __offset; /* offset within page */
507 unsigned int __remaining; /* remaining bytes on page */
Tejun Heo137d3ed2008-07-19 23:03:35 +0900508 unsigned int __flags;
509};
510
511void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
512 unsigned int nents, unsigned int flags);
Ming Lei0d6077f2013-11-26 12:43:37 +0800513bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset);
Tejun Heo137d3ed2008-07-19 23:03:35 +0900514bool sg_miter_next(struct sg_mapping_iter *miter);
515void sg_miter_stop(struct sg_mapping_iter *miter);
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517#endif /* _LINUX_SCATTERLIST_H */