aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh64/mm/consistent.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-13 12:50:26 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-13 12:50:26 -0400
commitecaedfa385a6df297e17d6e9f296cc63f12c053f (patch)
tree236a4484cdb04f73f8f365ae46a1741eb0d9ce54 /arch/sh64/mm/consistent.c
parentdcf397f037f52add9945eced57ca300ab6a4413c (diff)
parentcb0f3fe08d4718cfe6cf7b50d0fb2732e5e5459d (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh64-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh64-2.6: sh64: mach-cayman: Build fixes. sh64: Symbol export fixups. sh64: linker script tidying and alignment fixups. sh64: Set KBUILD_IMAGE to make the rpm target happy. sh64: Kill off obsolete linux/blk.h reference. sh64: cleanup struct irqaction initializers. sh64: Kill off dead gdb stub symbol. sh64: alphanumeric display only on Cayman. sh64: Add defconfigs for mach-sim and mach-harp. sh64: update cayman defconfig. sh64: Tidy up Kconfig dependencies. sh64: Move consistent DMA routines to arch/sh64/mm/. sh64: Some symbol exports and build fixes. sh64: mach-sim: Build fixes. sh64: mach-harp: Build fixes. sh64: Kill off duplicate frame pointer option. sh64: Kill off dead ROM-RAM and generic boards. sh64: Tidy up includes for Cayman board. sh64: Move *_p() I/O routine variants to io.h.
Diffstat (limited to 'arch/sh64/mm/consistent.c')
-rw-r--r--arch/sh64/mm/consistent.c52
1 files changed, 52 insertions, 0 deletions
diff --git a/arch/sh64/mm/consistent.c b/arch/sh64/mm/consistent.c
new file mode 100644
index 000000000000..8875a2a40da7
--- /dev/null
+++ b/arch/sh64/mm/consistent.c
@@ -0,0 +1,52 @@
1/*
2 * Copyright (C) 2001 David J. Mckay (david.mckay@st.com)
3 * Copyright (C) 2003 Paul Mundt (lethal@linux-sh.org)
4 *
5 * May be copied or modified under the terms of the GNU General Public
6 * License. See linux/COPYING for more information.
7 *
8 * Dynamic DMA mapping support.
9 */
10#include <linux/types.h>
11#include <linux/mm.h>
12#include <linux/string.h>
13#include <linux/pci.h>
14#include <linux/module.h>
15#include <asm/io.h>
16
17void *consistent_alloc(struct pci_dev *hwdev, size_t size,
18 dma_addr_t *dma_handle)
19{
20 void *ret;
21 int gfp = GFP_ATOMIC;
22 void *vp;
23
24 if (hwdev == NULL || hwdev->dma_mask != 0xffffffff)
25 gfp |= GFP_DMA;
26
27 ret = (void *)__get_free_pages(gfp, get_order(size));
28
29 /* now call our friend ioremap_nocache to give us an uncached area */
30 vp = ioremap_nocache(virt_to_phys(ret), size);
31
32 if (vp != NULL) {
33 memset(vp, 0, size);
34 *dma_handle = virt_to_phys(ret);
35 dma_cache_wback_inv((unsigned long)ret, size);
36 }
37
38 return vp;
39}
40EXPORT_SYMBOL(consistent_alloc);
41
42void consistent_free(struct pci_dev *hwdev, size_t size,
43 void *vaddr, dma_addr_t dma_handle)
44{
45 void *alloc;
46
47 alloc = phys_to_virt((unsigned long)dma_handle);
48 free_pages((unsigned long)alloc, get_order(size));
49
50 iounmap(vaddr);
51}
52EXPORT_SYMBOL(consistent_free);