2012-04-30 15:11:17 +07:00
|
|
|
/*
|
|
|
|
* Copyright (C) ST-Ericsson SA 2011
|
|
|
|
*
|
|
|
|
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson
|
|
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
|
|
*/
|
|
|
|
#ifndef _CRYPTO_UX500_H
|
2012-05-10 15:14:06 +07:00
|
|
|
#define _CRYPTO_UX500_H
|
2012-04-30 15:11:17 +07:00
|
|
|
#include <linux/dmaengine.h>
|
2012-10-18 19:20:16 +07:00
|
|
|
#include <linux/platform_data/dma-ste-dma40.h>
|
2012-04-30 15:11:17 +07:00
|
|
|
|
2012-04-30 15:11:18 +07:00
|
|
|
struct hash_platform_data {
|
|
|
|
void *mem_to_engine;
|
|
|
|
bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
|
|
|
|
};
|
|
|
|
|
2012-04-30 15:11:17 +07:00
|
|
|
struct cryp_platform_data {
|
|
|
|
struct stedma40_chan_cfg mem_to_engine;
|
|
|
|
struct stedma40_chan_cfg engine_to_mem;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|