OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [hal/] [sh/] [sh4/] [v2_0/] [include/] [mod_regs_dma.h] - Blame information for rev 565

Go to most recent revision | Details | Compare with Previous | View Log

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

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.