2 * linux/drivers/ide/mips/au1xxx-ide.c version 01.30.00 Aug. 02 2005
4 * BRIEF MODULE DESCRIPTION
5 * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
7 * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
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
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.
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.
29 * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
30 * Interface and Linux Device Driver" Application Note.
32 #include <linux/types.h>
33 #include <linux/module.h>
34 #include <linux/kernel.h>
35 #include <linux/delay.h>
36 #include <linux/platform_device.h>
38 #include <linux/init.h>
39 #include <linux/ide.h>
40 #include <linux/sysdev.h>
42 #include <linux/dma-mapping.h>
44 #include "ide-timing.h"
47 #include <asm/mach-au1x00/au1xxx.h>
48 #include <asm/mach-au1x00/au1xxx_dbdma.h>
50 #include <asm/mach-au1x00/au1xxx_ide.h>
52 #define DRV_NAME "au1200-ide"
53 #define DRV_VERSION "1.0"
54 #define DRV_AUTHOR "Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
56 /* enable the burstmode in the dbdma */
57 #define IDE_AU1XXX_BURSTMODE 1
59 static _auide_hwif auide_hwif
;
60 static int dbdma_init_done
;
62 #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
64 void auide_insw(unsigned long port
, void *addr
, u32 count
)
66 _auide_hwif
*ahwif
= &auide_hwif
;
70 if(!put_dest_flags(ahwif
->rx_chan
, (void*)addr
, count
<< 1,
72 printk(KERN_ERR
"%s failed %d\n", __FUNCTION__
, __LINE__
);
75 ctp
= *((chan_tab_t
**)ahwif
->rx_chan
);
77 while (dp
->dscr_cmd0
& DSCR_CMD0_V
)
79 ctp
->cur_ptr
= au1xxx_ddma_get_nextptr_virt(dp
);
82 void auide_outsw(unsigned long port
, void *addr
, u32 count
)
84 _auide_hwif
*ahwif
= &auide_hwif
;
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__
);
93 ctp
= *((chan_tab_t
**)ahwif
->tx_chan
);
95 while (dp
->dscr_cmd0
& DSCR_CMD0_V
)
97 ctp
->cur_ptr
= au1xxx_ddma_get_nextptr_virt(dp
);
102 static void au1xxx_set_pio_mode(ide_drive_t
*drive
, const u8 pio
)
109 mem_stcfg
= au_readl(MEM_STCFG2
);
114 mem_sttime
= SBC_IDE_TIMING(PIO0
);
116 /* set configuration for RCS2# */
117 mem_stcfg
|= TS_MASK
;
118 mem_stcfg
&= ~TCSOE_MASK
;
119 mem_stcfg
&= ~TOECS_MASK
;
120 mem_stcfg
|= SBC_IDE_PIO0_TCSOE
| SBC_IDE_PIO0_TOECS
;
124 mem_sttime
= SBC_IDE_TIMING(PIO1
);
126 /* set configuration for RCS2# */
127 mem_stcfg
|= TS_MASK
;
128 mem_stcfg
&= ~TCSOE_MASK
;
129 mem_stcfg
&= ~TOECS_MASK
;
130 mem_stcfg
|= SBC_IDE_PIO1_TCSOE
| SBC_IDE_PIO1_TOECS
;
134 mem_sttime
= SBC_IDE_TIMING(PIO2
);
136 /* set configuration for RCS2# */
137 mem_stcfg
&= ~TS_MASK
;
138 mem_stcfg
&= ~TCSOE_MASK
;
139 mem_stcfg
&= ~TOECS_MASK
;
140 mem_stcfg
|= SBC_IDE_PIO2_TCSOE
| SBC_IDE_PIO2_TOECS
;
144 mem_sttime
= SBC_IDE_TIMING(PIO3
);
146 /* set configuration for RCS2# */
147 mem_stcfg
&= ~TS_MASK
;
148 mem_stcfg
&= ~TCSOE_MASK
;
149 mem_stcfg
&= ~TOECS_MASK
;
150 mem_stcfg
|= SBC_IDE_PIO3_TCSOE
| SBC_IDE_PIO3_TOECS
;
155 mem_sttime
= SBC_IDE_TIMING(PIO4
);
157 /* set configuration for RCS2# */
158 mem_stcfg
&= ~TS_MASK
;
159 mem_stcfg
&= ~TCSOE_MASK
;
160 mem_stcfg
&= ~TOECS_MASK
;
161 mem_stcfg
|= SBC_IDE_PIO4_TCSOE
| SBC_IDE_PIO4_TOECS
;
165 au_writel(mem_sttime
,MEM_STTIME2
);
166 au_writel(mem_stcfg
,MEM_STCFG2
);
168 speed
= pio
+ XFER_PIO_0
;
169 ide_config_drive_speed(drive
, speed
);
172 static int auide_tune_chipset(ide_drive_t
*drive
, const u8 speed
)
178 mem_stcfg
= au_readl(MEM_STCFG2
);
181 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
183 mem_sttime
= SBC_IDE_TIMING(MDMA2
);
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_MDMA2_TCSOE
| SBC_IDE_MDMA2_TOECS
;
193 mem_sttime
= SBC_IDE_TIMING(MDMA1
);
195 /* set configuration for RCS2# */
196 mem_stcfg
&= ~TS_MASK
;
197 mem_stcfg
&= ~TCSOE_MASK
;
198 mem_stcfg
&= ~TOECS_MASK
;
199 mem_stcfg
|= SBC_IDE_MDMA1_TCSOE
| SBC_IDE_MDMA1_TOECS
;
203 mem_sttime
= SBC_IDE_TIMING(MDMA0
);
205 /* set configuration for RCS2# */
206 mem_stcfg
|= TS_MASK
;
207 mem_stcfg
&= ~TCSOE_MASK
;
208 mem_stcfg
&= ~TOECS_MASK
;
209 mem_stcfg
|= SBC_IDE_MDMA0_TCSOE
| SBC_IDE_MDMA0_TOECS
;
217 if (ide_config_drive_speed(drive
, speed
))
220 au_writel(mem_sttime
,MEM_STTIME2
);
221 au_writel(mem_stcfg
,MEM_STCFG2
);
227 * Multi-Word DMA + DbDMA functions
230 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
232 static int auide_build_sglist(ide_drive_t
*drive
, struct request
*rq
)
234 ide_hwif_t
*hwif
= drive
->hwif
;
235 _auide_hwif
*ahwif
= (_auide_hwif
*)hwif
->hwif_data
;
236 struct scatterlist
*sg
= hwif
->sg_table
;
238 ide_map_sg(drive
, rq
);
240 if (rq_data_dir(rq
) == READ
)
241 hwif
->sg_dma_direction
= DMA_FROM_DEVICE
;
243 hwif
->sg_dma_direction
= DMA_TO_DEVICE
;
245 return dma_map_sg(ahwif
->dev
, sg
, hwif
->sg_nents
,
246 hwif
->sg_dma_direction
);
249 static int auide_build_dmatable(ide_drive_t
*drive
)
251 int i
, iswrite
, count
= 0;
252 ide_hwif_t
*hwif
= HWIF(drive
);
254 struct request
*rq
= HWGROUP(drive
)->rq
;
256 _auide_hwif
*ahwif
= (_auide_hwif
*)hwif
->hwif_data
;
257 struct scatterlist
*sg
;
259 iswrite
= (rq_data_dir(rq
) == WRITE
);
260 /* Save for interrupt context */
261 ahwif
->drive
= drive
;
264 hwif
->sg_nents
= i
= auide_build_sglist(drive
, rq
);
269 /* fill the descriptors */
271 while (i
&& sg_dma_len(sg
)) {
275 cur_addr
= sg_dma_address(sg
);
276 cur_len
= sg_dma_len(sg
);
279 u32 flags
= DDMA_FLAGS_NOIE
;
280 unsigned int tc
= (cur_len
< 0xfe00)? cur_len
: 0xfe00;
282 if (++count
>= PRD_ENTRIES
) {
283 printk(KERN_WARNING
"%s: DMA table too small\n",
285 goto use_pio_instead
;
288 /* Lets enable intr for the last descriptor only */
290 flags
= DDMA_FLAGS_IE
;
292 flags
= DDMA_FLAGS_NOIE
;
295 if(!put_source_flags(ahwif
->tx_chan
,
296 (void*)(page_address(sg
->page
)
299 printk(KERN_ERR
"%s failed %d\n",
300 __FUNCTION__
, __LINE__
);
304 if(!put_dest_flags(ahwif
->rx_chan
,
305 (void*)(page_address(sg
->page
)
308 printk(KERN_ERR
"%s failed %d\n",
309 __FUNCTION__
, __LINE__
);
324 dma_unmap_sg(ahwif
->dev
,
327 hwif
->sg_dma_direction
);
329 return 0; /* revert to PIO for this request */
332 static int auide_dma_end(ide_drive_t
*drive
)
334 ide_hwif_t
*hwif
= HWIF(drive
);
335 _auide_hwif
*ahwif
= (_auide_hwif
*)hwif
->hwif_data
;
337 if (hwif
->sg_nents
) {
338 dma_unmap_sg(ahwif
->dev
, hwif
->sg_table
, hwif
->sg_nents
,
339 hwif
->sg_dma_direction
);
346 static void auide_dma_start(ide_drive_t
*drive
)
351 static void auide_dma_exec_cmd(ide_drive_t
*drive
, u8 command
)
353 /* issue cmd to drive */
354 ide_execute_command(drive
, command
, &ide_dma_intr
,
358 static int auide_dma_setup(ide_drive_t
*drive
)
360 struct request
*rq
= HWGROUP(drive
)->rq
;
362 if (!auide_build_dmatable(drive
)) {
363 ide_map_sg(drive
, rq
);
367 drive
->waiting_for_dma
= 1;
371 static int auide_dma_check(ide_drive_t
*drive
)
373 u8 speed
= ide_max_dma_mode(drive
);
375 if( dbdma_init_done
== 0 ){
376 auide_hwif
.white_list
= ide_in_drive_list(drive
->id
,
378 auide_hwif
.black_list
= ide_in_drive_list(drive
->id
,
380 auide_hwif
.drive
= drive
;
381 auide_ddma_init(&auide_hwif
);
385 /* Is the drive in our DMA black list? */
387 if ( auide_hwif
.black_list
) {
388 drive
->using_dma
= 0;
390 /* Borrowed the warning message from ide-dma.c */
392 printk(KERN_WARNING
"%s: Disabling DMA for %s (blacklisted)\n",
393 drive
->name
, drive
->id
->model
);
396 drive
->using_dma
= 1;
398 if (drive
->autodma
&& (speed
& XFER_MODE
) != XFER_PIO
)
404 static int auide_dma_test_irq(ide_drive_t
*drive
)
406 if (drive
->waiting_for_dma
== 0)
407 printk(KERN_WARNING
"%s: ide_dma_test_irq \
408 called while not waiting\n", drive
->name
);
410 /* If dbdma didn't execute the STOP command yet, the
411 * active bit is still set
413 drive
->waiting_for_dma
++;
414 if (drive
->waiting_for_dma
>= DMA_WAIT_TIMEOUT
) {
415 printk(KERN_WARNING
"%s: timeout waiting for ddma to \
416 complete\n", drive
->name
);
423 static void auide_dma_host_on(ide_drive_t
*drive
)
427 static int auide_dma_on(ide_drive_t
*drive
)
429 drive
->using_dma
= 1;
434 static void auide_dma_host_off(ide_drive_t
*drive
)
438 static void auide_dma_off_quietly(ide_drive_t
*drive
)
440 drive
->using_dma
= 0;
443 static void auide_dma_lost_irq(ide_drive_t
*drive
)
445 printk(KERN_ERR
"%s: IRQ lost\n", drive
->name
);
448 static void auide_ddma_tx_callback(int irq
, void *param
)
450 _auide_hwif
*ahwif
= (_auide_hwif
*)param
;
451 ahwif
->drive
->waiting_for_dma
= 0;
454 static void auide_ddma_rx_callback(int irq
, void *param
)
456 _auide_hwif
*ahwif
= (_auide_hwif
*)param
;
457 ahwif
->drive
->waiting_for_dma
= 0;
460 #endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
462 static void auide_init_dbdma_dev(dbdev_tab_t
*dev
, u32 dev_id
, u32 tsize
, u32 devwidth
, u32 flags
)
464 dev
->dev_id
= dev_id
;
465 dev
->dev_physaddr
= (u32
)AU1XXX_ATA_PHYS_ADDR
;
466 dev
->dev_intlevel
= 0;
467 dev
->dev_intpolarity
= 0;
468 dev
->dev_tsize
= tsize
;
469 dev
->dev_devwidth
= devwidth
;
470 dev
->dev_flags
= flags
;
473 #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
475 static void auide_dma_timeout(ide_drive_t
*drive
)
477 ide_hwif_t
*hwif
= HWIF(drive
);
479 printk(KERN_ERR
"%s: DMA timeout occurred: ", drive
->name
);
481 if (hwif
->ide_dma_test_irq(drive
))
484 hwif
->ide_dma_end(drive
);
488 static int auide_ddma_init(_auide_hwif
*auide
) {
490 dbdev_tab_t source_dev_tab
, target_dev_tab
;
491 u32 dev_id
, tsize
, devwidth
, flags
;
492 ide_hwif_t
*hwif
= auide
->hwif
;
494 dev_id
= AU1XXX_ATA_DDMA_REQ
;
496 if (auide
->white_list
|| auide
->black_list
) {
504 printk(KERN_ERR
"au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif
.drive
->id
->model
);
505 printk(KERN_ERR
" please read 'Documentation/mips/AU1xxx_IDE.README'");
508 #ifdef IDE_AU1XXX_BURSTMODE
509 flags
= DEV_FLAGS_SYNC
| DEV_FLAGS_BURSTABLE
;
511 flags
= DEV_FLAGS_SYNC
;
514 /* setup dev_tab for tx channel */
515 auide_init_dbdma_dev( &source_dev_tab
,
517 tsize
, devwidth
, DEV_FLAGS_OUT
| flags
);
518 auide
->tx_dev_id
= au1xxx_ddma_add_device( &source_dev_tab
);
520 auide_init_dbdma_dev( &source_dev_tab
,
522 tsize
, devwidth
, DEV_FLAGS_IN
| flags
);
523 auide
->rx_dev_id
= au1xxx_ddma_add_device( &source_dev_tab
);
525 /* We also need to add a target device for the DMA */
526 auide_init_dbdma_dev( &target_dev_tab
,
527 (u32
)DSCR_CMD0_ALWAYS
,
528 tsize
, devwidth
, DEV_FLAGS_ANYUSE
);
529 auide
->target_dev_id
= au1xxx_ddma_add_device(&target_dev_tab
);
531 /* Get a channel for TX */
532 auide
->tx_chan
= au1xxx_dbdma_chan_alloc(auide
->target_dev_id
,
534 auide_ddma_tx_callback
,
537 /* Get a channel for RX */
538 auide
->rx_chan
= au1xxx_dbdma_chan_alloc(auide
->rx_dev_id
,
539 auide
->target_dev_id
,
540 auide_ddma_rx_callback
,
543 auide
->tx_desc_head
= (void*)au1xxx_dbdma_ring_alloc(auide
->tx_chan
,
545 auide
->rx_desc_head
= (void*)au1xxx_dbdma_ring_alloc(auide
->rx_chan
,
548 hwif
->dmatable_cpu
= dma_alloc_coherent(auide
->dev
,
549 PRD_ENTRIES
* PRD_BYTES
, /* 1 Page */
550 &hwif
->dmatable_dma
, GFP_KERNEL
);
552 au1xxx_dbdma_start( auide
->tx_chan
);
553 au1xxx_dbdma_start( auide
->rx_chan
);
559 static int auide_ddma_init( _auide_hwif
*auide
)
561 dbdev_tab_t source_dev_tab
;
564 #ifdef IDE_AU1XXX_BURSTMODE
565 flags
= DEV_FLAGS_SYNC
| DEV_FLAGS_BURSTABLE
;
567 flags
= DEV_FLAGS_SYNC
;
570 /* setup dev_tab for tx channel */
571 auide_init_dbdma_dev( &source_dev_tab
,
572 (u32
)DSCR_CMD0_ALWAYS
,
573 8, 32, DEV_FLAGS_OUT
| flags
);
574 auide
->tx_dev_id
= au1xxx_ddma_add_device( &source_dev_tab
);
576 auide_init_dbdma_dev( &source_dev_tab
,
577 (u32
)DSCR_CMD0_ALWAYS
,
578 8, 32, DEV_FLAGS_IN
| flags
);
579 auide
->rx_dev_id
= au1xxx_ddma_add_device( &source_dev_tab
);
581 /* Get a channel for TX */
582 auide
->tx_chan
= au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS
,
587 /* Get a channel for RX */
588 auide
->rx_chan
= au1xxx_dbdma_chan_alloc(auide
->rx_dev_id
,
593 auide
->tx_desc_head
= (void*)au1xxx_dbdma_ring_alloc(auide
->tx_chan
,
595 auide
->rx_desc_head
= (void*)au1xxx_dbdma_ring_alloc(auide
->rx_chan
,
598 au1xxx_dbdma_start( auide
->tx_chan
);
599 au1xxx_dbdma_start( auide
->rx_chan
);
605 static void auide_setup_ports(hw_regs_t
*hw
, _auide_hwif
*ahwif
)
608 unsigned long *ata_regs
= hw
->io_ports
;
611 for (i
= 0; i
< IDE_CONTROL_OFFSET
; i
++) {
612 *ata_regs
++ = ahwif
->regbase
+ (i
<< AU1XXX_ATA_REG_OFFSET
);
615 /* set the Alternative Status register */
616 *ata_regs
= ahwif
->regbase
+ (14 << AU1XXX_ATA_REG_OFFSET
);
619 static int au_ide_probe(struct device
*dev
)
621 struct platform_device
*pdev
= to_platform_device(dev
);
622 _auide_hwif
*ahwif
= &auide_hwif
;
624 struct resource
*res
;
628 #if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
629 char *mode
= "MWDMA2";
630 #elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
631 char *mode
= "PIO+DDMA(offload)";
634 memset(&auide_hwif
, 0, sizeof(_auide_hwif
));
638 ahwif
->irq
= platform_get_irq(pdev
, 0);
640 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
643 pr_debug("%s %d: no base address\n", DRV_NAME
, pdev
->id
);
647 if (ahwif
->irq
< 0) {
648 pr_debug("%s %d: no IRQ\n", DRV_NAME
, pdev
->id
);
653 if (!request_mem_region (res
->start
, res
->end
-res
->start
, pdev
->name
)) {
654 pr_debug("%s: request_mem_region failed\n", DRV_NAME
);
659 ahwif
->regbase
= (u32
)ioremap(res
->start
, res
->end
-res
->start
);
660 if (ahwif
->regbase
== 0) {
665 /* FIXME: This might possibly break PCMCIA IDE devices */
667 hwif
= &ide_hwifs
[pdev
->id
];
669 hwif
->irq
= hw
->irq
= ahwif
->irq
;
670 hwif
->chipset
= ide_au1xxx
;
672 auide_setup_ports(hw
, ahwif
);
673 memcpy(hwif
->io_ports
, hw
->io_ports
, sizeof(hwif
->io_ports
));
675 hwif
->ultra_mask
= 0x0; /* Disable Ultra DMA */
676 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
677 hwif
->mwdma_mask
= 0x07; /* Multimode-2 DMA */
678 hwif
->swdma_mask
= 0x00;
680 hwif
->mwdma_mask
= 0x0;
681 hwif
->swdma_mask
= 0x0;
684 hwif
->pio_mask
= ATA_PIO4
;
687 hwif
->drives
[0].unmask
= 1;
688 hwif
->drives
[1].unmask
= 1;
690 /* hold should be on in all cases */
695 /* If the user has selected DDMA assisted copies,
696 then set up a few local I/O function entry points
699 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
700 hwif
->INSW
= auide_insw
;
701 hwif
->OUTSW
= auide_outsw
;
704 hwif
->set_pio_mode
= &au1xxx_set_pio_mode
;
705 hwif
->speedproc
= &auide_tune_chipset
;
707 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
708 hwif
->dma_off_quietly
= &auide_dma_off_quietly
;
709 hwif
->dma_timeout
= &auide_dma_timeout
;
711 hwif
->ide_dma_check
= &auide_dma_check
;
712 hwif
->dma_exec_cmd
= &auide_dma_exec_cmd
;
713 hwif
->dma_start
= &auide_dma_start
;
714 hwif
->ide_dma_end
= &auide_dma_end
;
715 hwif
->dma_setup
= &auide_dma_setup
;
716 hwif
->ide_dma_test_irq
= &auide_dma_test_irq
;
717 hwif
->dma_host_off
= &auide_dma_host_off
;
718 hwif
->dma_host_on
= &auide_dma_host_on
;
719 hwif
->dma_lost_irq
= &auide_dma_lost_irq
;
720 hwif
->ide_dma_on
= &auide_dma_on
;
723 hwif
->drives
[0].autodma
= hwif
->autodma
;
724 hwif
->drives
[1].autodma
= hwif
->autodma
;
727 #else /* !CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
731 hwif
->select_data
= 0; /* no chipset-specific code */
732 hwif
->config_data
= 0; /* no chipset-specific code */
734 hwif
->drives
[0].autodma
= 0;
735 hwif
->drives
[0].autotune
= 1; /* 1=autotune, 2=noautotune, 0=default */
737 hwif
->drives
[0].no_io_32bit
= 1;
739 auide_hwif
.hwif
= hwif
;
740 hwif
->hwif_data
= &auide_hwif
;
742 #ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
743 auide_ddma_init(&auide_hwif
);
747 probe_hwif_init(hwif
);
749 ide_proc_register_port(hwif
);
751 dev_set_drvdata(dev
, hwif
);
753 printk(KERN_INFO
"Au1xxx IDE(builtin) configured for %s\n", mode
);
759 static int au_ide_remove(struct device
*dev
)
761 struct platform_device
*pdev
= to_platform_device(dev
);
762 struct resource
*res
;
763 ide_hwif_t
*hwif
= dev_get_drvdata(dev
);
764 _auide_hwif
*ahwif
= &auide_hwif
;
766 ide_unregister(hwif
- ide_hwifs
);
768 iounmap((void *)ahwif
->regbase
);
770 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
771 release_mem_region(res
->start
, res
->end
- res
->start
);
776 static struct device_driver au1200_ide_driver
= {
777 .name
= "au1200-ide",
778 .bus
= &platform_bus_type
,
779 .probe
= au_ide_probe
,
780 .remove
= au_ide_remove
,
783 static int __init
au_ide_init(void)
785 return driver_register(&au1200_ide_driver
);
788 static void __exit
au_ide_exit(void)
790 driver_unregister(&au1200_ide_driver
);
793 MODULE_LICENSE("GPL");
794 MODULE_DESCRIPTION("AU1200 IDE driver");
796 module_init(au_ide_init
);
797 module_exit(au_ide_exit
);