au1xxx-ide.c 16.2 KB
Newer Older
P
Pete Popov 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*
 * BRIEF MODULE DESCRIPTION
 * AMD Alchemy Au1xxx IDE interface routines over the Static Bus
 *
 * Copyright (c) 2003-2005 AMD, Personal Connectivity Solutions
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License as published by the Free Software
 * Foundation; either version 2 of the License, or (at your option) any later
 * version.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * Note: for more information, please refer "AMD Alchemy Au1200/Au1550 IDE
 *       Interface and Linux Device Driver" Application Note.
 */
#include <linux/types.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/delay.h>
J
Jordan Crouse 已提交
34
#include <linux/platform_device.h>
P
Pete Popov 已提交
35 36
#include <linux/init.h>
#include <linux/ide.h>
S
Sergei Shtylyov 已提交
37
#include <linux/scatterlist.h>
P
Pete Popov 已提交
38 39 40 41 42 43

#include <asm/mach-au1x00/au1xxx.h>
#include <asm/mach-au1x00/au1xxx_dbdma.h>
#include <asm/mach-au1x00/au1xxx_ide.h>

#define DRV_NAME	"au1200-ide"
J
Jordan Crouse 已提交
44
#define DRV_AUTHOR	"Enrico Walther <enrico.walther@amd.com> / Pete Popov <ppopov@embeddedalley.com>"
P
Pete Popov 已提交
45

J
Jordan Crouse 已提交
46 47
/* enable the burstmode in the dbdma */
#define IDE_AU1XXX_BURSTMODE	1
P
Pete Popov 已提交
48

J
Jordan Crouse 已提交
49
static _auide_hwif auide_hwif;
P
Pete Popov 已提交
50

51 52
static int auide_ddma_init(_auide_hwif *auide);

P
Pete Popov 已提交
53 54
#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)

J
Jordan Crouse 已提交
55
void auide_insw(unsigned long port, void *addr, u32 count)
P
Pete Popov 已提交
56
{
J
Jordan Crouse 已提交
57 58 59
	_auide_hwif *ahwif = &auide_hwif;
	chan_tab_t *ctp;
	au1x_ddma_desc_t *dp;
P
Pete Popov 已提交
60

J
Jordan Crouse 已提交
61 62
	if(!put_dest_flags(ahwif->rx_chan, (void*)addr, count << 1, 
			   DDMA_FLAGS_NOIE)) {
63
		printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
J
Jordan Crouse 已提交
64 65 66 67 68 69 70
		return;
	}
	ctp = *((chan_tab_t **)ahwif->rx_chan);
	dp = ctp->cur_ptr;
	while (dp->dscr_cmd0 & DSCR_CMD0_V)
		;
	ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
P
Pete Popov 已提交
71 72
}

J
Jordan Crouse 已提交
73
void auide_outsw(unsigned long port, void *addr, u32 count)
P
Pete Popov 已提交
74
{
J
Jordan Crouse 已提交
75 76 77
	_auide_hwif *ahwif = &auide_hwif;
	chan_tab_t *ctp;
	au1x_ddma_desc_t *dp;
P
Pete Popov 已提交
78

J
Jordan Crouse 已提交
79 80
	if(!put_source_flags(ahwif->tx_chan, (void*)addr,
			     count << 1, DDMA_FLAGS_NOIE)) {
81
		printk(KERN_ERR "%s failed %d\n", __func__, __LINE__);
J
Jordan Crouse 已提交
82 83 84 85 86 87 88
		return;
	}
	ctp = *((chan_tab_t **)ahwif->tx_chan);
	dp = ctp->cur_ptr;
	while (dp->dscr_cmd0 & DSCR_CMD0_V)
		;
	ctp->cur_ptr = au1xxx_ddma_get_nextptr_virt(dp);
P
Pete Popov 已提交
89 90 91 92
}

#endif

