mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-06 00:56:39 +07:00
cbb010c180
* Rename init_hwif_data() to ide_init_port_data() and export it. * For all users of ide_register_hw() with 'initializing' argument set hwif->present and hwif->hold are always zero so convert these host drivers to use ide_find_port()+ide_init_port_data()+ide_init_port_hw() instead (also no need for init_hwif_default() call since the setup done by it gets over-ridden by ide_init_port_hw() call). * Drop 'initializing' argument from ide_register_hw(). Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Roman Zippel <zippel@linux-m68k.org> Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
42 lines
896 B
C
42 lines
896 B
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>
|
|
|
|
#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
|
|
|
|
void __init ide_arm_init(void)
|
|
{
|
|
ide_hwif_t *hwif;
|
|
hw_regs_t hw;
|
|
|
|
memset(&hw, 0, sizeof(hw));
|
|
ide_std_init_ports(&hw, IDE_ARM_IO, IDE_ARM_IO + 0x206);
|
|
hw.irq = IDE_ARM_IRQ;
|
|
|
|
hwif = ide_find_port(hw.io_ports[IDE_DATA_OFFSET]);
|
|
if (hwif) {
|
|
ide_init_port_data(hwif, hwif->index);
|
|
ide_init_port_hw(hwif, &hw);
|
|
}
|
|
}
|