blob: 488d5c3b37f44ce6bfb35de1ac7d3f68384ac90f [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/arch/arm/mach-rpc/dma.c
4 *
5 * Copyright (C) 1998 Russell King
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * DMA functions specific to RiscPC architecture
8 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mman.h>
10#include <linux/init.h>
11#include <linux/interrupt.h>
Russell King7cdad482006-01-04 15:08:30 +000012#include <linux/dma-mapping.h>
Russell Kingfced80c2008-09-06 12:10:45 +010013#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15#include <asm/page.h>
16#include <asm/dma.h>
17#include <asm/fiq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010019#include <mach/hardware.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/mach/dma.h>
23#include <asm/hardware/iomd.h>
24
Russell King308d3332009-02-21 21:36:22 +000025struct iomd_dma {
26 struct dma_struct dma;
27 unsigned int state;
28 unsigned long base; /* Controller base address */
29 int irq; /* Controller IRQ */
30 struct scatterlist cur_sg; /* Current controller buffer */
Russell Kingfa4e9982009-02-21 21:38:56 +000031 dma_addr_t dma_addr;
32 unsigned int dma_len;
Russell King308d3332009-02-21 21:36:22 +000033};
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#if 0
36typedef enum {
37 dma_size_8 = 1,
38 dma_size_16 = 2,
39 dma_size_32 = 4,
40 dma_size_128 = 16
41} dma_size_t;
42#endif
43
44#define TRANSFER_SIZE 2
45
46#define CURA (0)
47#define ENDA (IOMD_IO0ENDA - IOMD_IO0CURA)
48#define CURB (IOMD_IO0CURB - IOMD_IO0CURA)
49#define ENDB (IOMD_IO0ENDB - IOMD_IO0CURA)
50#define CR (IOMD_IO0CR - IOMD_IO0CURA)
51#define ST (IOMD_IO0ST - IOMD_IO0CURA)
52
Russell Kingad9dd942008-12-08 17:35:48 +000053static void iomd_get_next_sg(struct scatterlist *sg, struct iomd_dma *idma)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 unsigned long end, offset, flags = 0;
56
Russell Kingad9dd942008-12-08 17:35:48 +000057 if (idma->dma.sg) {
Russell Kingfa4e9982009-02-21 21:38:56 +000058 sg->dma_address = idma->dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 offset = sg->dma_address & ~PAGE_MASK;
60
Russell Kingfa4e9982009-02-21 21:38:56 +000061 end = offset + idma->dma_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 if (end > PAGE_SIZE)
64 end = PAGE_SIZE;
65
66 if (offset + TRANSFER_SIZE >= end)
67 flags |= DMA_END_L;
68
69 sg->length = end - TRANSFER_SIZE;
70
Russell Kingfa4e9982009-02-21 21:38:56 +000071 idma->dma_len -= end - offset;
72 idma->dma_addr += end - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Russell Kingfa4e9982009-02-21 21:38:56 +000074 if (idma->dma_len == 0) {
Russell Kingad9dd942008-12-08 17:35:48 +000075 if (idma->dma.sgcount > 1) {
Russell King9e28d7e2008-12-08 19:03:58 +000076 idma->dma.sg = sg_next(idma->dma.sg);
Russell Kingfa4e9982009-02-21 21:38:56 +000077 idma->dma_addr = idma->dma.sg->dma_address;
78 idma->dma_len = idma->dma.sg->length;
Russell Kingad9dd942008-12-08 17:35:48 +000079 idma->dma.sgcount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 } else {
Russell Kingad9dd942008-12-08 17:35:48 +000081 idma->dma.sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 flags |= DMA_END_S;
83 }
84 }
85 } else {
86 flags = DMA_END_S | DMA_END_L;
87 sg->dma_address = 0;
88 sg->length = 0;
89 }
90
91 sg->length |= flags;
92}
93
Linus Torvalds0cd61b62006-10-06 10:53:39 -070094static irqreturn_t iomd_dma_handle(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Russell Kingad9dd942008-12-08 17:35:48 +000096 struct iomd_dma *idma = dev_id;
97 unsigned long base = idma->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 do {
100 unsigned int status;
101
102 status = iomd_readb(base + ST);
103 if (!(status & DMA_ST_INT))
104 return IRQ_HANDLED;
105
Russell Kingad9dd942008-12-08 17:35:48 +0000106 if ((idma->state ^ status) & DMA_ST_AB)
107 iomd_get_next_sg(&idma->cur_sg, idma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 switch (status & (DMA_ST_OFL | DMA_ST_AB)) {
110 case DMA_ST_OFL: /* OIA */
111 case DMA_ST_AB: /* .IB */
Russell Kingad9dd942008-12-08 17:35:48 +0000112 iomd_writel(idma->cur_sg.dma_address, base + CURA);
113 iomd_writel(idma->cur_sg.length, base + ENDA);
114 idma->state = DMA_ST_AB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 break;
116
117 case DMA_ST_OFL | DMA_ST_AB: /* OIB */
118 case 0: /* .IA */
Russell Kingad9dd942008-12-08 17:35:48 +0000119 iomd_writel(idma->cur_sg.dma_address, base + CURB);
120 iomd_writel(idma->cur_sg.length, base + ENDB);
121 idma->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 break;
123 }
124
125 if (status & DMA_ST_OFL &&
Russell Kingad9dd942008-12-08 17:35:48 +0000126 idma->cur_sg.length == (DMA_END_S|DMA_END_L))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 break;
128 } while (1);
129
Russell Kingad9dd942008-12-08 17:35:48 +0000130 idma->state = ~DMA_ST_AB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 disable_irq(irq);
132
133 return IRQ_HANDLED;
134}
135
Russell King1df81302008-12-08 15:58:50 +0000136static int iomd_request_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Russell Kingad9dd942008-12-08 17:35:48 +0000138 struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma);
139
140 return request_irq(idma->irq, iomd_dma_handle,
Michael Opdenacker78f6db92014-03-04 22:04:50 +0100141 0, idma->dma.device_id, idma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Russell King1df81302008-12-08 15:58:50 +0000144static void iomd_free_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Russell Kingad9dd942008-12-08 17:35:48 +0000146 struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma);
147
148 free_irq(idma->irq, idma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
Christoph Hellwig5ab6a912018-12-21 14:56:38 +0100151static struct device isa_dma_dev = {
152 .init_name = "fallback device",
153 .coherent_dma_mask = ~(dma_addr_t)0,
154 .dma_mask = &isa_dma_dev.coherent_dma_mask,
155};
156
Russell King1df81302008-12-08 15:58:50 +0000157static void iomd_enable_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Russell Kingad9dd942008-12-08 17:35:48 +0000159 struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma);
160 unsigned long dma_base = idma->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 unsigned int ctrl = TRANSFER_SIZE | DMA_CR_E;
162
Russell Kingad9dd942008-12-08 17:35:48 +0000163 if (idma->dma.invalid) {
164 idma->dma.invalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /*
167 * Cope with ISA-style drivers which expect cache
168 * coherence.
169 */
Russell Kingad9dd942008-12-08 17:35:48 +0000170 if (!idma->dma.sg) {
171 idma->dma.sg = &idma->dma.buf;
172 idma->dma.sgcount = 1;
173 idma->dma.buf.length = idma->dma.count;
Christoph Hellwig5ab6a912018-12-21 14:56:38 +0100174 idma->dma.buf.dma_address = dma_map_single(&isa_dma_dev,
Russell Kingad9dd942008-12-08 17:35:48 +0000175 idma->dma.addr, idma->dma.count,
176 idma->dma.dma_mode == DMA_MODE_READ ?
Russell King7cdad482006-01-04 15:08:30 +0000177 DMA_FROM_DEVICE : DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179
180 iomd_writeb(DMA_CR_C, dma_base + CR);
Russell Kingad9dd942008-12-08 17:35:48 +0000181 idma->state = DMA_ST_AB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
Russell Kingad9dd942008-12-08 17:35:48 +0000183
184 if (idma->dma.dma_mode == DMA_MODE_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ctrl |= DMA_CR_D;
186
187 iomd_writeb(ctrl, dma_base + CR);
Russell Kingad9dd942008-12-08 17:35:48 +0000188 enable_irq(idma->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Russell King1df81302008-12-08 15:58:50 +0000191static void iomd_disable_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
Russell Kingad9dd942008-12-08 17:35:48 +0000193 struct iomd_dma *idma = container_of(dma, struct iomd_dma, dma);
194 unsigned long dma_base = idma->base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 unsigned long flags;
196
197 local_irq_save(flags);
Russell Kingad9dd942008-12-08 17:35:48 +0000198 if (idma->state != ~DMA_ST_AB)
199 disable_irq(idma->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 iomd_writeb(0, dma_base + CR);
201 local_irq_restore(flags);
202}
203
Russell King1df81302008-12-08 15:58:50 +0000204static int iomd_set_dma_speed(unsigned int chan, dma_t *dma, int cycle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 int tcr, speed;
207
208 if (cycle < 188)
209 speed = 3;
210 else if (cycle <= 250)
211 speed = 2;
212 else if (cycle < 438)
213 speed = 1;
214 else
215 speed = 0;
216
217 tcr = iomd_readb(IOMD_DMATCR);
218 speed &= 3;
219
Russell King1df81302008-12-08 15:58:50 +0000220 switch (chan) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 case DMA_0:
222 tcr = (tcr & ~0x03) | speed;
223 break;
224
225 case DMA_1:
226 tcr = (tcr & ~0x0c) | (speed << 2);
227 break;
228
229 case DMA_2:
230 tcr = (tcr & ~0x30) | (speed << 4);
231 break;
232
233 case DMA_3:
234 tcr = (tcr & ~0xc0) | (speed << 6);
235 break;
236
237 default:
238 break;
239 }
240
241 iomd_writeb(tcr, IOMD_DMATCR);
242
243 return speed;
244}
245
246static struct dma_ops iomd_dma_ops = {
247 .type = "IOMD",
248 .request = iomd_request_dma,
249 .free = iomd_free_dma,
250 .enable = iomd_enable_dma,
251 .disable = iomd_disable_dma,
252 .setspeed = iomd_set_dma_speed,
253};
254
255static struct fiq_handler fh = {
256 .name = "floppydma"
257};
258
Russell King308d3332009-02-21 21:36:22 +0000259struct floppy_dma {
260 struct dma_struct dma;
261 unsigned int fiq;
262};
263
Russell King1df81302008-12-08 15:58:50 +0000264static void floppy_enable_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Russell Kingad9dd942008-12-08 17:35:48 +0000266 struct floppy_dma *fdma = container_of(dma, struct floppy_dma, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 void *fiqhandler_start;
268 unsigned int fiqhandler_length;
269 struct pt_regs regs;
270
Russell Kingad9dd942008-12-08 17:35:48 +0000271 if (fdma->dma.sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 BUG();
273
Russell Kingad9dd942008-12-08 17:35:48 +0000274 if (fdma->dma.dma_mode == DMA_MODE_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 extern unsigned char floppy_fiqin_start, floppy_fiqin_end;
276 fiqhandler_start = &floppy_fiqin_start;
277 fiqhandler_length = &floppy_fiqin_end - &floppy_fiqin_start;
278 } else {
279 extern unsigned char floppy_fiqout_start, floppy_fiqout_end;
280 fiqhandler_start = &floppy_fiqout_start;
281 fiqhandler_length = &floppy_fiqout_end - &floppy_fiqout_start;
282 }
283
Russell Kingad9dd942008-12-08 17:35:48 +0000284 regs.ARM_r9 = fdma->dma.count;
285 regs.ARM_r10 = (unsigned long)fdma->dma.addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 regs.ARM_fp = (unsigned long)FLOPPYDMA_BASE;
287
288 if (claim_fiq(&fh)) {
289 printk("floppydma: couldn't claim FIQ.\n");
290 return;
291 }
292
293 set_fiq_handler(fiqhandler_start, fiqhandler_length);
294 set_fiq_regs(&regs);
Russell Kingad9dd942008-12-08 17:35:48 +0000295 enable_fiq(fdma->fiq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Russell King1df81302008-12-08 15:58:50 +0000298static void floppy_disable_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Russell Kingad9dd942008-12-08 17:35:48 +0000300 struct floppy_dma *fdma = container_of(dma, struct floppy_dma, dma);
301 disable_fiq(fdma->fiq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 release_fiq(&fh);
303}
304
Russell King1df81302008-12-08 15:58:50 +0000305static int floppy_get_residue(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 struct pt_regs regs;
308 get_fiq_regs(&regs);
309 return regs.ARM_r9;
310}
311
312static struct dma_ops floppy_dma_ops = {
313 .type = "FIQDMA",
314 .enable = floppy_enable_dma,
315 .disable = floppy_disable_dma,
316 .residue = floppy_get_residue,
317};
318
319/*
320 * This is virtual DMA - we don't need anything here.
321 */
Russell King1df81302008-12-08 15:58:50 +0000322static void sound_enable_disable_dma(unsigned int chan, dma_t *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324}
325
326static struct dma_ops sound_dma_ops = {
327 .type = "VIRTUAL",
328 .enable = sound_enable_disable_dma,
329 .disable = sound_enable_disable_dma,
330};
331
Russell Kingad9dd942008-12-08 17:35:48 +0000332static struct iomd_dma iomd_dma[6];
Russell King2f757f22008-12-08 16:33:30 +0000333
Russell Kingad9dd942008-12-08 17:35:48 +0000334static struct floppy_dma floppy_dma = {
335 .dma = {
336 .d_ops = &floppy_dma_ops,
337 },
338 .fiq = FIQ_FLOPPYDATA,
Russell King2f757f22008-12-08 16:33:30 +0000339};
340
341static dma_t sound_dma = {
342 .d_ops = &sound_dma_ops,
343};
344
345static int __init rpc_dma_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Russell King2f757f22008-12-08 16:33:30 +0000347 unsigned int i;
348 int ret;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 iomd_writeb(0, IOMD_IO0CR);
351 iomd_writeb(0, IOMD_IO1CR);
352 iomd_writeb(0, IOMD_IO2CR);
353 iomd_writeb(0, IOMD_IO3CR);
354
355 iomd_writeb(0xa0, IOMD_DMATCR);
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /*
358 * Setup DMA channels 2,3 to be for podules
359 * and channels 0,1 for internal devices
360 */
361 iomd_writeb(DMA_EXT_IO3|DMA_EXT_IO2, IOMD_DMAEXT);
Russell King2f757f22008-12-08 16:33:30 +0000362
Russell Kingad9dd942008-12-08 17:35:48 +0000363 iomd_dma[DMA_0].base = IOMD_IO0CURA;
364 iomd_dma[DMA_0].irq = IRQ_DMA0;
365 iomd_dma[DMA_1].base = IOMD_IO1CURA;
366 iomd_dma[DMA_1].irq = IRQ_DMA1;
367 iomd_dma[DMA_2].base = IOMD_IO2CURA;
368 iomd_dma[DMA_2].irq = IRQ_DMA2;
369 iomd_dma[DMA_3].base = IOMD_IO3CURA;
370 iomd_dma[DMA_3].irq = IRQ_DMA3;
371 iomd_dma[DMA_S0].base = IOMD_SD0CURA;
372 iomd_dma[DMA_S0].irq = IRQ_DMAS0;
373 iomd_dma[DMA_S1].base = IOMD_SD1CURA;
374 iomd_dma[DMA_S1].irq = IRQ_DMAS1;
Russell King2f757f22008-12-08 16:33:30 +0000375
376 for (i = DMA_0; i <= DMA_S1; i++) {
Russell Kingad9dd942008-12-08 17:35:48 +0000377 iomd_dma[i].dma.d_ops = &iomd_dma_ops;
Russell King2f757f22008-12-08 16:33:30 +0000378
Russell Kingad9dd942008-12-08 17:35:48 +0000379 ret = isa_dma_add(i, &iomd_dma[i].dma);
Russell King2f757f22008-12-08 16:33:30 +0000380 if (ret)
381 printk("IOMDDMA%u: unable to register: %d\n", i, ret);
382 }
383
Russell Kingad9dd942008-12-08 17:35:48 +0000384 ret = isa_dma_add(DMA_VIRTUAL_FLOPPY, &floppy_dma.dma);
Russell King2f757f22008-12-08 16:33:30 +0000385 if (ret)
386 printk("IOMDFLOPPY: unable to register: %d\n", ret);
387 ret = isa_dma_add(DMA_VIRTUAL_SOUND, &sound_dma);
388 if (ret)
389 printk("IOMDSOUND: unable to register: %d\n", ret);
390 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Russell King2f757f22008-12-08 16:33:30 +0000392core_initcall(rpc_dma_init);