00001 00041 #ifndef DMAC_PDCA_H_INCLUDED 00042 #define DMAC_PDCA_H_INCLUDED 00043 00044 void pdca_init(void); 00045 00046 struct dmac_channel *pdca_alloc_channel(struct dma_controller *dmac, 00047 enum dmac_periph_id rx_periph, enum dmac_periph_id tx_periph, 00048 phys_addr_t rx_reg_addr, phys_addr_t tx_reg_addr); 00049 00050 void pdca_free_channel(struct dma_controller *dmac, 00051 struct dmac_channel *dch); 00052 00053 #endif /* DMAC_PDCA_H_INCLUDED */
1.5.8