00001 00041 #ifndef DMA_H_INCLUDED 00042 #define DMA_H_INCLUDED 00043 00044 #include <types.h> 00045 #include <util.h> 00046 00133 enum dma_direction { 00134 DMA_FROM_DEVICE = 0, 00135 DMA_TO_DEVICE = 1, 00136 DMA_BIDIRECTIONAL = 2, 00137 }; 00138 00139 /* 00140 * The actual mapping functions dealing with cache flushing, etc. are 00141 * CPU-specific. 00142 */ 00143 #include <cpu/dma.h> 00144 00146 00147 #endif /* DMA_H_INCLUDED */
1.6.3