1 /* SPDX-License-Identifier: GPL-2.0 */ 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 11 struct 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 #ifdef CONFIG_NEED_SG_DMA_FLAGS 20 unsigned int dma_flags; 21 #endif 22 }; 23 24 /* 25 * These macros should be used after a dma_map_sg call has been done 26 * to get bus addresses of each of the SG entries and their lengths. 27 * You should only work with the number of sg entries dma_map_sg 28 * returns, or alternatively stop on the first sg_dma_len(sg) which 29 * is 0. 30 */ 31 #define sg_dma_address(sg) ((sg)->dma_address) 32 33 #ifdef CONFIG_NEED_SG_DMA_LENGTH 34 #define sg_dma_len(sg) ((sg)->dma_length) 35 #else 36 #define sg_dma_len(sg) ((sg)->length) 37 #endif 38 39 struct sg_table { 40 struct scatterlist *sgl; /* the list */ 41 unsigned int nents; /* number of mapped entries */ 42 unsigned int orig_nents; /* original size of list */ 43 }; 44 45 struct sg_append_table { 46 struct sg_table sgt; /* The scatter list table */ 47 struct scatterlist *prv; /* last populated sge in the table */ 48 unsigned int total_nents; /* Total entries in the table */ 49 }; 50 51 /* 52 * Notes on SG table design. 53 * 54 * 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. 57 * 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 */ 66 67 #define SG_CHAIN 0x01UL 68 #define SG_END 0x02UL 69 70 /* 71 * We overload the LSB of the page pointer to indicate whether it's 72 * a valid sg entry, or whether it points to the start of a new scatterlist. 73 * Those low bits are there for everyone! (thanks mason :-) 74 */ 75 #define SG_PAGE_LINK_MASK (SG_CHAIN | SG_END) 76 77 static inline unsigned int __sg_flags(struct scatterlist *sg) 78 { 79 return sg->page_link & SG_PAGE_LINK_MASK; 80 } 81 82 static inline struct scatterlist *sg_chain_ptr(struct scatterlist *sg) 83 { 84 return (struct scatterlist *)(sg->page_link & ~SG_PAGE_LINK_MASK); 85 } 86 87 static inline bool sg_is_chain(struct scatterlist *sg) 88 { 89 return __sg_flags(sg) & SG_CHAIN; 90 } 91 92 static inline bool sg_is_last(struct scatterlist *sg) 93 { 94 return __sg_flags(sg) & SG_END; 95 } 96 97 /** 98 * sg_assign_page - Assign a given page to an SG entry 99 * @sg: SG entry 100 * @page: The page 101 * 102 * Description: 103 * Assign page to sg entry. Also see sg_set_page(), the most commonly used 104 * variant. 105 * 106 **/ 107 static inline void sg_assign_page(struct scatterlist *sg, struct page *page) 108 { 109 unsigned long page_link = sg->page_link & (SG_CHAIN | SG_END); 110 111 /* 112 * In order for the low bit stealing approach to work, pages 113 * must be aligned at a 32-bit boundary as a minimum. 114 */ 115 BUG_ON((unsigned long)page & SG_PAGE_LINK_MASK); 116 #ifdef CONFIG_DEBUG_SG 117 BUG_ON(sg_is_chain(sg)); 118 #endif 119 sg->page_link = page_link | (unsigned long) page; 120 } 121 122 /** 123 * sg_set_page - Set sg entry to point at given page 124 * @sg: SG entry 125 * @page: The page 126 * @len: Length of data 127 * @offset: Offset into page 128 * 129 * Description: 130 * Use this function to set an sg entry pointing at a page, never assign 131 * the page directly. We encode sg table information in the lower bits 132 * of the page pointer. See sg_page() for looking up the page belonging 133 * to an sg entry. 134 * 135 **/ 136 static inline void sg_set_page(struct scatterlist *sg, struct page *page, 137 unsigned int len, unsigned int offset) 138 { 139 sg_assign_page(sg, page); 140 sg->offset = offset; 141 sg->length = len; 142 } 143 144 static inline struct page *sg_page(struct scatterlist *sg) 145 { 146 #ifdef CONFIG_DEBUG_SG 147 BUG_ON(sg_is_chain(sg)); 148 #endif 149 return (struct page *)((sg)->page_link & ~SG_PAGE_LINK_MASK); 150 } 151 152 /** 153 * sg_set_buf - Set sg entry to point at given data 154 * @sg: SG entry 155 * @buf: Data 156 * @buflen: Data length 157 * 158 **/ 159 static inline void sg_set_buf(struct scatterlist *sg, const void *buf, 160 unsigned int buflen) 161 { 162 #ifdef CONFIG_DEBUG_SG 163 BUG_ON(!virt_addr_valid(buf)); 164 #endif 165 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf)); 166 } 167 168 /* 169 * Loop over each sg element, following the pointer to a new list if necessary 170 */ 171 #define for_each_sg(sglist, sg, nr, __i) \ 172 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg)) 173 174 /* 175 * Loop over each sg element in the given sg_table object. 176 */ 177 #define for_each_sgtable_sg(sgt, sg, i) \ 178 for_each_sg((sgt)->sgl, sg, (sgt)->orig_nents, i) 179 180 /* 181 * Loop over each sg element in the given *DMA mapped* sg_table object. 182 * Please use sg_dma_address(sg) and sg_dma_len(sg) to extract DMA addresses 183 * of the each element. 184 */ 185 #define for_each_sgtable_dma_sg(sgt, sg, i) \ 186 for_each_sg((sgt)->sgl, sg, (sgt)->nents, i) 187 188 static inline void __sg_chain(struct scatterlist *chain_sg, 189 struct scatterlist *sgl) 190 { 191 /* 192 * offset and length are unused for chain entry. Clear them. 193 */ 194 chain_sg->offset = 0; 195 chain_sg->length = 0; 196 197 /* 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 chain_sg->page_link = ((unsigned long) sgl | SG_CHAIN) & ~SG_END; 202 } 203 204 /** 205 * sg_chain - Chain two sglists together 206 * @prv: First scatterlist 207 * @prv_nents: Number of entries in prv 208 * @sgl: Second scatterlist 209 * 210 * Description: 211 * Links @prv@ and @sgl@ together, to form a longer scatterlist. 212 * 213 **/ 214 static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents, 215 struct scatterlist *sgl) 216 { 217 __sg_chain(&prv[prv_nents - 1], sgl); 218 } 219 220 /** 221 * sg_mark_end - Mark the end of the scatterlist 222 * @sg: SG entryScatterlist 223 * 224 * Description: 225 * Marks the passed in sg entry as the termination point for the sg 226 * table. A call to sg_next() on this entry will return NULL. 227 * 228 **/ 229 static inline void sg_mark_end(struct scatterlist *sg) 230 { 231 /* 232 * Set termination bit, clear potential chain bit 233 */ 234 sg->page_link |= SG_END; 235 sg->page_link &= ~SG_CHAIN; 236 } 237 238 /** 239 * sg_unmark_end - Undo setting the end of the scatterlist 240 * @sg: SG entryScatterlist 241 * 242 * Description: 243 * Removes the termination marker from the given entry of the scatterlist. 244 * 245 **/ 246 static inline void sg_unmark_end(struct scatterlist *sg) 247 { 248 sg->page_link &= ~SG_END; 249 } 250 251 /* 252 * One 64-bit architectures there is a 4-byte padding in struct scatterlist 253 * (assuming also CONFIG_NEED_SG_DMA_LENGTH is set). Use this padding for DMA 254 * flags bits to indicate when a specific dma address is a bus address. 255 */ 256 #ifdef CONFIG_NEED_SG_DMA_FLAGS 257 258 #define SG_DMA_BUS_ADDRESS (1 << 0) 259 260 /** 261 * sg_dma_is_bus_address - Return whether a given segment was marked 262 * as a bus address 263 * @sg: SG entry 264 * 265 * Description: 266 * Returns true if sg_dma_mark_bus_address() has been called on 267 * this segment. 268 **/ 269 static inline bool sg_dma_is_bus_address(struct scatterlist *sg) 270 { 271 return sg->dma_flags & SG_DMA_BUS_ADDRESS; 272 } 273 274 /** 275 * sg_dma_mark_bus_address - Mark the scatterlist entry as a bus address 276 * @sg: SG entry 277 * 278 * Description: 279 * Marks the passed in sg entry to indicate that the dma_address is 280 * a bus address and doesn't need to be unmapped. This should only be 281 * used by dma_map_sg() implementations to mark bus addresses 282 * so they can be properly cleaned up in dma_unmap_sg(). 283 **/ 284 static inline void sg_dma_mark_bus_address(struct scatterlist *sg) 285 { 286 sg->dma_flags |= SG_DMA_BUS_ADDRESS; 287 } 288 289 /** 290 * sg_unmark_bus_address - Unmark the scatterlist entry as a bus address 291 * @sg: SG entry 292 * 293 * Description: 294 * Clears the bus address mark. 295 **/ 296 static inline void sg_dma_unmark_bus_address(struct scatterlist *sg) 297 { 298 sg->dma_flags &= ~SG_DMA_BUS_ADDRESS; 299 } 300 301 #else 302 303 static inline bool sg_dma_is_bus_address(struct scatterlist *sg) 304 { 305 return false; 306 } 307 static inline void sg_dma_mark_bus_address(struct scatterlist *sg) 308 { 309 } 310 static inline void sg_dma_unmark_bus_address(struct scatterlist *sg) 311 { 312 } 313 314 #endif /* CONFIG_NEED_SG_DMA_FLAGS */ 315 316 /** 317 * sg_phys - Return physical address of an sg entry 318 * @sg: SG entry 319 * 320 * Description: 321 * This calls page_to_phys() on the page in this sg entry, and adds the 322 * sg offset. The caller must know that it is legal to call page_to_phys() 323 * on the sg page. 324 * 325 **/ 326 static inline dma_addr_t sg_phys(struct scatterlist *sg) 327 { 328 return page_to_phys(sg_page(sg)) + sg->offset; 329 } 330 331 /** 332 * sg_virt - Return virtual address of an sg entry 333 * @sg: SG entry 334 * 335 * Description: 336 * This calls page_address() on the page in this sg entry, and adds the 337 * sg offset. The caller must know that the sg page has a valid virtual 338 * mapping. 339 * 340 **/ 341 static inline void *sg_virt(struct scatterlist *sg) 342 { 343 return page_address(sg_page(sg)) + sg->offset; 344 } 345 346 /** 347 * sg_init_marker - Initialize markers in sg table 348 * @sgl: The SG table 349 * @nents: Number of entries in table 350 * 351 **/ 352 static inline void sg_init_marker(struct scatterlist *sgl, 353 unsigned int nents) 354 { 355 sg_mark_end(&sgl[nents - 1]); 356 } 357 358 int sg_nents(struct scatterlist *sg); 359 int sg_nents_for_len(struct scatterlist *sg, u64 len); 360 struct scatterlist *sg_next(struct scatterlist *); 361 struct scatterlist *sg_last(struct scatterlist *s, unsigned int); 362 void sg_init_table(struct scatterlist *, unsigned int); 363 void sg_init_one(struct scatterlist *, const void *, unsigned int); 364 int sg_split(struct scatterlist *in, const int in_mapped_nents, 365 const off_t skip, const int nb_splits, 366 const size_t *split_sizes, 367 struct scatterlist **out, int *out_mapped_nents, 368 gfp_t gfp_mask); 369 370 typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t); 371 typedef void (sg_free_fn)(struct scatterlist *, unsigned int); 372 373 void __sg_free_table(struct sg_table *, unsigned int, unsigned int, 374 sg_free_fn *, unsigned int); 375 void sg_free_table(struct sg_table *); 376 void sg_free_append_table(struct sg_append_table *sgt); 377 int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, 378 struct scatterlist *, unsigned int, gfp_t, sg_alloc_fn *); 379 int sg_alloc_table(struct sg_table *, unsigned int, gfp_t); 380 int sg_alloc_append_table_from_pages(struct sg_append_table *sgt, 381 struct page **pages, unsigned int n_pages, 382 unsigned int offset, unsigned long size, 383 unsigned int max_segment, 384 unsigned int left_pages, gfp_t gfp_mask); 385 int sg_alloc_table_from_pages_segment(struct sg_table *sgt, struct page **pages, 386 unsigned int n_pages, unsigned int offset, 387 unsigned long size, 388 unsigned int max_segment, gfp_t gfp_mask); 389 390 /** 391 * sg_alloc_table_from_pages - Allocate and initialize an sg table from 392 * an array of pages 393 * @sgt: The sg table header to use 394 * @pages: Pointer to an array of page pointers 395 * @n_pages: Number of pages in the pages array 396 * @offset: Offset from start of the first page to the start of a buffer 397 * @size: Number of valid bytes in the buffer (after offset) 398 * @gfp_mask: GFP allocation mask 399 * 400 * Description: 401 * Allocate and initialize an sg table from a list of pages. Contiguous 402 * ranges of the pages are squashed into a single scatterlist node. A user 403 * may provide an offset at a start and a size of valid data in a buffer 404 * specified by the page array. The returned sg table is released by 405 * sg_free_table. 406 * 407 * Returns: 408 * 0 on success, negative error on failure 409 */ 410 static inline int sg_alloc_table_from_pages(struct sg_table *sgt, 411 struct page **pages, 412 unsigned int n_pages, 413 unsigned int offset, 414 unsigned long size, gfp_t gfp_mask) 415 { 416 return sg_alloc_table_from_pages_segment(sgt, pages, n_pages, offset, 417 size, UINT_MAX, gfp_mask); 418 } 419 420 #ifdef CONFIG_SGL_ALLOC 421 struct scatterlist *sgl_alloc_order(unsigned long long length, 422 unsigned int order, bool chainable, 423 gfp_t gfp, unsigned int *nent_p); 424 struct scatterlist *sgl_alloc(unsigned long long length, gfp_t gfp, 425 unsigned int *nent_p); 426 void sgl_free_n_order(struct scatterlist *sgl, int nents, int order); 427 void sgl_free_order(struct scatterlist *sgl, int order); 428 void sgl_free(struct scatterlist *sgl); 429 #endif /* CONFIG_SGL_ALLOC */ 430 431 size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf, 432 size_t buflen, off_t skip, bool to_buffer); 433 434 size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents, 435 const void *buf, size_t buflen); 436 size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents, 437 void *buf, size_t buflen); 438 439 size_t sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents, 440 const void *buf, size_t buflen, off_t skip); 441 size_t sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents, 442 void *buf, size_t buflen, off_t skip); 443 size_t sg_zero_buffer(struct scatterlist *sgl, unsigned int nents, 444 size_t buflen, off_t skip); 445 446 /* 447 * Maximum number of entries that will be allocated in one piece, if 448 * a list larger than this is required then chaining will be utilized. 449 */ 450 #define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist)) 451 452 /* 453 * The maximum number of SG segments that we will put inside a 454 * scatterlist (unless chaining is used). Should ideally fit inside a 455 * single page, to avoid a higher order allocation. We could define this 456 * to SG_MAX_SINGLE_ALLOC to pack correctly at the highest order. The 457 * minimum value is 32 458 */ 459 #define SG_CHUNK_SIZE 128 460 461 /* 462 * Like SG_CHUNK_SIZE, but for archs that have sg chaining. This limit 463 * is totally arbitrary, a setting of 2048 will get you at least 8mb ios. 464 */ 465 #ifdef CONFIG_ARCH_NO_SG_CHAIN 466 #define SG_MAX_SEGMENTS SG_CHUNK_SIZE 467 #else 468 #define SG_MAX_SEGMENTS 2048 469 #endif 470 471 #ifdef CONFIG_SG_POOL 472 void sg_free_table_chained(struct sg_table *table, 473 unsigned nents_first_chunk); 474 int sg_alloc_table_chained(struct sg_table *table, int nents, 475 struct scatterlist *first_chunk, 476 unsigned nents_first_chunk); 477 #endif 478 479 /* 480 * sg page iterator 481 * 482 * Iterates over sg entries page-by-page. On each successful iteration, you 483 * can call sg_page_iter_page(@piter) to get the current page. 484 * @piter->sg will point to the sg holding this page and @piter->sg_pgoffset to 485 * the page's page offset within the sg. The iteration will stop either when a 486 * maximum number of sg entries was reached or a terminating sg 487 * (sg_last(sg) == true) was reached. 488 */ 489 struct sg_page_iter { 490 struct scatterlist *sg; /* sg holding the page */ 491 unsigned int sg_pgoffset; /* page offset within the sg */ 492 493 /* these are internal states, keep away */ 494 unsigned int __nents; /* remaining sg entries */ 495 int __pg_advance; /* nr pages to advance at the 496 * next step */ 497 }; 498 499 /* 500 * sg page iterator for DMA addresses 501 * 502 * This is the same as sg_page_iter however you can call 503 * sg_page_iter_dma_address(@dma_iter) to get the page's DMA 504 * address. sg_page_iter_page() cannot be called on this iterator. 505 */ 506 struct sg_dma_page_iter { 507 struct sg_page_iter base; 508 }; 509 510 bool __sg_page_iter_next(struct sg_page_iter *piter); 511 bool __sg_page_iter_dma_next(struct sg_dma_page_iter *dma_iter); 512 void __sg_page_iter_start(struct sg_page_iter *piter, 513 struct scatterlist *sglist, unsigned int nents, 514 unsigned long pgoffset); 515 /** 516 * sg_page_iter_page - get the current page held by the page iterator 517 * @piter: page iterator holding the page 518 */ 519 static inline struct page *sg_page_iter_page(struct sg_page_iter *piter) 520 { 521 return nth_page(sg_page(piter->sg), piter->sg_pgoffset); 522 } 523 524 /** 525 * sg_page_iter_dma_address - get the dma address of the current page held by 526 * the page iterator. 527 * @dma_iter: page iterator holding the page 528 */ 529 static inline dma_addr_t 530 sg_page_iter_dma_address(struct sg_dma_page_iter *dma_iter) 531 { 532 return sg_dma_address(dma_iter->base.sg) + 533 (dma_iter->base.sg_pgoffset << PAGE_SHIFT); 534 } 535 536 /** 537 * for_each_sg_page - iterate over the pages of the given sg list 538 * @sglist: sglist to iterate over 539 * @piter: page iterator to hold current page, sg, sg_pgoffset 540 * @nents: maximum number of sg entries to iterate over 541 * @pgoffset: starting page offset (in pages) 542 * 543 * Callers may use sg_page_iter_page() to get each page pointer. 544 * In each loop it operates on PAGE_SIZE unit. 545 */ 546 #define for_each_sg_page(sglist, piter, nents, pgoffset) \ 547 for (__sg_page_iter_start((piter), (sglist), (nents), (pgoffset)); \ 548 __sg_page_iter_next(piter);) 549 550 /** 551 * for_each_sg_dma_page - iterate over the pages of the given sg list 552 * @sglist: sglist to iterate over 553 * @dma_iter: DMA page iterator to hold current page 554 * @dma_nents: maximum number of sg entries to iterate over, this is the value 555 * returned from dma_map_sg 556 * @pgoffset: starting page offset (in pages) 557 * 558 * Callers may use sg_page_iter_dma_address() to get each page's DMA address. 559 * In each loop it operates on PAGE_SIZE unit. 560 */ 561 #define for_each_sg_dma_page(sglist, dma_iter, dma_nents, pgoffset) \ 562 for (__sg_page_iter_start(&(dma_iter)->base, sglist, dma_nents, \ 563 pgoffset); \ 564 __sg_page_iter_dma_next(dma_iter);) 565 566 /** 567 * for_each_sgtable_page - iterate over all pages in the sg_table object 568 * @sgt: sg_table object to iterate over 569 * @piter: page iterator to hold current page 570 * @pgoffset: starting page offset (in pages) 571 * 572 * Iterates over the all memory pages in the buffer described by 573 * a scatterlist stored in the given sg_table object. 574 * See also for_each_sg_page(). In each loop it operates on PAGE_SIZE unit. 575 */ 576 #define for_each_sgtable_page(sgt, piter, pgoffset) \ 577 for_each_sg_page((sgt)->sgl, piter, (sgt)->orig_nents, pgoffset) 578 579 /** 580 * for_each_sgtable_dma_page - iterate over the DMA mapped sg_table object 581 * @sgt: sg_table object to iterate over 582 * @dma_iter: DMA page iterator to hold current page 583 * @pgoffset: starting page offset (in pages) 584 * 585 * Iterates over the all DMA mapped pages in the buffer described by 586 * a scatterlist stored in the given sg_table object. 587 * See also for_each_sg_dma_page(). In each loop it operates on PAGE_SIZE 588 * unit. 589 */ 590 #define for_each_sgtable_dma_page(sgt, dma_iter, pgoffset) \ 591 for_each_sg_dma_page((sgt)->sgl, dma_iter, (sgt)->nents, pgoffset) 592 593 594 /* 595 * Mapping sg iterator 596 * 597 * Iterates over sg entries mapping page-by-page. On each successful 598 * iteration, @miter->page points to the mapped page and 599 * @miter->length bytes of data can be accessed at @miter->addr. As 600 * long as an iteration is enclosed between start and stop, the user 601 * is free to choose control structure and when to stop. 602 * 603 * @miter->consumed is set to @miter->length on each iteration. It 604 * can be adjusted if the user can't consume all the bytes in one go. 605 * Also, a stopped iteration can be resumed by calling next on it. 606 * This is useful when iteration needs to release all resources and 607 * continue later (e.g. at the next interrupt). 608 */ 609 610 #define SG_MITER_ATOMIC (1 << 0) /* use kmap_atomic */ 611 #define SG_MITER_TO_SG (1 << 1) /* flush back to phys on unmap */ 612 #define SG_MITER_FROM_SG (1 << 2) /* nop */ 613 614 struct sg_mapping_iter { 615 /* the following three fields can be accessed directly */ 616 struct page *page; /* currently mapped page */ 617 void *addr; /* pointer to the mapped area */ 618 size_t length; /* length of the mapped area */ 619 size_t consumed; /* number of consumed bytes */ 620 struct sg_page_iter piter; /* page iterator */ 621 622 /* these are internal states, keep away */ 623 unsigned int __offset; /* offset within page */ 624 unsigned int __remaining; /* remaining bytes on page */ 625 unsigned int __flags; 626 }; 627 628 void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl, 629 unsigned int nents, unsigned int flags); 630 bool sg_miter_skip(struct sg_mapping_iter *miter, off_t offset); 631 bool sg_miter_next(struct sg_mapping_iter *miter); 632 void sg_miter_stop(struct sg_mapping_iter *miter); 633 634 #endif /* _LINUX_SCATTERLIST_H */ 635