1 /* arch/arm/mach-s3c2410/include/mach/dma.h
3 * Copyright (C) 2003,2004,2006 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
6 * Samsung S3C24XX 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.
13 #ifndef __ASM_ARCH_DMA_H
14 #define __ASM_ARCH_DMA_H __FILE__
17 #include <linux/sysdev.h>
19 #define MAX_DMA_TRANSFER_SIZE 0x100000 /* Data Unit is half word */
21 /* We use `virtual` dma channels to hide the fact we have only a limited
22 * number of DMA channels, and not of all of them (dependant on the device)
23 * can be attached to any DMA source. We therefore let the DMA core handle
24 * the allocation of hardware channels to clients.
46 DMACH_UART0_SRC2
, /* s3c2412 second uart sources */
49 DMACH_UART3
, /* s3c2443 has extra uart */
51 DMACH_MAX
, /* the end entry */
54 #define DMACH_LOW_LEVEL (1<<28) /* use this to specifiy hardware ch no */
56 /* we have 4 dma channels */
57 #ifndef CONFIG_CPU_S3C2443
58 #define S3C_DMA_CHANNELS (4)
60 #define S3C_DMA_CHANNELS (6)
65 enum s3c2410_dma_state
{
71 /* enum s3c2410_dma_loadst
73 * This represents the state of the DMA engine, wrt to the loaded / running
74 * transfers. Since we don't have any way of knowing exactly the state of
75 * the DMA transfers, we need to know the state to make decisions on wether
80 * There are no buffers loaded (the channel should be inactive)
84 * There is one buffer loaded, however it has not been confirmed to be
85 * loaded by the DMA engine. This may be because the channel is not
86 * yet running, or the DMA driver decided that it was too costly to
87 * sit and wait for it to happen.
89 * S3C2410_DMA_1RUNNING
91 * The buffer has been confirmed running, and not finisged
93 * S3C2410_DMA_1LOADED_1RUNNING
95 * There is a buffer waiting to be loaded by the DMA engine, and one
99 enum s3c2410_dma_loadst
{
100 S3C2410_DMALOAD_NONE
,
101 S3C2410_DMALOAD_1LOADED
,
102 S3C2410_DMALOAD_1RUNNING
,
103 S3C2410_DMALOAD_1LOADED_1RUNNING
,
109 #define S3C2410_DMAF_SLOW (1<<0) /* slow, so don't worry about
110 * waiting for reloads */
111 #define S3C2410_DMAF_AUTOSTART (1<<1) /* auto-start if buffer queued */
113 #define S3C2410_DMAF_CIRCULAR (1 << 2) /* no circular dma support */
117 struct s3c2410_dma_buf
;
121 * internally used buffer structure to describe a queued or running
125 struct s3c2410_dma_buf
{
126 struct s3c2410_dma_buf
*next
;
127 int magic
; /* magic */
128 int size
; /* buffer size in bytes */
129 dma_addr_t data
; /* start of DMA data */
130 dma_addr_t ptr
; /* where the DMA got to [1] */
131 void *id
; /* client's id */
134 /* [1] is this updated for both recv/send modes? */
136 struct s3c2410_dma_stats
{
138 unsigned long timeout_longest
;
139 unsigned long timeout_shortest
;
140 unsigned long timeout_avg
;
141 unsigned long timeout_failed
;
144 struct s3c2410_dma_map
;
146 /* struct s3c2410_dma_chan
148 * full state information for each DMA channel
151 struct s3c2410_dma_chan
{
152 /* channel state flags and information */
153 unsigned char number
; /* number of this dma channel */
154 unsigned char in_use
; /* channel allocated */
155 unsigned char irq_claimed
; /* irq claimed for channel */
156 unsigned char irq_enabled
; /* irq enabled for channel */
157 unsigned char xfer_unit
; /* size of an transfer */
161 enum s3c2410_dma_state state
;
162 enum s3c2410_dma_loadst load_state
;
163 struct s3c2410_dma_client
*client
;
165 /* channel configuration */
166 enum s3c2410_dmasrc source
;
168 unsigned long dev_addr
;
169 unsigned long load_timeout
;
170 unsigned int flags
; /* channel flags */
172 struct s3c24xx_dma_map
*map
; /* channel hw maps */
174 /* channel's hardware position and configuration */
175 void __iomem
*regs
; /* channels registers */
176 void __iomem
*addr_reg
; /* data address register */
177 unsigned int irq
; /* channel irq */
178 unsigned long dcon
; /* default value of DCON */
181 s3c2410_dma_cbfn_t callback_fn
; /* buffer done callback */
182 s3c2410_dma_opfn_t op_fn
; /* channel op callback */
184 /* stats gathering */
185 struct s3c2410_dma_stats
*stats
;
186 struct s3c2410_dma_stats stats_store
;
188 /* buffer list and information */
189 struct s3c2410_dma_buf
*curr
; /* current dma buffer */
190 struct s3c2410_dma_buf
*next
; /* next buffer to load */
191 struct s3c2410_dma_buf
*end
; /* end of queue */
194 struct sys_device dev
;
197 typedef unsigned long dma_device_t
;
199 static inline bool s3c_dma_has_circular(void)
204 #endif /* __ASM_ARCH_DMA_H */