blob: aa5d4eb725f5af918382e799f4b2101709024f35 [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 {
12#ifdef CONFIG_DEBUG_SG
13 unsigned long sg_magic;
14#endif
15 unsigned long page_link;
16 unsigned int offset;
17 unsigned int length;
18 dma_addr_t dma_address;
19#ifdef CONFIG_NEED_SG_DMA_LENGTH
20 unsigned int dma_length;
21#endif
22};
23
24/*
Tvrtko Ursulinc1259062017-08-03 10:13:12 +010025 * Since the above length field is an unsigned int, below we define the maximum
26 * length in bytes that can be stored in one scatterlist entry.
27 */
28#define SCATTERLIST_MAX_SEGMENT (UINT_MAX & PAGE_MASK)
29
30/*
Christoph Hellwig84be4562015-05-01 12:46:15 +020031 * These macros should be used after a dma_map_sg call has been done
32 * to get bus addresses of each of the SG entries and their lengths.
33 * You should only work with the number of sg entries dma_map_sg
34 * returns, or alternatively stop on the first sg_dma_len(sg) which
35 * is 0.
36 */
37#define sg_dma_address(sg) ((sg)->dma_address)
38
39#ifdef CONFIG_NEED_SG_DMA_LENGTH
40#define sg_dma_len(sg) ((sg)->dma_length)
41#else
42#define sg_dma_len(sg) ((sg)->length)
43#endif
44
Jens Axboe0db92992007-11-30 09:16:50 +010045struct sg_table {
46 struct scatterlist *sgl; /* the list */
47 unsigned int nents; /* number of mapped entries */
48 unsigned int orig_nents; /* original size of list */
49};
50
Jens Axboe18dabf42007-10-22 19:57:20 +020051/*
52 * Notes on SG table design.
53 *
Christoph Hellwig84be4562015-05-01 12:46:15 +020054 * We use the unsigned long page_link field in the scatterlist struct to place
55 * the page pointer AND encode information about the sg table as well. The two
56 * lower bits are reserved for this information.
Jens Axboe18dabf42007-10-22 19:57:20 +020057 *
58 * If bit 0 is set, then the page_link contains a pointer to the next sg
59 * table list. Otherwise the next entry is at sg + 1.
60 *
61 * If bit 1 is set, then this sg entry is the last element in a list.
62 *
63 * See sg_next().
64 *
65 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Jens Axboed6ec0842007-10-22 20:01:06 +020067#define SG_MAGIC 0x87654321
68
Tejun Heo645a8d92007-11-27 09:30:39 +010069/*
70 * We overload the LSB of the page pointer to indicate whether it's
71 * a valid sg entry, or whether it points to the start of a new scatterlist.
72 * Those low bits are there for everyone! (thanks mason :-)
73 */
74#define sg_is_chain(sg) ((sg)->page_link & 0x01)
75#define sg_is_last(sg) ((sg)->page_link & 0x02)
76#define sg_chain_ptr(sg) \
77 ((struct scatterlist *) ((sg)->page_link & ~0x03))
78
Jens Axboe82f66fb2007-10-22 17:07:37 +020079/**
Jens Axboe642f149032007-10-24 11:20:47 +020080 * sg_assign_page - Assign a given page to an SG entry
81 * @sg: SG entry
82 * @page: The page
Jens Axboe82f66fb2007-10-22 17:07:37 +020083 *
84 * Description:
Jens Axboe642f149032007-10-24 11:20:47 +020085 * Assign page to sg entry. Also see sg_set_page(), the most commonly used
86 * variant.
Jens Axboe82f66fb2007-10-22 17:07:37 +020087 *
88 **/
Jens Axboe642f149032007-10-24 11:20:47 +020089static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
Jens Axboe82f66fb2007-10-22 17:07:37 +020090{
Jens Axboe18dabf42007-10-22 19:57:20 +020091 unsigned long page_link = sg->page_link & 0x3;
92
Jens Axboede261032007-10-23 20:35:58 +020093 /*
94 * In order for the low bit stealing approach to work, pages
95 * must be aligned at a 32-bit boundary as a minimum.
96 */
97 BUG_ON((unsigned long) page & 0x03);
Jens Axboed6ec0842007-10-22 20:01:06 +020098#ifdef CONFIG_DEBUG_SG
99 BUG_ON(sg->sg_magic != SG_MAGIC);
Tejun Heo645a8d92007-11-27 09:30:39 +0100100 BUG_ON(sg_is_chain(sg));
Jens Axboed6ec0842007-10-22 20:01:06 +0200101#endif
Jens Axboe18dabf42007-10-22 19:57:20 +0200102 sg->page_link = page_link | (unsigned long) page;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200103}
104
Jens Axboe642f149032007-10-24 11:20:47 +0200105/**
106 * sg_set_page - Set sg entry to point at given page
107 * @sg: SG entry
108 * @page: The page
109 * @len: Length of data
110 * @offset: Offset into page
111 *
112 * Description:
113 * Use this function to set an sg entry pointing at a page, never assign
114 * the page directly. We encode sg table information in the lower bits
115 * of the page pointer. See sg_page() for looking up the page belonging
116 * to an sg entry.
117 *
118 **/
119static inline void sg_set_page(struct scatterlist *sg, struct page *page,
120 unsigned int len, unsigned int offset)
121{
122 sg_assign_page(sg, page);
123 sg->offset = offset;
124 sg->length = len;
125}
126
Tejun Heo645a8d92007-11-27 09:30:39 +0100127static inline struct page *sg_page(struct scatterlist *sg)
128{
129#ifdef CONFIG_DEBUG_SG
130 BUG_ON(sg->sg_magic != SG_MAGIC);
131 BUG_ON(sg_is_chain(sg));
132#endif
133 return (struct page *)((sg)->page_link & ~0x3);
134}
Jens Axboe82f66fb2007-10-22 17:07:37 +0200135
Jens Axboe18dabf42007-10-22 19:57:20 +0200136/**
137 * sg_set_buf - Set sg entry to point at given data
138 * @sg: SG entry
139 * @buf: Data
140 * @buflen: Data length
141 *
142 **/
Herbert Xu03fd9ce2006-08-14 23:11:53 +1000143static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
Herbert Xud32311f2005-09-17 14:41:40 +1000144 unsigned int buflen)
145{
Rusty Russellac4e97a2013-05-30 09:19:35 +0200146#ifdef CONFIG_DEBUG_SG
147 BUG_ON(!virt_addr_valid(buf));
148#endif
Jens Axboe642f149032007-10-24 11:20:47 +0200149 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Jens Axboe96b418c2007-05-09 09:02:57 +0200152/*
153 * Loop over each sg element, following the pointer to a new list if necessary
154 */
155#define for_each_sg(sglist, sg, nr, __i) \
156 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
157
Jens Axboe70eb8042007-07-16 21:17:16 +0200158/**
Jens Axboe70eb8042007-07-16 21:17:16 +0200159 * sg_chain - Chain two sglists together
160 * @prv: First scatterlist
161 * @prv_nents: Number of entries in prv
162 * @sgl: Second scatterlist
163 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200164 * Description:
165 * Links @prv@ and @sgl@ together, to form a longer scatterlist.
Jens Axboe70eb8042007-07-16 21:17:16 +0200166 *
Jens Axboe18dabf42007-10-22 19:57:20 +0200167 **/
Jens Axboe70eb8042007-07-16 21:17:16 +0200168static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
169 struct scatterlist *sgl)
170{
Tejun Heo645a8d92007-11-27 09:30:39 +0100171 /*
172 * offset and length are unused for chain entry. Clear them.
173 */
Rusty Russellb801a1e2008-01-11 10:12:55 +0100174 prv[prv_nents - 1].offset = 0;
175 prv[prv_nents - 1].length = 0;
Tejun Heo645a8d92007-11-27 09:30:39 +0100176
Jens Axboe73fd5462007-10-26 09:32:16 +0200177 /*
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 prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
Jens Axboe70eb8042007-07-16 21:17:16 +0200182}
183
Jens Axboe82f66fb2007-10-22 17:07:37 +0200184/**
185 * sg_mark_end - Mark the end of the scatterlist
Jens Axboec46f2332007-10-31 12:06:37 +0100186 * @sg: SG entryScatterlist
Jens Axboe82f66fb2007-10-22 17:07:37 +0200187 *
188 * Description:
Jens Axboec46f2332007-10-31 12:06:37 +0100189 * Marks the passed in sg entry as the termination point for the sg
190 * table. A call to sg_next() on this entry will return NULL.
Jens Axboe82f66fb2007-10-22 17:07:37 +0200191 *
192 **/
Jens Axboec46f2332007-10-31 12:06:37 +0100193static inline void sg_mark_end(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200194{
Jens Axboec46f2332007-10-31 12:06:37 +0100195#ifdef CONFIG_DEBUG_SG
196 BUG_ON(sg->sg_magic != SG_MAGIC);
197#endif
198 /*
199 * Set termination bit, clear potential chain bit
200 */
Jens Axboe18dabf42007-10-22 19:57:20 +0200201 sg->page_link |= 0x02;
Jens Axboec46f2332007-10-31 12:06:37 +0100202 sg->page_link &= ~0x01;
Jens Axboe82f66fb2007-10-22 17:07:37 +0200203}
204
Jens Axboe82f66fb2007-10-22 17:07:37 +0200205/**
Paolo Bonzinic8164d82013-03-20 15:37:08 +1030206 * sg_unmark_end - Undo setting the end of the scatterlist
207 * @sg: SG entryScatterlist
208 *
209 * Description:
210 * Removes the termination marker from the given entry of the scatterlist.
211 *
212 **/
213static inline void sg_unmark_end(struct scatterlist *sg)
214{
215#ifdef CONFIG_DEBUG_SG
216 BUG_ON(sg->sg_magic != SG_MAGIC);
217#endif
218 sg->page_link &= ~0x02;
219}
220
221/**
Jens Axboe82f66fb2007-10-22 17:07:37 +0200222 * sg_phys - Return physical address of an sg entry
223 * @sg: SG entry
224 *
225 * Description:
226 * This calls page_to_phys() on the page in this sg entry, and adds the
227 * sg offset. The caller must know that it is legal to call page_to_phys()
228 * on the sg page.
229 *
230 **/
Hugh Dickins85cdffc2007-10-25 09:55:05 +0200231static inline dma_addr_t sg_phys(struct scatterlist *sg)
Jens Axboe82f66fb2007-10-22 17:07:37 +0200232{
233 return page_to_phys(sg_page(sg)) + sg->offset;
234}
235
236/**
237 * sg_virt - Return virtual address of an sg entry
Jens Axboe18dabf42007-10-22 19:57:20 +0200238 * @sg: SG entry
Jens Axboe82f66fb2007-10-22 17:07:37 +0200239 *
240 * Description:
241 * This calls page_address() on the page in this sg entry, and adds the
242 * sg offset. The caller must know that the sg page has a valid virtual
243 * mapping.
244 *
245 **/
246static inline void *sg_virt(struct scatterlist *sg)
247{
248 return page_address(sg_page(sg)) + sg->offset;
249}
250
Prashant Bholef3851782018-03-30 09:20:59 +0900251/**
252 * sg_init_marker - Initialize markers in sg table
253 * @sgl: The SG table
254 * @nents: Number of entries in table
255 *
256 **/
257static inline void sg_init_marker(struct scatterlist *sgl,
258 unsigned int nents)
259{
260#ifdef CONFIG_DEBUG_SG
261 unsigned int i;
262
263 for (i = 0; i < nents; i++)
264 sgl[i].sg_magic = SG_MAGIC;
265#endif
266 sg_mark_end(&sgl[nents - 1]);
267}
268
Maxim Levitsky2e484612012-09-27 12:45:28 +0200269int sg_nents(struct scatterlist *sg);
Tom Lendackycfaed102015-06-01 11:15:25 -0500270int sg_nents_for_len(struct scatterlist *sg, u64 len);
Jens Axboe0db92992007-11-30 09:16:50 +0100271struct scatterlist *sg_next(struct scatterlist *);
272struct scatterlist *sg_last(struct scatterlist *s, unsigned int);
273void sg_init_table(struct scatterlist *, unsigned int);
274void sg_init_one(struct scatterlist *, const void *, unsigned int);
Robert Jarzmikf8bcbe62015-08-08 10:44:10 +0200275int sg_split(struct scatterlist *in, const int in_mapped_nents,
276 const off_t skip, const int nb_splits,
277 const size_t *split_sizes,
278 struct scatterlist **out, int *out_mapped_nents,
279 gfp_t gfp_mask);
Jens Axboe0db92992007-11-30 09:16:50 +0100280
281typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t);
282typedef void (sg_free_fn)(struct scatterlist *, unsigned int);
283
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200284void __sg_free_table(struct sg_table *, unsigned int, bool, sg_free_fn *);
Jens Axboe0db92992007-11-30 09:16:50 +0100285void sg_free_table(struct sg_table *);
Christoph Hellwigc53c6d62014-04-15 14:38:31 +0200286int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int,
287 struct scatterlist *, gfp_t, sg_alloc_fn *);
Jens Axboe0db92992007-11-30 09:16:50 +0100288int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);
Tvrtko Ursulin89d85892017-08-03 10:13:51 +0100289int __sg_alloc_table_from_pages(struct sg_table *sgt, struct page **pages,
290 unsigned int n_pages, unsigned int offset,
291 unsigned long size, unsigned int max_segment,
292 gfp_t gfp_mask);
293int sg_alloc_table_from_pages(struct sg_table *sgt, struct page **pages,
294 unsigned int n_pages, unsigned int offset,
295 unsigned long size, gfp_t gfp_mask);
Jens Axboe0db92992007-11-30 09:16:50 +0100296
Bart Van Asschee80a0af2018-01-05 08:26:46 -0800297#ifdef CONFIG_SGL_ALLOC
298struct scatterlist *sgl_alloc_order(unsigned long long length,
299 unsigned int order, bool chainable,
300 gfp_t gfp, unsigned int *nent_p);
301struct scatterlist *sgl_alloc(unsigned long long length, gfp_t gfp,
302 unsigned int *nent_p);
Bart Van Assche8c7a8d12018-01-19 11:00:54 -0800303void sgl_free_n_order(struct scatterlist *sgl, int nents, int order);
Bart Van Asschee80a0af2018-01-05 08:26:46 -0800304void sgl_free_order(struct scatterlist *sgl, int order);
305void sgl_free(struct scatterlist *sgl);
306#endif /* CONFIG_SGL_ALLOC */
307
Dave Gordon386ecb12015-06-30 14:58:57 -0700308size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf,
309 size_t buflen, off_t skip, bool to_buffer);
310
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900311size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700312 const void *buf, size_t buflen);
FUJITA Tomonorib1adaf62008-03-18 00:15:03 +0900313size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
314 void *buf, size_t buflen);
315
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700316size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
Dave Gordon2a1bf8f2015-06-30 14:58:54 -0700317 const void *buf, size_t buflen, off_t skip);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700318size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
319 void *buf, size_t buflen, off_t skip);
Johannes Thumshirn0945e562017-06-07 11:45:28 +0200320size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents,
321 size_t buflen, off_t skip);
Akinobu Mitadf642ce2013-07-08 16:01:54 -0700322
Jens Axboe0db92992007-11-30 09:16:50 +0100323/*
324 * Maximum number of entries that will be allocated in one piece, if
325 * a list larger than this is required then chaining will be utilized.
326 */
327#define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist))
328
Imre Deaka321e912013-02-27 17:02:56 -0800329/*
Ming Lin9b1d6c82016-04-04 14:48:11 -0700330 * The maximum number of SG segments that we will put inside a
331 * scatterlist (unless chaining is used). Should ideally fit inside a
332 * single page, to avoid a higher order allocation. We could define this
333 * to SG_MAX_SINGLE_ALLOC to pack correctly at the highest order. The
334 * minimum value is 32
335 */
336#define SG_CHUNK_SIZE 128
337
338/*
339 * Like SG_CHUNK_SIZE, but for archs that have sg chaining. This limit
340 * is totally arbitrary, a setting of 2048 will get you at least 8mb ios.
341 */
342#ifdef CONFIG_ARCH_HAS_SG_CHAIN
343#define SG_MAX_SEGMENTS 2048
344#else
345#define SG_MAX_SEGMENTS SG_CHUNK_SIZE
346#endif
347
348#ifdef CONFIG_SG_POOL
349void sg_free_table_chained(struct sg_table *table, bool first_chunk);
350int sg_alloc_table_chained(struct sg_table *table, int nents,
351 struct scatterlist *first_chunk);
352#endif
353
354/*
Imre Deaka321e912013-02-27 17:02:56 -0800355 * sg page iterator
356 *
357 * Iterates over sg entries page-by-page. On each successful iteration,
Imre Deak2db76d72013-03-26 15:14:18 +0200358 * you can call sg_page_iter_page(@piter) and sg_page_iter_dma_address(@piter)
359 * to get the current page and its dma address. @piter->sg will point to the
360 * sg holding this page and @piter->sg_pgoffset to the page's page offset
361 * within the sg. The iteration will stop either when a maximum number of sg
362 * entries was reached or a terminating sg (sg_last(sg) == true) was reached.
Imre Deaka321e912013-02-27 17:02:56 -0800363 */
364struct sg_page_iter {
Imre Deaka321e912013-02-27 17:02:56 -0800365 struct scatterlist *sg; /* sg holding the page */
366 unsigned int sg_pgoffset; /* page offset within the sg */
367
368 /* these are internal states, keep away */
369 unsigned int __nents; /* remaining sg entries */
370 int __pg_advance; /* nr pages to advance at the
371 * next step */
372};
373
374bool __sg_page_iter_next(struct sg_page_iter *piter);
375void __sg_page_iter_start(struct sg_page_iter *piter,
376 struct scatterlist *sglist, unsigned int nents,
377 unsigned long pgoffset);
Imre Deak2db76d72013-03-26 15:14:18 +0200378/**
379 * sg_page_iter_page - get the current page held by the page iterator
380 * @piter: page iterator holding the page
381 */
382static inline struct page *sg_page_iter_page(struct sg_page_iter *piter)
383{
384 return nth_page(sg_page(piter->sg), piter->sg_pgoffset);
385}
386
387/**
388 * sg_page_iter_dma_address - get the dma address of the current page held by
389 * the page iterator.
390 * @piter: page iterator holding the page
391 */
392static inline dma_addr_t sg_page_iter_dma_address(struct sg_page_iter *piter)
393{
394 return sg_dma_address(piter->sg) + (piter->sg_pgoffset << PAGE_SHIFT);
395}
Imre Deaka321e912013-02-27 17:02:56 -0800396
397/**
398 * for_each_sg_page - iterate over the pages of the given sg list
399 * @sglist: sglist to iterate over
400 * @piter: page iterator to hold current page, sg, sg_pgoffset
401 * @nents: maximum number of sg entries to iterate over
402 * @pgoffset: starting page offset
403 */
404#define for_each_sg_page(sglist, piter, nents, pgoffset) \
405 for (__sg_page_iter_start((piter), (sglist), (nents), (pgoffset)); \
406 __sg_page_iter_next(piter);)
Tejun Heo137d3ed2008-07-19 23:03:35 +0900407
408/*
409 * Mapping sg iterator
410 *
411 * Iterates over sg entries mapping page-by-page. On each successful
412 * iteration, @miter->page points to the mapped page and
413 * @miter->length bytes of data can be accessed at @miter->addr. As
414 * long as an interation is enclosed between start and stop, the user
415 * is free to choose control structure and when to stop.
416 *
417 * @miter->consumed is set to @miter->length on each iteration. It
418 * can be adjusted if the user can't consume all the bytes in one go.
419 * Also, a stopped iteration can be resumed by calling next on it.
420 * This is useful when iteration needs to release all resources and
421 * continue later (e.g. at the next interrupt).
422 */
423
424#define SG_MITER_ATOMIC (1 << 0) /* use kmap_atomic */
Sebastian Andrzej Siewior6de7e3562009-06-18 10:19:12 +0200425#define SG_MITER_TO_SG (1 << 1) /* flush back to phys on unmap */
426#define SG_MITER_FROM_SG (1 << 2) /* nop */
Tejun Heo137d3ed2008-07-19 23:03:35 +0900427
428struct sg_mapping_iter {
429 /* the following three fields can be accessed directly */
430 struct page *page; /* currently mapped page */
431 void *addr; /* pointer to the mapped area */
432 size_t length; /* length of the mapped area */
433 size_t consumed; /* number of consumed bytes */
Imre Deak4225fc82013-02-27 17:02:57 -0800434 struct sg_page_iter piter; /* page iterator */
Tejun Heo137d3ed2008-07-19 23:03:35 +0900435
436 /* these are internal states, keep away */
Imre Deak4225fc82013-02-27 17:02:57 -0800437 unsigned int __offset; /* offset within page */
438 unsigned int __remaining; /* remaining bytes on page */
Tejun Heo137d3ed2008-07-19 23:03:35 +0900439 unsigned int __flags;
440};
441
442void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
443 unsigned int nents, unsigned int flags);
Ming Lei0d6077f2013-11-26 12:43:37 +0800444bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset);
Tejun Heo137d3ed2008-07-19 23:03:35 +0900445bool sg_miter_next(struct sg_mapping_iter *miter);
446void sg_miter_stop(struct sg_mapping_iter *miter);
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448#endif /* _LINUX_SCATTERLIST_H */