crypto-ux500.h 543 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright (C) ST-Ericsson SA 2011
  3. *
  4. * Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson
  5. * License terms: GNU General Public License (GPL) version 2
  6. */
  7. #ifndef _CRYPTO_UX500_H
  8. #define _CRYPTO_UX500_H
  9. #include <linux/dmaengine.h>
  10. #include <linux/platform_data/dma-ste-dma40.h>
  11. struct hash_platform_data {
  12. void *mem_to_engine;
  13. bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
  14. };
  15. struct cryp_platform_data {
  16. struct stedma40_chan_cfg mem_to_engine;
  17. struct stedma40_chan_cfg engine_to_mem;
  18. };
  19. #endif