2009-01-05 07:36:12 -07:00
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
|
2009-01-27 07: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 07:59:02 -07:00
|
|
|
struct dma_map_ops *dma_ops;
|
2009-01-05 07:36:12 -07:00
|
|
|
EXPORT_SYMBOL(dma_ops);
|
2009-01-05 07:36:16 -07:00
|
|
|
|
2009-07-09 22:25:05 -06:00
|
|
|
#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
|
|
|
|
|
|
|
|
static int __init dma_init(void)
|
|
|
|
{
|
2009-08-31 17:54:03 -06:00
|
|
|
dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
|
|
|
|
|
|
|
|
return 0;
|
2009-07-09 22:25:05 -06:00
|
|
|
}
|
|
|
|
fs_initcall(dma_init);
|
|
|
|
|
2009-01-05 07:59:02 -07:00
|
|
|
struct dma_map_ops *dma_get_ops(struct device *dev)
|
2009-01-05 07:36:16 -07:00
|
|
|
{
|
|
|
|
return dma_ops;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dma_get_ops);
|