54323ab64def61ff9e44ca5a01fd7fc0020bf7e7
[sfrench/cifs-2.6.git] / drivers / ide / mips / au1xxx-ide.c
1 /*
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  */
30 #include <linux/types.h>
31 #include <linux/module.h>
32 #include <linux/kernel.h>
33 #include <linux/delay.h>
34 #include <linux/platform_device.h>
35 #include <linux/init.h>
36 #include <linux/ide.h>
37 #include <linux/scatterlist.h>
38
39 #include <asm/mach-au1x00/au1xxx.h>
40 #include <asm/mach-au1x00/au1xxx_dbdma.h>
41 #include <asm/mach-au1x00/au1xxx_ide.h>
42
43 #define DRV_NAME        "au1200-ide"
44 #define DRV_AUTHOR      "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
45
46 /* enable the burstmode in the dbdma */
47 #define IDE_AU1XXX_BURSTMODE    1
48
49 static _auide_hwif auide_hwif;
50
51 static int auide_ddma_init(_auide_hwif *auide);
52
53 #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
54
55 void auide_insw(unsigned long port, void *addr, u32 count)
56 {
57         _auide_hwif *ahwif = &auide_hwif;
58         chan_tab_t *ctp;
59         au1x_ddma_desc_t *dp;
60
61         if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1, 
62                            DDMA_FLAGS_NOIE)) {
63                 printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
64                 return;
65         }
66         ctp = *((chan_tab_t **)ahwif->rx_chan);
67         dp = ctp->cur_ptr;
68         while (dp->dscr_cmd0 & DSCR_CMD0_V)
69                 ;
70         ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
71 }
72
73 void auide_outsw(unsigned long port, void *addr, u32 count)
74 {
75         _auide_hwif *ahwif = &auide_hwif;
76         chan_tab_t *ctp;
77         au1x_ddma_desc_t *dp;
78
79         if(!put_source_flags(ahwif->tx_chan, (void*)addr,
80                              count << 1, DDMA_FLAGS_NOIE)) {
81                 printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
82                 return;
83         }
84         ctp = *((chan_tab_t **)ahwif->tx_chan);
85         dp = ctp->cur_ptr;
86         while (dp->dscr_cmd0 & DSCR_CMD0_V)
87                 ;
88         ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
89 }
90
91 #endif
92
93 static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
94 {
95         int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
96
97         /* set pio mode! */
98         switch(pio) {
99         case 0:
100                 mem_sttime = SBC_IDE_TIMING(PIO0);
101
102                 /* set configuration for RCS2# */
103                 mem_stcfg |= TS_MASK;
104                 mem_stcfg &= ~TCSOE_MASK;
105                 mem_stcfg &= ~TOECS_MASK;
106                 mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
107                 break;
108
109         case 1:
110                 mem_sttime = SBC_IDE_TIMING(PIO1);
111
112                 /* set configuration for RCS2# */
113                 mem_stcfg |= TS_MASK;
114                 mem_stcfg &= ~TCSOE_MASK;
115                 mem_stcfg &= ~TOECS_MASK;
116                 mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
117                 break;
118
119         case 2:
120                 mem_sttime = SBC_IDE_TIMING(PIO2);
121
122                 /* set configuration for RCS2# */
123                 mem_stcfg &= ~TS_MASK;
124                 mem_stcfg &= ~TCSOE_MASK;
125                 mem_stcfg &= ~TOECS_MASK;
126                 mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
127                 break;
128
129         case 3:
130                 mem_sttime = SBC_IDE_TIMING(PIO3);
131
132                 /* set configuration for RCS2# */
133                 mem_stcfg &= ~TS_MASK;
134                 mem_stcfg &= ~TCSOE_MASK;
135                 mem_stcfg &= ~TOECS_MASK;
136                 mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;
137
138                 break;
139
140         case 4:
141                 mem_sttime = SBC_IDE_TIMING(PIO4);
142
143                 /* set configuration for RCS2# */
144                 mem_stcfg &= ~TS_MASK;
145                 mem_stcfg &= ~TCSOE_MASK;
146                 mem_stcfg &= ~TOECS_MASK;
147                 mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
148                 break;
149         }
150
151         au_writel(mem_sttime,MEM_STTIME2);
152         au_writel(mem_stcfg,MEM_STCFG2);
153 }
154
155 static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
156 {
157         int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
158
159         switch(speed) {
160 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
161         case XFER_MW_DMA_2:
162                 mem_sttime = SBC_IDE_TIMING(MDMA2);
163
164                 /* set configuration for RCS2# */
165                 mem_stcfg &= ~TS_MASK;
166                 mem_stcfg &= ~TCSOE_MASK;
167                 mem_stcfg &= ~TOECS_MASK;
168                 mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;
169
170                 break;
171         case XFER_MW_DMA_1:
172                 mem_sttime = SBC_IDE_TIMING(MDMA1);
173
174                 /* set configuration for RCS2# */
175                 mem_stcfg &= ~TS_MASK;
176                 mem_stcfg &= ~TCSOE_MASK;
177                 mem_stcfg &= ~TOECS_MASK;
178                 mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;
179
180                 break;
181         case XFER_MW_DMA_0:
182                 mem_sttime = SBC_IDE_TIMING(MDMA0);
183
184                 /* set configuration for RCS2# */
185                 mem_stcfg |= TS_MASK;
186                 mem_stcfg &= ~TCSOE_MASK;
187                 mem_stcfg &= ~TOECS_MASK;
188                 mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;
189
190                 break;
191 #endif
192         }
193
194         au_writel(mem_sttime,MEM_STTIME2);
195         au_writel(mem_stcfg,MEM_STCFG2);
196 }
197
198 /*
199  * Multi-Word DMA + DbDMA functions
200  */
201
202 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
203 static int auide_build_dmatable(ide_drive_t *drive)
204 {
205         int i, iswrite, count = 0;
206         ide_hwif_t *hwif = HWIF(drive);
207
208         struct request *rq = HWGROUP(drive)->rq;
209
210         _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
211         struct scatterlist *sg;
212
213         iswrite = (rq_data_dir(rq) == WRITE);
214         /* Save for interrupt context */
215         ahwif->drive = drive;
216
217         hwif->sg_nents = i = ide_build_sglist(drive, rq);
218
219         if (!i)
220                 return 0;
221
222         /* fill the descriptors */
223         sg = hwif->sg_table;
224         while (i && sg_dma_len(sg)) {
225                 u32 cur_addr;
226                 u32 cur_len;
227
228                 cur_addr = sg_dma_address(sg);
229                 cur_len = sg_dma_len(sg);
230
231                 while (cur_len) {
232                         u32 flags = DDMA_FLAGS_NOIE;
233                         unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
234
235                         if (++count >= PRD_ENTRIES) {
236                                 printk(KERN_WARNING "%s: DMA table too small\n",
237                                        drive->name);
238                                 goto use_pio_instead;
239                         }
240
241                         /* Lets enable intr for the last descriptor only */
242                         if (1==i)
243                                 flags = DDMA_FLAGS_IE;
244                         else
245                                 flags = DDMA_FLAGS_NOIE;
246
247                         if (iswrite) {
248                                 if(!put_source_flags(ahwif->tx_chan, 
249                                                      (void*) sg_virt(sg),
250                                                      tc, flags)) { 
251                                         printk(KERN_ERR "%s failed %d\n", 
252                                                __func__, __LINE__);
253                                 }
254                         } else 
255                         {
256                                 if(!put_dest_flags(ahwif->rx_chan, 
257                                                    (void*) sg_virt(sg),
258                                                    tc, flags)) { 
259                                         printk(KERN_ERR "%s failed %d\n", 
260                                                __func__, __LINE__);
261                                 }
262                         }
263
264                         cur_addr += tc;
265                         cur_len -= tc;
266                 }
267                 sg = sg_next(sg);
268                 i--;
269         }
270
271         if (count)
272                 return 1;
273
274  use_pio_instead:
275         ide_destroy_dmatable(drive);
276
277         return 0; /* revert to PIO for this request */
278 }
279
280 static int auide_dma_end(ide_drive_t *drive)
281 {
282         ide_hwif_t *hwif = HWIF(drive);
283
284         if (hwif->sg_nents) {
285                 ide_destroy_dmatable(drive);
286                 hwif->sg_nents = 0;
287         }
288
289         return 0;
290 }
291
292 static void auide_dma_start(ide_drive_t *drive )
293 {
294 }
295
296
297 static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
298 {
299         /* issue cmd to drive */
300         ide_execute_command(drive, command, &ide_dma_intr,
301                             (2*WAIT_CMD), NULL);
302 }
303
304 static int auide_dma_setup(ide_drive_t *drive)
305 {               
306         struct request *rq = HWGROUP(drive)->rq;
307
308         if (!auide_build_dmatable(drive)) {
309                 ide_map_sg(drive, rq);
310                 return 1;
311         }
312
313         drive->waiting_for_dma = 1;
314         return 0;
315 }
316
317 static int auide_dma_test_irq(ide_drive_t *drive)
318 {       
319         if (drive->waiting_for_dma == 0)
320                 printk(KERN_WARNING "%s: ide_dma_test_irq \
321                                      called while not waiting\n", drive->name);
322
323         /* If dbdma didn't execute the STOP command yet, the
324          * active bit is still set
325          */
326         drive->waiting_for_dma++;
327         if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
328                 printk(KERN_WARNING "%s: timeout waiting for ddma to \
329                                      complete\n", drive->name);
330                 return 1;
331         }
332         udelay(10);
333         return 0;
334 }
335
336 static void auide_dma_host_set(ide_drive_t *drive, int on)
337 {
338 }
339
340 static void auide_dma_lost_irq(ide_drive_t *drive)
341 {
342         printk(KERN_ERR "%s: IRQ lost\n", drive->name);
343 }
344
345 static void auide_ddma_tx_callback(int irq, void *param)
346 {
347         _auide_hwif *ahwif = (_auide_hwif*)param;
348         ahwif->drive->waiting_for_dma = 0;
349 }
350
351 static void auide_ddma_rx_callback(int irq, void *param)
352 {
353         _auide_hwif *ahwif = (_auide_hwif*)param;
354         ahwif->drive->waiting_for_dma = 0;
355 }
356
357 #endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
358
359 static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
360 {
361         dev->dev_id          = dev_id;
362         dev->dev_physaddr    = (u32)AU1XXX_ATA_PHYS_ADDR;
363         dev->dev_intlevel    = 0;
364         dev->dev_intpolarity = 0;
365         dev->dev_tsize       = tsize;
366         dev->dev_devwidth    = devwidth;
367         dev->dev_flags       = flags;
368 }
369   
370 #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
371
372 static void auide_dma_timeout(ide_drive_t *drive)
373 {
374         ide_hwif_t *hwif = HWIF(drive);
375
376         printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
377
378         if (hwif->ide_dma_test_irq(drive))
379                 return;
380
381         hwif->ide_dma_end(drive);
382 }
383
384 static int auide_ddma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
385 {
386         _auide_hwif *auide = (_auide_hwif *)hwif->hwif_data;
387         dbdev_tab_t source_dev_tab, target_dev_tab;
388         u32 dev_id, tsize, devwidth, flags;
389
390         dev_id   = AU1XXX_ATA_DDMA_REQ;
391
392         tsize    =  8; /*  1 */
393         devwidth = 32; /* 16 */
394
395 #ifdef IDE_AU1XXX_BURSTMODE 
396         flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
397 #else
398         flags = DEV_FLAGS_SYNC;
399 #endif
400
401         /* setup dev_tab for tx channel */
402         auide_init_dbdma_dev( &source_dev_tab,
403                               dev_id,
404                               tsize, devwidth, DEV_FLAGS_OUT | flags);
405         auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
406
407         auide_init_dbdma_dev( &source_dev_tab,
408                               dev_id,
409                               tsize, devwidth, DEV_FLAGS_IN | flags);
410         auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
411         
412         /* We also need to add a target device for the DMA */
413         auide_init_dbdma_dev( &target_dev_tab,
414                               (u32)DSCR_CMD0_ALWAYS,
415                               tsize, devwidth, DEV_FLAGS_ANYUSE);
416         auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab); 
417  
418         /* Get a channel for TX */
419         auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
420                                                  auide->tx_dev_id,
421                                                  auide_ddma_tx_callback,
422                                                  (void*)auide);
423  
424         /* Get a channel for RX */
425         auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
426                                                  auide->target_dev_id,
427                                                  auide_ddma_rx_callback,
428                                                  (void*)auide);
429
430         auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
431                                                              NUM_DESCRIPTORS);
432         auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
433                                                              NUM_DESCRIPTORS);
434  
435         hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
436                                                 PRD_ENTRIES * PRD_BYTES,        /* 1 Page */
437                                                 &hwif->dmatable_dma, GFP_KERNEL);
438         
439         au1xxx_dbdma_start( auide->tx_chan );
440         au1xxx_dbdma_start( auide->rx_chan );
441  
442         return 0;
443
444 #else
445 static int auide_ddma_init(ide_hwif_t *hwif, const struct ide_port_info *d)
446 {
447         _auide_hwif *auide = (_auide_hwif *)hwif->hwif_data;
448         dbdev_tab_t source_dev_tab;
449         int flags;
450
451 #ifdef IDE_AU1XXX_BURSTMODE 
452         flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
453 #else
454         flags = DEV_FLAGS_SYNC;
455 #endif
456
457         /* setup dev_tab for tx channel */
458         auide_init_dbdma_dev( &source_dev_tab,
459                               (u32)DSCR_CMD0_ALWAYS,
460                               8, 32, DEV_FLAGS_OUT | flags);
461         auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
462
463         auide_init_dbdma_dev( &source_dev_tab,
464                               (u32)DSCR_CMD0_ALWAYS,
465                               8, 32, DEV_FLAGS_IN | flags);
466         auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
467         
468         /* Get a channel for TX */
469         auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
470                                                  auide->tx_dev_id,
471                                                  NULL,
472                                                  (void*)auide);
473  
474         /* Get a channel for RX */
475         auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
476                                                  DSCR_CMD0_ALWAYS,
477                                                  NULL,
478                                                  (void*)auide);
479  
480         auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
481                                                              NUM_DESCRIPTORS);
482         auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
483                                                              NUM_DESCRIPTORS);
484  
485         au1xxx_dbdma_start( auide->tx_chan );
486         au1xxx_dbdma_start( auide->rx_chan );
487         
488         return 0;
489 }
490 #endif
491
492 static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
493 {
494         int i;
495         unsigned long *ata_regs = hw->io_ports;
496
497         /* FIXME? */
498         for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
499                 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
500         }
501
502         /* set the Alternative Status register */
503         *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
504 }
505
506 static const struct ide_port_ops au1xxx_port_ops = {
507         .set_pio_mode           = au1xxx_set_pio_mode,
508         .set_dma_mode           = auide_set_dma_mode,
509 };
510
511 static const struct ide_port_info au1xxx_port_info = {
512         .init_dma               = auide_ddma_init,
513         .port_ops               = &au1xxx_port_ops,
514         .host_flags             = IDE_HFLAG_POST_SET_MODE |
515                                   IDE_HFLAG_NO_IO_32BIT |
516                                   IDE_HFLAG_UNMASK_IRQS,
517         .pio_mask               = ATA_PIO4,
518 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
519         .mwdma_mask             = ATA_MWDMA2,
520 #endif
521 };
522
523 static int au_ide_probe(struct device *dev)
524 {
525         struct platform_device *pdev = to_platform_device(dev);
526         _auide_hwif *ahwif = &auide_hwif;
527         ide_hwif_t *hwif;
528         struct resource *res;
529         int ret = 0;
530         u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
531         hw_regs_t hw;
532
533 #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
534         char *mode = "MWDMA2";
535 #elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
536         char *mode = "PIO+DDMA(offload)";
537 #endif
538
539         memset(&auide_hwif, 0, sizeof(_auide_hwif));
540         ahwif->irq = platform_get_irq(pdev, 0);
541
542         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
543
544         if (res == NULL) {
545                 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
546                 ret = -ENODEV;
547                 goto out;
548         }
549         if (ahwif->irq < 0) {
550                 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
551                 ret = -ENODEV;
552                 goto out;
553         }
554
555         if (!request_mem_region(res->start, res->end - res->start + 1,
556                                 pdev->name)) {
557                 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
558                 ret =  -EBUSY;
559                 goto out;
560         }
561
562         ahwif->regbase = (u32)ioremap(res->start, res->end - res->start + 1);
563         if (ahwif->regbase == 0) {
564                 ret = -ENOMEM;
565                 goto out;
566         }
567
568         hwif = ide_find_port();
569         if (hwif == NULL) {
570                 ret = -ENOENT;
571                 goto out;
572         }
573
574         memset(&hw, 0, sizeof(hw));
575         auide_setup_ports(&hw, ahwif);
576         hw.irq = ahwif->irq;
577         hw.dev = dev;
578         hw.chipset = ide_au1xxx;
579
580         ide_init_port_hw(hwif, &hw);
581
582         hwif->dev = dev;
583
584         /* If the user has selected DDMA assisted copies,
585            then set up a few local I/O function entry points 
586         */
587
588 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA      
589         hwif->INSW                      = auide_insw;
590         hwif->OUTSW                     = auide_outsw;
591 #endif
592 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
593         hwif->dma_timeout               = &auide_dma_timeout;
594         hwif->dma_host_set              = &auide_dma_host_set;
595         hwif->dma_exec_cmd              = &auide_dma_exec_cmd;
596         hwif->dma_start                 = &auide_dma_start;
597         hwif->ide_dma_end               = &auide_dma_end;
598         hwif->dma_setup                 = &auide_dma_setup;
599         hwif->ide_dma_test_irq          = &auide_dma_test_irq;
600         hwif->dma_lost_irq              = &auide_dma_lost_irq;
601 #endif
602         hwif->select_data               = 0;    /* no chipset-specific code */
603         hwif->config_data               = 0;    /* no chipset-specific code */
604
605         auide_hwif.hwif                 = hwif;
606         hwif->hwif_data                 = &auide_hwif;
607
608         idx[0] = hwif->index;
609
610         ide_device_add(idx, &au1xxx_port_info);
611
612         dev_set_drvdata(dev, hwif);
613
614         printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
615
616  out:
617         return ret;
618 }
619
620 static int au_ide_remove(struct device *dev)
621 {
622         struct platform_device *pdev = to_platform_device(dev);
623         struct resource *res;
624         ide_hwif_t *hwif = dev_get_drvdata(dev);
625         _auide_hwif *ahwif = &auide_hwif;
626
627         ide_unregister(hwif->index);
628
629         iounmap((void *)ahwif->regbase);
630
631         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
632         release_mem_region(res->start, res->end - res->start + 1);
633
634         return 0;
635 }
636
637 static struct device_driver au1200_ide_driver = {
638         .name           = "au1200-ide",
639         .bus            = &platform_bus_type,
640         .probe          = au_ide_probe,
641         .remove         = au_ide_remove,
642 };
643
644 static int __init au_ide_init(void)
645 {
646         return driver_register(&au1200_ide_driver);
647 }
648
649 static void __exit au_ide_exit(void)
650 {
651         driver_unregister(&au1200_ide_driver);
652 }
653
654 MODULE_LICENSE("GPL");
655 MODULE_DESCRIPTION("AU1200 IDE driver");
656
657 module_init(au_ide_init);
658 module_exit(au_ide_exit);