blob: bcdadc777564d634f87b601c3540b48d74bfcabb [file] [log] [blame]
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +02001#include <linux/types.h>
2#include <linux/kernel.h>
3#include <linux/ide.h>
4#include <linux/scatterlist.h>
5#include <linux/dma-mapping.h>
6#include <linux/io.h>
7
8/**
9 * config_drive_for_dma - attempt to activate IDE DMA
10 * @drive: the drive to place in DMA mode
11 *
12 * If the drive supports at least mode 2 DMA or UDMA of any kind
13 * then attempt to place it into DMA mode. Drives that are known to
14 * support DMA but predate the DMA properties or that are known
15 * to have DMA handling bugs are also set up appropriately based
16 * on the good/bad drive lists.
17 */
18
19int config_drive_for_dma(ide_drive_t *drive)
20{
21 ide_hwif_t *hwif = drive->hwif;
22 u16 *id = drive->id;
23
24 if (drive->media != ide_disk) {
25 if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
26 return 0;
27 }
28
29 /*
30 * Enable DMA on any drive that has
31 * UltraDMA (mode 0/1/2/3/4/5/6) enabled
32 */
33 if ((id[ATA_ID_FIELD_VALID] & 4) &&
34 ((id[ATA_ID_UDMA_MODES] >> 8) & 0x7f))
35 return 1;
36
37 /*
38 * Enable DMA on any drive that has mode2 DMA
39 * (multi or single) enabled
40 */
41 if (id[ATA_ID_FIELD_VALID] & 2) /* regular DMA */
42 if ((id[ATA_ID_MWDMA_MODES] & 0x404) == 0x404 ||
43 (id[ATA_ID_SWDMA_MODES] & 0x404) == 0x404)
44 return 1;
45
46 /* Consult the list of known "good" drives */
47 if (ide_dma_good_drive(drive))
48 return 1;
49
50 return 0;
51}
52
Sergei Shtylyov592b5312009-01-06 17:21:02 +010053u8 ide_dma_sff_read_status(ide_hwif_t *hwif)
54{
55 unsigned long addr = hwif->dma_base + ATA_DMA_STATUS;
56
57 if (hwif->host_flags & IDE_HFLAG_MMIO)
58 return readb((void __iomem *)addr);
59 else
60 return inb(addr);
61}
62EXPORT_SYMBOL_GPL(ide_dma_sff_read_status);
63
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +020064/**
65 * ide_dma_host_set - Enable/disable DMA on a host
66 * @drive: drive to control
67 *
68 * Enable/disable DMA on an IDE controller following generic
69 * bus-mastering IDE controller behaviour.
70 */
71
72void ide_dma_host_set(ide_drive_t *drive, int on)
73{
74 ide_hwif_t *hwif = drive->hwif;
75 u8 unit = drive->dn & 1;
Sergei Shtylyov592b5312009-01-06 17:21:02 +010076 u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +020077
78 if (on)
79 dma_stat |= (1 << (5 + unit));
80 else
81 dma_stat &= ~(1 << (5 + unit));
82
83 if (hwif->host_flags & IDE_HFLAG_MMIO)
84 writeb(dma_stat,
85 (void __iomem *)(hwif->dma_base + ATA_DMA_STATUS));
86 else
87 outb(dma_stat, hwif->dma_base + ATA_DMA_STATUS);
88}
89EXPORT_SYMBOL_GPL(ide_dma_host_set);
90
91/**
92 * ide_build_dmatable - build IDE DMA table
93 *
94 * ide_build_dmatable() prepares a dma request. We map the command
95 * to get the pci bus addresses of the buffers and then build up
96 * the PRD table that the IDE layer wants to be fed.
97 *
98 * Most chipsets correctly interpret a length of 0x0000 as 64KB,
99 * but at least one (e.g. CS5530) misinterprets it as zero (!).
100 * So we break the 64KB entry into two 32KB entries instead.
101 *
102 * Returns the number of built PRD entries if all went okay,
103 * returns 0 otherwise.
104 *
105 * May also be invoked from trm290.c
106 */
107
108int ide_build_dmatable(ide_drive_t *drive, struct request *rq)
109{
110 ide_hwif_t *hwif = drive->hwif;
111 __le32 *table = (__le32 *)hwif->dmatable_cpu;
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200112 unsigned int count = 0;
113 int i;
114 struct scatterlist *sg;
Bartlomiej Zolnierkiewicz1f660192008-12-29 20:27:34 +0100115 u8 is_trm290 = !!(hwif->host_flags & IDE_HFLAG_TRM290);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200116
117 hwif->sg_nents = ide_build_sglist(drive, rq);
118 if (hwif->sg_nents == 0)
119 return 0;
120
121 for_each_sg(hwif->sg_table, sg, hwif->sg_nents, i) {
122 u32 cur_addr, cur_len, xcount, bcount;
123
124 cur_addr = sg_dma_address(sg);
125 cur_len = sg_dma_len(sg);
126
127 /*
128 * Fill in the dma table, without crossing any 64kB boundaries.
129 * Most hardware requires 16-bit alignment of all blocks,
130 * but the trm290 requires 32-bit alignment.
131 */
132
133 while (cur_len) {
134 if (count++ >= PRD_ENTRIES)
135 goto use_pio_instead;
136
137 bcount = 0x10000 - (cur_addr & 0xffff);
138 if (bcount > cur_len)
139 bcount = cur_len;
140 *table++ = cpu_to_le32(cur_addr);
141 xcount = bcount & 0xffff;
142 if (is_trm290)
143 xcount = ((xcount >> 2) - 1) << 16;
Bartlomiej Zolnierkiewicz769b49c2008-10-17 18:09:18 +0200144 else if (xcount == 0x0000) {
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200145 if (count++ >= PRD_ENTRIES)
146 goto use_pio_instead;
147 *table++ = cpu_to_le32(0x8000);
148 *table++ = cpu_to_le32(cur_addr + 0x8000);
149 xcount = 0x8000;
150 }
151 *table++ = cpu_to_le32(xcount);
152 cur_addr += bcount;
153 cur_len -= bcount;
154 }
155 }
156
157 if (count) {
158 if (!is_trm290)
159 *--table |= cpu_to_le32(0x80000000);
160 return count;
161 }
162
163use_pio_instead:
164 printk(KERN_ERR "%s: %s\n", drive->name,
165 count ? "DMA table too small" : "empty DMA table?");
166
167 ide_destroy_dmatable(drive);
168
169 return 0; /* revert to PIO for this request */
170}
171EXPORT_SYMBOL_GPL(ide_build_dmatable);
172
173/**
174 * ide_dma_setup - begin a DMA phase
175 * @drive: target device
176 *
177 * Build an IDE DMA PRD (IDE speak for scatter gather table)
178 * and then set up the DMA transfer registers for a device
179 * that follows generic IDE PCI DMA behaviour. Controllers can
180 * override this function if they need to
181 *
182 * Returns 0 on success. If a PIO fallback is required then 1
183 * is returned.
184 */
185
186int ide_dma_setup(ide_drive_t *drive)
187{
188 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100189 struct request *rq = hwif->rq;
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100190 unsigned int reading = rq_data_dir(rq) ? 0 : ATA_DMA_WR;
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200191 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
192 u8 dma_stat;
193
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200194 /* fall back to pio! */
195 if (!ide_build_dmatable(drive, rq)) {
196 ide_map_sg(drive, rq);
197 return 1;
198 }
199
200 /* PRD table */
201 if (hwif->host_flags & IDE_HFLAG_MMIO)
202 writel(hwif->dmatable_dma,
203 (void __iomem *)(hwif->dma_base + ATA_DMA_TABLE_OFS));
204 else
205 outl(hwif->dmatable_dma, hwif->dma_base + ATA_DMA_TABLE_OFS);
206
207 /* specify r/w */
208 if (mmio)
209 writeb(reading, (void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
210 else
211 outb(reading, hwif->dma_base + ATA_DMA_CMD);
212
213 /* read DMA status for INTR & ERROR flags */
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100214 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200215
216 /* clear INTR & ERROR flags */
217 if (mmio)
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100218 writeb(dma_stat | ATA_DMA_ERR | ATA_DMA_INTR,
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200219 (void __iomem *)(hwif->dma_base + ATA_DMA_STATUS));
220 else
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100221 outb(dma_stat | ATA_DMA_ERR | ATA_DMA_INTR,
222 hwif->dma_base + ATA_DMA_STATUS);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200223
224 drive->waiting_for_dma = 1;
225 return 0;
226}
227EXPORT_SYMBOL_GPL(ide_dma_setup);
228
229/**
230 * dma_timer_expiry - handle a DMA timeout
231 * @drive: Drive that timed out
232 *
233 * An IDE DMA transfer timed out. In the event of an error we ask
234 * the driver to resolve the problem, if a DMA transfer is still
235 * in progress we continue to wait (arguably we need to add a
236 * secondary 'I don't care what the drive thinks' timeout here)
237 * Finally if we have an interrupt we let it complete the I/O.
238 * But only one time - we clear expiry and if it's still not
239 * completed after WAIT_CMD, we error and retry in PIO.
240 * This can occur if an interrupt is lost or due to hang or bugs.
241 */
242
243static int dma_timer_expiry(ide_drive_t *drive)
244{
245 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100246 u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200247
248 printk(KERN_WARNING "%s: %s: DMA status (0x%02x)\n",
249 drive->name, __func__, dma_stat);
250
251 if ((dma_stat & 0x18) == 0x18) /* BUSY Stupid Early Timer !! */
252 return WAIT_CMD;
253
Bartlomiej Zolnierkiewiczb65fac32009-01-06 17:20:50 +0100254 hwif->expiry = NULL; /* one free ride for now */
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200255
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100256 if (dma_stat & ATA_DMA_ERR) /* ERROR */
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200257 return -1;
258
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100259 if (dma_stat & ATA_DMA_ACTIVE) /* DMAing */
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200260 return WAIT_CMD;
261
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100262 if (dma_stat & ATA_DMA_INTR) /* Got an Interrupt */
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200263 return WAIT_CMD;
264
265 return 0; /* Status is unknown -- reset the bus */
266}
267
268void ide_dma_exec_cmd(ide_drive_t *drive, u8 command)
269{
270 /* issue cmd to drive */
271 ide_execute_command(drive, command, &ide_dma_intr, 2 * WAIT_CMD,
272 dma_timer_expiry);
273}
274EXPORT_SYMBOL_GPL(ide_dma_exec_cmd);
275
276void ide_dma_start(ide_drive_t *drive)
277{
278 ide_hwif_t *hwif = drive->hwif;
279 u8 dma_cmd;
280
281 /* Note that this is done *after* the cmd has
282 * been issued to the drive, as per the BM-IDE spec.
283 * The Promise Ultra33 doesn't work correctly when
284 * we do this part before issuing the drive cmd.
285 */
286 if (hwif->host_flags & IDE_HFLAG_MMIO) {
287 dma_cmd = readb((void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100288 writeb(dma_cmd | ATA_DMA_START,
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200289 (void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
290 } else {
291 dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD);
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100292 outb(dma_cmd | ATA_DMA_START, hwif->dma_base + ATA_DMA_CMD);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200293 }
294
295 wmb();
296}
297EXPORT_SYMBOL_GPL(ide_dma_start);
298
299/* returns 1 on error, 0 otherwise */
300int ide_dma_end(ide_drive_t *drive)
301{
302 ide_hwif_t *hwif = drive->hwif;
303 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100304 u8 dma_stat = 0, dma_cmd = 0, mask;
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200305
306 drive->waiting_for_dma = 0;
307
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100308 /* stop DMA */
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200309 if (mmio) {
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200310 dma_cmd = readb((void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100311 writeb(dma_cmd & ~ATA_DMA_START,
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200312 (void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
313 } else {
314 dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD);
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100315 outb(dma_cmd & ~ATA_DMA_START, hwif->dma_base + ATA_DMA_CMD);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200316 }
317
318 /* get DMA status */
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100319 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200320
321 if (mmio)
322 /* clear the INTR & ERROR bits */
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100323 writeb(dma_stat | ATA_DMA_ERR | ATA_DMA_INTR,
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200324 (void __iomem *)(hwif->dma_base + ATA_DMA_STATUS));
325 else
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100326 outb(dma_stat | ATA_DMA_ERR | ATA_DMA_INTR,
327 hwif->dma_base + ATA_DMA_STATUS);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200328
329 /* purge DMA mappings */
330 ide_destroy_dmatable(drive);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200331 wmb();
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100332
333 /* verify good DMA status */
334 mask = ATA_DMA_ACTIVE | ATA_DMA_ERR | ATA_DMA_INTR;
335 if ((dma_stat & mask) != ATA_DMA_INTR)
336 return 0x10 | dma_stat;
337 return 0;
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200338}
339EXPORT_SYMBOL_GPL(ide_dma_end);
340
341/* returns 1 if dma irq issued, 0 otherwise */
342int ide_dma_test_irq(ide_drive_t *drive)
343{
344 ide_hwif_t *hwif = drive->hwif;
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100345 u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200346
Bartlomiej Zolnierkiewicz1d353642008-12-29 20:27:37 +0100347 return (dma_stat & ATA_DMA_INTR) ? 1 : 0;
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200348}
349EXPORT_SYMBOL_GPL(ide_dma_test_irq);
350
351const struct ide_dma_ops sff_dma_ops = {
352 .dma_host_set = ide_dma_host_set,
353 .dma_setup = ide_dma_setup,
354 .dma_exec_cmd = ide_dma_exec_cmd,
355 .dma_start = ide_dma_start,
356 .dma_end = ide_dma_end,
357 .dma_test_irq = ide_dma_test_irq,
358 .dma_timeout = ide_dma_timeout,
359 .dma_lost_irq = ide_dma_lost_irq,
Sergei Shtylyov592b5312009-01-06 17:21:02 +0100360 .dma_sff_read_status = ide_dma_sff_read_status,
Bartlomiej Zolnierkiewicz2dbe7e92008-10-13 21:39:47 +0200361};
362EXPORT_SYMBOL_GPL(sff_dma_ops);