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

Subversion Repositories or1k_old

[/] [or1k_old/] [trunk/] [rc203soc/] [sw/] [uClinux/] [include/] [asm-alpha/] [dma.h] - Blame information for rev 1782

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1632 jcastillo
/*
2
 * include/asm-alpha/dma.h
3
 *
4
 * This is essentially the same as the i386 DMA stuff, as the AlphaPCs
5
 * use ISA-compatible dma.  The only extension is support for high-page
6
 * registers that allow to set the top 8 bits of a 32-bit DMA address.
7
 * This register should be written last when setting up a DMA address
8
 * as this will also enable DMA across 64 KB boundaries.
9
 */
10
 
11
/* $Id: dma.h,v 1.1 2005-12-20 11:20:29 jcastillo Exp $
12
 * linux/include/asm/dma.h: Defines for using and allocating dma channels.
13
 * Written by Hennus Bergman, 1992.
14
 * High DMA channel support & info by Hannu Savolainen
15
 * and John Boyd, Nov. 1992.
16
 */
17
 
18
#ifndef _ASM_DMA_H
19
#define _ASM_DMA_H
20
 
21
#include <linux/config.h>
22
 
23
#include <asm/io.h>             /* need byte IO */
24
 
25
#define dma_outb        outb
26
#define dma_inb         inb
27
 
28
/*
29
 * NOTES about DMA transfers:
30
 *
31
 *  controller 1: channels 0-3, byte operations, ports 00-1F
32
 *  controller 2: channels 4-7, word operations, ports C0-DF
33
 *
34
 *  - ALL registers are 8 bits only, regardless of transfer size
35
 *  - channel 4 is not used - cascades 1 into 2.
36
 *  - channels 0-3 are byte - addresses/counts are for physical bytes
37
 *  - channels 5-7 are word - addresses/counts are for physical words
38
 *  - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries
39
 *  - transfer count loaded to registers is 1 less than actual count
40
 *  - controller 2 offsets are all even (2x offsets for controller 1)
41
 *  - page registers for 5-7 don't use data bit 0, represent 128K pages
42
 *  - page registers for 0-3 use bit 0, represent 64K pages
43
 *
44
 * DMA transfers are limited to the lower 16MB of _physical_ memory.
45
 * Note that addresses loaded into registers must be _physical_ addresses,
46
 * not logical addresses (which may differ if paging is active).
47
 *
48
 *  Address mapping for channels 0-3:
49
 *
50
 *   A23 ... A16 A15 ... A8  A7 ... A0    (Physical addresses)
51
 *    |  ...  |   |  ... |   |  ... |
52
 *    |  ...  |   |  ... |   |  ... |
53
 *    |  ...  |   |  ... |   |  ... |
54
 *   P7  ...  P0  A7 ... A0  A7 ... A0
55
 * |    Page    | Addr MSB | Addr LSB |   (DMA registers)
56
 *
57
 *  Address mapping for channels 5-7:
58
 *
59
 *   A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0    (Physical addresses)
60
 *    |  ...  |   \   \   ... \  \  \  ... \  \
61
 *    |  ...  |    \   \   ... \  \  \  ... \  (not used)
62
 *    |  ...  |     \   \   ... \  \  \  ... \
63
 *   P7  ...  P1 (0) A7 A6  ... A0 A7 A6 ... A0
64
 * |      Page      |  Addr MSB   |  Addr LSB  |   (DMA registers)
65
 *
66
 * Again, channels 5-7 transfer _physical_ words (16 bits), so addresses
67
 * and counts _must_ be word-aligned (the lowest address bit is _ignored_ at
68
 * the hardware level, so odd-byte transfers aren't possible).
69
 *
70
 * Transfer count (_not # bytes_) is limited to 64K, represented as actual
71
 * count - 1 : 64K => 0xFFFF, 1 => 0x0000.  Thus, count is always 1 or more,
72
 * and up to 128K bytes may be transferred on channels 5-7 in one operation.
73
 *
74
 */
