blob: 5f0ad35d755b7f1e6ee23871b4216dd8cd424ccf [file] [log] [blame]
Simon Schwarz4c4bb192011-09-28 05:00:26 +00001#ifndef __SDMA_H
2#define __SDMA_H
3
4/* Copyright (C) 2011
5 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Simon Schwarz4c4bb192011-09-28 05:00:26 +00008 */
9
10/* Functions */
11void omap3_dma_init(void);
12int omap3_dma_conf_transfer(uint32_t chan, uint32_t *src, uint32_t *dst,
13 uint32_t sze);
14int omap3_dma_start_transfer(uint32_t chan);
15int omap3_dma_wait_for_transfer(uint32_t chan);
16int omap3_dma_conf_chan(uint32_t chan, struct dma4_chan *config);
17int omap3_dma_get_conf_chan(uint32_t chan, struct dma4_chan *config);
18
19/* Register settings */
20#define CSDP_DATA_TYPE_8BIT 0x0
21#define CSDP_DATA_TYPE_16BIT 0x1
22#define CSDP_DATA_TYPE_32BIT 0x2
23#define CSDP_SRC_BURST_SINGLE (0x0 << 7)
24#define CSDP_SRC_BURST_EN_16BYTES (0x1 << 7)
25#define CSDP_SRC_BURST_EN_32BYTES (0x2 << 7)
26#define CSDP_SRC_BURST_EN_64BYTES (0x3 << 7)
27#define CSDP_DST_BURST_SINGLE (0x0 << 14)
28#define CSDP_DST_BURST_EN_16BYTES (0x1 << 14)
29#define CSDP_DST_BURST_EN_32BYTES (0x2 << 14)
30#define CSDP_DST_BURST_EN_64BYTES (0x3 << 14)
31#define CSDP_DST_ENDIAN_LOCK_ADAPT (0x0 << 18)
32#define CSDP_DST_ENDIAN_LOCK_LOCK (0x1 << 18)
33#define CSDP_DST_ENDIAN_LITTLE (0x0 << 19)
34#define CSDP_DST_ENDIAN_BIG (0x1 << 19)
35#define CSDP_SRC_ENDIAN_LOCK_ADAPT (0x0 << 20)
36#define CSDP_SRC_ENDIAN_LOCK_LOCK (0x1 << 20)
37#define CSDP_SRC_ENDIAN_LITTLE (0x0 << 21)
38#define CSDP_SRC_ENDIAN_BIG (0x1 << 21)
39
40#define CCR_READ_PRIORITY_LOW (0x0 << 6)
41#define CCR_READ_PRIORITY_HIGH (0x1 << 6)
42#define CCR_ENABLE_DISABLED (0x0 << 7)
43#define CCR_ENABLE_ENABLE (0x1 << 7)
44#define CCR_SRC_AMODE_CONSTANT (0x0 << 12)
45#define CCR_SRC_AMODE_POST_INC (0x1 << 12)
46#define CCR_SRC_AMODE_SINGLE_IDX (0x2 << 12)
47#define CCR_SRC_AMODE_DOUBLE_IDX (0x3 << 12)
48#define CCR_DST_AMODE_CONSTANT (0x0 << 14)
49#define CCR_DST_AMODE_POST_INC (0x1 << 14)
50#define CCR_DST_AMODE_SINGLE_IDX (0x2 << 14)
51#define CCR_DST_AMODE_SOUBLE_IDX (0x3 << 14)
52
53#define CCR_RD_ACTIVE_MASK (1 << 9)
54#define CCR_WR_ACTIVE_MASK (1 << 10)
55
56#define CSR_TRANS_ERR (1 << 8)
57#define CSR_SUPERVISOR_ERR (1 << 10)
58#define CSR_MISALIGNED_ADRS_ERR (1 << 11)
59
60/* others */
61#define CHAN_NR_MIN 0
62#define CHAN_NR_MAX 31
63
64#endif /* __SDMA_H */