1 /* arch/arm/plat-samsung/include/plat/dma.h
3 * Copyright (C) 2003-2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * Samsung S3C DMA support
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.
16 #include <linux/dma-mapping.h>
18 enum s3c2410_dma_buffresult
{
24 /* enum s3c2410_chan_op
26 * operation codes passed to the DMA code by the user, and also used
27 * to inform the current channel owner of any changes to the system state
30 enum s3c2410_chan_op
{
36 S3C2410_DMAOP_TIMEOUT
, /* internal signal to handler */
37 S3C2410_DMAOP_STARTED
, /* indicate channel started */
40 struct s3c2410_dma_client
{
44 struct s3c2410_dma_chan
;
49 * buffer callback routine type
52 typedef void (*s3c2410_dma_cbfn_t
)(struct s3c2410_dma_chan
*,
54 enum s3c2410_dma_buffresult result
);
56 typedef int (*s3c2410_dma_opfn_t
)(struct s3c2410_dma_chan
*,
57 enum s3c2410_chan_op
);
61 /* s3c2410_dma_request
63 * request a dma channel exclusivley
66 extern int s3c2410_dma_request(enum dma_ch channel
,
67 struct s3c2410_dma_client
*, void *dev
);
72 * change the state of the dma channel
75 extern int s3c2410_dma_ctrl(enum dma_ch channel
, enum s3c2410_chan_op op
);
77 /* s3c2410_dma_setflags
79 * set the channel's flags to a given state
82 extern int s3c2410_dma_setflags(enum dma_ch channel
,
87 * free the dma channel (will also abort any outstanding operations)
90 extern int s3c2410_dma_free(enum dma_ch channel
, struct s3c2410_dma_client
*);
92 /* s3c2410_dma_enqueue
94 * place the given buffer onto the queue of operations for the channel.
95 * The buffer must be allocated from dma coherent memory, or the Dcache/WB
96 * drained before the buffer is given to the DMA system.
99 extern int s3c2410_dma_enqueue(enum dma_ch channel
, void *id
,
100 dma_addr_t data
, int size
);
102 /* s3c2410_dma_config
104 * configure the dma channel
107 extern int s3c2410_dma_config(enum dma_ch channel
, int xferunit
);
109 /* s3c2410_dma_devconfig
111 * configure the device we're talking to
114 extern int s3c2410_dma_devconfig(enum dma_ch channel
,
115 enum dma_data_direction source
, unsigned long devaddr
);
117 /* s3c2410_dma_getposition
119 * get the position that the dma transfer is currently at
122 extern int s3c2410_dma_getposition(enum dma_ch channel
,
123 dma_addr_t
*src
, dma_addr_t
*dest
);
125 extern int s3c2410_dma_set_opfn(enum dma_ch
, s3c2410_dma_opfn_t rtn
);
126 extern int s3c2410_dma_set_buffdone_fn(enum dma_ch
, s3c2410_dma_cbfn_t rtn
);
128 #include <plat/dma-ops.h>