75
 
76
#define MAX_DMA_CHANNELS        8
77
 
78
#if defined(CONFIG_ALPHA_RUFFIAN)
79
#define MAX_DMA_ADDRESS         (0xfffffc0001000000UL) /* yup, 16Mb :-( */
80
#elif defined(CONFIG_ALPHA_XL)
81
/* The maximum address that we can perform a DMA transfer to on Alpha XL,
82
   due to a hardware SIO (PCI<->ISA bus bridge) chip limitation, is 64MB.
83
   See <asm/apecs.h> for more info.
84
*/
85
/* NOTE: we must define the maximum as something less than 64Mb, to prevent
86
   virt_to_bus() from returning an address in the first window, for a
87
   data area that goes beyond the 64Mb first DMA window. Sigh...
88
   We MUST coordinate the maximum with <asm/apecs.h> for consistency.
89
   For now, this limit is set to 48Mb...
90
*/
91
#define MAX_DMA_ADDRESS         (0xfffffc0003000000UL)
92
#else
93
/*
94
 * The maximum address that we can perform a DMA transfer to on
95
 * normal Alpha platforms
96
 */
97
#define MAX_DMA_ADDRESS         (~0UL)
98
#endif
99
 
100
/* 8237 DMA controllers */
101
#define IO_DMA1_BASE    0x00    /* 8 bit slave DMA, channels 0..3 */
102
#define IO_DMA2_BASE    0xC0    /* 16 bit master DMA, ch 4(=slave input)..7 */
103
 
104
/* DMA controller registers */
105
#define DMA1_CMD_REG            0x08    /* command register (w) */
106
#define DMA1_STAT_REG           0x08    /* status register (r) */
107
#define DMA1_REQ_REG            0x09    /* request register (w) */
108
#define DMA1_MASK_REG           0x0A    /* single-channel mask (w) */
109
#define DMA1_MODE_REG           0x0B    /* mode register (w) */
110
#define DMA1_CLEAR_FF_REG       0x0C    /* clear pointer flip-flop (w) */
111
#define DMA1_TEMP_REG           0x0D    /* Temporary Register (r) */
112
#define DMA1_RESET_REG          0x0D    /* Master Clear (w) */
113
#define DMA1_CLR_MASK_REG       0x0E    /* Clear Mask */
114
#define DMA1_MASK_ALL_REG       0x0F    /* all-channels mask (w) */
115
#define DMA1_EXT_MODE_REG       (0x400 | DMA1_MODE_REG)
116
 
117
#define DMA2_CMD_REG            0xD0    /* command register (w) */
118
#define DMA2_STAT_REG           0xD0    /* status register (r) */
119
#define DMA2_REQ_REG            0xD2    /* request register (w) */
120
#define DMA2_MASK_REG           0xD4    /* single-channel mask (w) */
121
#define DMA2_MODE_REG           0xD6    /* mode register (w) */
122
#define DMA2_CLEAR_FF_REG       0xD8    /* clear pointer flip-flop (w) */
123
#define DMA2_TEMP_REG           0xDA    /* Temporary Register (r) */
124
#define DMA2_RESET_REG          0xDA    /* Master Clear (w) */
125
#define DMA2_CLR_MASK_REG       0xDC    /* Clear Mask */
126
#define DMA2_MASK_ALL_REG       0xDE    /* all-channels mask (w) */
127
#define DMA2_EXT_MODE_REG       (0x400 | DMA2_MODE_REG)
128
 
129
#define DMA_ADDR_0              0x00    /* DMA address registers */
130
#define DMA_ADDR_1              0x02
131
#define DMA_ADDR_2              0x04
132
#define DMA_ADDR_3              0x06
133
#define DMA_ADDR_4              0xC0
134
#define DMA_ADDR_5              0xC4
135
#define DMA_ADDR_6              0xC8
136
#define DMA_ADDR_7              0xCC
137
 