93
static void au1xxx_set_pio_mode(ide_drive_t *drive, const u8 pio)
P
Pete Popov 已提交
94
{
95
	int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
J
Jordan Crouse 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152

	/* set pio mode! */
	switch(pio) {
	case 0:
		mem_sttime = SBC_IDE_TIMING(PIO0);

		/* set configuration for RCS2# */
		mem_stcfg |= TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_PIO0_TCSOE | SBC_IDE_PIO0_TOECS;
		break;

	case 1:
		mem_sttime = SBC_IDE_TIMING(PIO1);

		/* set configuration for RCS2# */
		mem_stcfg |= TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_PIO1_TCSOE | SBC_IDE_PIO1_TOECS;
		break;

	case 2:
		mem_sttime = SBC_IDE_TIMING(PIO2);

		/* set configuration for RCS2# */
		mem_stcfg &= ~TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_PIO2_TCSOE | SBC_IDE_PIO2_TOECS;
		break;

	case 3:
		mem_sttime = SBC_IDE_TIMING(PIO3);

		/* set configuration for RCS2# */
		mem_stcfg &= ~TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_PIO3_TCSOE | SBC_IDE_PIO3_TOECS;

		break;

	case 4:
		mem_sttime = SBC_IDE_TIMING(PIO4);

		/* set configuration for RCS2# */
		mem_stcfg &= ~TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_PIO4_TCSOE | SBC_IDE_PIO4_TOECS;
		break;
	}

	au_writel(mem_sttime,MEM_STTIME2);
	au_writel(mem_stcfg,MEM_STCFG2);
P
Pete Popov 已提交
153 154
}

155
static void auide_set_dma_mode(ide_drive_t *drive, const u8 speed)
P
Pete Popov 已提交
156
{
157
	int mem_sttime = 0, mem_stcfg = au_readl(MEM_STCFG2);
P
Pete Popov 已提交
158

J
Jordan Crouse 已提交
159
	switch(speed) {
P
Pete Popov 已提交
160
#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
J
Jordan Crouse 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
	case XFER_MW_DMA_2:
		mem_sttime = SBC_IDE_TIMING(MDMA2);

		/* set configuration for RCS2# */
		mem_stcfg &= ~TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_MDMA2_TCSOE | SBC_IDE_MDMA2_TOECS;

		break;
	case XFER_MW_DMA_1:
		mem_sttime = SBC_IDE_TIMING(MDMA1);

		/* set configuration for RCS2# */
		mem_stcfg &= ~TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_MDMA1_TCSOE | SBC_IDE_MDMA1_TOECS;

		break;
	case XFER_MW_DMA_0:
		mem_sttime = SBC_IDE_TIMING(MDMA0);

		/* set configuration for RCS2# */
		mem_stcfg |= TS_MASK;
		mem_stcfg &= ~TCSOE_MASK;
		mem_stcfg &= ~TOECS_MASK;
		mem_stcfg |= SBC_IDE_MDMA0_TCSOE | SBC_IDE_MDMA0_TOECS;

		break;
P
Pete Popov 已提交
191
#endif
J
Jordan Crouse 已提交
192
	}
193

J
Jordan Crouse 已提交
194 195
	au_writel(mem_sttime,MEM_STTIME2);
	au_writel(mem_stcfg,MEM_STCFG2);
P
Pete Popov 已提交
196 197 198 199 200 201
}

/*
 * Multi-Word DMA + DbDMA functions
 */

