aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data/dma-mv_xor.h
blob: 6abe5f9326b6975029ae88f3c6cc9a003915e248 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * arch/arm/plat-orion/include/plat/mv_xor.h
 *
 * Marvell XOR platform device data definition file.
 */

#ifndef __PLAT_MV_XOR_H
#define __PLAT_MV_XOR_H

#include <linux/dmaengine.h>
#include <linux/mbus.h>

#define MV_XOR_SHARED_NAME	"mv_xor_shared"

struct mv_xor_platform_data {
	struct platform_device		*shared;
	int				hw_id;
	dma_cap_mask_t			cap_mask;
	size_t				pool_size;
};

struct mv_xor_shared_platform_data {
	struct mv_xor_platform_data    *channels;
};

#endif