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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
//=============================================================================
//
// mod_regs_dma.h
//
// DMA (direct memory access) Module register definitions
//
//=============================================================================
// ####ECOSGPLCOPYRIGHTBEGIN####
// -------------------------------------------
// This file is part of eCos, the Embedded Configurable Operating System.
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
//
// eCos is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free
// Software Foundation; either version 2 or (at your option) any later
// version.
//
// eCos is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
// for more details.
//
// You should have received a copy of the GNU General Public License
// along with eCos; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// As a special exception, if other files instantiate templates or use
// macros or inline functions from this file, or you compile this file
// and link it with other works to produce a work based on this file,
// this file does not by itself cause the resulting work to be covered by
// the GNU General Public License. However the source code for this file
// must still be made available in accordance with section (3) of the GNU
// General Public License v2.
//
// This exception does not invalidate any other reasons why a work based
// on this file might be covered by the GNU General Public License.
// -------------------------------------------
// ####ECOSGPLCOPYRIGHTEND####
//=============================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s): jskov
// Contributors:jskov
// Date: 2002-01-21
//
//####DESCRIPTIONEND####
//
//=============================================================================
//--------------------------------------------------------------------------
// DMA Controller registers
#define CYGARC_REG_SAR0 0xffffff80
#define CYGARC_REG_DAR0 0xffffff84
#define CYGARC_REG_DMATCR0 0xffffff88
#define CYGARC_REG_CHCR0 0xffffff8c
#define CYGARC_REG_DRCR0 0xfffffe71
#define CYGARC_REG_SAR1 0xffffff90
#define CYGARC_REG_DAR1 0xffffff94
#define CYGARC_REG_DMATCR1 0xffffff98
#define CYGARC_REG_CHCR1 0xffffff9c
#define CYGARC_REG_DRCR1 0xfffffe72
#define CYGARC_REG_DMAOR 0xffffffb0
// Offsets from base register
#define CYGARC_REG_SAR 0x00
#define CYGARC_REG_DAR 0x04
#define CYGARC_REG_DMATCR 0x08
#define CYGARC_REG_CHCR 0x0c
// DMA Channel Control Register. If there's a digit suffix to CHCR the flag
// is only valid in the listed channels.
#define CYGARC_REG_CHCR_DM1 0x00008000 // destination address mode
#define CYGARC_REG_CHCR_DM0 0x00004000
#define CYGARC_REG_CHCR_SM1 0x00002000 // source address mode
#define CYGARC_REG_CHCR_SM0 0x00001000
#define CYGARC_REG_CHCR_TS1 0x00000800 // transmit size
#define CYGARC_REG_CHCR_TS0 0x00000400
#define CYGARC_REG_CHCR_AR 0x00000200 // auto-request mode
#define CYGARC_REG_CHCR_AM 0x00000100 // ack/tx mode
#define CYGARC_REG_CHCR_AL 0x00000080 // ack level
#define CYGARC_REG_CHCR_DS 0x00000040 // DREQ select: level(0)/edge(1)
#define CYGARC_REG_CHCR_DL 0x00000020 // DREQ select: low(0)/high(1)
#define CYGARC_REG_CHCR_TB 0x00000010 // transfer bus mode cycle-steal(0)/bus(1)
#define CYGARC_REG_CHCR_TA 0x00000008 // transfer address mode dual(0)/single(1)
#define CYGARC_REG_CHCR_IE 0x00000004 // interrupt enable
#define CYGARC_REG_CHCR_TE 0x00000002 // transfer end
#define CYGARC_REG_CHCR_DE 0x00000001 // DMAC enable
// Resource select options
#define CYGARC_REG_CHCR_RS_EXT 0x00000000
#define CYGARC_REG_CHCR_RS_SCIF1_RXI 0x00000005
#define CYGARC_REG_CHCR_RS_SCIF1_TXI 0x00000006
#define CYGARC_REG_CHCR_RS_SCIF2_RXI 0x00000009
#define CYGARC_REG_CHCR_RS_SCIF2_TXI 0x0000000a
#define CYGARC_REG_CHCR_RS_TPU_TGI0A 0x0000000c
#define CYGARC_REG_CHCR_RS_TPU_TGI0B 0x0000000d
#define CYGARC_REG_CHCR_RS_TPU_TGI0C 0x0000000e
#define CYGARC_REG_CHCR_RS_TPU_TGI0D 0x0000000f
#define CYGARC_REG_CHCR_RS_SIO0_RDIF 0x00000011
#define CYGARC_REG_CHCR_RS_SIO0_TDEI 0x00000012
#define CYGARC_REG_CHCR_RS_SIO1_RDIF 0x00000015
#define CYGARC_REG_CHCR_RS_SIO1_TDEI 0x00000016
#define CYGARC_REG_CHCR_RS_SIO2_RDIF 0x00000019
#define CYGARC_REG_CHCR_RS_SIO2_TDEI 0x0000001a
// DMA Operation Register
#define CYGARC_REG_DMAOR_PR 0x00000008
#define CYGARC_REG_DMAOR_AE 0x00000004 // address error flag
#define CYGARC_REG_DMAOR_NMIF 0x00000002 // NMI flag
#define CYGARC_REG_DMAOR_DME 0x00000001 // DMA master enable
|