ide-tape: remove idetape_pipeline_active()
[linux-2.6-block.git] / drivers / ide / mips / au1xxx-ide.c
CommitLineData
26a940e2 1/*
26a940e2
PP
2 * BRIEF MODULE DESCRIPTION
3 * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
4 *
5 * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
6 *
7 * This program is free software; you can redistribute it and/or modify it under
8 * the terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
10 * version.
11 *
12 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
13 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
14 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
15 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
16 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
17 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
18 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
19 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
20 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
21 * POSSIBILITY OF SUCH DAMAGE.
22 *
23 * You should have received a copy of the GNU General Public License along with
24 * this program; if not, write to the Free Software Foundation, Inc.,
25 * 675 Mass Ave, Cambridge, MA 02139, USA.
26 *
27 * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
28 * Interface and Linux Device Driver" Application Note.
29 */
26a940e2
PP
30#include <linux/types.h>
31#include <linux/module.h>
32#include <linux/kernel.h>
33#include <linux/delay.h>
8f29e650 34#include <linux/platform_device.h>
26a940e2
PP
35#include <linux/init.h>
36#include <linux/ide.h>
fabd3a22 37#include <linux/scatterlist.h>
26a940e2 38
26a940e2
PP
39#include <asm/mach-au1x00/au1xxx.h>
40#include <asm/mach-au1x00/au1xxx_dbdma.h>
26a940e2
PP
41#include <asm/mach-au1x00/au1xxx_ide.h>
42
43#define DRV_NAME "au1200-ide"
8f29e650 44#define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
26a940e2 45
8f29e650
JC
46/* enable the burstmode in the dbdma */
47#define IDE_AU1XXX_BURSTMODE 1
26a940e2 48
8f29e650
JC
49static _auide_hwif auide_hwif;
50static int dbdma_init_done;
26a940e2 51
09a77441
SS
52static int auide_ddma_init(_auide_hwif *auide);
53
26a940e2
PP
54#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
55
8f29e650 56void auide_insw(unsigned long port, void *addr, u32 count)
26a940e2 57{
8f29e650
JC
58 _auide_hwif *ahwif = &auide_hwif;
59 chan_tab_t *ctp;
60 au1x_ddma_desc_t *dp;
26a940e2 61
8f29e650
JC
62 if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1,
63 DDMA_FLAGS_NOIE)) {
64 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
65 return;
66 }
67 ctp = *((chan_tab_t **)ahwif->rx_chan);
68 dp = ctp->cur_ptr;
69 while (dp->dscr_cmd0 & DSCR_CMD0_V)
70 ;
71 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
26a940e2
PP
72}
73
8f29e650 74void auide_outsw(unsigned long port, void *addr, u32 count)
26a940e2 75{
8f29e650
JC
76 _auide_hwif *ahwif = &auide_hwif;
77 chan_tab_t *ctp;
78 au1x_ddma_desc_t *dp;
26a940e2 79
8f29e650
JC
80 if(!put_source_flags(ahwif->tx_chan, (void*)addr,
81 count << 1, DDMA_FLAGS_NOIE)) {
82 printk(KERN_ERR "%s failed %d\n", __FUNCTION__, __LINE__);
83 return;
84 }
85 ctp = *((chan_tab_t **)ahwif->tx_chan);
86 dp = ctp->cur_ptr;
87 while (dp->dscr_cmd0 & DSCR_CMD0_V)
88 ;
89 ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
26a940e2
PP
90}
91
26a940e2 92#endif
26a940e2 93
26bcb879 94static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
26a940e2 95{
88b2b32b 96 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
8f29e650
JC
97
98 /* set pio mode! */
99 switch(pio) {
100 case 0:
101 mem_sttime = SBC_IDE_TIMING(PIO0);
102
103 /* set configuration for RCS2# */
104 mem_stcfg |= TS_MASK;
105 mem_stcfg &= ~TCSOE_MASK;
106 mem_stcfg &= ~TOECS_MASK;
107 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
108 break;
109
110 case 1:
111 mem_sttime = SBC_IDE_TIMING(PIO1);
112
113 /* set configuration for RCS2# */
114 mem_stcfg |= TS_MASK;
115 mem_stcfg &= ~TCSOE_MASK;
116 mem_stcfg &= ~TOECS_MASK;
117 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
118 break;
119
120 case 2:
121 mem_sttime = SBC_IDE_TIMING(PIO2);
122
123 /* set configuration for RCS2# */
124 mem_stcfg &= ~TS_MASK;
125 mem_stcfg &= ~TCSOE_MASK;
126 mem_stcfg &= ~TOECS_MASK;
127 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
128 break;
129
130 case 3:
131 mem_sttime = SBC_IDE_TIMING(PIO3);
132
133 /* set configuration for RCS2# */
134 mem_stcfg &= ~TS_MASK;
135 mem_stcfg &= ~TCSOE_MASK;
136 mem_stcfg &= ~TOECS_MASK;
137 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
138
139 break;
140
141 case 4:
142 mem_sttime = SBC_IDE_TIMING(PIO4);
143
144 /* set configuration for RCS2# */
145 mem_stcfg &= ~TS_MASK;
146 mem_stcfg &= ~TCSOE_MASK;
147 mem_stcfg &= ~TOECS_MASK;
148 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
149 break;
150 }
151
152 au_writel(mem_sttime,MEM_STTIME2);
153 au_writel(mem_stcfg,MEM_STCFG2);
26a940e2
PP
154}
155
88b2b32b 156static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
26a940e2 157{
88b2b32b 158 int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
26a940e2 159
8f29e650 160 switch(speed) {
26a940e2 161#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
8f29e650
JC
162 case XFER_MW_DMA_2:
163 mem_sttime = SBC_IDE_TIMING(MDMA2);
164
165 /* set configuration for RCS2# */
166 mem_stcfg &= ~TS_MASK;
167 mem_stcfg &= ~TCSOE_MASK;
168 mem_stcfg &= ~TOECS_MASK;
169 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
170
8f29e650
JC
171 break;
172 case XFER_MW_DMA_1:
173 mem_sttime = SBC_IDE_TIMING(MDMA1);
174
175 /* set configuration for RCS2# */
176 mem_stcfg &= ~TS_MASK;
177 mem_stcfg &= ~TCSOE_MASK;
178 mem_stcfg &= ~TOECS_MASK;
179 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
180
8f29e650
JC
181 break;
182 case XFER_MW_DMA_0:
183 mem_sttime = SBC_IDE_TIMING(MDMA0);
184
185 /* set configuration for RCS2# */
186 mem_stcfg |= TS_MASK;
187 mem_stcfg &= ~TCSOE_MASK;
188 mem_stcfg &= ~TOECS_MASK;
189 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
190
8f29e650 191 break;
26a940e2 192#endif
8f29e650 193 }
a523a175 194
8f29e650
JC
195 au_writel(mem_sttime,MEM_STTIME2);
196 au_writel(mem_stcfg,MEM_STCFG2);
26a940e2
PP
197}
198
199/*
200 * Multi-Word DMA + DbDMA functions
201 */
26a940e2 202
8f29e650 203#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
26a940e2
PP
204static int auide_build_dmatable(ide_drive_t *drive)
205{
8f29e650
JC
206 int i, iswrite, count = 0;
207 ide_hwif_t *hwif = HWIF(drive);
208
209 struct request *rq = HWGROUP(drive)->rq;
210
211 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
212 struct scatterlist *sg;
213
214 iswrite = (rq_data_dir(rq) == WRITE);
215 /* Save for interrupt context */
216 ahwif->drive = drive;
217
062f9f02 218 hwif->sg_nents = i = ide_build_sglist(drive, rq);
8f29e650
JC
219
220 if (!i)
221 return 0;
222
223 /* fill the descriptors */
224 sg = hwif->sg_table;
225 while (i && sg_dma_len(sg)) {
226 u32 cur_addr;
227 u32 cur_len;
228
229 cur_addr = sg_dma_address(sg);
230 cur_len = sg_dma_len(sg);
231
232 while (cur_len) {
233 u32 flags = DDMA_FLAGS_NOIE;
234 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
235
236 if (++count >= PRD_ENTRIES) {
237 printk(KERN_WARNING "%s: DMA table too small\n",
238 drive->name);
239 goto use_pio_instead;
240 }
241
242 /* Lets enable intr for the last descriptor only */
243 if (1==i)
244 flags = DDMA_FLAGS_IE;
245 else
246 flags = DDMA_FLAGS_NOIE;
247
248 if (iswrite) {
249 if(!put_source_flags(ahwif->tx_chan,
45711f1a 250 (void*) sg_virt(sg),
8f29e650
JC
251 tc, flags)) {
252 printk(KERN_ERR "%s failed %d\n",
253 __FUNCTION__, __LINE__);
26a940e2 254 }
8f29e650 255 } else
26a940e2 256 {
8f29e650 257 if(!put_dest_flags(ahwif->rx_chan,
45711f1a 258 (void*) sg_virt(sg),
8f29e650
JC
259 tc, flags)) {
260 printk(KERN_ERR "%s failed %d\n",
261 __FUNCTION__, __LINE__);
26a940e2 262 }
8f29e650 263 }
26a940e2 264
8f29e650
JC
265 cur_addr += tc;
266 cur_len -= tc;
267 }
55c16a70 268 sg = sg_next(sg);
8f29e650
JC
269 i--;
270 }
26a940e2 271
8f29e650
JC
272 if (count)
273 return 1;
26a940e2 274
8f29e650 275 use_pio_instead:
062f9f02 276 ide_destroy_dmatable(drive);
26a940e2 277
8f29e650 278 return 0; /* revert to PIO for this request */
26a940e2
PP
279}
280
281static int auide_dma_end(ide_drive_t *drive)
282{
8f29e650 283 ide_hwif_t *hwif = HWIF(drive);
26a940e2 284
8f29e650 285 if (hwif->sg_nents) {
062f9f02 286 ide_destroy_dmatable(drive);
8f29e650
JC
287 hwif->sg_nents = 0;
288 }
26a940e2 289
8f29e650 290 return 0;
26a940e2
PP
291}
292
293static void auide_dma_start(ide_drive_t *drive )
294{
26a940e2
PP
295}
296
26a940e2
PP
297
298static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
299{
8f29e650
JC
300 /* issue cmd to drive */
301 ide_execute_command(drive, command, &ide_dma_intr,
302 (2*WAIT_CMD), NULL);
26a940e2
PP
303}
304
305static int auide_dma_setup(ide_drive_t *drive)
8f29e650
JC
306{
307 struct request *rq = HWGROUP(drive)->rq;
26a940e2 308
8f29e650
JC
309 if (!auide_build_dmatable(drive)) {
310 ide_map_sg(drive, rq);
311 return 1;
312 }
26a940e2 313
8f29e650
JC
314 drive->waiting_for_dma = 1;
315 return 0;
26a940e2
PP
316}
317
8446f659 318static u8 auide_mdma_filter(ide_drive_t *drive)
26a940e2 319{
8446f659
BZ
320 /*
321 * FIXME: ->white_list and ->black_list are based on completely bogus
322 * ->ide_dma_check implementation which didn't set neither the host
323 * controller timings nor the device for the desired transfer mode.
324 *
325 * They should be either removed or 0x00 MWDMA mask should be
326 * returned for devices on the ->black_list.
327 */
8f29e650 328
8446f659 329 if (dbdma_init_done == 0) {
8f29e650
JC
330 auide_hwif.white_list = ide_in_drive_list(drive->id,
331 dma_white_list);
332 auide_hwif.black_list = ide_in_drive_list(drive->id,
333 dma_black_list);
334 auide_hwif.drive = drive;
335 auide_ddma_init(&auide_hwif);
336 dbdma_init_done = 1;
337 }
26a940e2 338
8f29e650 339 /* Is the drive in our DMA black list? */
8446f659 340 if (auide_hwif.black_list)
8f29e650 341 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
8446f659 342 drive->name, drive->id->model);
8f29e650 343
8446f659
BZ
344 return drive->hwif->mwdma_mask;
345}
346
26a940e2 347static int auide_dma_test_irq(ide_drive_t *drive)
8f29e650
JC
348{
349 if (drive->waiting_for_dma == 0)
350 printk(KERN_WARNING "%s: ide_dma_test_irq \
26a940e2
PP
351 called while not waiting\n", drive->name);
352
8f29e650
JC
353 /* If dbdma didn't execute the STOP command yet, the
354 * active bit is still set
26a940e2 355 */
8f29e650
JC
356 drive->waiting_for_dma++;
357 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
358 printk(KERN_WARNING "%s: timeout waiting for ddma to \
26a940e2 359 complete\n", drive->name);
8f29e650
JC
360 return 1;
361 }
362 udelay(10);
363 return 0;
26a940e2
PP
364}
365
15ce926a 366static void auide_dma_host_set(ide_drive_t *drive, int on)
26a940e2 367{
26a940e2
PP
368}
369
841d2a9b 370static void auide_dma_lost_irq(ide_drive_t *drive)
26a940e2 371{
8f29e650 372 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
26a940e2
PP
373}
374
53e62d3a 375static void auide_ddma_tx_callback(int irq, void *param)
26a940e2 376{
8f29e650
JC
377 _auide_hwif *ahwif = (_auide_hwif*)param;
378 ahwif->drive->waiting_for_dma = 0;
26a940e2
PP
379}
380
53e62d3a 381static void auide_ddma_rx_callback(int irq, void *param)
26a940e2 382{
8f29e650
JC
383 _auide_hwif *ahwif = (_auide_hwif*)param;
384 ahwif->drive->waiting_for_dma = 0;
385}
386
387#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
26a940e2 388
8f29e650
JC
389static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
390{
391 dev->dev_id = dev_id;
392 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
393 dev->dev_intlevel = 0;
394 dev->dev_intpolarity = 0;
395 dev->dev_tsize = tsize;
396 dev->dev_devwidth = devwidth;
397 dev->dev_flags = flags;
26a940e2 398}
8f29e650
JC
399
400#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
26a940e2 401
c283f5db 402static void auide_dma_timeout(ide_drive_t *drive)
26a940e2 403{
c283f5db 404 ide_hwif_t *hwif = HWIF(drive);
26a940e2 405
8f29e650 406 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
26a940e2 407
c283f5db
SS
408 if (hwif->ide_dma_test_irq(drive))
409 return;
26a940e2 410
c283f5db 411 hwif->ide_dma_end(drive);
26a940e2 412}
8f29e650 413
26a940e2 414
8f29e650
JC
415static int auide_ddma_init(_auide_hwif *auide) {
416
417 dbdev_tab_t source_dev_tab, target_dev_tab;
418 u32 dev_id, tsize, devwidth, flags;
419 ide_hwif_t *hwif = auide->hwif;
26a940e2 420
8f29e650 421 dev_id = AU1XXX_ATA_DDMA_REQ;
26a940e2 422
8f29e650
JC
423 if (auide->white_list || auide->black_list) {
424 tsize = 8;
425 devwidth = 32;
426 }
427 else {
428 tsize = 1;
429 devwidth = 16;
430
431 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
432 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
433 }
26a940e2 434
8f29e650
JC
435#ifdef IDE_AU1XXX_BURSTMODE
436 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
26a940e2 437#else
8f29e650 438 flags = DEV_FLAGS_SYNC;
26a940e2
PP
439#endif
440
8f29e650
JC
441 /* setup dev_tab for tx channel */
442 auide_init_dbdma_dev( &source_dev_tab,
443 dev_id,
444 tsize, devwidth, DEV_FLAGS_OUT | flags);
445 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
446
447 auide_init_dbdma_dev( &source_dev_tab,
448 dev_id,
449 tsize, devwidth, DEV_FLAGS_IN | flags);
450 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
451
452 /* We also need to add a target device for the DMA */
453 auide_init_dbdma_dev( &target_dev_tab,
454 (u32)DSCR_CMD0_ALWAYS,
455 tsize, devwidth, DEV_FLAGS_ANYUSE);
456 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
457
458 /* Get a channel for TX */
459 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
460 auide->tx_dev_id,
461 auide_ddma_tx_callback,
462 (void*)auide);
463
464 /* Get a channel for RX */
465 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
466 auide->target_dev_id,
467 auide_ddma_rx_callback,
468 (void*)auide);
469
470 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
471 NUM_DESCRIPTORS);
472 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
473 NUM_DESCRIPTORS);
474
5df37c34 475 hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
8f29e650
JC
476 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
477 &hwif->dmatable_dma, GFP_KERNEL);
478
479 au1xxx_dbdma_start( auide->tx_chan );
480 au1xxx_dbdma_start( auide->rx_chan );
481
482 return 0;
483}
26a940e2 484#else
8f29e650
JC
485
486static int auide_ddma_init( _auide_hwif *auide )
487{
488 dbdev_tab_t source_dev_tab;
489 int flags;
26a940e2 490
8f29e650
JC
491#ifdef IDE_AU1XXX_BURSTMODE
492 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
493#else
494 flags = DEV_FLAGS_SYNC;
26a940e2 495#endif
26a940e2 496
8f29e650
JC
497 /* setup dev_tab for tx channel */
498 auide_init_dbdma_dev( &source_dev_tab,
499 (u32)DSCR_CMD0_ALWAYS,
500 8, 32, DEV_FLAGS_OUT | flags);
501 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
502
503 auide_init_dbdma_dev( &source_dev_tab,
504 (u32)DSCR_CMD0_ALWAYS,
505 8, 32, DEV_FLAGS_IN | flags);
506 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
507
508 /* Get a channel for TX */
509 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
510 auide->tx_dev_id,
511 NULL,
512 (void*)auide);
513
514 /* Get a channel for RX */
515 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
516 DSCR_CMD0_ALWAYS,
517 NULL,
518 (void*)auide);
519
520 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
521 NUM_DESCRIPTORS);
522 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
523 NUM_DESCRIPTORS);
524
525 au1xxx_dbdma_start( auide->tx_chan );
526 au1xxx_dbdma_start( auide->rx_chan );
527
528 return 0;
26a940e2 529}
8f29e650 530#endif
26a940e2
PP
531
532static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
533{
8f29e650
JC
534 int i;
535 unsigned long *ata_regs = hw->io_ports;
536
537 /* FIXME? */
538 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
539 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
540 }
541
542 /* set the Alternative Status register */
543 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
26a940e2
PP
544}
545
ac95beed
BZ
546static const struct ide_port_ops au1xxx_port_ops = {
547 .set_pio_mode = au1xxx_set_pio_mode,
548 .set_dma_mode = auide_set_dma_mode,
549#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
550 .mdma_filter = auide_mdma_filter,
551#endif
552};
553
c413b9b9 554static const struct ide_port_info au1xxx_port_info = {
ac95beed 555 .port_ops = &au1xxx_port_ops,
c413b9b9
BZ
556 .host_flags = IDE_HFLAG_POST_SET_MODE |
557 IDE_HFLAG_NO_DMA | /* no SFF-style DMA */
807b90d0 558 IDE_HFLAG_NO_IO_32BIT |
c413b9b9
BZ
559 IDE_HFLAG_UNMASK_IRQS,
560 .pio_mask = ATA_PIO4,
561#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
562 .mwdma_mask = ATA_MWDMA2,
563#endif
564};
565
26a940e2
PP
566static int au_ide_probe(struct device *dev)
567{
568 struct platform_device *pdev = to_platform_device(dev);
8f29e650
JC
569 _auide_hwif *ahwif = &auide_hwif;
570 ide_hwif_t *hwif;
26a940e2
PP
571 struct resource *res;
572 int ret = 0;
8447d9d5 573 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
9239b333 574 hw_regs_t hw;
26a940e2
PP
575
576#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
8f29e650 577 char *mode = "MWDMA2";
26a940e2 578#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
8f29e650 579 char *mode = "PIO+DDMA(offload)";
26a940e2
PP
580#endif
581
8f29e650 582 memset(&auide_hwif, 0, sizeof(_auide_hwif));
26a940e2
PP
583 ahwif->irq = platform_get_irq(pdev, 0);
584
585 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
586
587 if (res == NULL) {
588 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
589 ret = -ENODEV;
48944738
DV
590 goto out;
591 }
592 if (ahwif->irq < 0) {
593 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
594 ret = -ENODEV;
26a940e2
PP
595 goto out;
596 }
597
b4dcaea3
SS
598 if (!request_mem_region(res->start, res->end - res->start + 1,
599 pdev->name)) {
26a940e2 600 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
8f29e650 601 ret = -EBUSY;
26a940e2 602 goto out;
8f29e650 603 }
26a940e2 604
b4dcaea3 605 ahwif->regbase = (u32)ioremap(res->start, res->end - res->start + 1);
26a940e2
PP
606 if (ahwif->regbase == 0) {
607 ret = -ENOMEM;
608 goto out;
609 }
610
4f7bada2
BZ
611 hwif = ide_find_port();
612 if (hwif == NULL) {
613 ret = -ENOENT;
614 goto out;
615 }
26a940e2 616
9239b333
BZ
617 memset(&hw, 0, sizeof(hw));
618 auide_setup_ports(&hw, ahwif);
aa79a2fa 619 hw.irq = ahwif->irq;
ed1f7889 620 hw.dev = dev;
aa79a2fa
BZ
621 hw.chipset = ide_au1xxx;
622
623 ide_init_port_hw(hwif, &hw);
26a940e2 624
5df37c34
BZ
625 hwif->dev = dev;
626
8f29e650
JC
627 /* If the user has selected DDMA assisted copies,
628 then set up a few local I/O function entry points
629 */
630
631#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
632 hwif->INSW = auide_insw;
633 hwif->OUTSW = auide_outsw;
26a940e2 634#endif
26a940e2 635#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
c283f5db 636 hwif->dma_timeout = &auide_dma_timeout;
15ce926a 637 hwif->dma_host_set = &auide_dma_host_set;
8f29e650
JC
638 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
639 hwif->dma_start = &auide_dma_start;
640 hwif->ide_dma_end = &auide_dma_end;
641 hwif->dma_setup = &auide_dma_setup;
642 hwif->ide_dma_test_irq = &auide_dma_test_irq;
841d2a9b 643 hwif->dma_lost_irq = &auide_dma_lost_irq;
a42bcc0f 644#endif
8f29e650
JC
645 hwif->select_data = 0; /* no chipset-specific code */
646 hwif->config_data = 0; /* no chipset-specific code */
647
8f29e650
JC
648 auide_hwif.hwif = hwif;
649 hwif->hwif_data = &auide_hwif;
26a940e2 650
8f29e650
JC
651#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
652 auide_ddma_init(&auide_hwif);
653 dbdma_init_done = 1;
26a940e2
PP
654#endif
655
8447d9d5 656 idx[0] = hwif->index;
5cbf79cd 657
c413b9b9 658 ide_device_add(idx, &au1xxx_port_info);
5cbf79cd 659
26a940e2
PP
660 dev_set_drvdata(dev, hwif);
661
8f29e650 662 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
26a940e2 663
8f29e650
JC
664 out:
665 return ret;
26a940e2
PP
666}
667
668static int au_ide_remove(struct device *dev)
669{
670 struct platform_device *pdev = to_platform_device(dev);
671 struct resource *res;
672 ide_hwif_t *hwif = dev_get_drvdata(dev);
8f29e650 673 _auide_hwif *ahwif = &auide_hwif;
26a940e2 674
93de00fd 675 ide_unregister(hwif->index);
26a940e2
PP
676
677 iounmap((void *)ahwif->regbase);
678
679 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
b4dcaea3 680 release_mem_region(res->start, res->end - res->start + 1);
26a940e2
PP
681
682 return 0;
683}
684
685static struct device_driver au1200_ide_driver = {
686 .name = "au1200-ide",
687 .bus = &platform_bus_type,
688 .probe = au_ide_probe,
689 .remove = au_ide_remove,
690};
691
692static int __init au_ide_init(void)
693{
694 return driver_register(&au1200_ide_driver);
695}
696
8f29e650 697static void __exit au_ide_exit(void)
26a940e2
PP
698{
699 driver_unregister(&au1200_ide_driver);
700}
701
26a940e2
PP
702MODULE_LICENSE("GPL");
703MODULE_DESCRIPTION("AU1200 IDE driver");
704
705module_init(au_ide_init);
706module_exit(au_ide_exit);