consistent.c 2.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * arch/sh/mm/consistent.c
 *
4
 * Copyright (C) 2004 - 2007  Paul Mundt
L
Linus Torvalds 已提交
5 6 7 8 9 10 11
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 */
#include <linux/mm.h>
#include <linux/dma-mapping.h>
12 13
#include <asm/cacheflush.h>
#include <asm/addrspace.h>
L
Linus Torvalds 已提交
14 15
#include <asm/io.h>

A
Al Viro 已提交
16
void *consistent_alloc(gfp_t gfp, size_t size, dma_addr_t *handle)
L
Linus Torvalds 已提交
17 18
{
	struct page *page, *end, *free;
19
	void *ret, *vp;
L
Linus Torvalds 已提交
20 21 22 23 24 25 26 27
	int order;

	size = PAGE_ALIGN(size);
	order = get_order(size);

	page = alloc_pages(gfp, order);
	if (!page)
		return NULL;
N
Nick Piggin 已提交
28
	split_page(page, order);
L
Linus Torvalds 已提交
29 30 31 32

	ret = page_address(page);
	*handle = virt_to_phys(ret);

33 34 35 36 37 38 39 40
	vp = ioremap_nocache(*handle, size);
	if (!vp) {
		free_pages((unsigned long)ret, order);
		return NULL;
	}

	memset(vp, 0, size);

L
Linus Torvalds 已提交
41 42 43
	/*
	 * We must flush the cache before we pass it on to the device
	 */
44
	dma_cache_sync(NULL, ret, size, DMA_BIDIRECTIONAL);
L
Linus Torvalds 已提交
45 46 47 48 49 50 51 52 53 54 55 56

	page = virt_to_page(ret);
	free = page + (size >> PAGE_SHIFT);
	end  = page + (1 << order);

	while (++page < end) {
		/* Free any unused pages */
		if (page >= free) {
			__free_page(page);
		}
	}

57
	return vp;
L
Linus Torvalds 已提交
58
}
59
EXPORT_SYMBOL(consistent_alloc);
L
Linus Torvalds 已提交
60

61
void consistent_free(void *vaddr, size_t size, dma_addr_t dma_handle)
L
Linus Torvalds 已提交
62
{
63 64
	struct page *page;
	unsigned long addr;
L
Linus Torvalds 已提交
65

66 67 68 69 70 71
	addr = (unsigned long)phys_to_virt((unsigned long)dma_handle);
	page = virt_to_page(addr);

	free_pages(addr, get_order(size));

	iounmap(vaddr);
L
Linus Torvalds 已提交
72
}
73
EXPORT_SYMBOL(consistent_free);
L
Linus Torvalds 已提交
74 75 76

void consistent_sync(void *vaddr, size_t size, int direction)
{
77 78 79 80 81
#ifdef CONFIG_CPU_SH5
	void *p1addr = vaddr;
#else
	void *p1addr = (void*) P1SEGADDR((unsigned long)vaddr);
#endif
L
Linus Torvalds 已提交
82 83 84

	switch (direction) {
	case DMA_FROM_DEVICE:		/* invalidate only */
85
		__flush_invalidate_region(p1addr, size);
L
Linus Torvalds 已提交
86 87
		break;
	case DMA_TO_DEVICE:		/* writeback only */
88
		__flush_wback_region(p1addr, size);
L
Linus Torvalds 已提交
89 90
		break;
	case DMA_BIDIRECTIONAL:		/* writeback and invalidate */
91
		__flush_purge_region(p1addr, size);
L
Linus Torvalds 已提交
92 93 94 95 96 97
		break;
	default:
		BUG();
	}
}
EXPORT_SYMBOL(consistent_sync);