mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-01 17:26:39 +07:00
815e972110
Signed-off-by: Nicolas Royer <nicolas@eukrea.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Eric Bénard <eric@eukrea.com> Tested-by: Eric Bénard <eric@eukrea.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
23 lines
448 B
C
23 lines
448 B
C
#ifndef __LINUX_ATMEL_AES_H
|
|
#define __LINUX_ATMEL_AES_H
|
|
|
|
#include <mach/at_hdmac.h>
|
|
|
|
/**
|
|
* struct aes_dma_data - DMA data for AES
|
|
*/
|
|
struct aes_dma_data {
|
|
struct at_dma_slave txdata;
|
|
struct at_dma_slave rxdata;
|
|
};
|
|
|
|
/**
|
|
* struct aes_platform_data - board-specific AES configuration
|
|
* @dma_slave: DMA slave interface to use in data transfers.
|
|
*/
|
|
struct aes_platform_data {
|
|
struct aes_dma_data *dma_slave;
|
|
};
|
|
|
|
#endif /* __LINUX_ATMEL_AES_H */
|