ddp_wdma.h 528 B

12345678910111213141516171819202122
  1. #ifndef _DDP_WDMA_H_
  2. #define _DDP_WDMA_H_
  3. #include "ddp_hal.h"
  4. #include "ddp_info.h"
  5. /* start module */
  6. int wdma_start(DISP_MODULE_ENUM module, void *handle);
  7. /* stop module */
  8. int wdma_stop(DISP_MODULE_ENUM module, void *handle);
  9. /* reset module */
  10. int wdma_reset(DISP_MODULE_ENUM module, void *handle);
  11. /* common interface */
  12. unsigned int wdma_index(DISP_MODULE_ENUM module);
  13. unsigned int ddp_wdma_get_cur_addr(void);
  14. void wdma_dump_analysis(DISP_MODULE_ENUM module);
  15. void wdma_dump_reg(DISP_MODULE_ENUM module);
  16. #endif