J
Jordan Crouse 已提交
202
#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
P
Pete Popov 已提交
203 204
static int auide_build_dmatable(ide_drive_t *drive)
{
J
Jordan Crouse 已提交
205 206 207 208 209 210 211 212 213 214 215 216
	int i, iswrite, count = 0;
	ide_hwif_t *hwif = HWIF(drive);

	struct request *rq = HWGROUP(drive)->rq;

	_auide_hwif *ahwif = (_auide_hwif*)hwif->hwif_data;
	struct scatterlist *sg;

	iswrite = (rq_data_dir(rq) == WRITE);
	/* Save for interrupt context */
	ahwif->drive = drive;

217
	hwif->sg_nents = i = ide_build_sglist(drive, rq);
J
Jordan Crouse 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

	if (!i)
		return 0;

	/* fill the descriptors */
	sg = hwif->sg_table;
	while (i && sg_dma_len(sg)) {
		u32 cur_addr;
		u32 cur_len;

		cur_addr = sg_dma_address(sg);
		cur_len = sg_dma_len(sg);

		while (cur_len) {
			u32 flags = DDMA_FLAGS_NOIE;
			unsigned int tc = (cur_len < 0xfe00)? cur_len: 0xfe00;

			if (++count >= PRD_ENTRIES) {
				printk(KERN_WARNING "%s: DMA table too small\n",
				       drive->name);
				goto use_pio_instead;
			}

			/* Lets enable intr for the last descriptor only */
			if (1==i)
				flags = DDMA_FLAGS_IE;
			else
				flags = DDMA_FLAGS_NOIE;

			if (iswrite) {
				if(!put_source_flags(ahwif->tx_chan, 
J
Jens Axboe 已提交
249
						     (void*) sg_virt(sg),
J
Jordan Crouse 已提交
250 251
						     tc, flags)) { 
					printk(KERN_ERR "%s failed %d\n", 
252
					       __func__, __LINE__);
P
Pete Popov 已提交
253
				}
J
Jordan Crouse 已提交
254
			} else 
P
Pete Popov 已提交
255
			{
J
Jordan Crouse 已提交
256
				if(!put_dest_flags(ahwif->rx_chan, 
J
Jens Axboe 已提交
257
						   (void*) sg_virt(sg),
J
Jordan Crouse 已提交
258 259
						   tc, flags)) { 
					printk(KERN_ERR "%s failed %d\n", 
260
					       __func__, __LINE__);
P
Pete Popov 已提交
261
				}
J
Jordan Crouse 已提交
262
			}
P
Pete Popov 已提交
263

J
Jordan Crouse 已提交
264 265 266
			cur_addr += tc;
			cur_len -= tc;
		}
J
Jens Axboe 已提交
267
		sg = sg_next(sg);
J
Jordan Crouse 已提交
268 269
		i--;
	}
P
Pete Popov 已提交
270

J
Jordan Crouse 已提交
271 272
	if (count)
		return 1;
P
Pete Popov 已提交
273

J
Jordan Crouse 已提交
274
 use_pio_instead:
275
	ide_destroy_dmatable(drive);
P
Pete Popov 已提交
276

J
Jordan Crouse 已提交
277
	return 0; /* revert to PIO for this request */
P
Pete Popov 已提交
278 279 280 281
}

static int auide_dma_end(ide_drive_t *drive)
{
J
Jordan Crouse 已提交
282
	ide_hwif_t *hwif = HWIF(drive);
P
Pete Popov 已提交
283

J
Jordan Crouse 已提交
284
	if (hwif->sg_nents) {
285
		ide_destroy_dmatable(drive);
J
Jordan Crouse 已提交
286 287
		hwif->sg_nents = 0;
	}
P
Pete Popov 已提交
288

J
Jordan Crouse 已提交
289
	return 0;
P
Pete Popov 已提交
290 291 292 293 294 295 296 297 298
}

static void auide_dma_start(ide_drive_t *drive )
{
}


static void auide_dma_exec_cmd(ide_drive_t *drive, u8 command)
{
J
Jordan Crouse 已提交
299 300 301
	/* issue cmd to drive */
	ide_execute_command(drive, command, &ide_dma_intr,
			    (2*WAIT_CMD), NULL);
P
Pete Popov 已提交
302 303 304
}

static int auide_dma_setup(ide_drive_t *drive)
J
Jordan Crouse 已提交
305 306
{       	
	struct request *rq = HWGROUP(drive)->rq;
P
Pete Popov 已提交
307

J
Jordan Crouse 已提交
308 309 310 311
	if (!auide_build_dmatable(drive)) {
		ide_map_sg(drive, rq);
		return 1;
	}
P
Pete Popov 已提交
312

J
Jordan Crouse 已提交
313 314
	drive->waiting_for_dma = 1;
	return 0;
P
Pete Popov 已提交
315 316 317
}

