blob: 1c4732958fb2dac81f66bc49dc843785bf34991a [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 default:
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200202 return;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100203 }
Bartlomiej Zolnierkiewicza523a172007-02-17 02:40:23 +0100204
Jordan Crouse8f29e652005-12-15 02:17:46 +0100205 au_writel(mem_sttime,MEM_STTIME2);
206 au_writel(mem_stcfg,MEM_STCFG2);
Pete Popov26a940e2005-09-15 08:03:12 +0000207}
208
209/*
210 * Multi-Word DMA + DbDMA functions
211 */
Pete Popov26a940e2005-09-15 08:03:12 +0000212
Jordan Crouse8f29e652005-12-15 02:17:46 +0100213#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Pete Popov26a940e2005-09-15 08:03:12 +0000214
215static int auide_build_sglist(ide_drive_t *drive, struct request *rq)
216{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100217 ide_hwif_t *hwif = drive->hwif;
218 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
219 struct scatterlist *sg = hwif->sg_table;
Pete Popov26a940e2005-09-15 08:03:12 +0000220
Jordan Crouse8f29e652005-12-15 02:17:46 +0100221 ide_map_sg(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000222
Jordan Crouse8f29e652005-12-15 02:17:46 +0100223 if (rq_data_dir(rq) == READ)
224 hwif->sg_dma_direction = DMA_FROM_DEVICE;
225 else
226 hwif->sg_dma_direction = DMA_TO_DEVICE;
Pete Popov26a940e2005-09-15 08:03:12 +0000227
Jordan Crouse8f29e652005-12-15 02:17:46 +0100228 return dma_map_sg(ahwif->dev, sg, hwif->sg_nents,
229 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000230}
231
232static int auide_build_dmatable(ide_drive_t *drive)
233{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100234 int i, iswrite, count = 0;
235 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000236
Jordan Crouse8f29e652005-12-15 02:17:46 +0100237 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000238
Jordan Crouse8f29e652005-12-15 02:17:46 +0100239 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
240 struct scatterlist *sg;
Pete Popov26a940e2005-09-15 08:03:12 +0000241
Jordan Crouse8f29e652005-12-15 02:17:46 +0100242 iswrite = (rq_data_dir(rq) == WRITE);
243 /* Save for interrupt context */
244 ahwif->drive = drive;
Pete Popov26a940e2005-09-15 08:03:12 +0000245
Jordan Crouse8f29e652005-12-15 02:17:46 +0100246 /* Build sglist */
247 hwif->sg_nents = i = auide_build_sglist(drive, rq);
Pete Popov26a940e2005-09-15 08:03:12 +0000248
Jordan Crouse8f29e652005-12-15 02:17:46 +0100249 if (!i)
250 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000251
Jordan Crouse8f29e652005-12-15 02:17:46 +0100252 /* fill the descriptors */
253 sg = hwif->sg_table;
254 while (i && sg_dma_len(sg)) {
255 u32 cur_addr;
256 u32 cur_len;
Pete Popov26a940e2005-09-15 08:03:12 +0000257
Jordan Crouse8f29e652005-12-15 02:17:46 +0100258 cur_addr = sg_dma_address(sg);
259 cur_len = sg_dma_len(sg);
Pete Popov26a940e2005-09-15 08:03:12 +0000260
Jordan Crouse8f29e652005-12-15 02:17:46 +0100261 while (cur_len) {
262 u32 flags = DDMA_FLAGS_NOIE;
263 unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;
Pete Popov26a940e2005-09-15 08:03:12 +0000264
Jordan Crouse8f29e652005-12-15 02:17:46 +0100265 if (++count >= PRD_ENTRIES) {
266 printk(KERN_WARNING "%s: DMA table too small\n",
267 drive->name);
268 goto use_pio_instead;
269 }
Pete Popov26a940e2005-09-15 08:03:12 +0000270
Jordan Crouse8f29e652005-12-15 02:17:46 +0100271 /* Lets enable intr for the last descriptor only */
272 if (1==i)
273 flags = DDMA_FLAGS_IE;
274 else
275 flags = DDMA_FLAGS_NOIE;
Pete Popov26a940e2005-09-15 08:03:12 +0000276
Jordan Crouse8f29e652005-12-15 02:17:46 +0100277 if (iswrite) {
278 if(!put_source_flags(ahwif->tx_chan,
279 (void*)(page_address(sg->page)
280 + sg->offset),
281 tc, flags)) {
282 printk(KERN_ERR "%s failed %d\n",
283 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000284 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100285 } else
Pete Popov26a940e2005-09-15 08:03:12 +0000286 {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100287 if(!put_dest_flags(ahwif->rx_chan,
288 (void*)(page_address(sg->page)
289 + sg->offset),
290 tc, flags)) {
291 printk(KERN_ERR "%s failed %d\n",
292 __FUNCTION__, __LINE__);
Pete Popov26a940e2005-09-15 08:03:12 +0000293 }
Jordan Crouse8f29e652005-12-15 02:17:46 +0100294 }
Pete Popov26a940e2005-09-15 08:03:12 +0000295
Jordan Crouse8f29e652005-12-15 02:17:46 +0100296 cur_addr += tc;
297 cur_len -= tc;
298 }
Jens Axboe55c16a72007-07-25 08:13:56 +0200299 sg = sg_next(sg);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100300 i--;
301 }
Pete Popov26a940e2005-09-15 08:03:12 +0000302
Jordan Crouse8f29e652005-12-15 02:17:46 +0100303 if (count)
304 return 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000305
Jordan Crouse8f29e652005-12-15 02:17:46 +0100306 use_pio_instead:
307 dma_unmap_sg(ahwif->dev,
308 hwif->sg_table,
309 hwif->sg_nents,
310 hwif->sg_dma_direction);
Pete Popov26a940e2005-09-15 08:03:12 +0000311
Jordan Crouse8f29e652005-12-15 02:17:46 +0100312 return 0; /* revert to PIO for this request */
Pete Popov26a940e2005-09-15 08:03:12 +0000313}
314
315static int auide_dma_end(ide_drive_t *drive)
316{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100317 ide_hwif_t *hwif = HWIF(drive);
318 _auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
Pete Popov26a940e2005-09-15 08:03:12 +0000319
Jordan Crouse8f29e652005-12-15 02:17:46 +0100320 if (hwif->sg_nents) {
321 dma_unmap_sg(ahwif->dev, hwif->sg_table, hwif->sg_nents,
322 hwif->sg_dma_direction);
323 hwif->sg_nents = 0;
324 }
Pete Popov26a940e2005-09-15 08:03:12 +0000325
Jordan Crouse8f29e652005-12-15 02:17:46 +0100326 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000327}
328
329static void auide_dma_start(ide_drive_t *drive )
330{
Pete Popov26a940e2005-09-15 08:03:12 +0000331}
332
Pete Popov26a940e2005-09-15 08:03:12 +0000333
334static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
335{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100336 /* issue cmd to drive */
337 ide_execute_command(drive, command, &ide_dma_intr,
338 (2*WAIT_CMD), NULL);
Pete Popov26a940e2005-09-15 08:03:12 +0000339}
340
341static int auide_dma_setup(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100342{
343 struct request *rq = HWGROUP(drive)->rq;
Pete Popov26a940e2005-09-15 08:03:12 +0000344
Jordan Crouse8f29e652005-12-15 02:17:46 +0100345 if (!auide_build_dmatable(drive)) {
346 ide_map_sg(drive, rq);
347 return 1;
348 }
Pete Popov26a940e2005-09-15 08:03:12 +0000349
Jordan Crouse8f29e652005-12-15 02:17:46 +0100350 drive->waiting_for_dma = 1;
351 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000352}
353
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200354static u8 auide_mdma_filter(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000355{
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200356 /*
357 * FIXME: ->white_list and ->black_list are based on completely bogus
358 * ->ide_dma_check implementation which didn't set neither the host
359 * controller timings nor the device for the desired transfer mode.
360 *
361 * They should be either removed or 0x00 MWDMA mask should be
362 * returned for devices on the ->black_list.
363 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100364
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200365 if (dbdma_init_done == 0) {
Jordan Crouse8f29e652005-12-15 02:17:46 +0100366 auide_hwif.white_list = ide_in_drive_list(drive->id,
367 dma_white_list);
368 auide_hwif.black_list = ide_in_drive_list(drive->id,
369 dma_black_list);
370 auide_hwif.drive = drive;
371 auide_ddma_init(&auide_hwif);
372 dbdma_init_done = 1;
373 }
Pete Popov26a940e2005-09-15 08:03:12 +0000374
Jordan Crouse8f29e652005-12-15 02:17:46 +0100375 /* Is the drive in our DMA black list? */
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200376 if (auide_hwif.black_list)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100377 printk(KERN_WARNING "%s: Disabling DMA for %s (blacklisted)\n",
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200378 drive->name, drive->id->model);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100379
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200380 return drive->hwif->mwdma_mask;
381}
382
383static int auide_dma_check(ide_drive_t *drive)
384{
385 if (ide_tune_dma(drive))
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100386 return 0;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100387
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200388 ide_set_max_pio(drive);
389
Bartlomiej Zolnierkiewicz3608b5d2007-02-17 02:40:26 +0100390 return -1;
Pete Popov26a940e2005-09-15 08:03:12 +0000391}
392
393static int auide_dma_test_irq(ide_drive_t *drive)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100394{
395 if (drive->waiting_for_dma == 0)
396 printk(KERN_WARNING "%s: ide_dma_test_irq \
Pete Popov26a940e2005-09-15 08:03:12 +0000397 called while not waiting\n", drive->name);
398
Jordan Crouse8f29e652005-12-15 02:17:46 +0100399 /* If dbdma didn't execute the STOP command yet, the
400 * active bit is still set
Pete Popov26a940e2005-09-15 08:03:12 +0000401 */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100402 drive->waiting_for_dma++;
403 if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
404 printk(KERN_WARNING "%s: timeout waiting for ddma to \
Pete Popov26a940e2005-09-15 08:03:12 +0000405 complete\n", drive->name);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100406 return 1;
407 }
408 udelay(10);
409 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000410}
411
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100412static void auide_dma_host_on(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000413{
Pete Popov26a940e2005-09-15 08:03:12 +0000414}
415
416static int auide_dma_on(ide_drive_t *drive)
417{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100418 drive->using_dma = 1;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100419
420 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000421}
422
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100423static void auide_dma_host_off(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000424{
Pete Popov26a940e2005-09-15 08:03:12 +0000425}
426
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100427static void auide_dma_off_quietly(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000428{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100429 drive->using_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000430}
431
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200432static void auide_dma_lost_irq(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000433{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100434 printk(KERN_ERR "%s: IRQ lost\n", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000435}
436
Ralf Baechle53e62d32006-09-25 23:32:10 -0700437static void auide_ddma_tx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000438{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100439 _auide_hwif *ahwif = (_auide_hwif*)param;
440 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000441}
442
Ralf Baechle53e62d32006-09-25 23:32:10 -0700443static void auide_ddma_rx_callback(int irq, void *param)
Pete Popov26a940e2005-09-15 08:03:12 +0000444{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100445 _auide_hwif *ahwif = (_auide_hwif*)param;
446 ahwif->drive->waiting_for_dma = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000447}
448
Jordan Crouse8f29e652005-12-15 02:17:46 +0100449#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
450
451static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
452{
453 dev->dev_id = dev_id;
454 dev->dev_physaddr = (u32)AU1XXX_ATA_PHYS_ADDR;
455 dev->dev_intlevel = 0;
456 dev->dev_intpolarity = 0;
457 dev->dev_tsize = tsize;
458 dev->dev_devwidth = devwidth;
459 dev->dev_flags = flags;
460}
461
462#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
463
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200464static void auide_dma_timeout(ide_drive_t *drive)
Pete Popov26a940e2005-09-15 08:03:12 +0000465{
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200466 ide_hwif_t *hwif = HWIF(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000467
Jordan Crouse8f29e652005-12-15 02:17:46 +0100468 printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
Pete Popov26a940e2005-09-15 08:03:12 +0000469
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200470 if (hwif->ide_dma_test_irq(drive))
471 return;
Pete Popov26a940e2005-09-15 08:03:12 +0000472
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200473 hwif->ide_dma_end(drive);
Pete Popov26a940e2005-09-15 08:03:12 +0000474}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100475
Pete Popov26a940e2005-09-15 08:03:12 +0000476
Jordan Crouse8f29e652005-12-15 02:17:46 +0100477static int auide_ddma_init(_auide_hwif *auide) {
478
479 dbdev_tab_t source_dev_tab, target_dev_tab;
480 u32 dev_id, tsize, devwidth, flags;
481 ide_hwif_t *hwif = auide->hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000482
Jordan Crouse8f29e652005-12-15 02:17:46 +0100483 dev_id = AU1XXX_ATA_DDMA_REQ;
484
485 if (auide->white_list || auide->black_list) {
486 tsize = 8;
487 devwidth = 32;
488 }
489 else {
490 tsize = 1;
491 devwidth = 16;
492
493 printk(KERN_ERR "au1xxx-ide: %s is not on ide driver whitelist.\n",auide_hwif.drive->id->model);
494 printk(KERN_ERR " please read 'Documentation/mips/AU1xxx_IDE.README'");
495 }
496
497#ifdef IDE_AU1XXX_BURSTMODE
498 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
499#else
500 flags = DEV_FLAGS_SYNC;
501#endif
502
503 /* setup dev_tab for tx channel */
504 auide_init_dbdma_dev( &source_dev_tab,
505 dev_id,
506 tsize, devwidth, DEV_FLAGS_OUT | flags);
507 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
508
509 auide_init_dbdma_dev( &source_dev_tab,
510 dev_id,
511 tsize, devwidth, DEV_FLAGS_IN | flags);
512 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
513
514 /* We also need to add a target device for the DMA */
515 auide_init_dbdma_dev( &target_dev_tab,
516 (u32)DSCR_CMD0_ALWAYS,
517 tsize, devwidth, DEV_FLAGS_ANYUSE);
518 auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);
519
520 /* Get a channel for TX */
521 auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
522 auide->tx_dev_id,
523 auide_ddma_tx_callback,
524 (void*)auide);
525
526 /* Get a channel for RX */
527 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
528 auide->target_dev_id,
529 auide_ddma_rx_callback,
530 (void*)auide);
531
532 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
533 NUM_DESCRIPTORS);
534 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
535 NUM_DESCRIPTORS);
536
537 hwif->dmatable_cpu = dma_alloc_coherent(auide->dev,
538 PRD_ENTRIES * PRD_BYTES, /* 1 Page */
539 &hwif->dmatable_dma, GFP_KERNEL);
540
541 au1xxx_dbdma_start( auide->tx_chan );
542 au1xxx_dbdma_start( auide->rx_chan );
543
544 return 0;
545}
546#else
547
Pete Popov26a940e2005-09-15 08:03:12 +0000548static int auide_ddma_init( _auide_hwif *auide )
549{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100550 dbdev_tab_t source_dev_tab;
551 int flags;
Pete Popov26a940e2005-09-15 08:03:12 +0000552
Jordan Crouse8f29e652005-12-15 02:17:46 +0100553#ifdef IDE_AU1XXX_BURSTMODE
554 flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
Pete Popov26a940e2005-09-15 08:03:12 +0000555#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100556 flags = DEV_FLAGS_SYNC;
Pete Popov26a940e2005-09-15 08:03:12 +0000557#endif
558
Jordan Crouse8f29e652005-12-15 02:17:46 +0100559 /* setup dev_tab for tx channel */
560 auide_init_dbdma_dev( &source_dev_tab,
561 (u32)DSCR_CMD0_ALWAYS,
562 8, 32, DEV_FLAGS_OUT | flags);
563 auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
Pete Popov26a940e2005-09-15 08:03:12 +0000564
Jordan Crouse8f29e652005-12-15 02:17:46 +0100565 auide_init_dbdma_dev( &source_dev_tab,
566 (u32)DSCR_CMD0_ALWAYS,
567 8, 32, DEV_FLAGS_IN | flags);
568 auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
569
570 /* Get a channel for TX */
571 auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
572 auide->tx_dev_id,
573 NULL,
574 (void*)auide);
575
576 /* Get a channel for RX */
577 auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
578 DSCR_CMD0_ALWAYS,
579 NULL,
580 (void*)auide);
581
582 auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
583 NUM_DESCRIPTORS);
584 auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
585 NUM_DESCRIPTORS);
586
587 au1xxx_dbdma_start( auide->tx_chan );
588 au1xxx_dbdma_start( auide->rx_chan );
589
590 return 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000591}
Jordan Crouse8f29e652005-12-15 02:17:46 +0100592#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000593
594static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
595{
Jordan Crouse8f29e652005-12-15 02:17:46 +0100596 int i;
597 unsigned long *ata_regs = hw->io_ports;
Pete Popov26a940e2005-09-15 08:03:12 +0000598
Jordan Crouse8f29e652005-12-15 02:17:46 +0100599 /* FIXME? */
600 for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
601 *ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
602 }
Pete Popov26a940e2005-09-15 08:03:12 +0000603
Jordan Crouse8f29e652005-12-15 02:17:46 +0100604 /* set the Alternative Status register */
605 *ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
Pete Popov26a940e2005-09-15 08:03:12 +0000606}
607
608static int au_ide_probe(struct device *dev)
609{
610 struct platform_device *pdev = to_platform_device(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100611 _auide_hwif *ahwif = &auide_hwif;
612 ide_hwif_t *hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000613 struct resource *res;
Ralf Baechle1918fd62007-03-17 21:57:24 +0100614 hw_regs_t *hw;
Pete Popov26a940e2005-09-15 08:03:12 +0000615 int ret = 0;
616
617#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100618 char *mode = "MWDMA2";
Pete Popov26a940e2005-09-15 08:03:12 +0000619#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
Jordan Crouse8f29e652005-12-15 02:17:46 +0100620 char *mode = "PIO+DDMA(offload)";
Pete Popov26a940e2005-09-15 08:03:12 +0000621#endif
622
Jordan Crouse8f29e652005-12-15 02:17:46 +0100623 memset(&auide_hwif, 0, sizeof(_auide_hwif));
624 auide_hwif.dev = 0;
Pete Popov26a940e2005-09-15 08:03:12 +0000625
626 ahwif->dev = dev;
627 ahwif->irq = platform_get_irq(pdev, 0);
628
629 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
630
631 if (res == NULL) {
632 pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
633 ret = -ENODEV;
634 goto out;
635 }
David Vrabel48944732006-01-19 17:56:29 +0000636 if (ahwif->irq < 0) {
637 pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
638 ret = -ENODEV;
639 goto out;
640 }
Pete Popov26a940e2005-09-15 08:03:12 +0000641
Jordan Crouse8f29e652005-12-15 02:17:46 +0100642 if (!request_mem_region (res->start, res->end-res->start, pdev->name)) {
Pete Popov26a940e2005-09-15 08:03:12 +0000643 pr_debug("%s: request_mem_region failed\n", DRV_NAME);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100644 ret = -EBUSY;
Pete Popov26a940e2005-09-15 08:03:12 +0000645 goto out;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100646 }
Pete Popov26a940e2005-09-15 08:03:12 +0000647
648 ahwif->regbase = (u32)ioremap(res->start, res->end-res->start);
649 if (ahwif->regbase == 0) {
650 ret = -ENOMEM;
651 goto out;
652 }
653
Jordan Crouse8f29e652005-12-15 02:17:46 +0100654 /* FIXME: This might possibly break PCMCIA IDE devices */
Pete Popov26a940e2005-09-15 08:03:12 +0000655
Jordan Crouse8f29e652005-12-15 02:17:46 +0100656 hwif = &ide_hwifs[pdev->id];
Ralf Baechle1918fd62007-03-17 21:57:24 +0100657 hw = &hwif->hw;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100658 hwif->irq = hw->irq = ahwif->irq;
659 hwif->chipset = ide_au1xxx;
660
661 auide_setup_ports(hw, ahwif);
Pete Popov26a940e2005-09-15 08:03:12 +0000662 memcpy(hwif->io_ports, hw->io_ports, sizeof(hwif->io_ports));
663
Jordan Crouse8f29e652005-12-15 02:17:46 +0100664 hwif->ultra_mask = 0x0; /* Disable Ultra DMA */
Pete Popov26a940e2005-09-15 08:03:12 +0000665#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Jordan Crouse8f29e652005-12-15 02:17:46 +0100666 hwif->mwdma_mask = 0x07; /* Multimode-2 DMA */
667 hwif->swdma_mask = 0x00;
Pete Popov26a940e2005-09-15 08:03:12 +0000668#else
Jordan Crouse8f29e652005-12-15 02:17:46 +0100669 hwif->mwdma_mask = 0x0;
670 hwif->swdma_mask = 0x0;
Pete Popov26a940e2005-09-15 08:03:12 +0000671#endif
Pete Popov26a940e2005-09-15 08:03:12 +0000672
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200673 hwif->pio_mask = ATA_PIO4;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200674 hwif->host_flags = IDE_HFLAG_POST_SET_MODE;
Bartlomiej Zolnierkiewicz4099d142007-07-20 01:11:59 +0200675
Jordan Crouse8f29e652005-12-15 02:17:46 +0100676 hwif->noprobe = 0;
677 hwif->drives[0].unmask = 1;
678 hwif->drives[1].unmask = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000679
Jordan Crouse8f29e652005-12-15 02:17:46 +0100680 /* hold should be on in all cases */
681 hwif->hold = 1;
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100682
683 hwif->mmio = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000684
Jordan Crouse8f29e652005-12-15 02:17:46 +0100685 /* If the user has selected DDMA assisted copies,
686 then set up a few local I/O function entry points
687 */
688
689#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
690 hwif->INSW = auide_insw;
691 hwif->OUTSW = auide_outsw;
692#endif
693
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200694 hwif->set_pio_mode = &au1xxx_set_pio_mode;
Bartlomiej Zolnierkiewicz88b2b322007-10-13 17:47:51 +0200695 hwif->set_dma_mode = &auide_set_dma_mode;
Pete Popov26a940e2005-09-15 08:03:12 +0000696
697#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100698 hwif->dma_off_quietly = &auide_dma_off_quietly;
Sergei Shtylyovc283f5d2007-07-09 23:17:54 +0200699 hwif->dma_timeout = &auide_dma_timeout;
Pete Popov26a940e2005-09-15 08:03:12 +0000700
Bartlomiej Zolnierkiewicz8446f652007-10-16 22:29:54 +0200701 hwif->mdma_filter = &auide_mdma_filter;
702
Jordan Crouse8f29e652005-12-15 02:17:46 +0100703 hwif->ide_dma_check = &auide_dma_check;
704 hwif->dma_exec_cmd = &auide_dma_exec_cmd;
705 hwif->dma_start = &auide_dma_start;
706 hwif->ide_dma_end = &auide_dma_end;
707 hwif->dma_setup = &auide_dma_setup;
708 hwif->ide_dma_test_irq = &auide_dma_test_irq;
Bartlomiej Zolnierkiewicz7469aaf2007-02-17 02:40:26 +0100709 hwif->dma_host_off = &auide_dma_host_off;
Bartlomiej Zolnierkiewiczccf35282007-02-17 02:40:26 +0100710 hwif->dma_host_on = &auide_dma_host_on;
Sergei Shtylyov841d2a92007-07-09 23:17:54 +0200711 hwif->dma_lost_irq = &auide_dma_lost_irq;
Jordan Crouse8f29e652005-12-15 02:17:46 +0100712 hwif->ide_dma_on = &auide_dma_on;
Pete Popov26a940e2005-09-15 08:03:12 +0000713
Jordan Crouse8f29e652005-12-15 02:17:46 +0100714 hwif->autodma = 1;
715 hwif->drives[0].autodma = hwif->autodma;
716 hwif->drives[1].autodma = hwif->autodma;
717 hwif->atapi_dma = 1;
718
Pete Popov26a940e2005-09-15 08:03:12 +0000719#else /* !CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
Jordan Crouse8f29e652005-12-15 02:17:46 +0100720 hwif->autodma = 0;
721 hwif->channel = 0;
722 hwif->hold = 1;
723 hwif->select_data = 0; /* no chipset-specific code */
724 hwif->config_data = 0; /* no chipset-specific code */
Pete Popov26a940e2005-09-15 08:03:12 +0000725
Jordan Crouse8f29e652005-12-15 02:17:46 +0100726 hwif->drives[0].autodma = 0;
727 hwif->drives[0].autotune = 1; /* 1=autotune, 2=noautotune, 0=default */
Pete Popov26a940e2005-09-15 08:03:12 +0000728#endif
Jordan Crouse8f29e652005-12-15 02:17:46 +0100729 hwif->drives[0].no_io_32bit = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000730
Jordan Crouse8f29e652005-12-15 02:17:46 +0100731 auide_hwif.hwif = hwif;
732 hwif->hwif_data = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000733
Jordan Crouse8f29e652005-12-15 02:17:46 +0100734#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA
735 auide_ddma_init(&auide_hwif);
736 dbdma_init_done = 1;
Pete Popov26a940e2005-09-15 08:03:12 +0000737#endif
738
739 probe_hwif_init(hwif);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200740
741 ide_proc_register_port(hwif);
742
Pete Popov26a940e2005-09-15 08:03:12 +0000743 dev_set_drvdata(dev, hwif);
744
Jordan Crouse8f29e652005-12-15 02:17:46 +0100745 printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
Pete Popov26a940e2005-09-15 08:03:12 +0000746
Jordan Crouse8f29e652005-12-15 02:17:46 +0100747 out:
748 return ret;
Pete Popov26a940e2005-09-15 08:03:12 +0000749}
750
751static int au_ide_remove(struct device *dev)
752{
753 struct platform_device *pdev = to_platform_device(dev);
754 struct resource *res;
755 ide_hwif_t *hwif = dev_get_drvdata(dev);
Jordan Crouse8f29e652005-12-15 02:17:46 +0100756 _auide_hwif *ahwif = &auide_hwif;
Pete Popov26a940e2005-09-15 08:03:12 +0000757
758 ide_unregister(hwif - ide_hwifs);
759
760 iounmap((void *)ahwif->regbase);
761
762 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
763 release_mem_region(res->start, res->end - res->start);
764
765 return 0;
766}
767
768static struct device_driver au1200_ide_driver = {
769 .name = "au1200-ide",
770 .bus = &platform_bus_type,
771 .probe = au_ide_probe,
772 .remove = au_ide_remove,
773};
774
775static int __init au_ide_init(void)
776{
777 return driver_register(&au1200_ide_driver);
778}
779
Jordan Crouse8f29e652005-12-15 02:17:46 +0100780static void __exit au_ide_exit(void)
Pete Popov26a940e2005-09-15 08:03:12 +0000781{
782 driver_unregister(&au1200_ide_driver);
783}
784
Pete Popov26a940e2005-09-15 08:03:12 +0000785MODULE_LICENSE("GPL");
786MODULE_DESCRIPTION("AU1200 IDE driver");
787
788module_init(au_ide_init);
789module_exit(au_ide_exit);