1 |
786 |
skrzyp |
//=============================================================================
|
2 |
|
|
//
|
3 |
|
|
// mod_regs_dma.h
|
4 |
|
|
//
|
5 |
|
|
// DMA (direct memory access) Module register definitions
|
6 |
|
|
//
|
7 |
|
|
//=============================================================================
|
8 |
|
|
// ####ECOSGPLCOPYRIGHTBEGIN####
|
9 |
|
|
// -------------------------------------------
|
10 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
11 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
|
12 |
|
|
//
|
13 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
14 |
|
|
// the terms of the GNU General Public License as published by the Free
|
15 |
|
|
// Software Foundation; either version 2 or (at your option) any later
|
16 |
|
|
// version.
|
17 |
|
|
//
|
18 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT
|
19 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
20 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
21 |
|
|
// for more details.
|
22 |
|
|
//
|
23 |
|
|
// You should have received a copy of the GNU General Public License
|
24 |
|
|
// along with eCos; if not, write to the Free Software Foundation, Inc.,
|
25 |
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
26 |
|
|
//
|
27 |
|
|
// As a special exception, if other files instantiate templates or use
|
28 |
|
|
// macros or inline functions from this file, or you compile this file
|
29 |
|
|
// and link it with other works to produce a work based on this file,
|
30 |
|
|
// this file does not by itself cause the resulting work to be covered by
|
31 |
|
|
// the GNU General Public License. However the source code for this file
|
32 |
|
|
// must still be made available in accordance with section (3) of the GNU
|
33 |
|
|
// General Public License v2.
|
34 |
|
|
//
|
35 |
|
|
// This exception does not invalidate any other reasons why a work based
|
36 |
|
|
// on this file might be covered by the GNU General Public License.
|
37 |
|
|
// -------------------------------------------
|
38 |
|
|
// ####ECOSGPLCOPYRIGHTEND####
|
39 |
|
|
//=============================================================================
|
40 |
|
|
//#####DESCRIPTIONBEGIN####
|
41 |
|
|
//
|
42 |
|
|
// Author(s): jskov
|
43 |
|
|
// Contributors:jskov
|
44 |
|
|
// Date: 2000-10-30
|
45 |
|
|
//
|
46 |
|
|
//####DESCRIPTIONEND####
|
47 |
|
|
//
|
48 |
|
|
//=============================================================================
|
49 |
|
|
|
50 |
|
|
//--------------------------------------------------------------------------
|
51 |
|
|
// DMA Controller registers
|
52 |
|
|
|
53 |
|
|
#define CYGARC_REG_SAR0 0xa4000020
|
54 |
|
|
#define CYGARC_REG_DAR0 0xa4000024
|
55 |
|
|
#define CYGARC_REG_DMATCR0 0xa4000028
|
56 |
|
|
#define CYGARC_REG_CHCR0 0xa400002c
|
57 |
|
|
#define CYGARC_REG_SAR1 0xa4000030
|
58 |
|
|
#define CYGARC_REG_DAR1 0xa4000034
|
59 |
|
|
#define CYGARC_REG_DMATCR1 0xa4000038
|
60 |
|
|
#define CYGARC_REG_CHCR1 0xa400003c
|
61 |
|
|
#define CYGARC_REG_SAR2 0xa4000040
|
62 |
|
|
#define CYGARC_REG_DAR2 0xa4000044
|
63 |
|
|
#define CYGARC_REG_DMATCR2 0xa4000048
|
64 |
|
|
#define CYGARC_REG_CHCR2 0xa400004c
|
65 |
|
|
#define CYGARC_REG_SAR3 0xa4000050
|
66 |
|
|
#define CYGARC_REG_DAR3 0xa4000054
|
67 |
|
|
#define CYGARC_REG_DMATCR3 0xa4000058
|
68 |
|
|
#define CYGARC_REG_CHCR3 0xa400005c
|
69 |
|
|
#define CYGARC_REG_DMAOR 0xa4000060
|
70 |
|
|
|
71 |
|
|
// Offsets from base register
|
72 |
|
|
#define CYGARC_REG_SAR 0x00
|
73 |
|
|
#define CYGARC_REG_DAR 0x04
|
74 |
|
|
#define CYGARC_REG_DMATCR 0x08
|
75 |
|
|
#define CYGARC_REG_CHCR 0x0c
|
76 |
|
|
|
77 |
|
|
|
78 |
|
|
// DMA Channel Control Register. If there's a digit suffix to CHCR the flag
|
79 |
|
|
// is only valid in the listed channels.
|
80 |
|
|
#define CYGARC_REG_CHCR3_DI 0x00100000 // direct/indirect selection
|
81 |
|
|
#define CYGARC_REG_CHCR2_RO 0x00080000 // source address reload
|
82 |
|
|
#define CYGARC_REG_CHCR01_RL 0x00040000 // request check level
|
83 |
|
|
#define CYGARC_REG_CHCR01_AM 0x00020000 // acknowledge mode
|
84 |
|
|
#define CYGARC_REG_CHCR01_AL 0x00010000 // acknowledge level
|
85 |
|
|
#define CYGARC_REG_CHCR_DM1 0x00008000 // destination address mode
|
86 |
|
|
#define CYGARC_REG_CHCR_DM0 0x00004000
|
87 |
|
|
#define CYGARC_REG_CHCR_SM1 0x00002000 // source address mode
|
88 |
|
|
#define CYGARC_REG_CHCR_SM0 0x00001000
|
89 |
|
|
#define CYGARC_REG_CHCR_RS3 0x00000800 // resource select
|
90 |
|
|
#define CYGARC_REG_CHCR_RS2 0x00000400
|
91 |
|
|
#define CYGARC_REG_CHCR_RS1 0x00000200
|
92 |
|
|
#define CYGARC_REG_CHCR_RS0 0x00000100
|
93 |
|
|
#define CYGARC_REG_CHCR01_DS 0x00000040 // DREQ select
|
94 |
|
|
#define CYGARC_REG_CHCR_TM 0x00000020 // transmit mode
|
95 |
|
|
#define CYGARC_REG_CHCR_TS1 0x00000010 // transmit size
|
96 |
|
|
#define CYGARC_REG_CHCR_TS0 0x00000008
|
97 |
|
|
#define CYGARC_REG_CHCR_IE 0x00000004 // interrupt enable
|
98 |
|
|
#define CYGARC_REG_CHCR_TE 0x00000002 // transfer end
|
99 |
|
|
#define CYGARC_REG_CHCR_DE 0x00000001 // DMAC enable
|
100 |
|
|
|
101 |
|
|
// Resource select options
|
102 |
|
|
#define CYGARC_REG_CHCR_RS_EXT_DUAL 0x00000000
|
103 |
|
|
#define CYGARC_REG_CHCR_RS_EXT_EX_DAC 0x00000100
|
104 |
|
|
#define CYGARC_REG_CHCR_RS_EXT_DAC_EX 0x00000300
|
105 |
|
|
#define CYGARC_REG_CHCR_RS_AUTO 0x00000400
|
106 |
|
|
#define CYGARC_REG_CHCR_RS_IRDA_TX 0x00000a00
|
107 |
|
|
#define CYGARC_REG_CHCR_RS_IRDA_RX 0x00000b00
|
108 |
|
|
#define CYGARC_REG_CHCR_RS_SCIF_TX 0x00000c00
|
109 |
|
|
#define CYGARC_REG_CHCR_RS_SCIF_RX 0x00000d00
|
110 |
|
|
#define CYGARC_REG_CHCR_RS_AD 0x00000e00
|
111 |
|
|
#define CYGARC_REG_CHCR_RS_CMT 0x00000f00
|
112 |
|
|
|
113 |
|
|
|
114 |
|
|
// DMA Operation Register
|
115 |
|
|
#define CYGARC_REG_DMAOR_PR1 0x0200 // priority level
|
116 |
|
|
#define CYGARC_REG_DMAOR_PR0 0x0100
|
117 |
|
|
#define CYGARC_REG_DMAOR_AE 0x0004 // address error flag
|
118 |
|
|
#define CYGARC_REG_DMAOR_NMIF 0x0002 // NMI flag
|
119 |
|
|
#define CYGARC_REG_DMAOR_DME 0x0001 // DMA master enable
|