2 * linux/arch/arm/mach-rpc/dma.c
4 * Copyright (C) 1998 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * DMA functions specific to RiscPC architecture
12 #include <linux/mman.h>
13 #include <linux/init.h>
14 #include <linux/interrupt.h>
15 #include <linux/dma-mapping.h>
22 #include <mach/hardware.h>
23 #include <asm/uaccess.h>
25 #include <asm/mach/dma.h>
26 #include <asm/hardware/iomd.h>
29 struct dma_struct dma
;
31 unsigned long base
; /* Controller base address */
32 int irq
; /* Controller IRQ */
33 struct scatterlist cur_sg
; /* Current controller buffer */
47 #define TRANSFER_SIZE 2
50 #define ENDA (IOMD_IO0ENDA - IOMD_IO0CURA)
51 #define CURB (IOMD_IO0CURB - IOMD_IO0CURA)
52 #define ENDB (IOMD_IO0ENDB - IOMD_IO0CURA)
53 #define CR (IOMD_IO0CR - IOMD_IO0CURA)
54 #define ST (IOMD_IO0ST - IOMD_IO0CURA)
56 static void iomd_get_next_sg(struct scatterlist
*sg
, struct iomd_dma
*idma
)
58 unsigned long end
, offset
, flags
= 0;
61 sg
->dma_address
= idma
->dma_addr
;
62 offset
= sg
->dma_address
& ~PAGE_MASK
;
64 end
= offset
+ idma
->dma_len
;
69 if (offset
+ TRANSFER_SIZE
>= end
)
72 sg
->length
= end
- TRANSFER_SIZE
;
74 idma
->dma_len
-= end
- offset
;
75 idma
->dma_addr
+= end
- offset
;
77 if (idma
->dma_len
== 0) {
78 if (idma
->dma
.sgcount
> 1) {
79 idma
->dma
.sg
= sg_next(idma
->dma
.sg
);
80 idma
->dma_addr
= idma
->dma
.sg
->dma_address
;
81 idma
->dma_len
= idma
->dma
.sg
->length
;
89 flags
= DMA_END_S
| DMA_END_L
;
97 static irqreturn_t
iomd_dma_handle(int irq
, void *dev_id
)
99 struct iomd_dma
*idma
= dev_id
;
100 unsigned long base
= idma
->base
;
105 status
= iomd_readb(base
+ ST
);
106 if (!(status
& DMA_ST_INT
))
109 if ((idma
->state
^ status
) & DMA_ST_AB
)
110 iomd_get_next_sg(&idma
->cur_sg
, idma
);
112 switch (status
& (DMA_ST_OFL
| DMA_ST_AB
)) {
113 case DMA_ST_OFL
: /* OIA */
114 case DMA_ST_AB
: /* .IB */
115 iomd_writel(idma
->cur_sg
.dma_address
, base
+ CURA
);
116 iomd_writel(idma
->cur_sg
.length
, base
+ ENDA
);
117 idma
->state
= DMA_ST_AB
;
120 case DMA_ST_OFL
| DMA_ST_AB
: /* OIB */
122 iomd_writel(idma
->cur_sg
.dma_address
, base
+ CURB
);
123 iomd_writel(idma
->cur_sg
.length
, base
+ ENDB
);
128 if (status
& DMA_ST_OFL
&&
129 idma
->cur_sg
.length
== (DMA_END_S
|DMA_END_L
))
133 idma
->state
= ~DMA_ST_AB
;
139 static int iomd_request_dma(unsigned int chan
, dma_t
*dma
)
141 struct iomd_dma
*idma
= container_of(dma
, struct iomd_dma
, dma
);
143 return request_irq(idma
->irq
, iomd_dma_handle
,
144 IRQF_DISABLED
, idma
->dma
.device_id
, idma
);
147 static void iomd_free_dma(unsigned int chan
, dma_t
*dma
)
149 struct iomd_dma
*idma
= container_of(dma
, struct iomd_dma
, dma
);
151 free_irq(idma
->irq
, idma
);
154 static void iomd_enable_dma(unsigned int chan
, dma_t
*dma
)
156 struct iomd_dma
*idma
= container_of(dma
, struct iomd_dma
, dma
);
157 unsigned long dma_base
= idma
->base
;
158 unsigned int ctrl
= TRANSFER_SIZE
| DMA_CR_E
;
160 if (idma
->dma
.invalid
) {
161 idma
->dma
.invalid
= 0;
164 * Cope with ISA-style drivers which expect cache
168 idma
->dma
.sg
= &idma
->dma
.buf
;
169 idma
->dma
.sgcount
= 1;
170 idma
->dma
.buf
.length
= idma
->dma
.count
;
171 idma
->dma
.buf
.dma_address
= dma_map_single(NULL
,
172 idma
->dma
.addr
, idma
->dma
.count
,
173 idma
->dma
.dma_mode
== DMA_MODE_READ
?
174 DMA_FROM_DEVICE
: DMA_TO_DEVICE
);
177 iomd_writeb(DMA_CR_C
, dma_base
+ CR
);
178 idma
->state
= DMA_ST_AB
;
181 if (idma
->dma
.dma_mode
== DMA_MODE_READ
)
184 iomd_writeb(ctrl
, dma_base
+ CR
);
185 enable_irq(idma
->irq
);
188 static void iomd_disable_dma(unsigned int chan
, dma_t
*dma
)
190 struct iomd_dma
*idma
= container_of(dma
, struct iomd_dma
, dma
);
191 unsigned long dma_base
= idma
->base
;
194 local_irq_save(flags
);
195 if (idma
->state
!= ~DMA_ST_AB
)
196 disable_irq(idma
->irq
);
197 iomd_writeb(0, dma_base
+ CR
);
198 local_irq_restore(flags
);
201 static int iomd_set_dma_speed(unsigned int chan
, dma_t
*dma
, int cycle
)
207 else if (cycle
<= 250)
209 else if (cycle
< 438)
214 tcr
= iomd_readb(IOMD_DMATCR
);
219 tcr
= (tcr
& ~0x03) | speed
;
223 tcr
= (tcr
& ~0x0c) | (speed
<< 2);
227 tcr
= (tcr
& ~0x30) | (speed
<< 4);
231 tcr
= (tcr
& ~0xc0) | (speed
<< 6);
238 iomd_writeb(tcr
, IOMD_DMATCR
);
243 static struct dma_ops iomd_dma_ops
= {
245 .request
= iomd_request_dma
,
246 .free
= iomd_free_dma
,
247 .enable
= iomd_enable_dma
,
248 .disable
= iomd_disable_dma
,
249 .setspeed
= iomd_set_dma_speed
,
252 static struct fiq_handler fh
= {
257 struct dma_struct dma
;
261 static void floppy_enable_dma(unsigned int chan
, dma_t
*dma
)
263 struct floppy_dma
*fdma
= container_of(dma
, struct floppy_dma
, dma
);
264 void *fiqhandler_start
;
265 unsigned int fiqhandler_length
;
271 if (fdma
->dma
.dma_mode
== DMA_MODE_READ
) {
272 extern unsigned char floppy_fiqin_start
, floppy_fiqin_end
;
273 fiqhandler_start
= &floppy_fiqin_start
;
274 fiqhandler_length
= &floppy_fiqin_end
- &floppy_fiqin_start
;
276 extern unsigned char floppy_fiqout_start
, floppy_fiqout_end
;
277 fiqhandler_start
= &floppy_fiqout_start
;
278 fiqhandler_length
= &floppy_fiqout_end
- &floppy_fiqout_start
;
281 regs
.ARM_r9
= fdma
->dma
.count
;
282 regs
.ARM_r10
= (unsigned long)fdma
->dma
.addr
;
283 regs
.ARM_fp
= (unsigned long)FLOPPYDMA_BASE
;
285 if (claim_fiq(&fh
)) {
286 printk("floppydma: couldn't claim FIQ.\n");
290 set_fiq_handler(fiqhandler_start
, fiqhandler_length
);
292 enable_fiq(fdma
->fiq
);
295 static void floppy_disable_dma(unsigned int chan
, dma_t
*dma
)
297 struct floppy_dma
*fdma
= container_of(dma
, struct floppy_dma
, dma
);
298 disable_fiq(fdma
->fiq
);
302 static int floppy_get_residue(unsigned int chan
, dma_t
*dma
)
309 static struct dma_ops floppy_dma_ops
= {
311 .enable
= floppy_enable_dma
,
312 .disable
= floppy_disable_dma
,
313 .residue
= floppy_get_residue
,
317 * This is virtual DMA - we don't need anything here.
319 static void sound_enable_disable_dma(unsigned int chan
, dma_t
*dma
)
323 static struct dma_ops sound_dma_ops
= {
325 .enable
= sound_enable_disable_dma
,
326 .disable
= sound_enable_disable_dma
,
329 static struct iomd_dma iomd_dma
[6];
331 static struct floppy_dma floppy_dma
= {
333 .d_ops
= &floppy_dma_ops
,
335 .fiq
= FIQ_FLOPPYDATA
,
338 static dma_t sound_dma
= {
339 .d_ops
= &sound_dma_ops
,
342 static int __init
rpc_dma_init(void)
347 iomd_writeb(0, IOMD_IO0CR
);
348 iomd_writeb(0, IOMD_IO1CR
);
349 iomd_writeb(0, IOMD_IO2CR
);
350 iomd_writeb(0, IOMD_IO3CR
);
352 iomd_writeb(0xa0, IOMD_DMATCR
);
355 * Setup DMA channels 2,3 to be for podules
356 * and channels 0,1 for internal devices
358 iomd_writeb(DMA_EXT_IO3
|DMA_EXT_IO2
, IOMD_DMAEXT
);
360 iomd_dma
[DMA_0
].base
= IOMD_IO0CURA
;
361 iomd_dma
[DMA_0
].irq
= IRQ_DMA0
;
362 iomd_dma
[DMA_1
].base
= IOMD_IO1CURA
;
363 iomd_dma
[DMA_1
].irq
= IRQ_DMA1
;
364 iomd_dma
[DMA_2
].base
= IOMD_IO2CURA
;
365 iomd_dma
[DMA_2
].irq
= IRQ_DMA2
;
366 iomd_dma
[DMA_3
].base
= IOMD_IO3CURA
;
367 iomd_dma
[DMA_3
].irq
= IRQ_DMA3
;
368 iomd_dma
[DMA_S0
].base
= IOMD_SD0CURA
;
369 iomd_dma
[DMA_S0
].irq
= IRQ_DMAS0
;
370 iomd_dma
[DMA_S1
].base
= IOMD_SD1CURA
;
371 iomd_dma
[DMA_S1
].irq
= IRQ_DMAS1
;
373 for (i
= DMA_0
; i
<= DMA_S1
; i
++) {
374 iomd_dma
[i
].dma
.d_ops
= &iomd_dma_ops
;
376 ret
= isa_dma_add(i
, &iomd_dma
[i
].dma
);
378 printk("IOMDDMA%u: unable to register: %d\n", i
, ret
);
381 ret
= isa_dma_add(DMA_VIRTUAL_FLOPPY
, &floppy_dma
.dma
);
383 printk("IOMDFLOPPY: unable to register: %d\n", ret
);
384 ret
= isa_dma_add(DMA_VIRTUAL_SOUND
, &sound_dma
);
386 printk("IOMDSOUND: unable to register: %d\n", ret
);
389 core_initcall(rpc_dma_init
);