ide: merge ->dma_host_{on,off} methods into ->dma_host_set method
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / ide / mips / au1xxx-ide.c
CommitLineData
26a940e2
PP
1/*
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 */
26a940e2
PP
32#include <linux/types.h>
33#include <linux/module.h>
34#include <linux/kernel.h>
35#include <linux/delay.h>
8f29e650
JC
36#include <linux/platform_device.h>
37
26a940e2
PP
38#include <linux/init.h>
39#include <linux/ide.h>
40#include <linux/sysdev.h>
41
42#include <linux/dma-mapping.h>
43
8f29e650
JC
44#include "ide-timing.h"
45
26a940e2
PP
46#include <asm/io.h>
47#include <asm/mach-au1x00/au1xxx.h>
48#include <asm/mach-au1x00/au1xxx_dbdma.h>
49
26a940e2
PP
50#include <asm/mach-au1x00/au1xxx_ide.h>
51
52#define DRV_NAME "au1200-ide"
53#define DRV_VERSION "1.0"
8f29e650 54#define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
26a940e2 55
8f29e650
JC
56/* enable the burstmode in the dbdma */
57#define IDE_AU1XXX_BURSTMODE 1
26a940e2 58
8f29e650
JC
59static _auide_hwif auide_hwif;
60static int dbdma_init_done;
26a940e2 61
26a940e2
PP
62#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
63
8f29e650 64void auide_insw(unsigned long port, void *addr, u32 count)
26a940e2 65{
8f29e650
JC
66 _auide_hwif *ahwif = &auide_hwif;
67 chan_tab_t *ctp;
68 au1x_ddma_desc_t *dp;
26a940e2 69
8f29e650
JC
70 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);
26a940e2
PP
80}
81
8f29e650 82void auide_outsw(unsigned long port, void *addr, u32 count)
26a940e2 83{
8f29e650
JC
84 _auide_hwif *ahwif = &auide_hwif;
85 chan_tab_t *ctp;
86 au1x_ddma_desc_t *dp;
26a940e2 87
8f29e650
JC
88 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);
26a940e2
PP
98}
99
26a940e2 100#endif
26a940e2 101
26bcb879 102static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
26a940e2 103{
88b2b32b 104 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
8f29e650
JC
105
106 /* set pio mode! */
107 switch(pio) {
108 case 0:
109 mem_sttime = SBC_IDE_TIMING(PIO0);
110
111 /* 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;
117
118 case 1:
119 mem_sttime = SBC_IDE_TIMING(PIO1);
120
121 /* 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;
127
128 case 2:
129 mem_sttime = SBC_IDE_TIMING(PIO2);
130
131 /* 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;
137
138 case 3:
139 mem_sttime = SBC_IDE_TIMING(PIO3);
140
141 /* 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;
146
147 break;
148
149 case 4:
150 mem_sttime = SBC_IDE_TIMING(PIO4);
151
152 /* 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);
26a940e2
PP
162}
163
88b2b32b 164static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
26a940e2 165{
88b2b32b 166 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
26a940e2 167
8f29e650 168 switch(speed) {
26a940e2 169#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
8f29e650
JC
170 case XFER_MW_DMA_2:
171 mem_sttime = SBC_IDE_TIMING(MDMA2);
172
173 /* 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;
178
8f29e650
JC
179 break;
180 case XFER_MW_DMA_1:
181 mem_sttime = SBC_IDE_TIMING(MDMA1);
182
183 /* 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
8f29e650
JC
189 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
8f29e650 199 break;
26a940e2 200#endif
8f29e650 201 }
a523a175 202
8f29e650
JC
203 au_writel(mem_sttime,MEM_STTIME2);
204 au_writel(mem_stcfg,MEM_STCFG2);
26a940e2
PP
205}
206
207/*
208 * Multi-Word DMA + DbDMA functions
209 */
26a940e2 210
8f29e650 211#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
26a940e2
PP
212
213static int auide_build_sglist(ide_drive_t *drive, struct request *rq)
214{
8f29e650
JC
215 ide_hwif_t *hwif = drive->hwif;
216 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
217 struct scatterlist *sg = hwif->sg_table;
26a940e2 218
8f29e650 219 ide_map_sg(drive, rq);
26a940e2 220
8f29e650
JC
221 if (rq_data_dir(rq) == READ)
222 hwif->sg_dma_direction = DMA_FROM_DEVICE;
223 else
224 hwif->sg_dma_direction = DMA_TO_DEVICE;
26a940e2 225
8f29e650
JC
226 return dma_map_sg(ahwif->dev, sg, hwif->sg_nents,
227 hwif->sg_dma_direction);
26a940e2
PP
228}
229
230static int auide_build_dmatable(ide_drive_t *drive)
231{
8f29e650
JC
232 int i, iswrite, count = 0;
233 ide_hwif_t *hwif = HWIF(drive);
234
235 struct request *rq = HWGROUP(drive)->rq;
236
237 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
238 struct scatterlist *sg;
239
240 iswrite = (rq_data_dir(rq) == WRITE);
241 /* Save for interrupt context */
242 ahwif->drive = drive;
243
244 /* Build sglist */
245 hwif->sg_nents = i = auide_build_sglist(drive, rq);
246
247 if (!i)
248 return 0;
249
250 /* fill the descriptors */
251 sg = hwif->sg_table;
252 while (i && sg_dma_len(sg)) {
253 u32 cur_addr;
254 u32 cur_len;
255
256 cur_addr = sg_dma_address(sg);
257 cur_len = sg_dma_len(sg);
258
259 while (cur_len) {
260 u32 flags = DDMA_FLAGS_NOIE;
261 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
262
263 if (++count >= PRD_ENTRIES) {
264 printk(KERN_WARNING "%s: DMA table too small\n",
265 drive->name);
266 goto use_pio_instead;
267 }
268
269 /* Lets enable intr for the last descriptor only */
270 if (1==i)
271 flags = DDMA_FLAGS_IE;
272 else
273 flags = DDMA_FLAGS_NOIE;
274
275 if (iswrite) {
276 if(!put_source_flags(ahwif->tx_chan,
45711f1a 277 (void*) sg_virt(sg),
8f29e650
JC
278 tc, flags)) {
279 printk(KERN_ERR "%s failed %d\n",
280 __FUNCTION__, __LINE__);
26a940e2 281 }
8f29e650 282 } else
26a940e2 283 {
8f29e650 284 if(!put_dest_flags(ahwif->rx_chan,
45711f1a 285 (void*) sg_virt(sg),
8f29e650
JC
286 tc, flags)) {
287 printk(KERN_ERR "%s failed %d\n",
288 __FUNCTION__, __LINE__);
26a940e2 289 }
8f29e650 290 }
26a940e2 291
8f29e650
JC
292 cur_addr += tc;
293 cur_len -= tc;
294 }
55c16a70 295 sg = sg_next(sg);
8f29e650
JC
296 i--;
297 }
26a940e2 298
8f29e650
JC
299 if (count)
300 return 1;
26a940e2 301
8f29e650
JC
302 use_pio_instead:
303 dma_unmap_sg(ahwif->dev,
304 hwif->sg_table,
305 hwif->sg_nents,
306 hwif->sg_dma_direction);
26a940e2 307
8f29e650 308 return 0; /* revert to PIO for this request */
26a940e2
PP
309}
310
311static int auide_dma_end(ide_drive_t *drive)
312{
8f29e650
JC
313 ide_hwif_t *hwif = HWIF(drive);
314 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
26a940e2 315
8f29e650
JC
316 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 }
26a940e2 321
8f29e650 322 return 0;
26a940e2
PP
323}
324
325static void auide_dma_start(ide_drive_t *drive )
326{
26a940e2
PP
327}
328
26a940e2
PP
329
330static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
331{
8f29e650
JC
332 /* issue cmd to drive */
333 ide_execute_command(drive, command, &ide_dma_intr,
334 (2*WAIT_CMD), NULL);
26a940e2
PP
335}
336
337static int auide_dma_setup(ide_drive_t *drive)
8f29e650
JC
338{
339 struct request *rq = HWGROUP(drive)->rq;
26a940e2 340
8f29e650
JC
341 if (!auide_build_dmatable(drive)) {
342 ide_map_sg(drive, rq);
343 return 1;
344 }
26a940e2 345
8f29e650
JC
346 drive->waiting_for_dma = 1;
347 return 0;
26a940e2
PP
348}
349
8446f659 350static u8 auide_mdma_filter(ide_drive_t *drive)
26a940e2 351{
8446f659
BZ
352 /*
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 */
8f29e650 360
8446f659 361 if (dbdma_init_done == 0) {
8f29e650
JC
362 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 }
26a940e2 370
8f29e650 371 /* Is the drive in our DMA black list? */
8446f659 372 if (auide_hwif.black_list)
8f29e650 373 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
8446f659 374 drive->name, drive->id->model);
8f29e650 375
8446f659
BZ
376 return drive->hwif->mwdma_mask;
377}
378
26a940e2 379static int auide_dma_test_irq(ide_drive_t *drive)
8f29e650
JC
380{
381 if (drive->waiting_for_dma == 0)
382 printk(KERN_WARNING "%s: ide_dma_test_irq \
26a940e2
PP
383 called while not waiting\n", drive->name);
384
8f29e650
JC
385 /* If dbdma didn't execute the STOP command yet, the
386 * active bit is still set
26a940e2 387 */
8f29e650
JC
388 drive->waiting_for_dma++;
389 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
390 printk(KERN_WARNING "%s: timeout waiting for ddma to \
26a940e2 391 complete\n", drive->name);
8f29e650
JC
392 return 1;
393 }
394 udelay(10);
395 return 0;
26a940e2
PP
396}
397
15ce926a 398static void auide_dma_host_set(ide_drive_t *drive, int on)
26a940e2 399{
26a940e2
PP
400}
401
841d2a9b 402static void auide_dma_lost_irq(ide_drive_t *drive)
26a940e2 403{
8f29e650 404 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
26a940e2
PP
405}
406
53e62d3a 407static void auide_ddma_tx_callback(int irq, void *param)
26a940e2 408{
8f29e650
JC
409 _auide_hwif *ahwif = (_auide_hwif*)param;
410 ahwif->drive->waiting_for_dma = 0;
26a940e2
PP
411}
412
53e62d3a 413static void auide_ddma_rx_callback(int irq, void *param)
26a940e2 414{
8f29e650
JC
415 _auide_hwif *ahwif = (_auide_hwif*)param;
416 ahwif->drive->waiting_for_dma = 0;
417}
418
419#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
26a940e2 420
8f29e650
JC
421static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
422{
423 dev->dev_id = dev_id;
424 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
425 dev->dev_intlevel = 0;
426 dev->dev_intpolarity = 0;
427 dev->dev_tsize = tsize;
428 dev->dev_devwidth = devwidth;
429 dev->dev_flags = flags;
26a940e2 430}
8f29e650
JC
431
432#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
26a940e2 433
c283f5db 434static void auide_dma_timeout(ide_drive_t *drive)
26a940e2 435{
c283f5db 436 ide_hwif_t *hwif = HWIF(drive);
26a940e2 437
8f29e650 438 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
26a940e2 439
c283f5db
SS
440 if (hwif->ide_dma_test_irq(drive))
441 return;
26a940e2 442
c283f5db 443 hwif->ide_dma_end(drive);
26a940e2 444}
8f29e650 445
26a940e2 446
8f29e650
JC
447static int auide_ddma_init(_auide_hwif *auide) {
448
449 dbdev_tab_t source_dev_tab, target_dev_tab;
450 u32 dev_id, tsize, devwidth, flags;
451 ide_hwif_t *hwif = auide->hwif;
26a940e2 452
8f29e650 453 dev_id = AU1XXX_ATA_DDMA_REQ;
26a940e2 454
8f29e650
JC
455 if (auide->white_list || auide->black_list) {
456 tsize = 8;
457 devwidth = 32;
458 }
459 else {
460 tsize = 1;
461 devwidth = 16;
462
463 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
464 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
465 }
26a940e2 466
8f29e650
JC
467#ifdef IDE_AU1XXX_BURSTMODE
468 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
26a940e2 469#else
8f29e650 470 flags = DEV_FLAGS_SYNC;
26a940e2
PP
471#endif
472
8f29e650
JC
473 /* setup dev_tab for tx channel */
474 auide_init_dbdma_dev( &source_dev_tab,
475 dev_id,
476 tsize, devwidth, DEV_FLAGS_OUT | flags);
477 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
478
479 auide_init_dbdma_dev( &source_dev_tab,
480 dev_id,
481 tsize, devwidth, DEV_FLAGS_IN | flags);
482 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
483
484 /* We also need to add a target device for the DMA */
485 auide_init_dbdma_dev( &target_dev_tab,
486 (u32)DSCR_CMD0_ALWAYS,
487 tsize, devwidth, DEV_FLAGS_ANYUSE);
488 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
489
490 /* Get a channel for TX */
491 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
492 auide->tx_dev_id,
493 auide_ddma_tx_callback,
494 (void*)auide);
495
496 /* Get a channel for RX */
497 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
498 auide->target_dev_id,
499 auide_ddma_rx_callback,
500 (void*)auide);
501
502 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
503 NUM_DESCRIPTORS);
504 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
505 NUM_DESCRIPTORS);
506
507 hwif->dmatable_cpu = dma_alloc_coherent(auide->dev,
508 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
509 &hwif->dmatable_dma, GFP_KERNEL);
510
511 au1xxx_dbdma_start( auide->tx_chan );
512 au1xxx_dbdma_start( auide->rx_chan );
513
514 return 0;
515}
26a940e2 516#else
8f29e650
JC
517
518static int auide_ddma_init( _auide_hwif *auide )
519{
520 dbdev_tab_t source_dev_tab;
521 int flags;
26a940e2 522
8f29e650
JC
523#ifdef IDE_AU1XXX_BURSTMODE
524 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
525#else
526 flags = DEV_FLAGS_SYNC;
26a940e2 527#endif
26a940e2 528
8f29e650
JC
529 /* setup dev_tab for tx channel */
530 auide_init_dbdma_dev( &source_dev_tab,
531 (u32)DSCR_CMD0_ALWAYS,
532 8, 32, DEV_FLAGS_OUT | flags);
533 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
534
535 auide_init_dbdma_dev( &source_dev_tab,
536 (u32)DSCR_CMD0_ALWAYS,
537 8, 32, DEV_FLAGS_IN | flags);
538 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
539
540 /* Get a channel for TX */
541 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
542 auide->tx_dev_id,
543 NULL,
544 (void*)auide);
545
546 /* Get a channel for RX */
547 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
548 DSCR_CMD0_ALWAYS,
549 NULL,
550 (void*)auide);
551
552 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
553 NUM_DESCRIPTORS);
554 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
555 NUM_DESCRIPTORS);
556
557 au1xxx_dbdma_start( auide->tx_chan );
558 au1xxx_dbdma_start( auide->rx_chan );
559
560 return 0;
26a940e2 561}
8f29e650 562#endif
26a940e2
PP
563
564static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
565{
8f29e650
JC
566 int i;
567 unsigned long *ata_regs = hw->io_ports;
568
569 /* FIXME? */
570 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
571 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
572 }
573
574 /* set the Alternative Status register */
575 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
26a940e2
PP
576}
577
578static int au_ide_probe(struct device *dev)
579{
580 struct platform_device *pdev = to_platform_device(dev);
8f29e650
JC
581 _auide_hwif *ahwif = &auide_hwif;
582 ide_hwif_t *hwif;
26a940e2
PP
583 struct resource *res;
584 int ret = 0;
8447d9d5 585 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
9239b333 586 hw_regs_t hw;
26a940e2
PP
587
588#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
8f29e650 589 char *mode = "MWDMA2";
26a940e2 590#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
8f29e650 591 char *mode = "PIO+DDMA(offload)";
26a940e2
PP
592#endif
593
8f29e650
JC
594 memset(&auide_hwif, 0, sizeof(_auide_hwif));
595 auide_hwif.dev = 0;
26a940e2
PP
596
597 ahwif->dev = dev;
598 ahwif->irq = platform_get_irq(pdev, 0);
599
600 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
601
602 if (res == NULL) {
603 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
604 ret = -ENODEV;
48944738
DV
605 goto out;
606 }
607 if (ahwif->irq < 0) {
608 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
609 ret = -ENODEV;
26a940e2
PP
610 goto out;
611 }
612
8f29e650 613 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
26a940e2 614 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
8f29e650 615 ret = -EBUSY;
26a940e2 616 goto out;
8f29e650 617 }
26a940e2
PP
618
619 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
620 if (ahwif->regbase == 0) {
621 ret = -ENOMEM;
622 goto out;
623 }
624
8f29e650
JC
625 /* FIXME: This might possibly break PCMCIA IDE devices */
626
627 hwif = &ide_hwifs[pdev->id];
9239b333 628 hwif->irq = ahwif->irq;
8f29e650 629 hwif->chipset = ide_au1xxx;
26a940e2 630
9239b333
BZ
631 memset(&hw, 0, sizeof(hw));
632 auide_setup_ports(&hw, ahwif);
633 memcpy(hwif->io_ports, hw.io_ports, sizeof(hwif->io_ports));
26a940e2 634
8f29e650 635 hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
26a940e2 636#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
8f29e650
JC
637 hwif->mwdma_mask = 0x07; /* Multimode-2 DMA */
638 hwif->swdma_mask = 0x00;
26a940e2 639#else
8f29e650
JC
640 hwif->mwdma_mask = 0x0;
641 hwif->swdma_mask = 0x0;
642#endif
643
4099d143 644 hwif->pio_mask = ATA_PIO4;
88b2b32b 645 hwif->host_flags = IDE_HFLAG_POST_SET_MODE;
4099d143 646
8f29e650
JC
647 hwif->noprobe = 0;
648 hwif->drives[0].unmask = 1;
649 hwif->drives[1].unmask = 1;
650
651 /* hold should be on in all cases */
652 hwif->hold = 1;
2ad1e558
BZ
653
654 hwif->mmio = 1;
8f29e650
JC
655
656 /* If the user has selected DDMA assisted copies,
657 then set up a few local I/O function entry points
658 */
659
660#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
661 hwif->INSW = auide_insw;
662 hwif->OUTSW = auide_outsw;
26a940e2 663#endif
8f29e650 664
26bcb879 665 hwif->set_pio_mode = &au1xxx_set_pio_mode;
88b2b32b 666 hwif->set_dma_mode = &auide_set_dma_mode;
26a940e2
PP
667
668#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
c283f5db 669 hwif->dma_timeout = &auide_dma_timeout;
8f29e650 670
8446f659
BZ
671 hwif->mdma_filter = &auide_mdma_filter;
672
15ce926a 673 hwif->dma_host_set = &auide_dma_host_set;
8f29e650
JC
674 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
675 hwif->dma_start = &auide_dma_start;
676 hwif->ide_dma_end = &auide_dma_end;
677 hwif->dma_setup = &auide_dma_setup;
678 hwif->ide_dma_test_irq = &auide_dma_test_irq;
841d2a9b 679 hwif->dma_lost_irq = &auide_dma_lost_irq;
26a940e2 680#else /* !CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
8f29e650
JC
681 hwif->channel = 0;
682 hwif->hold = 1;
683 hwif->select_data = 0; /* no chipset-specific code */
684 hwif->config_data = 0; /* no chipset-specific code */
685
8f29e650 686 hwif->drives[0].autotune = 1; /* 1=autotune, 2=noautotune, 0=default */
a05e2faa 687 hwif->drives[1].autotune = 1;
26a940e2 688#endif
a05e2faa
BZ
689 hwif->drives[0].no_io_32bit = 1;
690 hwif->drives[1].no_io_32bit = 1;
26a940e2 691
8f29e650
JC
692 auide_hwif.hwif = hwif;
693 hwif->hwif_data = &auide_hwif;
26a940e2 694
8f29e650
JC
695#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
696 auide_ddma_init(&auide_hwif);
697 dbdma_init_done = 1;
26a940e2
PP
698#endif
699
8447d9d5 700 idx[0] = hwif->index;
5cbf79cd 701
8447d9d5 702 ide_device_add(idx);
5cbf79cd 703
26a940e2
PP
704 dev_set_drvdata(dev, hwif);
705
8f29e650 706 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
26a940e2 707
8f29e650
JC
708 out:
709 return ret;
26a940e2
PP
710}
711
712static int au_ide_remove(struct device *dev)
713{
714 struct platform_device *pdev = to_platform_device(dev);
715 struct resource *res;
716 ide_hwif_t *hwif = dev_get_drvdata(dev);
8f29e650 717 _auide_hwif *ahwif = &auide_hwif;
26a940e2
PP
718
719 ide_unregister(hwif - ide_hwifs);
720
721 iounmap((void *)ahwif->regbase);
722
723 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
724 release_mem_region(res->start, res->end - res->start);
725
726 return 0;
727}
728
729static struct device_driver au1200_ide_driver = {
730 .name = "au1200-ide",
731 .bus = &platform_bus_type,
732 .probe = au_ide_probe,
733 .remove = au_ide_remove,
734};
735
736static int __init au_ide_init(void)
737{
738 return driver_register(&au1200_ide_driver);
739}
740
8f29e650 741static void __exit au_ide_exit(void)
26a940e2
PP
742{
743 driver_unregister(&au1200_ide_driver);
744}
745
26a940e2
PP
746MODULE_LICENSE("GPL");
747MODULE_DESCRIPTION("AU1200 IDE driver");
748
749module_init(au_ide_init);
750module_exit(au_ide_exit);