138
#define DMA_CNT_0               0x01    /* DMA count registers */
139
#define DMA_CNT_1               0x03
140
#define DMA_CNT_2               0x05
141
#define DMA_CNT_3               0x07
142
#define DMA_CNT_4               0xC2
143
#define DMA_CNT_5               0xC6
144
#define DMA_CNT_6               0xCA
145
#define DMA_CNT_7               0xCE
146
 
147
#define DMA_PAGE_0              0x87    /* DMA page registers */
148
#define DMA_PAGE_1              0x83
149
#define DMA_PAGE_2              0x81
150
#define DMA_PAGE_3              0x82
151
#define DMA_PAGE_5              0x8B
152
#define DMA_PAGE_6              0x89
153
#define DMA_PAGE_7              0x8A
154
 
155
#define DMA_HIPAGE_0            (0x400 | DMA_PAGE_0)
156
#define DMA_HIPAGE_1            (0x400 | DMA_PAGE_1)
157
#define DMA_HIPAGE_2            (0x400 | DMA_PAGE_2)
158
#define DMA_HIPAGE_3            (0x400 | DMA_PAGE_3)
159
#define DMA_HIPAGE_4            (0x400 | DMA_PAGE_4)
160
#define DMA_HIPAGE_5            (0x400 | DMA_PAGE_5)
161
#define DMA_HIPAGE_6            (0x400 | DMA_PAGE_6)
162
#define DMA_HIPAGE_7            (0x400 | DMA_PAGE_7)
163
 
164
#define DMA_MODE_READ   0x44    /* I/O to memory, no autoinit, increment, single mode */
165
#define DMA_MODE_WRITE  0x48    /* memory to I/O, no autoinit, increment, single mode */
166
#define DMA_MODE_CASCADE 0xC0   /* pass thru DREQ->HRQ, DACK<-HLDA only */
167
 
168
/* enable/disable a specific DMA channel */
169
static __inline__ void enable_dma(unsigned int dmanr)
170
{
171
        if (dmanr<=3)
172
                dma_outb(dmanr,  DMA1_MASK_REG);
173
        else
174
                dma_outb(dmanr & 3,  DMA2_MASK_REG);
175
}
176
 
177
static __inline__ void disable_dma(unsigned int dmanr)
178
{
179
        if (dmanr<=3)
180
                dma_outb(dmanr | 4,  DMA1_MASK_REG);
181
        else
182
                dma_outb((dmanr & 3) | 4,  DMA2_MASK_REG);
183
}
184
 
185
/* Clear the 'DMA Pointer Flip Flop'.
186
 * Write 0 for LSB/MSB, 1 for MSB/LSB access.
187
 * Use this once to initialize the FF to a known state.
188
 * After that, keep track of it. :-)
189
 * --- In order to do that, the DMA routines below should ---
190
 * --- only be used while interrupts are disabled! ---
191
 */
192
static __inline__ void clear_dma_ff(unsigned int dmanr)
193
{
194
        if (dmanr<=3)
195
                dma_outb(0,  DMA1_CLEAR_FF_REG);
196
        else
197
                dma_outb(0,  DMA2_CLEAR_FF_REG);
198
}
199
 
200
/* set mode (above) for a specific DMA channel */
201
static __inline__ void set_dma_mode(unsigned int dmanr, char mode)
202
{
203
        if (dmanr<=3)
204
                dma_outb(mode | dmanr,  DMA1_MODE_REG);
205
        else
206
                dma_outb(mode | (dmanr&3),  DMA2_MODE_REG);
207
}
208
 
209
/* set extended mode for a specific DMA channel */
210
static __inline__ void set_dma_ext_mode(unsigned int dmanr, char ext_mode)
211
{
212
        if (dmanr<=3)
213
                dma_outb(ext_mode | dmanr,  DMA1_EXT_MODE_REG);
214
        else
215
                dma_outb(ext_mode | (dmanr&3),  DMA2_EXT_MODE_REG);
216
}
217
 
