xref: /openbmc/linux/lib/scatterlist.c (revision 4225fc85)
10db9299fSJens Axboe /*
20db9299fSJens Axboe  * Copyright (C) 2007 Jens Axboe <jens.axboe@oracle.com>
30db9299fSJens Axboe  *
40db9299fSJens Axboe  * Scatterlist handling helpers.
50db9299fSJens Axboe  *
60db9299fSJens Axboe  * This source code is licensed under the GNU General Public License,
70db9299fSJens Axboe  * Version 2. See the file COPYING for more details.
80db9299fSJens Axboe  */
98bc3bcc9SPaul Gortmaker #include <linux/export.h>
105a0e3ad6STejun Heo #include <linux/slab.h>
110db9299fSJens Axboe #include <linux/scatterlist.h>
12b1adaf65SFUJITA Tomonori #include <linux/highmem.h>
13b94de9bbSChris Wilson #include <linux/kmemleak.h>
140db9299fSJens Axboe 
150db9299fSJens Axboe /**
160db9299fSJens Axboe  * sg_next - return the next scatterlist entry in a list
170db9299fSJens Axboe  * @sg:		The current sg entry
180db9299fSJens Axboe  *
190db9299fSJens Axboe  * Description:
200db9299fSJens Axboe  *   Usually the next entry will be @sg@ + 1, but if this sg element is part
210db9299fSJens Axboe  *   of a chained scatterlist, it could jump to the start of a new
220db9299fSJens Axboe  *   scatterlist array.
230db9299fSJens Axboe  *
240db9299fSJens Axboe  **/
250db9299fSJens Axboe struct scatterlist *sg_next(struct scatterlist *sg)
260db9299fSJens Axboe {
270db9299fSJens Axboe #ifdef CONFIG_DEBUG_SG
280db9299fSJens Axboe 	BUG_ON(sg->sg_magic != SG_MAGIC);
290db9299fSJens Axboe #endif
300db9299fSJens Axboe 	if (sg_is_last(sg))
310db9299fSJens Axboe 		return NULL;
320db9299fSJens Axboe 
330db9299fSJens Axboe 	sg++;
340db9299fSJens Axboe 	if (unlikely(sg_is_chain(sg)))
350db9299fSJens Axboe 		sg = sg_chain_ptr(sg);
360db9299fSJens Axboe 
370db9299fSJens Axboe 	return sg;
380db9299fSJens Axboe }
390db9299fSJens Axboe EXPORT_SYMBOL(sg_next);
400db9299fSJens Axboe 
410db9299fSJens Axboe /**
422e484610SMaxim Levitsky  * sg_nents - return total count of entries in scatterlist
432e484610SMaxim Levitsky  * @sg:		The scatterlist
442e484610SMaxim Levitsky  *
452e484610SMaxim Levitsky  * Description:
462e484610SMaxim Levitsky  * Allows to know how many entries are in sg, taking into acount
472e484610SMaxim Levitsky  * chaining as well
482e484610SMaxim Levitsky  *
492e484610SMaxim Levitsky  **/
502e484610SMaxim Levitsky int sg_nents(struct scatterlist *sg)
512e484610SMaxim Levitsky {
52232f1b51SMaxim Levitsky 	int nents;
53232f1b51SMaxim Levitsky 	for (nents = 0; sg; sg = sg_next(sg))
542e484610SMaxim Levitsky 		nents++;
552e484610SMaxim Levitsky 	return nents;
562e484610SMaxim Levitsky }
572e484610SMaxim Levitsky EXPORT_SYMBOL(sg_nents);
582e484610SMaxim Levitsky 
592e484610SMaxim Levitsky 
602e484610SMaxim Levitsky /**
610db9299fSJens Axboe  * sg_last - return the last scatterlist entry in a list
620db9299fSJens Axboe  * @sgl:	First entry in the scatterlist
630db9299fSJens Axboe  * @nents:	Number of entries in the scatterlist
640db9299fSJens Axboe  *
650db9299fSJens Axboe  * Description:
660db9299fSJens Axboe  *   Should only be used casually, it (currently) scans the entire list
670db9299fSJens Axboe  *   to get the last entry.
680db9299fSJens Axboe  *
690db9299fSJens Axboe  *   Note that the @sgl@ pointer passed in need not be the first one,
700db9299fSJens Axboe  *   the important bit is that @nents@ denotes the number of entries that
710db9299fSJens Axboe  *   exist from @sgl@.
720db9299fSJens Axboe  *
730db9299fSJens Axboe  **/
740db9299fSJens Axboe struct scatterlist *sg_last(struct scatterlist *sgl, unsigned int nents)
750db9299fSJens Axboe {
760db9299fSJens Axboe #ifndef ARCH_HAS_SG_CHAIN
770db9299fSJens Axboe 	struct scatterlist *ret = &sgl[nents - 1];
780db9299fSJens Axboe #else
790db9299fSJens Axboe 	struct scatterlist *sg, *ret = NULL;
800db9299fSJens Axboe 	unsigned int i;
810db9299fSJens Axboe 
820db9299fSJens Axboe 	for_each_sg(sgl, sg, nents, i)
830db9299fSJens Axboe 		ret = sg;
840db9299fSJens Axboe 
850db9299fSJens Axboe #endif
860db9299fSJens Axboe #ifdef CONFIG_DEBUG_SG
870db9299fSJens Axboe 	BUG_ON(sgl[0].sg_magic != SG_MAGIC);
880db9299fSJens Axboe 	BUG_ON(!sg_is_last(ret));
890db9299fSJens Axboe #endif
900db9299fSJens Axboe 	return ret;
910db9299fSJens Axboe }
920db9299fSJens Axboe EXPORT_SYMBOL(sg_last);
930db9299fSJens Axboe 
940db9299fSJens Axboe /**
950db9299fSJens Axboe  * sg_init_table - Initialize SG table
960db9299fSJens Axboe  * @sgl:	   The SG table
970db9299fSJens Axboe  * @nents:	   Number of entries in table
980db9299fSJens Axboe  *
990db9299fSJens Axboe  * Notes:
1000db9299fSJens Axboe  *   If this is part of a chained sg table, sg_mark_end() should be
1010db9299fSJens Axboe  *   used only on the last table part.
1020db9299fSJens Axboe  *
1030db9299fSJens Axboe  **/
1040db9299fSJens Axboe void sg_init_table(struct scatterlist *sgl, unsigned int nents)
1050db9299fSJens Axboe {
1060db9299fSJens Axboe 	memset(sgl, 0, sizeof(*sgl) * nents);
1070db9299fSJens Axboe #ifdef CONFIG_DEBUG_SG
1080db9299fSJens Axboe 	{
1090db9299fSJens Axboe 		unsigned int i;
1100db9299fSJens Axboe 		for (i = 0; i < nents; i++)
1110db9299fSJens Axboe 			sgl[i].sg_magic = SG_MAGIC;
1120db9299fSJens Axboe 	}
1130db9299fSJens Axboe #endif
1140db9299fSJens Axboe 	sg_mark_end(&sgl[nents - 1]);
1150db9299fSJens Axboe }
1160db9299fSJens Axboe EXPORT_SYMBOL(sg_init_table);
1170db9299fSJens Axboe 
1180db9299fSJens Axboe /**
1190db9299fSJens Axboe  * sg_init_one - Initialize a single entry sg list
1200db9299fSJens Axboe  * @sg:		 SG entry
1210db9299fSJens Axboe  * @buf:	 Virtual address for IO
1220db9299fSJens Axboe  * @buflen:	 IO length
1230db9299fSJens Axboe  *
1240db9299fSJens Axboe  **/
1250db9299fSJens Axboe void sg_init_one(struct scatterlist *sg, const void *buf, unsigned int buflen)
1260db9299fSJens Axboe {
1270db9299fSJens Axboe 	sg_init_table(sg, 1);
1280db9299fSJens Axboe 	sg_set_buf(sg, buf, buflen);
1290db9299fSJens Axboe }
1300db9299fSJens Axboe EXPORT_SYMBOL(sg_init_one);
1310db9299fSJens Axboe 
1320db9299fSJens Axboe /*
1330db9299fSJens Axboe  * The default behaviour of sg_alloc_table() is to use these kmalloc/kfree
1340db9299fSJens Axboe  * helpers.
1350db9299fSJens Axboe  */
1360db9299fSJens Axboe static struct scatterlist *sg_kmalloc(unsigned int nents, gfp_t gfp_mask)
1370db9299fSJens Axboe {
138b94de9bbSChris Wilson 	if (nents == SG_MAX_SINGLE_ALLOC) {
139b94de9bbSChris Wilson 		/*
140b94de9bbSChris Wilson 		 * Kmemleak doesn't track page allocations as they are not
141b94de9bbSChris Wilson 		 * commonly used (in a raw form) for kernel data structures.
142b94de9bbSChris Wilson 		 * As we chain together a list of pages and then a normal
143b94de9bbSChris Wilson 		 * kmalloc (tracked by kmemleak), in order to for that last
144b94de9bbSChris Wilson 		 * allocation not to become decoupled (and thus a
145b94de9bbSChris Wilson 		 * false-positive) we need to inform kmemleak of all the
146b94de9bbSChris Wilson 		 * intermediate allocations.
147b94de9bbSChris Wilson 		 */
148b94de9bbSChris Wilson 		void *ptr = (void *) __get_free_page(gfp_mask);
149b94de9bbSChris Wilson 		kmemleak_alloc(ptr, PAGE_SIZE, 1, gfp_mask);
150b94de9bbSChris Wilson 		return ptr;
151b94de9bbSChris Wilson 	} else
1520db9299fSJens Axboe 		return kmalloc(nents * sizeof(struct scatterlist), gfp_mask);
1530db9299fSJens Axboe }
1540db9299fSJens Axboe 
1550db9299fSJens Axboe static void sg_kfree(struct scatterlist *sg, unsigned int nents)
1560db9299fSJens Axboe {
157b94de9bbSChris Wilson 	if (nents == SG_MAX_SINGLE_ALLOC) {
158b94de9bbSChris Wilson 		kmemleak_free(sg);
1590db9299fSJens Axboe 		free_page((unsigned long) sg);
160b94de9bbSChris Wilson 	} else
1610db9299fSJens Axboe 		kfree(sg);
1620db9299fSJens Axboe }
1630db9299fSJens Axboe 
1640db9299fSJens Axboe /**
1650db9299fSJens Axboe  * __sg_free_table - Free a previously mapped sg table
1660db9299fSJens Axboe  * @table:	The sg table header to use
1677cedb1f1SJames Bottomley  * @max_ents:	The maximum number of entries per single scatterlist
1680db9299fSJens Axboe  * @free_fn:	Free function
1690db9299fSJens Axboe  *
1700db9299fSJens Axboe  *  Description:
1717cedb1f1SJames Bottomley  *    Free an sg table previously allocated and setup with
1727cedb1f1SJames Bottomley  *    __sg_alloc_table().  The @max_ents value must be identical to
1737cedb1f1SJames Bottomley  *    that previously used with __sg_alloc_table().
1740db9299fSJens Axboe  *
1750db9299fSJens Axboe  **/
1767cedb1f1SJames Bottomley void __sg_free_table(struct sg_table *table, unsigned int max_ents,
1777cedb1f1SJames Bottomley 		     sg_free_fn *free_fn)
1780db9299fSJens Axboe {
1790db9299fSJens Axboe 	struct scatterlist *sgl, *next;
1800db9299fSJens Axboe 
1810db9299fSJens Axboe 	if (unlikely(!table->sgl))
1820db9299fSJens Axboe 		return;
1830db9299fSJens Axboe 
1840db9299fSJens Axboe 	sgl = table->sgl;
1850db9299fSJens Axboe 	while (table->orig_nents) {
1860db9299fSJens Axboe 		unsigned int alloc_size = table->orig_nents;
1870db9299fSJens Axboe 		unsigned int sg_size;
1880db9299fSJens Axboe 
1890db9299fSJens Axboe 		/*
1907cedb1f1SJames Bottomley 		 * If we have more than max_ents segments left,
1910db9299fSJens Axboe 		 * then assign 'next' to the sg table after the current one.
1920db9299fSJens Axboe 		 * sg_size is then one less than alloc size, since the last
1930db9299fSJens Axboe 		 * element is the chain pointer.
1940db9299fSJens Axboe 		 */
1957cedb1f1SJames Bottomley 		if (alloc_size > max_ents) {
1967cedb1f1SJames Bottomley 			next = sg_chain_ptr(&sgl[max_ents - 1]);
1977cedb1f1SJames Bottomley 			alloc_size = max_ents;
1980db9299fSJens Axboe 			sg_size = alloc_size - 1;
1990db9299fSJens Axboe 		} else {
2000db9299fSJens Axboe 			sg_size = alloc_size;
2010db9299fSJens Axboe 			next = NULL;
2020db9299fSJens Axboe 		}
2030db9299fSJens Axboe 
2040db9299fSJens Axboe 		table->orig_nents -= sg_size;
2050db9299fSJens Axboe 		free_fn(sgl, alloc_size);
2060db9299fSJens Axboe 		sgl = next;
2070db9299fSJens Axboe 	}
2080db9299fSJens Axboe 
2090db9299fSJens Axboe 	table->sgl = NULL;
2100db9299fSJens Axboe }
2110db9299fSJens Axboe EXPORT_SYMBOL(__sg_free_table);
2120db9299fSJens Axboe 
2130db9299fSJens Axboe /**
2140db9299fSJens Axboe  * sg_free_table - Free a previously allocated sg table
2150db9299fSJens Axboe  * @table:	The mapped sg table header
2160db9299fSJens Axboe  *
2170db9299fSJens Axboe  **/
2180db9299fSJens Axboe void sg_free_table(struct sg_table *table)
2190db9299fSJens Axboe {
2207cedb1f1SJames Bottomley 	__sg_free_table(table, SG_MAX_SINGLE_ALLOC, sg_kfree);
2210db9299fSJens Axboe }
2220db9299fSJens Axboe EXPORT_SYMBOL(sg_free_table);
2230db9299fSJens Axboe 
2240db9299fSJens Axboe /**
2250db9299fSJens Axboe  * __sg_alloc_table - Allocate and initialize an sg table with given allocator
2260db9299fSJens Axboe  * @table:	The sg table header to use
2270db9299fSJens Axboe  * @nents:	Number of entries in sg list
2287cedb1f1SJames Bottomley  * @max_ents:	The maximum number of entries the allocator returns per call
2290db9299fSJens Axboe  * @gfp_mask:	GFP allocation mask
2300db9299fSJens Axboe  * @alloc_fn:	Allocator to use
2310db9299fSJens Axboe  *
2327cedb1f1SJames Bottomley  * Description:
2337cedb1f1SJames Bottomley  *   This function returns a @table @nents long. The allocator is
2347cedb1f1SJames Bottomley  *   defined to return scatterlist chunks of maximum size @max_ents.
2357cedb1f1SJames Bottomley  *   Thus if @nents is bigger than @max_ents, the scatterlists will be
2367cedb1f1SJames Bottomley  *   chained in units of @max_ents.
2377cedb1f1SJames Bottomley  *
2380db9299fSJens Axboe  * Notes:
2390db9299fSJens Axboe  *   If this function returns non-0 (eg failure), the caller must call
2400db9299fSJens Axboe  *   __sg_free_table() to cleanup any leftover allocations.
2410db9299fSJens Axboe  *
2420db9299fSJens Axboe  **/
2437cedb1f1SJames Bottomley int __sg_alloc_table(struct sg_table *table, unsigned int nents,
2447cedb1f1SJames Bottomley 		     unsigned int max_ents, gfp_t gfp_mask,
2450db9299fSJens Axboe 		     sg_alloc_fn *alloc_fn)
2460db9299fSJens Axboe {
2470db9299fSJens Axboe 	struct scatterlist *sg, *prv;
2480db9299fSJens Axboe 	unsigned int left;
2490db9299fSJens Axboe 
2500db9299fSJens Axboe #ifndef ARCH_HAS_SG_CHAIN
2516fd59a83SNick Bowler 	if (WARN_ON_ONCE(nents > max_ents))
2526fd59a83SNick Bowler 		return -EINVAL;
2530db9299fSJens Axboe #endif
2540db9299fSJens Axboe 
2550db9299fSJens Axboe 	memset(table, 0, sizeof(*table));
2560db9299fSJens Axboe 
2570db9299fSJens Axboe 	left = nents;
2580db9299fSJens Axboe 	prv = NULL;
2590db9299fSJens Axboe 	do {
2600db9299fSJens Axboe 		unsigned int sg_size, alloc_size = left;
2610db9299fSJens Axboe 
2627cedb1f1SJames Bottomley 		if (alloc_size > max_ents) {
2637cedb1f1SJames Bottomley 			alloc_size = max_ents;
2640db9299fSJens Axboe 			sg_size = alloc_size - 1;
2650db9299fSJens Axboe 		} else
2660db9299fSJens Axboe 			sg_size = alloc_size;
2670db9299fSJens Axboe 
2680db9299fSJens Axboe 		left -= sg_size;
2690db9299fSJens Axboe 
2700db9299fSJens Axboe 		sg = alloc_fn(alloc_size, gfp_mask);
271edce6820SJeffrey Carlyle 		if (unlikely(!sg)) {
272edce6820SJeffrey Carlyle 			/*
273edce6820SJeffrey Carlyle 			 * Adjust entry count to reflect that the last
274edce6820SJeffrey Carlyle 			 * entry of the previous table won't be used for
275edce6820SJeffrey Carlyle 			 * linkage.  Without this, sg_kfree() may get
276edce6820SJeffrey Carlyle 			 * confused.
277edce6820SJeffrey Carlyle 			 */
278edce6820SJeffrey Carlyle 			if (prv)
279edce6820SJeffrey Carlyle 				table->nents = ++table->orig_nents;
280edce6820SJeffrey Carlyle 
2810db9299fSJens Axboe  			return -ENOMEM;
282edce6820SJeffrey Carlyle 		}
2830db9299fSJens Axboe 
2840db9299fSJens Axboe 		sg_init_table(sg, alloc_size);
2850db9299fSJens Axboe 		table->nents = table->orig_nents += sg_size;
2860db9299fSJens Axboe 
2870db9299fSJens Axboe 		/*
2880db9299fSJens Axboe 		 * If this is the first mapping, assign the sg table header.
2890db9299fSJens Axboe 		 * If this is not the first mapping, chain previous part.
2900db9299fSJens Axboe 		 */
2910db9299fSJens Axboe 		if (prv)
2927cedb1f1SJames Bottomley 			sg_chain(prv, max_ents, sg);
2930db9299fSJens Axboe 		else
2940db9299fSJens Axboe 			table->sgl = sg;
2950db9299fSJens Axboe 
2960db9299fSJens Axboe 		/*
2970db9299fSJens Axboe 		 * If no more entries after this one, mark the end
2980db9299fSJens Axboe 		 */
2990db9299fSJens Axboe 		if (!left)
3000db9299fSJens Axboe 			sg_mark_end(&sg[sg_size - 1]);
3010db9299fSJens Axboe 
3020db9299fSJens Axboe 		prv = sg;
3030db9299fSJens Axboe 	} while (left);
3040db9299fSJens Axboe 
3050db9299fSJens Axboe 	return 0;
3060db9299fSJens Axboe }
3070db9299fSJens Axboe EXPORT_SYMBOL(__sg_alloc_table);
3080db9299fSJens Axboe 
3090db9299fSJens Axboe /**
3100db9299fSJens Axboe  * sg_alloc_table - Allocate and initialize an sg table
3110db9299fSJens Axboe  * @table:	The sg table header to use
3120db9299fSJens Axboe  * @nents:	Number of entries in sg list
3130db9299fSJens Axboe  * @gfp_mask:	GFP allocation mask
3140db9299fSJens Axboe  *
3150db9299fSJens Axboe  *  Description:
3160db9299fSJens Axboe  *    Allocate and initialize an sg table. If @nents@ is larger than
3170db9299fSJens Axboe  *    SG_MAX_SINGLE_ALLOC a chained sg table will be setup.
3180db9299fSJens Axboe  *
3190db9299fSJens Axboe  **/
3200db9299fSJens Axboe int sg_alloc_table(struct sg_table *table, unsigned int nents, gfp_t gfp_mask)
3210db9299fSJens Axboe {
3220db9299fSJens Axboe 	int ret;
3230db9299fSJens Axboe 
3247cedb1f1SJames Bottomley 	ret = __sg_alloc_table(table, nents, SG_MAX_SINGLE_ALLOC,
3257cedb1f1SJames Bottomley 			       gfp_mask, sg_kmalloc);
3260db9299fSJens Axboe 	if (unlikely(ret))
3277cedb1f1SJames Bottomley 		__sg_free_table(table, SG_MAX_SINGLE_ALLOC, sg_kfree);
3280db9299fSJens Axboe 
3290db9299fSJens Axboe 	return ret;
3300db9299fSJens Axboe }
3310db9299fSJens Axboe EXPORT_SYMBOL(sg_alloc_table);
332b1adaf65SFUJITA Tomonori 
333b1adaf65SFUJITA Tomonori /**
334efc42bc9STomasz Stanislawski  * sg_alloc_table_from_pages - Allocate and initialize an sg table from
335efc42bc9STomasz Stanislawski  *			       an array of pages
336efc42bc9STomasz Stanislawski  * @sgt:	The sg table header to use
337efc42bc9STomasz Stanislawski  * @pages:	Pointer to an array of page pointers
338efc42bc9STomasz Stanislawski  * @n_pages:	Number of pages in the pages array
339efc42bc9STomasz Stanislawski  * @offset:     Offset from start of the first page to the start of a buffer
340efc42bc9STomasz Stanislawski  * @size:       Number of valid bytes in the buffer (after offset)
341efc42bc9STomasz Stanislawski  * @gfp_mask:	GFP allocation mask
342efc42bc9STomasz Stanislawski  *
343efc42bc9STomasz Stanislawski  *  Description:
344efc42bc9STomasz Stanislawski  *    Allocate and initialize an sg table from a list of pages. Contiguous
345efc42bc9STomasz Stanislawski  *    ranges of the pages are squashed into a single scatterlist node. A user
346efc42bc9STomasz Stanislawski  *    may provide an offset at a start and a size of valid data in a buffer
347efc42bc9STomasz Stanislawski  *    specified by the page array. The returned sg table is released by
348efc42bc9STomasz Stanislawski  *    sg_free_table.
349efc42bc9STomasz Stanislawski  *
350efc42bc9STomasz Stanislawski  * Returns:
351efc42bc9STomasz Stanislawski  *   0 on success, negative error on failure
352efc42bc9STomasz Stanislawski  */
353efc42bc9STomasz Stanislawski int sg_alloc_table_from_pages(struct sg_table *sgt,
354efc42bc9STomasz Stanislawski 	struct page **pages, unsigned int n_pages,
355efc42bc9STomasz Stanislawski 	unsigned long offset, unsigned long size,
356efc42bc9STomasz Stanislawski 	gfp_t gfp_mask)
357efc42bc9STomasz Stanislawski {
358efc42bc9STomasz Stanislawski 	unsigned int chunks;
359efc42bc9STomasz Stanislawski 	unsigned int i;
360efc42bc9STomasz Stanislawski 	unsigned int cur_page;
361efc42bc9STomasz Stanislawski 	int ret;
362efc42bc9STomasz Stanislawski 	struct scatterlist *s;
363efc42bc9STomasz Stanislawski 
364efc42bc9STomasz Stanislawski 	/* compute number of contiguous chunks */
365efc42bc9STomasz Stanislawski 	chunks = 1;
366efc42bc9STomasz Stanislawski 	for (i = 1; i < n_pages; ++i)
367efc42bc9STomasz Stanislawski 		if (page_to_pfn(pages[i]) != page_to_pfn(pages[i - 1]) + 1)
368efc42bc9STomasz Stanislawski 			++chunks;
369efc42bc9STomasz Stanislawski 
370efc42bc9STomasz Stanislawski 	ret = sg_alloc_table(sgt, chunks, gfp_mask);
371efc42bc9STomasz Stanislawski 	if (unlikely(ret))
372efc42bc9STomasz Stanislawski 		return ret;
373efc42bc9STomasz Stanislawski 
374efc42bc9STomasz Stanislawski 	/* merging chunks and putting them into the scatterlist */
375efc42bc9STomasz Stanislawski 	cur_page = 0;
376efc42bc9STomasz Stanislawski 	for_each_sg(sgt->sgl, s, sgt->orig_nents, i) {
377efc42bc9STomasz Stanislawski 		unsigned long chunk_size;
378efc42bc9STomasz Stanislawski 		unsigned int j;
379efc42bc9STomasz Stanislawski 
380efc42bc9STomasz Stanislawski 		/* look for the end of the current chunk */
381efc42bc9STomasz Stanislawski 		for (j = cur_page + 1; j < n_pages; ++j)
382efc42bc9STomasz Stanislawski 			if (page_to_pfn(pages[j]) !=
383efc42bc9STomasz Stanislawski 			    page_to_pfn(pages[j - 1]) + 1)
384efc42bc9STomasz Stanislawski 				break;
385efc42bc9STomasz Stanislawski 
386efc42bc9STomasz Stanislawski 		chunk_size = ((j - cur_page) << PAGE_SHIFT) - offset;
387efc42bc9STomasz Stanislawski 		sg_set_page(s, pages[cur_page], min(size, chunk_size), offset);
388efc42bc9STomasz Stanislawski 		size -= chunk_size;
389efc42bc9STomasz Stanislawski 		offset = 0;
390efc42bc9STomasz Stanislawski 		cur_page = j;
391efc42bc9STomasz Stanislawski 	}
392efc42bc9STomasz Stanislawski 
393efc42bc9STomasz Stanislawski 	return 0;
394efc42bc9STomasz Stanislawski }
395efc42bc9STomasz Stanislawski EXPORT_SYMBOL(sg_alloc_table_from_pages);
396efc42bc9STomasz Stanislawski 
397a321e91bSImre Deak void __sg_page_iter_start(struct sg_page_iter *piter,
398a321e91bSImre Deak 			  struct scatterlist *sglist, unsigned int nents,
399a321e91bSImre Deak 			  unsigned long pgoffset)
400a321e91bSImre Deak {
401a321e91bSImre Deak 	piter->__pg_advance = 0;
402a321e91bSImre Deak 	piter->__nents = nents;
403a321e91bSImre Deak 
404a321e91bSImre Deak 	piter->page = NULL;
405a321e91bSImre Deak 	piter->sg = sglist;
406a321e91bSImre Deak 	piter->sg_pgoffset = pgoffset;
407a321e91bSImre Deak }
408a321e91bSImre Deak EXPORT_SYMBOL(__sg_page_iter_start);
409a321e91bSImre Deak 
410a321e91bSImre Deak static int sg_page_count(struct scatterlist *sg)
411a321e91bSImre Deak {
412a321e91bSImre Deak 	return PAGE_ALIGN(sg->offset + sg->length) >> PAGE_SHIFT;
413a321e91bSImre Deak }
414a321e91bSImre Deak 
415a321e91bSImre Deak bool __sg_page_iter_next(struct sg_page_iter *piter)
416a321e91bSImre Deak {
417a321e91bSImre Deak 	if (!piter->__nents || !piter->sg)
418a321e91bSImre Deak 		return false;
419a321e91bSImre Deak 
420a321e91bSImre Deak 	piter->sg_pgoffset += piter->__pg_advance;
421a321e91bSImre Deak 	piter->__pg_advance = 1;
422a321e91bSImre Deak 
423a321e91bSImre Deak 	while (piter->sg_pgoffset >= sg_page_count(piter->sg)) {
424a321e91bSImre Deak 		piter->sg_pgoffset -= sg_page_count(piter->sg);
425a321e91bSImre Deak 		piter->sg = sg_next(piter->sg);
426a321e91bSImre Deak 		if (!--piter->__nents || !piter->sg)
427a321e91bSImre Deak 			return false;
428a321e91bSImre Deak 	}
429a321e91bSImre Deak 	piter->page = nth_page(sg_page(piter->sg), piter->sg_pgoffset);
430a321e91bSImre Deak 
431a321e91bSImre Deak 	return true;
432a321e91bSImre Deak }
433a321e91bSImre Deak EXPORT_SYMBOL(__sg_page_iter_next);
434a321e91bSImre Deak 
435efc42bc9STomasz Stanislawski /**
436137d3edbSTejun Heo  * sg_miter_start - start mapping iteration over a sg list
437137d3edbSTejun Heo  * @miter: sg mapping iter to be started
438137d3edbSTejun Heo  * @sgl: sg list to iterate over
439137d3edbSTejun Heo  * @nents: number of sg entries
440137d3edbSTejun Heo  *
441137d3edbSTejun Heo  * Description:
442137d3edbSTejun Heo  *   Starts mapping iterator @miter.
443137d3edbSTejun Heo  *
444137d3edbSTejun Heo  * Context:
445137d3edbSTejun Heo  *   Don't care.
446137d3edbSTejun Heo  */
447137d3edbSTejun Heo void sg_miter_start(struct sg_mapping_iter *miter, struct scatterlist *sgl,
448137d3edbSTejun Heo 		    unsigned int nents, unsigned int flags)
449137d3edbSTejun Heo {
450137d3edbSTejun Heo 	memset(miter, 0, sizeof(struct sg_mapping_iter));
451137d3edbSTejun Heo 
4524225fc85SImre Deak 	__sg_page_iter_start(&miter->piter, sgl, nents, 0);
4536de7e356SSebastian Andrzej Siewior 	WARN_ON(!(flags & (SG_MITER_TO_SG | SG_MITER_FROM_SG)));
454137d3edbSTejun Heo 	miter->__flags = flags;
455137d3edbSTejun Heo }
456137d3edbSTejun Heo EXPORT_SYMBOL(sg_miter_start);
457137d3edbSTejun Heo 
458137d3edbSTejun Heo /**
459137d3edbSTejun Heo  * sg_miter_next - proceed mapping iterator to the next mapping
460137d3edbSTejun Heo  * @miter: sg mapping iter to proceed
461137d3edbSTejun Heo  *
462137d3edbSTejun Heo  * Description:
4638290e2d2STejun Heo  *   Proceeds @miter to the next mapping.  @miter should have been started
4648290e2d2STejun Heo  *   using sg_miter_start().  On successful return, @miter->page,
4658290e2d2STejun Heo  *   @miter->addr and @miter->length point to the current mapping.
466137d3edbSTejun Heo  *
467137d3edbSTejun Heo  * Context:
4688290e2d2STejun Heo  *   Preemption disabled if SG_MITER_ATOMIC.  Preemption must stay disabled
4698290e2d2STejun Heo  *   till @miter is stopped.  May sleep if !SG_MITER_ATOMIC.
470137d3edbSTejun Heo  *
471137d3edbSTejun Heo  * Returns:
472137d3edbSTejun Heo  *   true if @miter contains the next mapping.  false if end of sg
473137d3edbSTejun Heo  *   list is reached.
474137d3edbSTejun Heo  */
475137d3edbSTejun Heo bool sg_miter_next(struct sg_mapping_iter *miter)
476137d3edbSTejun Heo {
477137d3edbSTejun Heo 	sg_miter_stop(miter);
478137d3edbSTejun Heo 
4794225fc85SImre Deak 	/*
4804225fc85SImre Deak 	 * Get to the next page if necessary.
4814225fc85SImre Deak 	 * __remaining, __offset is adjusted by sg_miter_stop
4824225fc85SImre Deak 	 */
4834225fc85SImre Deak 	if (!miter->__remaining) {
4844225fc85SImre Deak 		struct scatterlist *sg;
4854225fc85SImre Deak 		unsigned long pgoffset;
4864225fc85SImre Deak 
4874225fc85SImre Deak 		if (!__sg_page_iter_next(&miter->piter))
48823c560a9STejun Heo 			return false;
4894225fc85SImre Deak 
4904225fc85SImre Deak 		sg = miter->piter.sg;
4914225fc85SImre Deak 		pgoffset = miter->piter.sg_pgoffset;
4924225fc85SImre Deak 
4934225fc85SImre Deak 		miter->__offset = pgoffset ? 0 : sg->offset;
4944225fc85SImre Deak 		miter->__remaining = sg->offset + sg->length -
4954225fc85SImre Deak 				(pgoffset << PAGE_SHIFT) - miter->__offset;
4964225fc85SImre Deak 		miter->__remaining = min_t(unsigned long, miter->__remaining,
4974225fc85SImre Deak 					   PAGE_SIZE - miter->__offset);
498137d3edbSTejun Heo 	}
4994225fc85SImre Deak 	miter->page = miter->piter.page;
5004225fc85SImre Deak 	miter->consumed = miter->length = miter->__remaining;
501137d3edbSTejun Heo 
502137d3edbSTejun Heo 	if (miter->__flags & SG_MITER_ATOMIC)
5034225fc85SImre Deak 		miter->addr = kmap_atomic(miter->page) + miter->__offset;
504137d3edbSTejun Heo 	else
5054225fc85SImre Deak 		miter->addr = kmap(miter->page) + miter->__offset;
506137d3edbSTejun Heo 
507137d3edbSTejun Heo 	return true;
508137d3edbSTejun Heo }
509137d3edbSTejun Heo EXPORT_SYMBOL(sg_miter_next);
510137d3edbSTejun Heo 
511137d3edbSTejun Heo /**
512137d3edbSTejun Heo  * sg_miter_stop - stop mapping iteration
513137d3edbSTejun Heo  * @miter: sg mapping iter to be stopped
514137d3edbSTejun Heo  *
515137d3edbSTejun Heo  * Description:
516137d3edbSTejun Heo  *   Stops mapping iterator @miter.  @miter should have been started
517137d3edbSTejun Heo  *   started using sg_miter_start().  A stopped iteration can be
518137d3edbSTejun Heo  *   resumed by calling sg_miter_next() on it.  This is useful when
519137d3edbSTejun Heo  *   resources (kmap) need to be released during iteration.
520137d3edbSTejun Heo  *
521137d3edbSTejun Heo  * Context:
5228290e2d2STejun Heo  *   Preemption disabled if the SG_MITER_ATOMIC is set.  Don't care
5238290e2d2STejun Heo  *   otherwise.
524137d3edbSTejun Heo  */
525137d3edbSTejun Heo void sg_miter_stop(struct sg_mapping_iter *miter)
526137d3edbSTejun Heo {
527137d3edbSTejun Heo 	WARN_ON(miter->consumed > miter->length);
528137d3edbSTejun Heo 
529137d3edbSTejun Heo 	/* drop resources from the last iteration */
530137d3edbSTejun Heo 	if (miter->addr) {
531137d3edbSTejun Heo 		miter->__offset += miter->consumed;
5324225fc85SImre Deak 		miter->__remaining -= miter->consumed;
533137d3edbSTejun Heo 
5346de7e356SSebastian Andrzej Siewior 		if (miter->__flags & SG_MITER_TO_SG)
5356de7e356SSebastian Andrzej Siewior 			flush_kernel_dcache_page(miter->page);
5366de7e356SSebastian Andrzej Siewior 
537137d3edbSTejun Heo 		if (miter->__flags & SG_MITER_ATOMIC) {
5388290e2d2STejun Heo 			WARN_ON_ONCE(preemptible());
539c3eede8eSCong Wang 			kunmap_atomic(miter->addr);
540137d3edbSTejun Heo 		} else
541f652c521SArjan van de Ven 			kunmap(miter->page);
542137d3edbSTejun Heo 
543137d3edbSTejun Heo 		miter->page = NULL;
544137d3edbSTejun Heo 		miter->addr = NULL;
545137d3edbSTejun Heo 		miter->length = 0;
546137d3edbSTejun Heo 		miter->consumed = 0;
547137d3edbSTejun Heo 	}
548137d3edbSTejun Heo }
549137d3edbSTejun Heo EXPORT_SYMBOL(sg_miter_stop);
550137d3edbSTejun Heo 
551137d3edbSTejun Heo /**
552b1adaf65SFUJITA Tomonori  * sg_copy_buffer - Copy data between a linear buffer and an SG list
553b1adaf65SFUJITA Tomonori  * @sgl:		 The SG list
554b1adaf65SFUJITA Tomonori  * @nents:		 Number of SG entries
555b1adaf65SFUJITA Tomonori  * @buf:		 Where to copy from
556b1adaf65SFUJITA Tomonori  * @buflen:		 The number of bytes to copy
557b1adaf65SFUJITA Tomonori  * @to_buffer: 		 transfer direction (non zero == from an sg list to a
558b1adaf65SFUJITA Tomonori  * 			 buffer, 0 == from a buffer to an sg list
559b1adaf65SFUJITA Tomonori  *
560b1adaf65SFUJITA Tomonori  * Returns the number of copied bytes.
561b1adaf65SFUJITA Tomonori  *
562b1adaf65SFUJITA Tomonori  **/
563b1adaf65SFUJITA Tomonori static size_t sg_copy_buffer(struct scatterlist *sgl, unsigned int nents,
564b1adaf65SFUJITA Tomonori 			     void *buf, size_t buflen, int to_buffer)
565b1adaf65SFUJITA Tomonori {
566137d3edbSTejun Heo 	unsigned int offset = 0;
567137d3edbSTejun Heo 	struct sg_mapping_iter miter;
56850bed2e2SFUJITA Tomonori 	unsigned long flags;
5696de7e356SSebastian Andrzej Siewior 	unsigned int sg_flags = SG_MITER_ATOMIC;
570b1adaf65SFUJITA Tomonori 
5716de7e356SSebastian Andrzej Siewior 	if (to_buffer)
5726de7e356SSebastian Andrzej Siewior 		sg_flags |= SG_MITER_FROM_SG;
5736de7e356SSebastian Andrzej Siewior 	else
5746de7e356SSebastian Andrzej Siewior 		sg_flags |= SG_MITER_TO_SG;
5756de7e356SSebastian Andrzej Siewior 
5766de7e356SSebastian Andrzej Siewior 	sg_miter_start(&miter, sgl, nents, sg_flags);
577b1adaf65SFUJITA Tomonori 
57850bed2e2SFUJITA Tomonori 	local_irq_save(flags);
57950bed2e2SFUJITA Tomonori 
580137d3edbSTejun Heo 	while (sg_miter_next(&miter) && offset < buflen) {
581137d3edbSTejun Heo 		unsigned int len;
582b1adaf65SFUJITA Tomonori 
583137d3edbSTejun Heo 		len = min(miter.length, buflen - offset);
584b1adaf65SFUJITA Tomonori 
585b1adaf65SFUJITA Tomonori 		if (to_buffer)
586137d3edbSTejun Heo 			memcpy(buf + offset, miter.addr, len);
5876de7e356SSebastian Andrzej Siewior 		else
588137d3edbSTejun Heo 			memcpy(miter.addr, buf + offset, len);
589b1adaf65SFUJITA Tomonori 
590137d3edbSTejun Heo 		offset += len;
591b1adaf65SFUJITA Tomonori 	}
592b1adaf65SFUJITA Tomonori 
593137d3edbSTejun Heo 	sg_miter_stop(&miter);
594b1adaf65SFUJITA Tomonori 
59550bed2e2SFUJITA Tomonori 	local_irq_restore(flags);
596137d3edbSTejun Heo 	return offset;
597b1adaf65SFUJITA Tomonori }
598b1adaf65SFUJITA Tomonori 
599b1adaf65SFUJITA Tomonori /**
600b1adaf65SFUJITA Tomonori  * sg_copy_from_buffer - Copy from a linear buffer to an SG list
601b1adaf65SFUJITA Tomonori  * @sgl:		 The SG list
602b1adaf65SFUJITA Tomonori  * @nents:		 Number of SG entries
603b1adaf65SFUJITA Tomonori  * @buf:		 Where to copy from
604b1adaf65SFUJITA Tomonori  * @buflen:		 The number of bytes to copy
605b1adaf65SFUJITA Tomonori  *
606b1adaf65SFUJITA Tomonori  * Returns the number of copied bytes.
607b1adaf65SFUJITA Tomonori  *
608b1adaf65SFUJITA Tomonori  **/
609b1adaf65SFUJITA Tomonori size_t sg_copy_from_buffer(struct scatterlist *sgl, unsigned int nents,
610b1adaf65SFUJITA Tomonori 			   void *buf, size_t buflen)
611b1adaf65SFUJITA Tomonori {
612b1adaf65SFUJITA Tomonori 	return sg_copy_buffer(sgl, nents, buf, buflen, 0);
613b1adaf65SFUJITA Tomonori }
614b1adaf65SFUJITA Tomonori EXPORT_SYMBOL(sg_copy_from_buffer);
615b1adaf65SFUJITA Tomonori 
616b1adaf65SFUJITA Tomonori /**
617b1adaf65SFUJITA Tomonori  * sg_copy_to_buffer - Copy from an SG list to a linear buffer
618b1adaf65SFUJITA Tomonori  * @sgl:		 The SG list
619b1adaf65SFUJITA Tomonori  * @nents:		 Number of SG entries
620b1adaf65SFUJITA Tomonori  * @buf:		 Where to copy to
621b1adaf65SFUJITA Tomonori  * @buflen:		 The number of bytes to copy
622b1adaf65SFUJITA Tomonori  *
623b1adaf65SFUJITA Tomonori  * Returns the number of copied bytes.
624b1adaf65SFUJITA Tomonori  *
625b1adaf65SFUJITA Tomonori  **/
626b1adaf65SFUJITA Tomonori size_t sg_copy_to_buffer(struct scatterlist *sgl, unsigned int nents,
627b1adaf65SFUJITA Tomonori 			 void *buf, size_t buflen)
628b1adaf65SFUJITA Tomonori {
629b1adaf65SFUJITA Tomonori 	return sg_copy_buffer(sgl, nents, buf, buflen, 1);
630b1adaf65SFUJITA Tomonori }
631b1adaf65SFUJITA Tomonori EXPORT_SYMBOL(sg_copy_to_buffer);
632