1 /* pci-dma-nommu.c: Dynamic DMA mapping support for the FRV
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Woodhouse (dwmw2@infradead.org)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/types.h>
13 #include <linux/slab.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/list.h>
16 #include <linux/pci.h>
20 #define DMA_SRAM_START dma_coherent_mem_start
21 #define DMA_SRAM_END dma_coherent_mem_end
22 #else // Use video RAM on Matrox
23 #define DMA_SRAM_START 0xe8900000
24 #define DMA_SRAM_END 0xe8a00000
27 struct dma_alloc_record
{
28 struct list_head list
;
33 static DEFINE_SPINLOCK(dma_alloc_lock
);
34 static LIST_HEAD(dma_alloc_list
);
36 void *dma_alloc_coherent(struct device
*hwdev
, size_t size
, dma_addr_t
*dma_handle
, gfp_t gfp
)
38 struct dma_alloc_record
*new;
39 struct list_head
*this = &dma_alloc_list
;
41 unsigned long start
= DMA_SRAM_START
;
44 if (!DMA_SRAM_START
) {
45 printk("%s called without any DMA area reserved!\n", __func__
);
49 new = kmalloc(sizeof (*new), GFP_ATOMIC
);
53 /* Round up to a reasonable alignment */
54 new->len
= (size
+ 31) & ~31;
56 spin_lock_irqsave(&dma_alloc_lock
, flags
);
58 list_for_each (this, &dma_alloc_list
) {
59 struct dma_alloc_record
*this_r
= list_entry(this, struct dma_alloc_record
, list
);
62 if (end
- start
>= size
)
65 start
= this_r
->ofs
+ this_r
->len
;
67 /* Reached end of list. */
69 this = &dma_alloc_list
;
71 if (end
- start
>= size
) {
74 list_add_tail(&new->list
, this);
75 spin_unlock_irqrestore(&dma_alloc_lock
, flags
);
82 spin_unlock_irqrestore(&dma_alloc_lock
, flags
);
86 EXPORT_SYMBOL(dma_alloc_coherent
);
88 void dma_free_coherent(struct device
*hwdev
, size_t size
, void *vaddr
, dma_addr_t dma_handle
)
90 struct dma_alloc_record
*rec
;
93 spin_lock_irqsave(&dma_alloc_lock
, flags
);
95 list_for_each_entry(rec
, &dma_alloc_list
, list
) {
96 if (rec
->ofs
== dma_handle
) {
99 spin_unlock_irqrestore(&dma_alloc_lock
, flags
);
103 spin_unlock_irqrestore(&dma_alloc_lock
, flags
);
107 EXPORT_SYMBOL(dma_free_coherent
);
109 dma_addr_t
dma_map_single(struct device
*dev
, void *ptr
, size_t size
,
110 enum dma_data_direction direction
)
112 BUG_ON(direction
== DMA_NONE
);
114 frv_cache_wback_inv((unsigned long) ptr
, (unsigned long) ptr
+ size
);
116 return virt_to_bus(ptr
);
119 EXPORT_SYMBOL(dma_map_single
);
121 int dma_map_sg(struct device
*dev
, struct scatterlist
*sg
, int nents
,
122 enum dma_data_direction direction
)
126 for (i
=0; i
<nents
; i
++)
127 frv_cache_wback_inv(sg_dma_address(&sg
[i
]),
128 sg_dma_address(&sg
[i
]) + sg_dma_len(&sg
[i
]));
130 BUG_ON(direction
== DMA_NONE
);
135 EXPORT_SYMBOL(dma_map_sg
);
137 dma_addr_t
dma_map_page(struct device
*dev
, struct page
*page
, unsigned long offset
,
138 size_t size
, enum dma_data_direction direction
)
140 BUG_ON(direction
== DMA_NONE
);
141 flush_dcache_page(page
);
142 return (dma_addr_t
) page_to_phys(page
) + offset
;
145 EXPORT_SYMBOL(dma_map_page
);