mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 02:34:23 +08:00
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>
67 lines
1.4 KiB
C
67 lines
1.4 KiB
C
/*
|
|
* ARM default IDE host driver
|
|
*
|
|
* 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>
|
|
|
|
#define DRV_NAME "ide_arm"
|
|
|
|
#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
|
|
|
|
static int __init ide_arm_init(void)
|
|
{
|
|
ide_hwif_t *hwif;
|
|
unsigned long base = IDE_ARM_IO, ctl = IDE_ARM_IO + 0x206;
|
|
hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL };
|
|
u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
|
|
|
|
if (!request_region(base, 8, DRV_NAME)) {
|
|
printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
|
|
DRV_NAME, base, base + 7);
|
|
return -EBUSY;
|
|
}
|
|
|
|
if (!request_region(ctl, 1, DRV_NAME)) {
|
|
printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
|
|
DRV_NAME, ctl);
|
|
release_region(base, 8);
|
|
return -EBUSY;
|
|
}
|
|
|
|
memset(&hw, 0, sizeof(hw));
|
|
ide_std_init_ports(&hw, base, ctl);
|
|
hw.irq = IDE_ARM_IRQ;
|
|
hw.chipset = ide_generic;
|
|
|
|
hwif = ide_find_port();
|
|
if (hwif) {
|
|
idx[0] = hwif->index;
|
|
|
|
ide_device_add(idx, NULL, hws);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
module_init(ide_arm_init);
|
|
|
|
MODULE_LICENSE("GPL");
|