static int auide_dma_test_irq(ide_drive_t *drive)
J
Jordan Crouse 已提交
318 319 320
{	
	if (drive->waiting_for_dma == 0)
		printk(KERN_WARNING "%s: ide_dma_test_irq \
P
Pete Popov 已提交
321 322
                                     called while not waiting\n", drive->name);

J
Jordan Crouse 已提交
323 324
	/* If dbdma didn't execute the STOP command yet, the
	 * active bit is still set
P
Pete Popov 已提交
325
	 */
J
Jordan Crouse 已提交
326 327 328
	drive->waiting_for_dma++;
	if (drive->waiting_for_dma >= DMA_WAIT_TIMEOUT) {
		printk(KERN_WARNING "%s: timeout waiting for ddma to \
P
Pete Popov 已提交
329
                                     complete\n", drive->name);
J
Jordan Crouse 已提交
330 331 332 333
		return 1;
	}
	udelay(10);
	return 0;
P
Pete Popov 已提交
334 335
}

336
static void auide_dma_host_set(ide_drive_t *drive, int on)
P
Pete Popov 已提交
337 338 339
{
}

340
static void auide_dma_lost_irq(ide_drive_t *drive)
P
Pete Popov 已提交
341
{
J
Jordan Crouse 已提交
342
	printk(KERN_ERR "%s: IRQ lost\n", drive->name);
P
Pete Popov 已提交
343 344
}

345
static void auide_ddma_tx_callback(int irq, void *param)
P
Pete Popov 已提交
346
{
J
Jordan Crouse 已提交
347 348
	_auide_hwif *ahwif = (_auide_hwif*)param;
	ahwif->drive->waiting_for_dma = 0;
P
Pete Popov 已提交
349 350
}

351
static void auide_ddma_rx_callback(int irq, void *param)
P
Pete Popov 已提交
352
{
J
Jordan Crouse 已提交
353 354 355 356 357
	_auide_hwif *ahwif = (_auide_hwif*)param;
	ahwif->drive->waiting_for_dma = 0;
}

#endif /* end CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA */
P
Pete Popov 已提交
358

J
Jordan Crouse 已提交
359 360 361 362 363 364 365 366 367
static void auide_init_dbdma_dev(dbdev_tab_t *dev, u32 dev_id, u32 tsize, u32 devwidth, u32 flags)
{
	dev->dev_id          = dev_id;
	dev->dev_physaddr    = (u32)AU1XXX_ATA_PHYS_ADDR;
	dev->dev_intlevel    = 0;
	dev->dev_intpolarity = 0;
	dev->dev_tsize       = tsize;
	dev->dev_devwidth    = devwidth;
	dev->dev_flags       = flags;
P
Pete Popov 已提交
368
}
J
Jordan Crouse 已提交
369 370
  
#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
P
Pete Popov 已提交
371

372
static void auide_dma_timeout(ide_drive_t *drive)
P
Pete Popov 已提交
373
{
374
	ide_hwif_t *hwif = HWIF(drive);
P
Pete Popov 已提交
375

J
Jordan Crouse 已提交
376
	printk(KERN_ERR "%s: DMA timeout occurred: ", drive->name);
P
Pete Popov 已提交
377

378 379
	if (hwif->ide_dma_test_irq(drive))
		return;
P
Pete Popov 已提交
380

381
	hwif->ide_dma_end(drive);
P
Pete Popov 已提交
382
}
J
Jordan Crouse 已提交
383
					
P
Pete Popov 已提交
384

J
Jordan Crouse 已提交
385 386 387 388 389
static int auide_ddma_init(_auide_hwif *auide) {
	
	dbdev_tab_t source_dev_tab, target_dev_tab;
	u32 dev_id, tsize, devwidth, flags;
	ide_hwif_t *hwif = auide->hwif;
P
Pete Popov 已提交
390

J
Jordan Crouse 已提交
391
	dev_id   = AU1XXX_ATA_DDMA_REQ;
P
Pete Popov 已提交
392

393 394
	tsize    =  8; /*  1 */
	devwidth = 32; /* 16 */
P
Pete Popov 已提交
395

J
Jordan Crouse 已提交
396 397
#ifdef IDE_AU1XXX_BURSTMODE 
	flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
P
Pete Popov 已提交
398
#else
J
Jordan Crouse 已提交
399
	flags = DEV_FLAGS_SYNC;
P
Pete Popov 已提交
400 401
#endif

J
Jordan Crouse 已提交
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
	/* setup dev_tab for tx channel */
	auide_init_dbdma_dev( &source_dev_tab,
			      dev_id,
			      tsize, devwidth, DEV_FLAGS_OUT | flags);
 	auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );

	auide_init_dbdma_dev( &source_dev_tab,
			      dev_id,
			      tsize, devwidth, DEV_FLAGS_IN | flags);
 	auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
	
	/* We also need to add a target device for the DMA */
	auide_init_dbdma_dev( &target_dev_tab,
			      (u32)DSCR_CMD0_ALWAYS,
			      tsize, devwidth, DEV_FLAGS_ANYUSE);
	auide->target_dev_id = au1xxx_ddma_add_device(&target_dev_tab);	
 
	/* Get a channel for TX */
	auide->tx_chan = au1xxx_dbdma_chan_alloc(auide->target_dev_id,
						 auide->tx_dev_id,
						 auide_ddma_tx_callback,
						 (void*)auide);
 
	/* Get a channel for RX */
	auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
						 auide->target_dev_id,
						 auide_ddma_rx_callback,
						 (void*)auide);

	auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
							     NUM_DESCRIPTORS);
	auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
							     NUM_DESCRIPTORS);
 
