1
2#ifndef _LINUX_SCATTERLIST_H
3#define _LINUX_SCATTERLIST_H
4
5#include <linux/string.h>
6#include <linux/types.h>
7#include <linux/bug.h>
8#include <linux/mm.h>
9#include <asm/io.h>
10
11struct scatterlist {
12 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
22
23
24
25
26
27
28#define sg_dma_address(sg) ((sg)->dma_address)
29
30#ifdef CONFIG_NEED_SG_DMA_LENGTH
31#define sg_dma_len(sg) ((sg)->dma_length)
32#else
33#define sg_dma_len(sg) ((sg)->length)
34#endif
35
36struct sg_table {
37 struct scatterlist *sgl;
38 unsigned int nents;
39 unsigned int orig_nents;
40};
41
42struct sg_append_table {
43 struct sg_table sgt;
44 struct scatterlist *prv;
45 unsigned int total_nents;
46};
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64#define SG_CHAIN 0x01UL
65#define SG_END 0x02UL
66
67
68
69
70
71
72#define SG_PAGE_LINK_MASK (SG_CHAIN | SG_END)
73
74static inline unsigned int __sg_flags(struct scatterlist *sg)
75{
76 return sg->page_link & SG_PAGE_LINK_MASK;
77}
78
79static inline struct scatterlist *sg_chain_ptr(struct scatterlist *sg)
80{
81 return (struct scatterlist *)(sg->page_link & ~SG_PAGE_LINK_MASK);
82}
83
84static inline bool sg_is_chain(struct scatterlist *sg)
85{
86 return __sg_flags(sg) & SG_CHAIN;
87}
88
89static inline bool sg_is_last(struct scatterlist *sg)
90{
91 return __sg_flags(sg) & SG_END;
92}
93
94
95
96
97
98
99
100
101
102
103
104static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
105{
106 unsigned long page_link = sg->page_link & (SG_CHAIN | SG_END);
107
108
109
110
111
112 BUG_ON((unsigned long)page & SG_PAGE_LINK_MASK);
113#ifdef CONFIG_DEBUG_SG
114 BUG_ON(sg_is_chain(sg));
115#endif
116 sg->page_link = page_link | (unsigned long) page;
117}
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133static inline void sg_set_page(struct scatterlist *sg, struct page *page,
134 unsigned int len, unsigned int offset)
135{
136 sg_assign_page(sg, page);
137 sg->offset = offset;
138 sg->length = len;
139}
140
141static inline struct page *sg_page(struct scatterlist *sg)
142{
143#ifdef CONFIG_DEBUG_SG
144 BUG_ON(sg_is_chain(sg));
145#endif
146 return (struct page *)((sg)->page_link & ~SG_PAGE_LINK_MASK);
147}
148
149
150
151
152
153
154
155
156static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
157 unsigned int buflen)
158{
159#ifdef CONFIG_DEBUG_SG
160 BUG_ON(!virt_addr_valid(buf));
161#endif
162 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
163}
164
165
166
167
168#define for_each_sg(sglist, sg, nr, __i) \
169 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
170
171
172
173
174#define for_each_sgtable_sg(sgt, sg, i) \
175 for_each_sg((sgt)->sgl, sg, (sgt)->orig_nents, i)
176
177
178
179
180
181
182#define for_each_sgtable_dma_sg(sgt, sg, i) \
183 for_each_sg((sgt)->sgl, sg, (sgt)->nents, i)
184
185static inline void __sg_chain(struct scatterlist *chain_sg,
186 struct scatterlist *sgl)
187{
188
189
190
191 chain_sg->offset = 0;
192 chain_sg->length = 0;
193
194
195
196
197
198 chain_sg->page_link = ((unsigned long) sgl | SG_CHAIN) & ~SG_END;
199}
200
201
202
203
204
205
206
207
208
209
210
211static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
212 struct scatterlist *sgl)
213{
214 __sg_chain(&prv[prv_nents - 1], sgl);
215}
216
217
218
219
220
221
222
223
224
225
226static inline void sg_mark_end(struct scatterlist *sg)
227{
228
229
230
231 sg->page_link |= SG_END;
232 sg->page_link &= ~SG_CHAIN;
233}
234
235
236
237
238
239
240
241
242
243static inline void sg_unmark_end(struct scatterlist *sg)
244{
245 sg->page_link &= ~SG_END;
246}
247
248
249
250
251
252
253
254
255
256
257
258static inline dma_addr_t sg_phys(struct scatterlist *sg)
259{
260 return page_to_phys(sg_page(sg)) + sg->offset;
261}
262
263
264
265
266
267
268
269
270
271
272
273static inline void *sg_virt(struct scatterlist *sg)
274{
275 return page_address(sg_page(sg)) + sg->offset;
276}
277
278
279
280
281
282
283
284static inline void sg_init_marker(struct scatterlist *sgl,
285 unsigned int nents)
286{
287 sg_mark_end(&sgl[nents - 1]);
288}
289
290int sg_nents(struct scatterlist *sg);
291int sg_nents_for_len(struct scatterlist *sg, u64 len);
292struct scatterlist *sg_next(struct scatterlist *);
293struct scatterlist *sg_last(struct scatterlist *s, unsigned int);
294void sg_init_table(struct scatterlist *, unsigned int);
295void sg_init_one(struct scatterlist *, const void *, unsigned int);
296int sg_split(struct scatterlist *in, const int in_mapped_nents,
297 const off_t skip, const int nb_splits,
298 const size_t *split_sizes,
299 struct scatterlist **out, int *out_mapped_nents,
300 gfp_t gfp_mask);
301
302typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t);
303typedef void (sg_free_fn)(struct scatterlist *, unsigned int);
304
305void __sg_free_table(struct sg_table *, unsigned int, unsigned int,
306 sg_free_fn *, unsigned int);
307void sg_free_table(struct sg_table *);
308void sg_free_append_table(struct sg_append_table *sgt);
309int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int,
310 struct scatterlist *, unsigned int, gfp_t, sg_alloc_fn *);
311int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);
312int sg_alloc_append_table_from_pages(struct sg_append_table *sgt,
313 struct page **pages, unsigned int n_pages,
314 unsigned int offset, unsigned long size,
315 unsigned int max_segment,
316 unsigned int left_pages, gfp_t gfp_mask);
317int sg_alloc_table_from_pages_segment(struct sg_table *sgt, struct page **pages,
318 unsigned int n_pages, unsigned int offset,
319 unsigned long size,
320 unsigned int max_segment, gfp_t gfp_mask);
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342static inline int sg_alloc_table_from_pages(struct sg_table *sgt,
343 struct page **pages,
344 unsigned int n_pages,
345 unsigned int offset,
346 unsigned long size, gfp_t gfp_mask)
347{
348 return sg_alloc_table_from_pages_segment(sgt, pages, n_pages, offset,
349 size, UINT_MAX, gfp_mask);
350}
351
352#ifdef CONFIG_SGL_ALLOC
353struct scatterlist *sgl_alloc_order(unsigned long long length,
354 unsigned int order, bool chainable,
355 gfp_t gfp, unsigned int *nent_p);
356struct scatterlist *sgl_alloc(unsigned long long length, gfp_t gfp,
357 unsigned int *nent_p);
358void sgl_free_n_order(struct scatterlist *sgl, int nents, int order);
359void sgl_free_order(struct scatterlist *sgl, int order);
360void sgl_free(struct scatterlist *sgl);
361#endif
362
363size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf,
364 size_t buflen, off_t skip, bool to_buffer);
365
366size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
367 const void *buf, size_t buflen);
368size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
369 void *buf, size_t buflen);
370
371size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents,
372 const void *buf, size_t buflen, off_t skip);
373size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents,
374 void *buf, size_t buflen, off_t skip);
375size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents,
376 size_t buflen, off_t skip);
377
378
379
380
381
382#define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist))
383
384
385
386
387
388
389
390
391#define SG_CHUNK_SIZE 128
392
393
394
395
396
397#ifdef CONFIG_ARCH_NO_SG_CHAIN
398#define SG_MAX_SEGMENTS SG_CHUNK_SIZE
399#else
400#define SG_MAX_SEGMENTS 2048
401#endif
402
403#ifdef CONFIG_SG_POOL
404void sg_free_table_chained(struct sg_table *table,
405 unsigned nents_first_chunk);
406int sg_alloc_table_chained(struct sg_table *table, int nents,
407 struct scatterlist *first_chunk,
408 unsigned nents_first_chunk);
409#endif
410
411
412
413
414
415
416
417
418
419
420
421struct sg_page_iter {
422 struct scatterlist *sg;
423 unsigned int sg_pgoffset;
424
425
426 unsigned int __nents;
427 int __pg_advance;
428
429};
430
431
432
433
434
435
436
437
438struct sg_dma_page_iter {
439 struct sg_page_iter base;
440};
441
442bool __sg_page_iter_next(struct sg_page_iter *piter);
443bool __sg_page_iter_dma_next(struct sg_dma_page_iter *dma_iter);
444void __sg_page_iter_start(struct sg_page_iter *piter,
445 struct scatterlist *sglist, unsigned int nents,
446 unsigned long pgoffset);
447
448
449
450
451static inline struct page *sg_page_iter_page(struct sg_page_iter *piter)
452{
453 return nth_page(sg_page(piter->sg), piter->sg_pgoffset);
454}
455
456
457
458
459
460
461static inline dma_addr_t
462sg_page_iter_dma_address(struct sg_dma_page_iter *dma_iter)
463{
464 return sg_dma_address(dma_iter->base.sg) +
465 (dma_iter->base.sg_pgoffset << PAGE_SHIFT);
466}
467
468
469
470
471
472
473
474
475
476
477
478#define for_each_sg_page(sglist, piter, nents, pgoffset) \
479 for (__sg_page_iter_start((piter), (sglist), (nents), (pgoffset)); \
480 __sg_page_iter_next(piter);)
481
482
483
484
485
486
487
488
489
490
491
492
493#define for_each_sg_dma_page(sglist, dma_iter, dma_nents, pgoffset) \
494 for (__sg_page_iter_start(&(dma_iter)->base, sglist, dma_nents, \
495 pgoffset); \
496 __sg_page_iter_dma_next(dma_iter);)
497
498
499
500
501
502
503
504
505
506
507
508#define for_each_sgtable_page(sgt, piter, pgoffset) \
509 for_each_sg_page((sgt)->sgl, piter, (sgt)->orig_nents, pgoffset)
510
511
512
513
514
515
516
517
518
519
520
521
522#define for_each_sgtable_dma_page(sgt, dma_iter, pgoffset) \
523 for_each_sg_dma_page((sgt)->sgl, dma_iter, (sgt)->nents, pgoffset)
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542#define SG_MITER_ATOMIC (1 << 0)
543#define SG_MITER_TO_SG (1 << 1)
544#define SG_MITER_FROM_SG (1 << 2)
545
546struct sg_mapping_iter {
547
548 struct page *page;
549 void *addr;
550 size_t length;
551 size_t consumed;
552 struct sg_page_iter piter;
553
554
555 unsigned int __offset;
556 unsigned int __remaining;
557 unsigned int __flags;
558};
559
560void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
561 unsigned int nents, unsigned int flags);
562bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset);
563bool sg_miter_next(struct sg_mapping_iter *miter);
564void sg_miter_stop(struct sg_mapping_iter *miter);
565
566#endif
567