drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / scatterlist.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_SCATTERLIST_H
2#define _LINUX_SCATTERLIST_H
3
187f1882
PG
4#include <linux/string.h>
5#include <linux/bug.h>
6#include <linux/mm.h>
7
85cdffcd 8#include <asm/types.h>
d32311fe 9#include <asm/scatterlist.h>
18dabf47
JA
10#include <asm/io.h>
11
0db9299f
JA
12struct sg_table {
13 struct scatterlist *sgl; /* the list */
14 unsigned int nents; /* number of mapped entries */
15 unsigned int orig_nents; /* original size of list */
16};
17
18dabf47
JA
18/*
19 * Notes on SG table design.
20 *
21 * Architectures must provide an unsigned long page_link field in the
22 * scatterlist struct. We use that to place the page pointer AND encode
23 * information about the sg table as well. The two lower bits are reserved
24 * for this information.
25 *
26 * If bit 0 is set, then the page_link contains a pointer to the next sg
27 * table list. Otherwise the next entry is at sg + 1.
28 *
29 * If bit 1 is set, then this sg entry is the last element in a list.
30 *
31 * See sg_next().
32 *
33 */
1da177e4 34
d6ec0842
JA
35#define SG_MAGIC 0x87654321
36
645a8d94
TH
37/*
38 * We overload the LSB of the page pointer to indicate whether it's
39 * a valid sg entry, or whether it points to the start of a new scatterlist.
40 * Those low bits are there for everyone! (thanks mason :-)
41 */
42#define sg_is_chain(sg) ((sg)->page_link & 0x01)
43#define sg_is_last(sg) ((sg)->page_link & 0x02)
44#define sg_chain_ptr(sg) \
45 ((struct scatterlist *) ((sg)->page_link & ~0x03))
46
82f66fbe 47/**
642f1490
JA
48 * sg_assign_page - Assign a given page to an SG entry
49 * @sg: SG entry
50 * @page: The page
82f66fbe
JA
51 *
52 * Description:
642f1490
JA
53 * Assign page to sg entry. Also see sg_set_page(), the most commonly used
54 * variant.
82f66fbe
JA
55 *
56 **/
642f1490 57static inline void sg_assign_page(struct scatterlist *sg, struct page *page)
82f66fbe 58{
18dabf47
JA
59 unsigned long page_link = sg->page_link & 0x3;
60
de26103d
JA
61 /*
62 * In order for the low bit stealing approach to work, pages
63 * must be aligned at a 32-bit boundary as a minimum.
64 */
65 BUG_ON((unsigned long) page & 0x03);
d6ec0842
JA
66#ifdef CONFIG_DEBUG_SG
67 BUG_ON(sg->sg_magic != SG_MAGIC);
645a8d94 68 BUG_ON(sg_is_chain(sg));
d6ec0842 69#endif
18dabf47 70 sg->page_link = page_link | (unsigned long) page;
82f66fbe
JA
71}
72
642f1490
JA
73/**
74 * sg_set_page - Set sg entry to point at given page
75 * @sg: SG entry
76 * @page: The page
77 * @len: Length of data
78 * @offset: Offset into page
79 *
80 * Description:
81 * Use this function to set an sg entry pointing at a page, never assign
82 * the page directly. We encode sg table information in the lower bits
83 * of the page pointer. See sg_page() for looking up the page belonging
84 * to an sg entry.
85 *
86 **/
87static inline void sg_set_page(struct scatterlist *sg, struct page *page,
88 unsigned int len, unsigned int offset)
89{
90 sg_assign_page(sg, page);
91 sg->offset = offset;
92 sg->length = len;
6fa3eb70
S
93#ifdef CONFIG_NEED_SG_DMA_LENGTH
94 sg->dma_length = len;
95#endif
642f1490
JA
96}
97
645a8d94
TH
98static inline struct page *sg_page(struct scatterlist *sg)
99{
100#ifdef CONFIG_DEBUG_SG
101 BUG_ON(sg->sg_magic != SG_MAGIC);
102 BUG_ON(sg_is_chain(sg));
103#endif
104 return (struct page *)((sg)->page_link & ~0x3);
105}
82f66fbe 106
18dabf47
JA
107/**
108 * sg_set_buf - Set sg entry to point at given data
109 * @sg: SG entry
110 * @buf: Data
111 * @buflen: Data length
112 *
113 **/
03fd9cee 114static inline void sg_set_buf(struct scatterlist *sg, const void *buf,
d32311fe
HX
115 unsigned int buflen)
116{
ac4e97ab
RR
117#ifdef CONFIG_DEBUG_SG
118 BUG_ON(!virt_addr_valid(buf));
119#endif
642f1490 120 sg_set_page(sg, virt_to_page(buf), buflen, offset_in_page(buf));
1da177e4
LT
121}
122
96b418c9
JA
123/*
124 * Loop over each sg element, following the pointer to a new list if necessary
125 */
126#define for_each_sg(sglist, sg, nr, __i) \
127 for (__i = 0, sg = (sglist); __i < (nr); __i++, sg = sg_next(sg))
128
70eb8040
JA
129/**
130 * sg_chain - Chain two sglists together
131 * @prv: First scatterlist
132 * @prv_nents: Number of entries in prv
133 * @sgl: Second scatterlist
134 *
18dabf47
JA
135 * Description:
136 * Links @prv@ and @sgl@ together, to form a longer scatterlist.
70eb8040 137 *
18dabf47 138 **/
70eb8040
JA
139static inline void sg_chain(struct scatterlist *prv, unsigned int prv_nents,
140 struct scatterlist *sgl)
141{
142#ifndef ARCH_HAS_SG_CHAIN
143 BUG();
144#endif
645a8d94
TH
145
146 /*
147 * offset and length are unused for chain entry. Clear them.
148 */
b801a1e7
RR
149 prv[prv_nents - 1].offset = 0;
150 prv[prv_nents - 1].length = 0;
645a8d94 151
73fd546a
JA
152 /*
153 * Set lowest bit to indicate a link pointer, and make sure to clear
154 * the termination bit if it happens to be set.
155 */
156 prv[prv_nents - 1].page_link = ((unsigned long) sgl | 0x01) & ~0x02;
70eb8040
JA
157}
158
82f66fbe
JA
159/**
160 * sg_mark_end - Mark the end of the scatterlist
c46f2334 161 * @sg: SG entryScatterlist
82f66fbe
JA
162 *
163 * Description:
c46f2334
JA
164 * Marks the passed in sg entry as the termination point for the sg
165 * table. A call to sg_next() on this entry will return NULL.
82f66fbe
JA
166 *
167 **/
c46f2334 168static inline void sg_mark_end(struct scatterlist *sg)
82f66fbe 169{
c46f2334
JA
170#ifdef CONFIG_DEBUG_SG
171 BUG_ON(sg->sg_magic != SG_MAGIC);
172#endif
173 /*
174 * Set termination bit, clear potential chain bit
175 */
18dabf47 176 sg->page_link |= 0x02;
c46f2334 177 sg->page_link &= ~0x01;
82f66fbe
JA
178}
179
c8164d89
PB
180/**
181 * sg_unmark_end - Undo setting the end of the scatterlist
182 * @sg: SG entryScatterlist
183 *
184 * Description:
185 * Removes the termination marker from the given entry of the scatterlist.
186 *
187 **/
188static inline void sg_unmark_end(struct scatterlist *sg)
189{
190#ifdef CONFIG_DEBUG_SG
191 BUG_ON(sg->sg_magic != SG_MAGIC);
192#endif
193 sg->page_link &= ~0x02;
194}
195
82f66fbe
JA
196/**
197 * sg_phys - Return physical address of an sg entry
198 * @sg: SG entry
199 *
200 * Description:
201 * This calls page_to_phys() on the page in this sg entry, and adds the
202 * sg offset. The caller must know that it is legal to call page_to_phys()
203 * on the sg page.
204 *
205 **/
85cdffcd 206static inline dma_addr_t sg_phys(struct scatterlist *sg)
82f66fbe
JA
207{
208 return page_to_phys(sg_page(sg)) + sg->offset;
209}
210
211/**
212 * sg_virt - Return virtual address of an sg entry
18dabf47 213 * @sg: SG entry
82f66fbe
JA
214 *
215 * Description:
216 * This calls page_address() on the page in this sg entry, and adds the
217 * sg offset. The caller must know that the sg page has a valid virtual
218 * mapping.
219 *
220 **/
221static inline void *sg_virt(struct scatterlist *sg)
222{
223 return page_address(sg_page(sg)) + sg->offset;
224}
225
2e484610 226int sg_nents(struct scatterlist *sg);
0db9299f
JA
227struct scatterlist *sg_next(struct scatterlist *);
228struct scatterlist *sg_last(struct scatterlist *s, unsigned int);
229void sg_init_table(struct scatterlist *, unsigned int);
230void sg_init_one(struct scatterlist *, const void *, unsigned int);
231
232typedef struct scatterlist *(sg_alloc_fn)(unsigned int, gfp_t);
233typedef void (sg_free_fn)(struct scatterlist *, unsigned int);
234
7cedb1f1 235void __sg_free_table(struct sg_table *, unsigned int, sg_free_fn *);
0db9299f 236void sg_free_table(struct sg_table *);
7cedb1f1
JB
237int __sg_alloc_table(struct sg_table *, unsigned int, unsigned int, gfp_t,
238 sg_alloc_fn *);
0db9299f 239int sg_alloc_table(struct sg_table *, unsigned int, gfp_t);
efc42bc9
TS
240int sg_alloc_table_from_pages(struct sg_table *sgt,
241 struct page **pages, unsigned int n_pages,
242 unsigned long offset, unsigned long size,
243 gfp_t gfp_mask);
0db9299f 244
b1adaf65
FT
245size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
246 void *buf, size_t buflen);
247size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
248 void *buf, size_t buflen);
249
0db9299f
JA
250/*
251 * Maximum number of entries that will be allocated in one piece, if
252 * a list larger than this is required then chaining will be utilized.
253 */
254#define SG_MAX_SINGLE_ALLOC (PAGE_SIZE / sizeof(struct scatterlist))
255
a321e91b
ID
256/*
257 * sg page iterator
258 *
259 * Iterates over sg entries page-by-page. On each successful iteration,
2db76d7c
ID
260 * you can call sg_page_iter_page(@piter) and sg_page_iter_dma_address(@piter)
261 * to get the current page and its dma address. @piter->sg will point to the
262 * sg holding this page and @piter->sg_pgoffset to the page's page offset
263 * within the sg. The iteration will stop either when a maximum number of sg
264 * entries was reached or a terminating sg (sg_last(sg) == true) was reached.
a321e91b
ID
265 */
266struct sg_page_iter {
a321e91b
ID
267 struct scatterlist *sg; /* sg holding the page */
268 unsigned int sg_pgoffset; /* page offset within the sg */
269
270 /* these are internal states, keep away */
271 unsigned int __nents; /* remaining sg entries */
272 int __pg_advance; /* nr pages to advance at the
273 * next step */
274};
275
276bool __sg_page_iter_next(struct sg_page_iter *piter);
277void __sg_page_iter_start(struct sg_page_iter *piter,
278 struct scatterlist *sglist, unsigned int nents,
279 unsigned long pgoffset);
2db76d7c
ID
280/**
281 * sg_page_iter_page - get the current page held by the page iterator
282 * @piter: page iterator holding the page
283 */
284static inline struct page *sg_page_iter_page(struct sg_page_iter *piter)
285{
286 return nth_page(sg_page(piter->sg), piter->sg_pgoffset);
287}
288
289/**
290 * sg_page_iter_dma_address - get the dma address of the current page held by
291 * the page iterator.
292 * @piter: page iterator holding the page
293 */
294static inline dma_addr_t sg_page_iter_dma_address(struct sg_page_iter *piter)
295{
296 return sg_dma_address(piter->sg) + (piter->sg_pgoffset << PAGE_SHIFT);
297}
a321e91b
ID
298
299/**
300 * for_each_sg_page - iterate over the pages of the given sg list
301 * @sglist: sglist to iterate over
302 * @piter: page iterator to hold current page, sg, sg_pgoffset
303 * @nents: maximum number of sg entries to iterate over
304 * @pgoffset: starting page offset
305 */
306#define for_each_sg_page(sglist, piter, nents, pgoffset) \
307 for (__sg_page_iter_start((piter), (sglist), (nents), (pgoffset)); \
308 __sg_page_iter_next(piter);)
137d3edb
TH
309
310/*
311 * Mapping sg iterator
312 *
313 * Iterates over sg entries mapping page-by-page. On each successful
314 * iteration, @miter->page points to the mapped page and
315 * @miter->length bytes of data can be accessed at @miter->addr. As
316 * long as an interation is enclosed between start and stop, the user
317 * is free to choose control structure and when to stop.
318 *
319 * @miter->consumed is set to @miter->length on each iteration. It
320 * can be adjusted if the user can't consume all the bytes in one go.
321 * Also, a stopped iteration can be resumed by calling next on it.
322 * This is useful when iteration needs to release all resources and
323 * continue later (e.g. at the next interrupt).
324 */
325
326#define SG_MITER_ATOMIC (1 << 0) /* use kmap_atomic */
6de7e356
SAS
327#define SG_MITER_TO_SG (1 << 1) /* flush back to phys on unmap */
328#define SG_MITER_FROM_SG (1 << 2) /* nop */
137d3edb
TH
329
330struct sg_mapping_iter {
331 /* the following three fields can be accessed directly */
332 struct page *page; /* currently mapped page */
333 void *addr; /* pointer to the mapped area */
334 size_t length; /* length of the mapped area */
335 size_t consumed; /* number of consumed bytes */
4225fc85 336 struct sg_page_iter piter; /* page iterator */
137d3edb
TH
337
338 /* these are internal states, keep away */
4225fc85
ID
339 unsigned int __offset; /* offset within page */
340 unsigned int __remaining; /* remaining bytes on page */
137d3edb
TH
341 unsigned int __flags;
342};
343
344void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
345 unsigned int nents, unsigned int flags);
346bool sg_miter_next(struct sg_mapping_iter *miter);
347void sg_miter_stop(struct sg_mapping_iter *miter);
348
1da177e4 349#endif /* _LINUX_SCATTERLIST_H */