2009-01-05 21:36:12 +07:00
|
|
|
#include <linux/dma-mapping.h>
|
2011-08-01 05:33:21 +07:00
|
|
|
#include <linux/export.h>
|
2009-01-05 21:36:12 +07:00
|
|
|
|
2009-01-27 21:43:59 +07:00
|
|
|
/* Set this to 1 if there is a HW IOMMU in the system */
|
|
|
|
int iommu_detected __read_mostly;
|
|
|
|
|
2009-01-05 21:59:02 +07:00
|
|
|
struct dma_map_ops *dma_ops;
|
2009-01-05 21:36:12 +07:00
|
|
|
EXPORT_SYMBOL(dma_ops);
|
2009-01-05 21:36:16 +07:00
|
|
|
|
2009-07-10 11:25:05 +07:00
|
|
|
#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
|
|
|
|
|
|
|
|
static int __init dma_init(void)
|
|
|
|
{
|
2009-09-01 06:54:03 +07:00
|
|
|
dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
|
|
|
|
|
|
|
|
return 0;
|
2009-07-10 11:25:05 +07:00
|
|
|
}
|
|
|
|
fs_initcall(dma_init);
|
|
|
|
|
2009-01-05 21:59:02 +07:00
|
|
|
struct dma_map_ops *dma_get_ops(struct device *dev)
|
2009-01-05 21:36:16 +07:00
|
|
|
{
|
|
|
|
return dma_ops;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dma_get_ops);
|