aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh64/kernel/pci-dma.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/sh64/kernel/pci-dma.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/sh64/kernel/pci-dma.c')
-rw-r--r--arch/sh64/kernel/pci-dma.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/arch/sh64/kernel/pci-dma.c b/arch/sh64/kernel/pci-dma.c
new file mode 100644
index 000000000000..a36c3d71a3fe
--- /dev/null
+++ b/arch/sh64/kernel/pci-dma.c
@@ -0,0 +1,50 @@
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 <asm/io.h>
15
16void *consistent_alloc(struct pci_dev *hwdev, size_t size,
17 dma_addr_t *dma_handle)
18{
19 void *ret;
20 int gfp = GFP_ATOMIC;
21 void *vp;
22
23 if (hwdev == NULL || hwdev->dma_mask != 0xffffffff)
24 gfp |= GFP_DMA;
25
26 ret = (void *)__get_free_pages(gfp, get_order(size));
27
28 /* now call our friend ioremap_nocache to give us an uncached area */
29 vp = ioremap_nocache(virt_to_phys(ret), size);
30
31 if (vp != NULL) {
32 memset(vp, 0, size);
33 *dma_handle = virt_to_bus(ret);
34 dma_cache_wback_inv((unsigned long)ret, size);
35 }
36
37 return vp;
38}
39
40void consistent_free(struct pci_dev *hwdev, size_t size,
41 void *vaddr, dma_addr_t dma_handle)
42{
43 void *alloc;
44
45 alloc = bus_to_virt((unsigned long)dma_handle);
46 free_pages((unsigned long)alloc, get_order(size));
47
48 iounmap(vaddr);
49}
50