Files
linux-apfs/drivers/ide/rapide.c
T

107 lines
2.0 KiB
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* Copyright (c) 1996-2002 Russell King.
*/
#include <linux/module.h>
#include <linux/blkdev.h>
#include <linux/errno.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <asm/ecard.h>
2008-10-26 05:40:26 +00:00
static const struct ide_port_info rapide_port_info = {
2008-07-16 20:33:42 +02:00
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
2009-05-17 19:12:22 +02:00
.chipset = ide_generic,
2008-07-16 20:33:42 +02:00
};
2009-05-17 19:12:25 +02:00
static void rapide_setup_ports(struct ide_hw *hw, void __iomem *base,
2008-01-26 20:13:05 +01:00
void __iomem *ctrl, unsigned int sz, int irq)
2005-04-16 15:20:36 -07:00
{
unsigned long port = (unsigned long)base;
2007-10-20 00:32:31 +02:00
int i;
2005-04-16 15:20:36 -07:00
2008-04-27 15:38:32 +02:00
for (i = 0; i <= 7; i++) {
hw->io_ports_array[i] = port;
2005-04-16 15:20:36 -07:00
port += sz;
}
2008-04-27 15:38:32 +02:00
hw->io_ports.ctl_addr = (unsigned long)ctrl;
2008-01-26 20:13:05 +01:00
hw->irq = irq;
2005-04-16 15:20:36 -07:00
}
static int __devinit
rapide_probe(struct expansion_card *ec, const struct ecard_id *id)
{
void __iomem *base;
2008-07-23 19:55:57 +02:00
struct ide_host *host;
2005-04-16 15:20:36 -07:00
int ret;
2009-05-17 19:12:25 +02:00
struct ide_hw hw, *hws[] = { &hw };
2005-04-16 15:20:36 -07:00
ret = ecard_request_resources(ec);
if (ret)
goto out;
base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0);
2005-04-16 15:20:36 -07:00
if (!base) {
ret = -ENOMEM;
goto release;
}
2008-07-16 20:33:44 +02:00
memset(&hw, 0, sizeof(hw));
rapide_setup_ports(&hw, base, base + 0x818, 1 << 6, ec->irq);
hw.dev = &ec->dev;
ret = ide_host_add(&rapide_port_info, hws, 1, &host);
2008-07-23 19:55:57 +02:00
if (ret)
2008-07-16 20:33:44 +02:00
goto release;
2008-07-23 19:55:57 +02:00
ecard_set_drvdata(ec, host);
2008-07-16 20:33:44 +02:00
goto out;
2005-04-16 15:20:36 -07:00
release:
ecard_release_resources(ec);
out:
return ret;
}
static void __devexit rapide_remove(struct expansion_card *ec)
{
2008-07-23 19:55:57 +02:00
struct ide_host *host = ecard_get_drvdata(ec);
2005-04-16 15:20:36 -07:00
ecard_set_drvdata(ec, NULL);
2008-07-23 19:55:57 +02:00
ide_host_remove(host);
2005-04-16 15:20:36 -07:00
ecard_release_resources(ec);
}
static struct ecard_id rapide_ids[] = {
{ MANU_YELLOWSTONE, PROD_YELLOWSTONE_RAPIDE32 },
{ 0xffff, 0xffff }
};
static struct ecard_driver rapide_driver = {
.probe = rapide_probe,
.remove = __devexit_p(rapide_remove),
.id_table = rapide_ids,
.drv = {
.name = "rapide",
},
};
static int __init rapide_init(void)
{
return ecard_register_driver(&rapide_driver);
}
2008-07-24 22:53:27 +02:00
static void __exit rapide_exit(void)
{
2008-10-26 05:40:26 +00:00
ecard_remove_driver(&rapide_driver);
2008-07-24 22:53:27 +02:00
}
2005-04-16 15:20:36 -07:00
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Yellowstone RAPIDE driver");
module_init(rapide_init);
2008-07-24 22:53:27 +02:00
module_exit(rapide_exit);