1 /* SPDX-License-Identifier: GPL-2.0 */
4 #include <linux/kernel.h>
8 unsigned long page_link;
11 dma_addr_t dma_address;
14 /* Scatterlist helpers, stolen from linux/scatterlist.h */
15 #define sg_is_chain(sg) ((sg)->page_link & 0x01)
16 #define sg_is_last(sg) ((sg)->page_link & 0x02)
17 #define sg_chain_ptr(sg) \
18 ((struct scatterlist *) ((sg)->page_link & ~0x03))
21 * sg_assign_page - Assign a given page to an SG entry
26 * Assign page to sg entry. Also see sg_set_page(), the most commonly used
30 static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
32 unsigned long page_link = sg->page_link & 0x3;
35 * In order for the low bit stealing approach to work, pages
36 * must be aligned at a 32-bit boundary as a minimum.
38 BUG_ON((unsigned long) page & 0x03);
39 #ifdef CONFIG_DEBUG_SG
40 BUG_ON(sg_is_chain(sg));
42 sg->page_link = page_link | (unsigned long) page;
46 * sg_set_page - Set sg entry to point at given page
49 * @len: Length of data
50 * @offset: Offset into page
53 * Use this function to set an sg entry pointing at a page, never assign
54 * the page directly. We encode sg table information in the lower bits
55 * of the page pointer. See sg_page() for looking up the page belonging
59 static inline void sg_set_page(struct scatterlist *sg, struct page *page,
60 unsigned int len, unsigned int offset)
62 sg_assign_page(sg, page);
67 static inline struct page *sg_page(struct scatterlist *sg)
69 #ifdef CONFIG_DEBUG_SG
70 BUG_ON(sg_is_chain(sg));
72 return (struct page *)((sg)->page_link & ~0x3);
76 * Loop over each sg element, following the pointer to a new list if necessary
78 #define for_each_sg(sglist, sg, nr, __i) \
79 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
82 * sg_chain - Chain two sglists together
83 * @prv: First scatterlist
84 * @prv_nents: Number of entries in prv
85 * @sgl: Second scatterlist
88 * Links @prv@ and @sgl@ together, to form a longer scatterlist.
91 static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
92 struct scatterlist *sgl)
95 * offset and length are unused for chain entry. Clear them.
97 prv[prv_nents - 1].offset = 0;
98 prv[prv_nents - 1].length = 0;
101 * Set lowest bit to indicate a link pointer, and make sure to clear
102 * the termination bit if it happens to be set.
104 prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
108 * sg_mark_end - Mark the end of the scatterlist
109 * @sg: SG entryScatterlist
112 * Marks the passed in sg entry as the termination point for the sg
113 * table. A call to sg_next() on this entry will return NULL.
116 static inline void sg_mark_end(struct scatterlist *sg)
119 * Set termination bit, clear potential chain bit
121 sg->page_link |= 0x02;
122 sg->page_link &= ~0x01;
126 * sg_unmark_end - Undo setting the end of the scatterlist
127 * @sg: SG entryScatterlist
130 * Removes the termination marker from the given entry of the scatterlist.
133 static inline void sg_unmark_end(struct scatterlist *sg)
135 sg->page_link &= ~0x02;
138 static inline struct scatterlist *sg_next(struct scatterlist *sg)
144 if (unlikely(sg_is_chain(sg)))
145 sg = sg_chain_ptr(sg);
150 static inline void sg_init_table(struct scatterlist *sgl, unsigned int nents)
152 memset(sgl, 0, sizeof(*sgl) * nents);
153 sg_mark_end(&sgl[nents - 1]);
156 static inline dma_addr_t sg_phys(struct scatterlist *sg)
158 return page_to_phys(sg_page(sg)) + sg->offset;
161 static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
164 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
167 static inline void sg_init_one(struct scatterlist *sg,
168 const void *buf, unsigned int buflen)
170 sg_init_table(sg, 1);
171 sg_set_buf(sg, buf, buflen);
173 #endif /* SCATTERLIST_H */