436
	hwif->dmatable_cpu = dma_alloc_coherent(hwif->dev,
J
Jordan Crouse 已提交
437 438 439 440 441 442 443 444
						PRD_ENTRIES * PRD_BYTES,        /* 1 Page */
						&hwif->dmatable_dma, GFP_KERNEL);
	
	au1xxx_dbdma_start( auide->tx_chan );
	au1xxx_dbdma_start( auide->rx_chan );
 
	return 0;
} 
P
Pete Popov 已提交
445
#else
J
Jordan Crouse 已提交
446 447 448 449 450
 
static int auide_ddma_init( _auide_hwif *auide )
{
	dbdev_tab_t source_dev_tab;
	int flags;
P
Pete Popov 已提交
451

J
Jordan Crouse 已提交
452 453 454 455
#ifdef IDE_AU1XXX_BURSTMODE 
	flags = DEV_FLAGS_SYNC | DEV_FLAGS_BURSTABLE;
#else
	flags = DEV_FLAGS_SYNC;
P
Pete Popov 已提交
456 457
#endif

J
Jordan Crouse 已提交
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
	/* setup dev_tab for tx channel */
	auide_init_dbdma_dev( &source_dev_tab,
			      (u32)DSCR_CMD0_ALWAYS,
			      8, 32, DEV_FLAGS_OUT | flags);
 	auide->tx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );

	auide_init_dbdma_dev( &source_dev_tab,
			      (u32)DSCR_CMD0_ALWAYS,
			      8, 32, DEV_FLAGS_IN | flags);
 	auide->rx_dev_id = au1xxx_ddma_add_device( &source_dev_tab );
	
	/* Get a channel for TX */
	auide->tx_chan = au1xxx_dbdma_chan_alloc(DSCR_CMD0_ALWAYS,
						 auide->tx_dev_id,
						 NULL,
						 (void*)auide);
 
	/* Get a channel for RX */
	auide->rx_chan = au1xxx_dbdma_chan_alloc(auide->rx_dev_id,
						 DSCR_CMD0_ALWAYS,
						 NULL,
						 (void*)auide);
 
	auide->tx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->tx_chan,
							     NUM_DESCRIPTORS);
	auide->rx_desc_head = (void*)au1xxx_dbdma_ring_alloc(auide->rx_chan,
							     NUM_DESCRIPTORS);
 
	au1xxx_dbdma_start( auide->tx_chan );
	au1xxx_dbdma_start( auide->rx_chan );
 	
	return 0;
