1 /* arch/arm/plat-samsung/include/plat/dma-ops.h
3 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #ifndef __SAMSUNG_DMA_OPS_H_
14 #define __SAMSUNG_DMA_OPS_H_ __FILE__
16 #include <linux/dmaengine.h>
19 struct samsung_dma_prep_info
{
20 enum dma_transaction_type cap
;
21 enum dma_transfer_direction direction
;
25 void (*fp
)(void *data
);
29 struct samsung_dma_info
{
30 enum dma_transaction_type cap
;
31 enum dma_transfer_direction direction
;
32 enum dma_slave_buswidth width
;
34 struct s3c2410_dma_client
*client
;
35 struct property
*dt_dmach_prop
;
38 struct samsung_dma_ops
{
39 unsigned (*request
)(enum dma_ch ch
, struct samsung_dma_info
*info
);
40 int (*release
)(unsigned ch
, struct s3c2410_dma_client
*client
);
41 int (*prepare
)(unsigned ch
, struct samsung_dma_prep_info
*info
);
42 int (*trigger
)(unsigned ch
);
43 int (*started
)(unsigned ch
);
44 int (*flush
)(unsigned ch
);
45 int (*stop
)(unsigned ch
);
48 extern void *samsung_dmadev_get_ops(void);
49 extern void *s3c_dma_get_ops(void);
51 static inline void *__samsung_dma_get_ops(void)
53 if (samsung_dma_is_dmadev())
54 return samsung_dmadev_get_ops();
56 return s3c_dma_get_ops();
61 * get the set of samsung dma operations
63 #define samsung_dma_get_ops() __samsung_dma_get_ops()
65 #endif /* __SAMSUNG_DMA_OPS_H_ */