2008-02-01 23:09:33 +01:00
|
|
|
/*
|
2005-04-17 00:20:36 +02:00
|
|
|
* Copyright (c) 2003-2004 Simtec Electronics
|
|
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/ide.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/irq.h>
|
|
|
|
#include <asm/arch/map.h>
|
|
|
|
#include <asm/arch/bast-map.h>
|
|
|
|
#include <asm/arch/bast-irq.h>
|
|
|
|
|
2008-04-26 17:36:38 +02:00
|
|
|
#define DRV_NAME "bast-ide"
|
|
|
|
|
2008-02-11 00:32:14 +01:00
|
|
|
static int __init bastide_register(unsigned int base, unsigned int aux, int irq)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-02 19:56:39 +01:00
|
|
|
ide_hwif_t *hwif;
|
2005-04-17 00:20:36 +02:00
|
|
|
hw_regs_t hw;
|
|
|
|
int i;
|
2008-02-02 19:56:39 +01:00
|
|
|
u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
memset(&hw, 0, sizeof(hw));
|
|
|
|
|
|
|
|
base += BAST_IDE_CS;
|
|
|
|
aux += BAST_IDE_CS;
|
|
|
|
|
2008-04-27 15:38:32 +02:00
|
|
|
for (i = 0; i <= 7; i++) {
|
|
|
|
hw.io_ports_array[i] = (unsigned long)base;
|
2005-04-17 00:20:36 +02:00
|
|
|
base += 0x20;
|
|
|
|
}
|
|
|
|
|
2008-04-27 15:38:32 +02:00
|
|
|
hw.io_ports.ctl_addr = aux + (6 * 0x20);
|
2005-04-17 00:20:36 +02:00
|
|
|
hw.irq = irq;
|
|
|
|
|
2008-04-26 17:36:32 +02:00
|
|
|
hwif = ide_find_port();
|
2008-02-02 19:56:39 +01:00
|
|
|
if (hwif == NULL)
|
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-02-02 19:56:39 +01:00
|
|
|
i = hwif->index;
|
|
|
|
|
2008-04-27 15:38:31 +02:00
|
|
|
ide_init_port_data(hwif, i);
|
2008-02-02 19:56:39 +01:00
|
|
|
ide_init_port_hw(hwif, &hw);
|
2008-04-26 22:25:14 +02:00
|
|
|
hwif->port_ops = NULL;
|
2008-02-02 19:56:39 +01:00
|
|
|
|
|
|
|
idx[0] = i;
|
|
|
|
|
|
|
|
ide_device_add(idx, NULL);
|
|
|
|
out:
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int __init bastide_init(void)
|
|
|
|
{
|
2008-04-26 17:36:38 +02:00
|
|
|
unsigned long base = BAST_VA_IDEPRI + BAST_IDE_CS;
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* we can treat the VR1000 and the BAST the same */
|
|
|
|
|
|
|
|
if (!(machine_is_bast() || machine_is_vr1000()))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
printk("BAST: IDE driver, (c) 2003-2004 Simtec Electronics\n");
|
|
|
|
|
2008-04-26 17:36:38 +02:00
|
|
|
if (!request_mem_region(base, 0x400000, DRV_NAME)) {
|
|
|
|
printk(KERN_ERR "%s: resources busy\n", DRV_NAME);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
2008-02-11 00:32:14 +01:00
|
|
|
bastide_register(BAST_VA_IDEPRI, BAST_VA_IDEPRIAUX, IRQ_IDE0);
|
|
|
|
bastide_register(BAST_VA_IDESEC, BAST_VA_IDESECAUX, IRQ_IDE1);
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(bastide_init);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_DESCRIPTION("Simtec BAST / Thorcom VR1000 IDE driver");
|