c97c6aca75
* Add 'hw_regs_t **hws' argument to ide_device_add[_all]() and convert host drivers + ide_legacy_init_one() + ide_setup_pci_device[s]() to use it instead of calling ide_init_port_hw() directly. [ However if host has > 1 port we must still set hwif->chipset to hint consecutive ide_find_port() call that the previous slot is occupied. ] * Unexport ide_init_port_hw(). v2: * Use defines instead of hard-coded values in buddha.c, gayle.c and q40ide.c. (Suggested by Geert Uytterhoeven) * Better patch description. v3: * Fix build problem in ide-cs.c. (Noticed by Stephen Rothwell) There should be no functional changes caused by this patch. Cc: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
111 lines
2.1 KiB
C
111 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 1996-2002 Russell King.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/blkdev.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/ide.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <asm/ecard.h>
|
|
|
|
static struct const ide_port_info rapide_port_info = {
|
|
.host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
|
|
};
|
|
|
|
static void rapide_setup_ports(hw_regs_t *hw, void __iomem *base,
|
|
void __iomem *ctrl, unsigned int sz, int irq)
|
|
{
|
|
unsigned long port = (unsigned long)base;
|
|
int i;
|
|
|
|
for (i = 0; i <= 7; i++) {
|
|
hw->io_ports_array[i] = port;
|
|
port += sz;
|
|
}
|
|
hw->io_ports.ctl_addr = (unsigned long)ctrl;
|
|
hw->irq = irq;
|
|
}
|
|
|
|
static int __devinit
|
|
rapide_probe(struct expansion_card *ec, const struct ecard_id *id)
|
|
{
|
|
ide_hwif_t *hwif;
|
|
void __iomem *base;
|
|
int ret;
|
|
hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
|
|
u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
|
|
|
|
ret = ecard_request_resources(ec);
|
|
if (ret)
|
|
goto out;
|
|
|
|
base = ecardm_iomap(ec, ECARD_RES_MEMC, 0, 0);
|
|
if (!base) {
|
|
ret = -ENOMEM;
|
|
goto release;
|
|
}
|
|
|
|
memset(&hw, 0, sizeof(hw));
|
|
rapide_setup_ports(&hw, base, base + 0x818, 1 << 6, ec->irq);
|
|
hw.chipset = ide_generic;
|
|
hw.dev = &ec->dev;
|
|
|
|
hwif = ide_find_port();
|
|
if (hwif == NULL) {
|
|
ret = -ENOENT;
|
|
goto release;
|
|
}
|
|
|
|
default_hwif_mmiops(hwif);
|
|
|
|
idx[0] = hwif->index;
|
|
|
|
ide_device_add(idx, &rapide_port_info, hws);
|
|
|
|
ecard_set_drvdata(ec, hwif);
|
|
goto out;
|
|
|
|
release:
|
|
ecard_release_resources(ec);
|
|
out:
|
|
return ret;
|
|
}
|
|
|
|
static void __devexit rapide_remove(struct expansion_card *ec)
|
|
{
|
|
ide_hwif_t *hwif = ecard_get_drvdata(ec);
|
|
|
|
ecard_set_drvdata(ec, NULL);
|
|
|
|
ide_unregister(hwif);
|
|
|
|
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);
|
|
}
|
|
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("Yellowstone RAPIDE driver");
|
|
|
|
module_init(rapide_init);
|