218
/* Set only the page register bits of the transfer address.
219
 * This is used for successive transfers when we know the contents of
220
 * the lower 16 bits of the DMA current address register.
221
 */
222
static __inline__ void set_dma_page(unsigned int dmanr, unsigned int pagenr)
223
{
224
        switch(dmanr) {
225
                case 0:
226
                        dma_outb(pagenr, DMA_PAGE_0);
227
                        dma_outb((pagenr >> 8), DMA_HIPAGE_0);
228
                        break;
229
                case 1:
230
                        dma_outb(pagenr, DMA_PAGE_1);
231
                        dma_outb((pagenr >> 8), DMA_HIPAGE_1);
232
                        break;
233
                case 2:
234
                        dma_outb(pagenr, DMA_PAGE_2);
235
                        dma_outb((pagenr >> 8), DMA_HIPAGE_2);
236
                        break;
237
                case 3:
238
                        dma_outb(pagenr, DMA_PAGE_3);
239
                        dma_outb((pagenr >> 8), DMA_HIPAGE_3);
240
                        break;
241
                case 5:
242
                        dma_outb(pagenr & 0xfe, DMA_PAGE_5);
243
                        dma_outb((pagenr >> 8), DMA_HIPAGE_5);
244
                        break;
245
                case 6:
246
                        dma_outb(pagenr & 0xfe, DMA_PAGE_6);
247
                        dma_outb((pagenr >> 8), DMA_HIPAGE_6);
248
                        break;
249
                case 7:
250
                        dma_outb(pagenr & 0xfe, DMA_PAGE_7);
251
                        dma_outb((pagenr >> 8), DMA_HIPAGE_7);
252
                        break;
253
        }
254
}
255
 
256
 
257
/* Set transfer address & page bits for specific DMA channel.
258
 * Assumes dma flipflop is clear.
259
 */
260
static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a)
261
{
262
        if (dmanr <= 3)  {
263
            dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );
264
            dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );
265
        }  else  {
266
            dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );
267
            dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );
268
        }
269
        set_dma_page(dmanr, a>>16);     /* set hipage last to enable 32-bit mode */
270
}
271
 
272
 
273
/* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for
274
 * a specific DMA channel.
275
 * You must ensure the parameters are valid.
276
 * NOTE: from a manual: "the number of transfers is one more
277
 * than the initial word count"! This is taken into account.
278
 * Assumes dma flip-flop is clear.
279
 * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.
280
 */
281
static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)
282
{
283
        count--;
284
        if (dmanr <= 3)  {
285
            dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );
286
            dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );
287
        } else {
288
            dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );
289
            dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );
290
        }
291
}
292
 
293
 
294
/* Get DMA residue count. After a DMA transfer, this
295
 * should return zero. Reading this while a DMA transfer is
296
 * still in progress will return unpredictable results.
297
 * If called before the channel has been used, it may return 1.
298
 * Otherwise, it returns the number of _bytes_ left to transfer.
299
 *
300
 * Assumes DMA flip-flop is clear.
301
 */
302
static __inline__ int get_dma_residue(unsigned int dmanr)
303
{
304
        unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE
305
                                         : ((dmanr&3)<<2) + 2 + IO_DMA2_BASE;
306
 
307
        /* using short to get 16-bit wrap around */
308
        unsigned short count;
309
 
310
        count = 1 + dma_inb(io_port);
311
        count += dma_inb(io_port) << 8;
312
 
313
        return (dmanr<=3)? count : (count<<1);
314
}
315
 
316
 
317
/* These are in kernel/dma.c: */
318
extern int request_dma(unsigned int dmanr, const char * device_id);     /* reserve a DMA channel */
319
extern void free_dma(unsigned int dmanr);       /* release it again */
320
 
321
 
322
#endif /* _ASM_DMA_H */

powered by: WebSVN 2.1.0

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