P
Pete Popov 已提交
490
}
J
Jordan Crouse 已提交
491
#endif
P
Pete Popov 已提交
492 493 494

static void auide_setup_ports(hw_regs_t *hw, _auide_hwif *ahwif)
{
J
Jordan Crouse 已提交
495 496 497 498 499 500 501 502 503 504
	int i;
	unsigned long *ata_regs = hw->io_ports;

	/* FIXME? */
	for (i = 0; i < IDE_CONTROL_OFFSET; i++) {
		*ata_regs++ = ahwif->regbase + (i << AU1XXX_ATA_REG_OFFSET);
	}

	/* set the Alternative Status register */
	*ata_regs = ahwif->regbase + (14 << AU1XXX_ATA_REG_OFFSET);
P
Pete Popov 已提交
505 506
}

507 508 509 510 511
static const struct ide_port_ops au1xxx_port_ops = {
	.set_pio_mode		= au1xxx_set_pio_mode,
	.set_dma_mode		= auide_set_dma_mode,
};

512
static const struct ide_port_info au1xxx_port_info = {
513
	.port_ops		= &au1xxx_port_ops,
514 515
	.host_flags		= IDE_HFLAG_POST_SET_MODE |
				  IDE_HFLAG_NO_DMA | /* no SFF-style DMA */
516
				  IDE_HFLAG_NO_IO_32BIT |
517 518 519 520 521 522 523
				  IDE_HFLAG_UNMASK_IRQS,
	.pio_mask		= ATA_PIO4,
#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
	.mwdma_mask		= ATA_MWDMA2,
#endif
};

P
Pete Popov 已提交
524 525 526
static int au_ide_probe(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
J
Jordan Crouse 已提交
527 528
	_auide_hwif *ahwif = &auide_hwif;
	ide_hwif_t *hwif;
P
Pete Popov 已提交
529 530
	struct resource *res;
	int ret = 0;
531
	u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
532
	hw_regs_t hw;
P
Pete Popov 已提交
533 534

#if defined(CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA)
J
Jordan Crouse 已提交
535
	char *mode = "MWDMA2";
P
Pete Popov 已提交
536
#elif defined(CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA)
J
Jordan Crouse 已提交
537
	char *mode = "PIO+DDMA(offload)";
P
Pete Popov 已提交
538 539
#endif

J
Jordan Crouse 已提交
540
	memset(&auide_hwif, 0, sizeof(_auide_hwif));
P
Pete Popov 已提交
541 542 543 544 545 546 547
	ahwif->irq = platform_get_irq(pdev, 0);

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);

	if (res == NULL) {
		pr_debug("%s %d: no base address\n", DRV_NAME, pdev->id);
		ret = -ENODEV;
548 549 550 551 552
		goto out;
	}
	if (ahwif->irq < 0) {
		pr_debug("%s %d: no IRQ\n", DRV_NAME, pdev->id);
		ret = -ENODEV;
P
Pete Popov 已提交
553 554 555
		goto out;
	}

556 557
	if (!request_mem_region(res->start, res->end - res->start + 1,
				pdev->name)) {
P
Pete Popov 已提交
558
		pr_debug("%s: request_mem_region failed\n", DRV_NAME);
J
Jordan Crouse 已提交
559
		ret =  -EBUSY;
P
Pete Popov 已提交
560
		goto out;
J
Jordan Crouse 已提交
561
	}
P
Pete Popov 已提交
562

563
	ahwif->regbase = (u32)ioremap(res->start, res->end - res->start + 1);
