Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91013
b: refs/heads/master
c: b7107a3
h: refs/heads/master
i:
  91011: 9b1cc60
v: v3
  • Loading branch information
Glauber Costa authored and Ingo Molnar committed Apr 19, 2008
1 parent 44d8672 commit 810eefb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 47 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ae17a63b096b05007bacafd2f92414b881a0b4b4
refs/heads/master: b7107a3d9da2e122fb7f33dd1482254ff40fdf96
19 changes: 13 additions & 6 deletions trunk/include/asm-x86/dma-mapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
#include <asm/swiotlb.h>

extern dma_addr_t bad_dma_address;
extern int iommu_merge;
extern struct device fallback_dev;
extern int panic_on_overflow;

struct dma_mapping_ops {
int (*mapping_error)(dma_addr_t dma_addr);
Expand Down Expand Up @@ -75,12 +78,6 @@ void dma_free_coherent(struct device *dev, size_t size,
extern int dma_supported(struct device *hwdev, u64 mask);
extern int dma_set_mask(struct device *dev, u64 mask);

#ifdef CONFIG_X86_32
# include "dma-mapping_32.h"
#else
# include "dma-mapping_64.h"
#endif

static inline dma_addr_t
dma_map_single(struct device *hwdev, void *ptr, size_t size,
int direction)
Expand Down Expand Up @@ -205,6 +202,15 @@ dma_cache_sync(struct device *dev, void *vaddr, size_t size,
flush_write_buffers();
}

static inline int dma_get_cache_alignment(void)
{
/* no easy way to get cache size on all x86, so return the
* maximum possible, to be safe */
return boot_cpu_data.x86_clflush_size;
}

#define dma_is_consistent(d, h) (1)

#ifdef CONFIG_X86_32
# define ARCH_HAS_DMA_DECLARE_COHERENT_MEMORY
extern int
Expand All @@ -217,5 +223,6 @@ dma_release_declared_memory(struct device *dev);
extern void *
dma_mark_declared_memory_occupied(struct device *dev,
dma_addr_t device_addr, size_t size);
extern int forbid_dac;
#endif /* CONFIG_X86_32 */
#endif
23 changes: 0 additions & 23 deletions trunk/include/asm-x86/dma-mapping_32.h

This file was deleted.

17 changes: 0 additions & 17 deletions trunk/include/asm-x86/dma-mapping_64.h

This file was deleted.

0 comments on commit 810eefb

Please sign in to comment.