2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2007-07-31 07:38:19 +00:00
|
|
|
* ARM default IDE host driver
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Bartlomiej Zolnierkiewicz
|
|
|
|
* Based on code by: Russell King, Ian Molton and Alexander Schulz.
|
|
|
|
*
|
|
|
|
* May be copied or modified under the terms of the GNU General Public License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/ide.h>
|
|
|
|
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/irq.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_CLPS7500
|
|
|
|
# include <asm/arch/hardware.h>
|
|
|
|
#
|
|
|
|
# define IDE_ARM_IO (ISASLOT_IO + 0x1f0)
|
|
|
|
# define IDE_ARM_IRQ IRQ_ISA_14
|
|
|
|
#else
|
|
|
|
# define IDE_ARM_IO 0x1f0
|
|
|
|
# define IDE_ARM_IRQ IRQ_HARDDISK
|
|
|
|
#endif
|
|
|
|
|
2008-01-26 19:13:07 +00:00
|
|
|
static int __init ide_arm_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-01-26 19:13:06 +00:00
|
|
|
ide_hwif_t *hwif;
|
2007-07-31 07:38:19 +00:00
|
|
|
hw_regs_t hw;
|
2008-01-26 19:13:06 +00:00
|
|
|
u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-07-31 07:38:19 +00:00
|
|
|
memset(&hw, 0, sizeof(hw));
|
|
|
|
ide_std_init_ports(&hw, IDE_ARM_IO, IDE_ARM_IO + 0x206);
|
|
|
|
hw.irq = IDE_ARM_IRQ;
|
2008-01-26 19:13:06 +00:00
|
|
|
|
|
|
|
hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
|
|
|
|
if (hwif) {
|
|
|
|
ide_init_port_hw(hwif, &hw);
|
2008-01-26 19:13:06 +00:00
|
|
|
idx[0] = hwif->index;
|
|
|
|
|
2008-02-02 18:56:31 +00:00
|
|
|
ide_device_add(idx, NULL);
|
2008-01-26 19:13:06 +00:00
|
|
|
}
|
2008-01-26 19:13:07 +00:00
|
|
|
|
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2008-01-26 19:13:07 +00:00
|
|
|
|
|
|
|
module_init(ide_arm_init);
|