dma-mv_xor.h 386 B

1234567891011121314151617181920212223
  1. /*
  2. * arch/arm/plat-orion/include/plat/mv_xor.h
  3. *
  4. * Marvell XOR platform device data definition file.
  5. */
  6. #ifndef __PLAT_MV_XOR_H
  7. #define __PLAT_MV_XOR_H
  8. #include <linux/dmaengine.h>
  9. #include <linux/mbus.h>
  10. #define MV_XOR_NAME "mv_xor"
  11. struct mv_xor_channel_data {
  12. dma_cap_mask_t cap_mask;
  13. };
  14. struct mv_xor_platform_data {
  15. struct mv_xor_channel_data *channels;
  16. };
  17. #endif