2019-05-28 16:57:21 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2012-04-30 08:11:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) ST-Ericsson SA 2011
|
|
|
|
*
|
|
|
|
* Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson
|
|
|
|
*/
|
|
|
|
#ifndef _CRYPTO_UX500_H
|
2012-05-10 08:14:06 +00:00
|
|
|
#define _CRYPTO_UX500_H
|
2012-04-30 08:11:17 +00:00
|
|
|
#include <linux/dmaengine.h>
|
2012-10-18 12:20:16 +00:00
|
|
|
#include <linux/platform_data/dma-ste-dma40.h>
|
2012-04-30 08:11:17 +00:00
|
|
|
|
2012-04-30 08:11:18 +00:00
|
|
|
struct hash_platform_data {
|
|
|
|
void *mem_to_engine;
|
|
|
|
bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
|
|
|
|
};
|
|
|
|
|
2012-04-30 08:11:17 +00:00
|
|
|
struct cryp_platform_data {
|
|
|
|
struct stedma40_chan_cfg mem_to_engine;
|
|
|
|
struct stedma40_chan_cfg engine_to_mem;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|