P
Pete Popov 已提交
564 565 566 567 568
	if (ahwif->regbase == 0) {
		ret = -ENOMEM;
		goto out;
	}

569 570 571 572 573
	hwif = ide_find_port();
	if (hwif == NULL) {
		ret = -ENOENT;
		goto out;
	}
P
Pete Popov 已提交
574

575 576
	memset(&hw, 0, sizeof(hw));
	auide_setup_ports(&hw, ahwif);
577
	hw.irq = ahwif->irq;
578
	hw.dev = dev;
579 580 581
	hw.chipset = ide_au1xxx;

	ide_init_port_hw(hwif, &hw);
P
Pete Popov 已提交
582

583 584
	hwif->dev = dev;

J
Jordan Crouse 已提交
585 586 587 588 589 590 591
	/* If the user has selected DDMA assisted copies,
	   then set up a few local I/O function entry points 
	*/

#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA	
	hwif->INSW                      = auide_insw;
	hwif->OUTSW                     = auide_outsw;
P
Pete Popov 已提交
592 593
#endif
#ifdef CONFIG_BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
594
	hwif->dma_timeout		= &auide_dma_timeout;
595
	hwif->dma_host_set		= &auide_dma_host_set;
J
Jordan Crouse 已提交
596 597 598 599 600
	hwif->dma_exec_cmd              = &auide_dma_exec_cmd;
	hwif->dma_start                 = &auide_dma_start;
	hwif->ide_dma_end               = &auide_dma_end;
	hwif->dma_setup                 = &auide_dma_setup;
	hwif->ide_dma_test_irq          = &auide_dma_test_irq;
601
	hwif->dma_lost_irq		= &auide_dma_lost_irq;
602
#endif
J
Jordan Crouse 已提交
603 604 605 606 607
	hwif->select_data               = 0;    /* no chipset-specific code */
	hwif->config_data               = 0;    /* no chipset-specific code */

	auide_hwif.hwif                 = hwif;
	hwif->hwif_data                 = &auide_hwif;
P
Pete Popov 已提交
608

J
Jordan Crouse 已提交
609
	auide_ddma_init(&auide_hwif);
P
Pete Popov 已提交
610

611
	idx[0] = hwif->index;
612

613
	ide_device_add(idx, &au1xxx_port_info);
614

P
Pete Popov 已提交
615 616
	dev_set_drvdata(dev, hwif);

J
Jordan Crouse 已提交
617
	printk(KERN_INFO "Au1xxx IDE(builtin) configured for %s\n", mode );
P
Pete Popov 已提交
618

J
Jordan Crouse 已提交
619 620
 out:
	return ret;
P
Pete Popov 已提交
621 622 623 624 625 626 627
}

static int au_ide_remove(struct device *dev)
{
	struct platform_device *pdev = to_platform_device(dev);
	struct resource *res;
	ide_hwif_t *hwif = dev_get_drvdata(dev);
J
Jordan Crouse 已提交
628
	_auide_hwif *ahwif = &auide_hwif;
P
Pete Popov 已提交
629

630
	ide_unregister(hwif->index);
P
Pete Popov 已提交
631 632 633 634

	iounmap((void *)ahwif->regbase);

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
635
	release_mem_region(res->start, res->end - res->start + 1);
P
Pete Popov 已提交
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651

	return 0;
}

static struct device_driver au1200_ide_driver = {
	.name		= "au1200-ide",
	.bus		= &platform_bus_type,
	.probe 		= au_ide_probe,
	.remove		= au_ide_remove,
};

static int __init au_ide_init(void)
{
	return driver_register(&au1200_ide_driver);
}

J
Jordan Crouse 已提交
652
static void __exit au_ide_exit(void)
P
Pete Popov 已提交
653 654 655 656 657 658 659 660 661
{
	driver_unregister(&au1200_ide_driver);
}

MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("AU1200 IDE driver");

module_init(au_ide_init);
module_exit(au_ide_exit);