blob: 4dfdca4ccbde90f8fbc892f772b1fe9fa83811c3 [file] [log] [blame]
Pete Popov26a940e2005-09-15 08:03:12 +00001/*
2 * linux/drivers/ide/mips/au1xxx-ide.c version 01.30.00 Aug. 02 2005
3 *
4 * BRIEF MODULE DESCRIPTION
5 * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
6 *
7 * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
8 *
9 * This program is free software; you can redistribute it and/or modify it under
10 * the terms of the GNU General Public License as published by the Free Software
11 * Foundation; either version 2 of the License, or (at your option) any later
12 * version.
13 *
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
15 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
23 * POSSIBILITY OF SUCH DAMAGE.
24 *
25 * You should have received a copy of the GNU General Public License along with
26 * this program; if not, write to the Free Software Foundation, Inc.,
27 * 675 Mass Ave, Cambridge, MA 02139, USA.
28 *
29 * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
30 * Interface and Linux Device Driver" Application Note.
31 */
Pete Popov26a940e2005-09-15 08:03:12 +000032#include <linux/types.h>
33#include <linux/module.h>
34#include <linux/kernel.h>
35#include <linux/delay.h>
Jordan Crouse8f29e652005-12-15 02:17:46 +010036#include <linux/platform_device.h>
37
Pete Popov26a940e2005-09-15 08:03:12 +000038#include <linux/init.h>
39#include <linux/ide.h>
40#include <linux/sysdev.h>
41
42#include <linux/dma-mapping.h>
43
Jordan Crouse8f29e652005-12-15 02:17:46 +010044#include "ide-timing.h"
45
Pete Popov26a940e2005-09-15 08:03:12 +000046#include <asm/io.h>
47#include <asm/mach-au1x00/au1xxx.h>
48#include <asm/mach-au1x00/au1xxx_dbdma.h>
49
Pete Popov26a940e2005-09-15 08:03:12 +000050#include <asm/mach-au1x00/au1xxx_ide.h>
51
52#define DRV_NAME "au1200-ide"
53#define DRV_VERSION "1.0"
Jordan Crouse8f29e652005-12-15 02:17:46 +010054#define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
55
56/* enable the burstmode in the dbdma */
57#define IDE_AU1XXX_BURSTMODE 1
Pete Popov26a940e2005-09-15 08:03:12 +000058
59static _auide_hwif auide_hwif;
Jordan Crouse8f29e652005-12-15 02:17:46 +010060static int dbdma_init_done;
Pete Popov26a940e2005-09-15 08:03:12 +000061
Jordan Crouse8f29e652005-12-15 02:17:46 +010062#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Pete Popov26a940e2005-09-15 08:03:12 +000063
64void auide_insw(unsigned long port, void *addr, u32 count)
65{
Jordan Crouse8f29e652005-12-15 02:17:46 +010066 _auide_hwif *ahwif = &auide_hwif;
67 chan_tab_t *ctp;
68 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000069
Jordan Crouse8f29e652005-12-15 02:17:46 +010070 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
71 DDMA_FLAGS_NOIE)) {
72 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
73 return;
74 }
75 ctp = *((chan_tab_t **)ahwif->rx_chan);
76 dp = ctp->cur_ptr;
77 while (dp->dscr_cmd0 & DSCR_CMD0_V)
78 ;
79 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
Pete Popov26a940e2005-09-15 08:03:12 +000080}
81
82void auide_outsw(unsigned long port, void *addr, u32 count)
83{
Jordan Crouse8f29e652005-12-15 02:17:46 +010084 _auide_hwif *ahwif = &auide_hwif;
85 chan_tab_t *ctp;
86 au1x_ddma_desc_t *dp;
Pete Popov26a940e2005-09-15 08:03:12 +000087
Jordan Crouse8f29e652005-12-15 02:17:46 +010088 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
89 count << 1, DDMA_FLAGS_NOIE)) {
90 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
91 return;
92 }
93 ctp = *((chan_tab_t **)ahwif->tx_chan);
94 dp = ctp->cur_ptr;
95 while (dp->dscr_cmd0 & DSCR_CMD0_V)
96 ;
97 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
98}
99
Pete Popov26a940e2005-09-15 08:03:12 +0000100#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000101
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200102static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
Pete Popov26a940e2005-09-15 08:03:12 +0000103{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200104 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000105
Jordan Crouse8f29e652005-12-15 02:17:46 +0100106 /* set pio mode! */
107 switch(pio) {
108 case 0:
109 mem_sttime = SBC_IDE_TIMING(PIO0);
Pete Popov26a940e2005-09-15 08:03:12 +0000110
Jordan Crouse8f29e652005-12-15 02:17:46 +0100111 /* set configuration for RCS2# */
112 mem_stcfg |= TS_MASK;
113 mem_stcfg &= ~TCSOE_MASK;
114 mem_stcfg &= ~TOECS_MASK;
115 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
116 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000117
Jordan Crouse8f29e652005-12-15 02:17:46 +0100118 case 1:
119 mem_sttime = SBC_IDE_TIMING(PIO1);
Pete Popov26a940e2005-09-15 08:03:12 +0000120
Jordan Crouse8f29e652005-12-15 02:17:46 +0100121 /* set configuration for RCS2# */
122 mem_stcfg |= TS_MASK;
123 mem_stcfg &= ~TCSOE_MASK;
124 mem_stcfg &= ~TOECS_MASK;
125 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
126 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000127
Jordan Crouse8f29e652005-12-15 02:17:46 +0100128 case 2:
129 mem_sttime = SBC_IDE_TIMING(PIO2);
Pete Popov26a940e2005-09-15 08:03:12 +0000130
Jordan Crouse8f29e652005-12-15 02:17:46 +0100131 /* set configuration for RCS2# */
132 mem_stcfg &= ~TS_MASK;
133 mem_stcfg &= ~TCSOE_MASK;
134 mem_stcfg &= ~TOECS_MASK;
135 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
136 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000137
Jordan Crouse8f29e652005-12-15 02:17:46 +0100138 case 3:
139 mem_sttime = SBC_IDE_TIMING(PIO3);
Pete Popov26a940e2005-09-15 08:03:12 +0000140
Jordan Crouse8f29e652005-12-15 02:17:46 +0100141 /* set configuration for RCS2# */
142 mem_stcfg &= ~TS_MASK;
143 mem_stcfg &= ~TCSOE_MASK;
144 mem_stcfg &= ~TOECS_MASK;
145 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000146
Jordan Crouse8f29e652005-12-15 02:17:46 +0100147 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000148
Jordan Crouse8f29e652005-12-15 02:17:46 +0100149 case 4:
150 mem_sttime = SBC_IDE_TIMING(PIO4);
Pete Popov26a940e2005-09-15 08:03:12 +0000151
Jordan Crouse8f29e652005-12-15 02:17:46 +0100152 /* set configuration for RCS2# */
153 mem_stcfg &= ~TS_MASK;
154 mem_stcfg &= ~TCSOE_MASK;
155 mem_stcfg &= ~TOECS_MASK;
156 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
157 break;
158 }
159
160 au_writel(mem_sttime,MEM_STTIME2);
161 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000162}
163
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200164static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
Pete Popov26a940e2005-09-15 08:03:12 +0000165{
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200166 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000167
Jordan Crouse8f29e652005-12-15 02:17:46 +0100168 switch(speed) {
Pete Popov26a940e2005-09-15 08:03:12 +0000169#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100170 case XFER_MW_DMA_2:
171 mem_sttime = SBC_IDE_TIMING(MDMA2);
Pete Popov26a940e2005-09-15 08:03:12 +0000172
Jordan Crouse8f29e652005-12-15 02:17:46 +0100173 /* set configuration for RCS2# */
174 mem_stcfg &= ~TS_MASK;
175 mem_stcfg &= ~TCSOE_MASK;
176 mem_stcfg &= ~TOECS_MASK;
177 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
Pete Popov26a940e2005-09-15 08:03:12 +0000178
Jordan Crouse8f29e652005-12-15 02:17:46 +0100179 break;
180 case XFER_MW_DMA_1:
181 mem_sttime = SBC_IDE_TIMING(MDMA1);
Pete Popov26a940e2005-09-15 08:03:12 +0000182
Jordan Crouse8f29e652005-12-15 02:17:46 +0100183 /* set configuration for RCS2# */
184 mem_stcfg &= ~TS_MASK;
185 mem_stcfg &= ~TCSOE_MASK;
186 mem_stcfg &= ~TOECS_MASK;
187 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
188
Jordan Crouse8f29e652005-12-15 02:17:46 +0100189 break;
190 case XFER_MW_DMA_0:
191 mem_sttime = SBC_IDE_TIMING(MDMA0);
192
193 /* set configuration for RCS2# */
194 mem_stcfg |= TS_MASK;
195 mem_stcfg &= ~TCSOE_MASK;
196 mem_stcfg &= ~TOECS_MASK;
197 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
198
Jordan Crouse8f29e652005-12-15 02:17:46 +0100199 break;
Pete Popov26a940e2005-09-15 08:03:12 +0000200#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100201 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100202
Jordan Crouse8f29e652005-12-15 02:17:46 +0100203 au_writel(mem_sttime,MEM_STTIME2);
204 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000205}
206
207/*
208 * Multi-Word DMA + DbDMA functions
209 */
Pete Popov26a940e2005-09-15 08:03:12 +0000210
Jordan Crouse8f29e652005-12-15 02:17:46 +0100211#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000212
213static int auide_build_sglist(ide_drive_t *drive, struct request *rq)
214{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100215 ide_hwif_t *hwif = drive->hwif;
216 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
217 struct scatterlist *sg = hwif->sg_table;
Pete Popov26a940e2005-09-15 08:03:12 +0000218
Jordan Crouse8f29e652005-12-15 02:17:46 +0100219 ide_map_sg(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000220
Jordan Crouse8f29e652005-12-15 02:17:46 +0100221 if (rq_data_dir(rq) == READ)
222 hwif->sg_dma_direction = DMA_FROM_DEVICE;
223 else
224 hwif->sg_dma_direction = DMA_TO_DEVICE;
Pete Popov26a940e2005-09-15 08:03:12 +0000225
Jordan Crouse8f29e652005-12-15 02:17:46 +0100226 return dma_map_sg(ahwif->dev, sg, hwif->sg_nents,
227 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000228}
229
230static int auide_build_dmatable(ide_drive_t *drive)
231{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100232 int i, iswrite, count = 0;
233 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000234
Jordan Crouse8f29e652005-12-15 02:17:46 +0100235 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000236
Jordan Crouse8f29e652005-12-15 02:17:46 +0100237 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
238 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000239
Jordan Crouse8f29e652005-12-15 02:17:46 +0100240 iswrite = (rq_data_dir(rq) == WRITE);
241 /* Save for interrupt context */
242 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000243
Jordan Crouse8f29e652005-12-15 02:17:46 +0100244 /* Build sglist */
245 hwif->sg_nents = i = auide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000246
Jordan Crouse8f29e652005-12-15 02:17:46 +0100247 if (!i)
248 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000249
Jordan Crouse8f29e652005-12-15 02:17:46 +0100250 /* fill the descriptors */
251 sg = hwif->sg_table;
252 while (i && sg_dma_len(sg)) {
253 u32 cur_addr;
254 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000255
Jordan Crouse8f29e652005-12-15 02:17:46 +0100256 cur_addr = sg_dma_address(sg);
257 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000258
Jordan Crouse8f29e652005-12-15 02:17:46 +0100259 while (cur_len) {
260 u32 flags = DDMA_FLAGS_NOIE;
261 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000262
Jordan Crouse8f29e652005-12-15 02:17:46 +0100263 if (++count >= PRD_ENTRIES) {
264 printk(KERN_WARNING "%s: DMA table too small\n",
265 drive->name);
266 goto use_pio_instead;
267 }
Pete Popov26a940e2005-09-15 08:03:12 +0000268
Jordan Crouse8f29e652005-12-15 02:17:46 +0100269 /* Lets enable intr for the last descriptor only */
270 if (1==i)
271 flags = DDMA_FLAGS_IE;
272 else
273 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000274
Jordan Crouse8f29e652005-12-15 02:17:46 +0100275 if (iswrite) {
276 if(!put_source_flags(ahwif->tx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200277 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100278 tc, flags)) {
279 printk(KERN_ERR "%s failed %d\n",
280 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000281 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100282 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000283 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100284 if(!put_dest_flags(ahwif->rx_chan,
Jens Axboe45711f12007-10-22 21:19:53 +0200285 (void*) sg_virt(sg),
Jordan Crouse8f29e652005-12-15 02:17:46 +0100286 tc, flags)) {
287 printk(KERN_ERR "%s failed %d\n",
288 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000289 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100290 }
Pete Popov26a940e2005-09-15 08:03:12 +0000291
Jordan Crouse8f29e652005-12-15 02:17:46 +0100292 cur_addr += tc;
293 cur_len -= tc;
294 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200295 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100296 i--;
297 }
Pete Popov26a940e2005-09-15 08:03:12 +0000298
Jordan Crouse8f29e652005-12-15 02:17:46 +0100299 if (count)
300 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000301
Jordan Crouse8f29e652005-12-15 02:17:46 +0100302 use_pio_instead:
303 dma_unmap_sg(ahwif->dev,
304 hwif->sg_table,
305 hwif->sg_nents,
306 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000307
Jordan Crouse8f29e652005-12-15 02:17:46 +0100308 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000309}
310
311static int auide_dma_end(ide_drive_t *drive)
312{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100313 ide_hwif_t *hwif = HWIF(drive);
314 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
Pete Popov26a940e2005-09-15 08:03:12 +0000315
Jordan Crouse8f29e652005-12-15 02:17:46 +0100316 if (hwif->sg_nents) {
317 dma_unmap_sg(ahwif->dev, hwif->sg_table, hwif->sg_nents,
318 hwif->sg_dma_direction);
319 hwif->sg_nents = 0;
320 }
Pete Popov26a940e2005-09-15 08:03:12 +0000321
Jordan Crouse8f29e652005-12-15 02:17:46 +0100322 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000323}
324
325static void auide_dma_start(ide_drive_t *drive )
326{
Pete Popov26a940e2005-09-15 08:03:12 +0000327}
328
Pete Popov26a940e2005-09-15 08:03:12 +0000329
330static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
331{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100332 /* issue cmd to drive */
333 ide_execute_command(drive, command, &ide_dma_intr,
334 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000335}
336
337static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100338{
339 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000340
Jordan Crouse8f29e652005-12-15 02:17:46 +0100341 if (!auide_build_dmatable(drive)) {
342 ide_map_sg(drive, rq);
343 return 1;
344 }
Pete Popov26a940e2005-09-15 08:03:12 +0000345
Jordan Crouse8f29e652005-12-15 02:17:46 +0100346 drive->waiting_for_dma = 1;
347 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000348}
349
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200350static u8 auide_mdma_filter(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000351{
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200352 /*
353 * FIXME: ->white_list and ->black_list are based on completely bogus
354 * ->ide_dma_check implementation which didn't set neither the host
355 * controller timings nor the device for the desired transfer mode.
356 *
357 * They should be either removed or 0x00 MWDMA mask should be
358 * returned for devices on the ->black_list.
359 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100360
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200361 if (dbdma_init_done == 0) {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100362 auide_hwif.white_list = ide_in_drive_list(drive->id,
363 dma_white_list);
364 auide_hwif.black_list = ide_in_drive_list(drive->id,
365 dma_black_list);
366 auide_hwif.drive = drive;
367 auide_ddma_init(&auide_hwif);
368 dbdma_init_done = 1;
369 }
Pete Popov26a940e2005-09-15 08:03:12 +0000370
Jordan Crouse8f29e652005-12-15 02:17:46 +0100371 /* Is the drive in our DMA black list? */
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200372 if (auide_hwif.black_list)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100373 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200374 drive->name, drive->id->model);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100375
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200376 return drive->hwif->mwdma_mask;
377}
378
Pete Popov26a940e2005-09-15 08:03:12 +0000379static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100380{
381 if (drive->waiting_for_dma == 0)
382 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000383 called while not waiting\n", drive->name);
384
Jordan Crouse8f29e652005-12-15 02:17:46 +0100385 /* If dbdma didn't execute the STOP command yet, the
386 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000387 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100388 drive->waiting_for_dma++;
389 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
390 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000391 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100392 return 1;
393 }
394 udelay(10);
395 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000396}
397
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100398static void auide_dma_host_on(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000399{
Pete Popov26a940e2005-09-15 08:03:12 +0000400}
401
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100402static void auide_dma_host_off(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000403{
Pete Popov26a940e2005-09-15 08:03:12 +0000404}
405
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200406static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000407{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100408 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000409}
410
Ralf Baechle53e62d32006-09-25 23:32:10 -0700411static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000412{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100413 _auide_hwif *ahwif = (_auide_hwif*)param;
414 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000415}
416
Ralf Baechle53e62d32006-09-25 23:32:10 -0700417static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000418{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100419 _auide_hwif *ahwif = (_auide_hwif*)param;
420 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000421}
422
Jordan Crouse8f29e652005-12-15 02:17:46 +0100423#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
424
425static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
426{
427 dev->dev_id = dev_id;
428 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
429 dev->dev_intlevel = 0;
430 dev->dev_intpolarity = 0;
431 dev->dev_tsize = tsize;
432 dev->dev_devwidth = devwidth;
433 dev->dev_flags = flags;
434}
435
436#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
437
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200438static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000439{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200440 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000441
Jordan Crouse8f29e652005-12-15 02:17:46 +0100442 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000443
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200444 if (hwif->ide_dma_test_irq(drive))
445 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000446
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200447 hwif->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000448}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100449
Pete Popov26a940e2005-09-15 08:03:12 +0000450
Jordan Crouse8f29e652005-12-15 02:17:46 +0100451static int auide_ddma_init(_auide_hwif *auide) {
452
453 dbdev_tab_t source_dev_tab, target_dev_tab;
454 u32 dev_id, tsize, devwidth, flags;
455 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000456
Jordan Crouse8f29e652005-12-15 02:17:46 +0100457 dev_id = AU1XXX_ATA_DDMA_REQ;
458
459 if (auide->white_list || auide->black_list) {
460 tsize = 8;
461 devwidth = 32;
462 }
463 else {
464 tsize = 1;
465 devwidth = 16;
466
467 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
468 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
469 }
470
471#ifdef IDE_AU1XXX_BURSTMODE
472 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
473#else
474 flags = DEV_FLAGS_SYNC;
475#endif
476
477 /* setup dev_tab for tx channel */
478 auide_init_dbdma_dev( &source_dev_tab,
479 dev_id,
480 tsize, devwidth, DEV_FLAGS_OUT | flags);
481 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
482
483 auide_init_dbdma_dev( &source_dev_tab,
484 dev_id,
485 tsize, devwidth, DEV_FLAGS_IN | flags);
486 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
487
488 /* We also need to add a target device for the DMA */
489 auide_init_dbdma_dev( &target_dev_tab,
490 (u32)DSCR_CMD0_ALWAYS,
491 tsize, devwidth, DEV_FLAGS_ANYUSE);
492 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
493
494 /* Get a channel for TX */
495 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
496 auide->tx_dev_id,
497 auide_ddma_tx_callback,
498 (void*)auide);
499
500 /* Get a channel for RX */
501 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
502 auide->target_dev_id,
503 auide_ddma_rx_callback,
504 (void*)auide);
505
506 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
507 NUM_DESCRIPTORS);
508 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
509 NUM_DESCRIPTORS);
510
511 hwif->dmatable_cpu = dma_alloc_coherent(auide->dev,
512 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
513 &hwif->dmatable_dma, GFP_KERNEL);
514
515 au1xxx_dbdma_start( auide->tx_chan );
516 au1xxx_dbdma_start( auide->rx_chan );
517
518 return 0;
519}
520#else
521
Pete Popov26a940e2005-09-15 08:03:12 +0000522static int auide_ddma_init( _auide_hwif *auide )
523{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100524 dbdev_tab_t source_dev_tab;
525 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000526
Jordan Crouse8f29e652005-12-15 02:17:46 +0100527#ifdef IDE_AU1XXX_BURSTMODE
528 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000529#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100530 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000531#endif
532
Jordan Crouse8f29e652005-12-15 02:17:46 +0100533 /* setup dev_tab for tx channel */
534 auide_init_dbdma_dev( &source_dev_tab,
535 (u32)DSCR_CMD0_ALWAYS,
536 8, 32, DEV_FLAGS_OUT | flags);
537 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000538
Jordan Crouse8f29e652005-12-15 02:17:46 +0100539 auide_init_dbdma_dev( &source_dev_tab,
540 (u32)DSCR_CMD0_ALWAYS,
541 8, 32, DEV_FLAGS_IN | flags);
542 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
543
544 /* Get a channel for TX */
545 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
546 auide->tx_dev_id,
547 NULL,
548 (void*)auide);
549
550 /* Get a channel for RX */
551 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
552 DSCR_CMD0_ALWAYS,
553 NULL,
554 (void*)auide);
555
556 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
557 NUM_DESCRIPTORS);
558 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
559 NUM_DESCRIPTORS);
560
561 au1xxx_dbdma_start( auide->tx_chan );
562 au1xxx_dbdma_start( auide->rx_chan );
563
564 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000565}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100566#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000567
568static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
569{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100570 int i;
571 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000572
Jordan Crouse8f29e652005-12-15 02:17:46 +0100573 /* FIXME? */
574 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
575 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
576 }
Pete Popov26a940e2005-09-15 08:03:12 +0000577
Jordan Crouse8f29e652005-12-15 02:17:46 +0100578 /* set the Alternative Status register */
579 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000580}
581
582static int au_ide_probe(struct device *dev)
583{
584 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100585 _auide_hwif *ahwif = &auide_hwif;
586 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000587 struct resource *res;
588 int ret = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200589 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200590 hw_regs_t hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000591
592#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100593 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000594#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100595 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000596#endif
597
Jordan Crouse8f29e652005-12-15 02:17:46 +0100598 memset(&auide_hwif, 0, sizeof(_auide_hwif));
599 auide_hwif.dev = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000600
601 ahwif->dev = dev;
602 ahwif->irq = platform_get_irq(pdev, 0);
603
604 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
605
606 if (res == NULL) {
607 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
608 ret = -ENODEV;
609 goto out;
610 }
David Vrabel48944732006-01-19 17:56:29 +0000611 if (ahwif->irq < 0) {
612 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
613 ret = -ENODEV;
614 goto out;
615 }
Pete Popov26a940e2005-09-15 08:03:12 +0000616
Jordan Crouse8f29e652005-12-15 02:17:46 +0100617 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000618 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100619 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000620 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100621 }
Pete Popov26a940e2005-09-15 08:03:12 +0000622
623 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
624 if (ahwif->regbase == 0) {
625 ret = -ENOMEM;
626 goto out;
627 }
628
Jordan Crouse8f29e652005-12-15 02:17:46 +0100629 /* FIXME: This might possibly break PCMCIA IDE devices */
Pete Popov26a940e2005-09-15 08:03:12 +0000630
Jordan Crouse8f29e652005-12-15 02:17:46 +0100631 hwif = &ide_hwifs[pdev->id];
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200632 hwif->irq = ahwif->irq;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100633 hwif->chipset = ide_au1xxx;
634
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200635 memset(&hw, 0, sizeof(hw));
636 auide_setup_ports(&hw, ahwif);
637 memcpy(hwif->io_ports, hw.io_ports, sizeof(hwif->io_ports));
Pete Popov26a940e2005-09-15 08:03:12 +0000638
Jordan Crouse8f29e652005-12-15 02:17:46 +0100639 hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
Pete Popov26a940e2005-09-15 08:03:12 +0000640#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100641 hwif->mwdma_mask = 0x07; /* Multimode-2 DMA */
642 hwif->swdma_mask = 0x00;
Pete Popov26a940e2005-09-15 08:03:12 +0000643#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100644 hwif->mwdma_mask = 0x0;
645 hwif->swdma_mask = 0x0;
Pete Popov26a940e2005-09-15 08:03:12 +0000646#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000647
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200648 hwif->pio_mask = ATA_PIO4;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200649 hwif->host_flags = IDE_HFLAG_POST_SET_MODE;
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200650
Jordan Crouse8f29e652005-12-15 02:17:46 +0100651 hwif->noprobe = 0;
652 hwif->drives[0].unmask = 1;
653 hwif->drives[1].unmask = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000654
Jordan Crouse8f29e652005-12-15 02:17:46 +0100655 /* hold should be on in all cases */
656 hwif->hold = 1;
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100657
658 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000659
Jordan Crouse8f29e652005-12-15 02:17:46 +0100660 /* If the user has selected DDMA assisted copies,
661 then set up a few local I/O function entry points
662 */
663
664#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
665 hwif->INSW = auide_insw;
666 hwif->OUTSW = auide_outsw;
667#endif
668
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200669 hwif->set_pio_mode = &au1xxx_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200670 hwif->set_dma_mode = &auide_set_dma_mode;
Pete Popov26a940e2005-09-15 08:03:12 +0000671
672#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200673 hwif->dma_timeout = &auide_dma_timeout;
Pete Popov26a940e2005-09-15 08:03:12 +0000674
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200675 hwif->mdma_filter = &auide_mdma_filter;
676
Jordan Crouse8f29e652005-12-15 02:17:46 +0100677 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
678 hwif->dma_start = &auide_dma_start;
679 hwif->ide_dma_end = &auide_dma_end;
680 hwif->dma_setup = &auide_dma_setup;
681 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100682 hwif->dma_host_off = &auide_dma_host_off;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100683 hwif->dma_host_on = &auide_dma_host_on;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200684 hwif->dma_lost_irq = &auide_dma_lost_irq;
Pete Popov26a940e2005-09-15 08:03:12 +0000685#else /* !CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100686 hwif->channel = 0;
687 hwif->hold = 1;
688 hwif->select_data = 0; /* no chipset-specific code */
689 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000690
Jordan Crouse8f29e652005-12-15 02:17:46 +0100691 hwif->drives[0].autotune = 1; /* 1=autotune, 2=noautotune, 0=default */
Bartlomiej Zolnierkiewicza05e2fa2007-10-20 00:32:33 +0200692 hwif->drives[1].autotune = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000693#endif
Bartlomiej Zolnierkiewicza05e2fa2007-10-20 00:32:33 +0200694 hwif->drives[0].no_io_32bit = 1;
695 hwif->drives[1].no_io_32bit = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000696
Jordan Crouse8f29e652005-12-15 02:17:46 +0100697 auide_hwif.hwif = hwif;
698 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000699
Jordan Crouse8f29e652005-12-15 02:17:46 +0100700#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
701 auide_ddma_init(&auide_hwif);
702 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000703#endif
704
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200705 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200706
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200707 ide_device_add(idx);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200708
Pete Popov26a940e2005-09-15 08:03:12 +0000709 dev_set_drvdata(dev, hwif);
710
Jordan Crouse8f29e652005-12-15 02:17:46 +0100711 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000712
Jordan Crouse8f29e652005-12-15 02:17:46 +0100713 out:
714 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000715}
716
717static int au_ide_remove(struct device *dev)
718{
719 struct platform_device *pdev = to_platform_device(dev);
720 struct resource *res;
721 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100722 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000723
724 ide_unregister(hwif - ide_hwifs);
725
726 iounmap((void *)ahwif->regbase);
727
728 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
729 release_mem_region(res->start, res->end - res->start);
730
731 return 0;
732}
733
734static struct device_driver au1200_ide_driver = {
735 .name = "au1200-ide",
736 .bus = &platform_bus_type,
737 .probe = au_ide_probe,
738 .remove = au_ide_remove,
739};
740
741static int __init au_ide_init(void)
742{
743 return driver_register(&au1200_ide_driver);
744}
745
Jordan Crouse8f29e652005-12-15 02:17:46 +0100746static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000747{
748 driver_unregister(&au1200_ide_driver);
749}
750
Pete Popov26a940e2005-09-15 08:03:12 +0000751MODULE_LICENSE("GPL");
752MODULE_DESCRIPTION("AU1200 IDE driver");
753
754module_init(au_ide_init);
755module_exit(au_ide_exit);