spear_dma.h 350 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * linux/spear_dma.h
  4. *
  5. * Copyright (ST) 2012 Rajeev Kumar ([email protected])
  6. */
  7. #ifndef SPEAR_DMA_H
  8. #define SPEAR_DMA_H
  9. #include <linux/dmaengine.h>
  10. struct spear_dma_data {
  11. void *data;
  12. dma_addr_t addr;
  13. u32 max_burst;
  14. enum dma_slave_buswidth addr_width;
  15. };
  16. #endif /* SPEAR_DMA_H */