blob: 5d43350e32cca27efb746435dd1578ef285ac01e [file] [log] [blame]
Thomas Gleixneraf873fc2019-05-28 09:57:21 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Andreas Westin2789c082012-04-30 10:11:17 +02002/*
3 * Copyright (C) ST-Ericsson SA 2011
4 *
5 * Author: Joakim Bech <joakim.xx.bech@stericsson.com> for ST-Ericsson
Andreas Westin2789c082012-04-30 10:11:17 +02006 */
7#ifndef _CRYPTO_UX500_H
Andreas Westin585d1882012-05-10 10:14:06 +02008#define _CRYPTO_UX500_H
Andreas Westin2789c082012-04-30 10:11:17 +02009#include <linux/dmaengine.h>
Linus Walleij865fab62012-10-18 14:20:16 +020010#include <linux/platform_data/dma-ste-dma40.h>
Andreas Westin2789c082012-04-30 10:11:17 +020011
Andreas Westin8a63b192012-04-30 10:11:18 +020012struct hash_platform_data {
13 void *mem_to_engine;
14 bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
15};
16
Andreas Westin2789c082012-04-30 10:11:17 +020017struct cryp_platform_data {
18 struct stedma40_chan_cfg mem_to_engine;
19 struct stedma40_chan_cfg engine_to_mem;
20};
21
22#endif