GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / ide / ide-dma-sff.c
blobe4cdf78cc3e96a4f05522ba8038610ad7c80759c
1 #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>
8 /**
9 * config_drive_for_dma - attempt to activate IDE DMA
10 * @drive: the drive to place in DMA mode
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.
19 int config_drive_for_dma(ide_drive_t *drive)
21 ide_hwif_t *hwif = drive->hwif;
22 u16 *id = drive->id;
24 if (drive->media != ide_disk) {
25 if (hwif->host_flags & IDE_HFLAG_NO_ATAPI_DMA)
26 return 0;
30 * Enable DMA on any drive that has
31 * UltraDMA (mode 0/1/2/3/4/5/6) enabled
33 if ((id[ATA_ID_FIELD_VALID] & 4) &&
34 ((id[ATA_ID_UDMA_MODES] >> 8) & 0x7f))
35 return 1;
38 * Enable DMA on any drive that has mode2 DMA
39 * (multi or single) enabled
41 if ((id[ATA_ID_MWDMA_MODES] & 0x404) == 0x404 ||
42 (id[ATA_ID_SWDMA_MODES] & 0x404) == 0x404)
43 return 1;
45 /* Consult the list of known "good" drives */
46 if (ide_dma_good_drive(drive))
47 return 1;
49 return 0;
52 u8 ide_dma_sff_read_status(ide_hwif_t *hwif)
54 unsigned long addr = hwif->dma_base + ATA_DMA_STATUS;
56 if (hwif->host_flags & IDE_HFLAG_MMIO)
57 return readb((void __iomem *)addr);
58 else
59 return inb(addr);
61 EXPORT_SYMBOL_GPL(ide_dma_sff_read_status);
63 static void ide_dma_sff_write_status(ide_hwif_t *hwif, u8 val)
65 unsigned long addr = hwif->dma_base + ATA_DMA_STATUS;
67 if (hwif->host_flags & IDE_HFLAG_MMIO)
68 writeb(val, (void __iomem *)addr);
69 else
70 outb(val, addr);
73 /**
74 * ide_dma_host_set - Enable/disable DMA on a host
75 * @drive: drive to control
77 * Enable/disable DMA on an IDE controller following generic
78 * bus-mastering IDE controller behaviour.
81 void ide_dma_host_set(ide_drive_t *drive, int on)
83 ide_hwif_t *hwif = drive->hwif;
84 u8 unit = drive->dn & 1;
85 u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
87 if (on)
88 dma_stat |= (1 << (5 + unit));
89 else
90 dma_stat &= ~(1 << (5 + unit));
92 ide_dma_sff_write_status(hwif, dma_stat);
94 EXPORT_SYMBOL_GPL(ide_dma_host_set);
96 /**
97 * ide_build_dmatable - build IDE DMA table
99 * ide_build_dmatable() prepares a dma request. We map the command
100 * to get the pci bus addresses of the buffers and then build up
101 * the PRD table that the IDE layer wants to be fed.
103 * Most chipsets correctly interpret a length of 0x0000 as 64KB,
104 * but at least one (e.g. CS5530) misinterprets it as zero (!).
105 * So we break the 64KB entry into two 32KB entries instead.
107 * Returns the number of built PRD entries if all went okay,
108 * returns 0 otherwise.
110 * May also be invoked from trm290.c
113 int ide_build_dmatable(ide_drive_t *drive, struct ide_cmd *cmd)
115 ide_hwif_t *hwif = drive->hwif;
116 __le32 *table = (__le32 *)hwif->dmatable_cpu;
117 unsigned int count = 0;
118 int i;
119 struct scatterlist *sg;
120 u8 is_trm290 = !!(hwif->host_flags & IDE_HFLAG_TRM290);
122 for_each_sg(hwif->sg_table, sg, cmd->sg_nents, i) {
123 u32 cur_addr, cur_len, xcount, bcount;
125 cur_addr = sg_dma_address(sg);
126 cur_len = sg_dma_len(sg);
129 * Fill in the dma table, without crossing any 64kB boundaries.
130 * Most hardware requires 16-bit alignment of all blocks,
131 * but the trm290 requires 32-bit alignment.
134 while (cur_len) {
135 if (count++ >= PRD_ENTRIES)
136 goto use_pio_instead;
138 bcount = 0x10000 - (cur_addr & 0xffff);
139 if (bcount > cur_len)
140 bcount = cur_len;
141 *table++ = cpu_to_le32(cur_addr);
142 xcount = bcount & 0xffff;
143 if (is_trm290)
144 xcount = ((xcount >> 2) - 1) << 16;
145 else if (xcount == 0x0000) {
146 if (count++ >= PRD_ENTRIES)
147 goto use_pio_instead;
148 *table++ = cpu_to_le32(0x8000);
149 *table++ = cpu_to_le32(cur_addr + 0x8000);
150 xcount = 0x8000;
152 *table++ = cpu_to_le32(xcount);
153 cur_addr += bcount;
154 cur_len -= bcount;
158 if (count) {
159 if (!is_trm290)
160 *--table |= cpu_to_le32(0x80000000);
161 return count;
164 use_pio_instead:
165 printk(KERN_ERR "%s: %s\n", drive->name,
166 count ? "DMA table too small" : "empty DMA table?");
168 return 0; /* revert to PIO for this request */
170 EXPORT_SYMBOL_GPL(ide_build_dmatable);
173 * ide_dma_setup - begin a DMA phase
174 * @drive: target device
175 * @cmd: command
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
182 * Returns 0 on success. If a PIO fallback is required then 1
183 * is returned.
186 int ide_dma_setup(ide_drive_t *drive, struct ide_cmd *cmd)
188 ide_hwif_t *hwif = drive->hwif;
189 u8 mmio = (hwif->host_flags & IDE_HFLAG_MMIO) ? 1 : 0;
190 u8 rw = (cmd->tf_flags & IDE_TFLAG_WRITE) ? 0 : ATA_DMA_WR;
191 u8 dma_stat;
193 /* fall back to pio! */
194 if (ide_build_dmatable(drive, cmd) == 0) {
195 ide_map_sg(drive, cmd);
196 return 1;
199 /* PRD table */
200 if (mmio)
201 writel(hwif->dmatable_dma,
202 (void __iomem *)(hwif->dma_base + ATA_DMA_TABLE_OFS));
203 else
204 outl(hwif->dmatable_dma, hwif->dma_base + ATA_DMA_TABLE_OFS);
206 /* specify r/w */
207 if (mmio)
208 writeb(rw, (void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
209 else
210 outb(rw, hwif->dma_base + ATA_DMA_CMD);
212 /* read DMA status for INTR & ERROR flags */
213 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
215 /* clear INTR & ERROR flags */
216 ide_dma_sff_write_status(hwif, dma_stat | ATA_DMA_ERR | ATA_DMA_INTR);
218 return 0;
220 EXPORT_SYMBOL_GPL(ide_dma_setup);
223 * ide_dma_sff_timer_expiry - handle a DMA timeout
224 * @drive: Drive that timed out
226 * An IDE DMA transfer timed out. In the event of an error we ask
227 * the driver to resolve the problem, if a DMA transfer is still
228 * in progress we continue to wait (arguably we need to add a
229 * secondary 'I don't care what the drive thinks' timeout here)
230 * Finally if we have an interrupt we let it complete the I/O.
231 * But only one time - we clear expiry and if it's still not
232 * completed after WAIT_CMD, we error and retry in PIO.
233 * This can occur if an interrupt is lost or due to hang or bugs.
236 int ide_dma_sff_timer_expiry(ide_drive_t *drive)
238 ide_hwif_t *hwif = drive->hwif;
239 u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
241 printk(KERN_WARNING "%s: %s: DMA status (0x%02x)\n",
242 drive->name, __func__, dma_stat);
244 if ((dma_stat & 0x18) == 0x18) /* BUSY Stupid Early Timer !! */
245 return WAIT_CMD;
247 hwif->expiry = NULL; /* one free ride for now */
249 if (dma_stat & ATA_DMA_ERR) /* ERROR */
250 return -1;
252 if (dma_stat & ATA_DMA_ACTIVE) /* DMAing */
253 return WAIT_CMD;
255 if (dma_stat & ATA_DMA_INTR) /* Got an Interrupt */
256 return WAIT_CMD;
258 return 0; /* Status is unknown -- reset the bus */
260 EXPORT_SYMBOL_GPL(ide_dma_sff_timer_expiry);
262 void ide_dma_start(ide_drive_t *drive)
264 ide_hwif_t *hwif = drive->hwif;
265 u8 dma_cmd;
267 /* Note that this is done *after* the cmd has
268 * been issued to the drive, as per the BM-IDE spec.
269 * The Promise Ultra33 doesn't work correctly when
270 * we do this part before issuing the drive cmd.
272 if (hwif->host_flags & IDE_HFLAG_MMIO) {
273 dma_cmd = readb((void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
274 writeb(dma_cmd | ATA_DMA_START,
275 (void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
276 } else {
277 dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD);
278 outb(dma_cmd | ATA_DMA_START, hwif->dma_base + ATA_DMA_CMD);
281 EXPORT_SYMBOL_GPL(ide_dma_start);
283 /* returns 1 on error, 0 otherwise */
284 int ide_dma_end(ide_drive_t *drive)
286 ide_hwif_t *hwif = drive->hwif;
287 u8 dma_stat = 0, dma_cmd = 0;
289 /* stop DMA */
290 if (hwif->host_flags & IDE_HFLAG_MMIO) {
291 dma_cmd = readb((void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
292 writeb(dma_cmd & ~ATA_DMA_START,
293 (void __iomem *)(hwif->dma_base + ATA_DMA_CMD));
294 } else {
295 dma_cmd = inb(hwif->dma_base + ATA_DMA_CMD);
296 outb(dma_cmd & ~ATA_DMA_START, hwif->dma_base + ATA_DMA_CMD);
299 /* get DMA status */
300 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
302 /* clear INTR & ERROR bits */
303 ide_dma_sff_write_status(hwif, dma_stat | ATA_DMA_ERR | ATA_DMA_INTR);
305 #define CHECK_DMA_MASK (ATA_DMA_ACTIVE | ATA_DMA_ERR | ATA_DMA_INTR)
307 /* verify good DMA status */
308 if ((dma_stat & CHECK_DMA_MASK) != ATA_DMA_INTR)
309 return 0x10 | dma_stat;
310 return 0;
312 EXPORT_SYMBOL_GPL(ide_dma_end);
314 /* returns 1 if dma irq issued, 0 otherwise */
315 int ide_dma_test_irq(ide_drive_t *drive)
317 ide_hwif_t *hwif = drive->hwif;
318 u8 dma_stat = hwif->dma_ops->dma_sff_read_status(hwif);
320 return (dma_stat & ATA_DMA_INTR) ? 1 : 0;
322 EXPORT_SYMBOL_GPL(ide_dma_test_irq);
324 const struct ide_dma_ops sff_dma_ops = {
325 .dma_host_set = ide_dma_host_set,
326 .dma_setup = ide_dma_setup,
327 .dma_start = ide_dma_start,
328 .dma_end = ide_dma_end,
329 .dma_test_irq = ide_dma_test_irq,
330 .dma_lost_irq = ide_dma_lost_irq,
331 .dma_timer_expiry = ide_dma_sff_timer_expiry,
332 .dma_sff_read_status = ide_dma_sff_read_status,
334 EXPORT_SYMBOL_GPL(sff_dma_ops);