ide: move default IDE ports setup to ide_generic host driver
* Make CONFIG_IDE_GENERIC depended on CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS. * Move default IDE ports setup from init_ide_data() to ide_generic. * Use ide_init_port_hw() in ide_generic. * Remove no longer needed CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
f01674e459
commit
486c92e290
|
@ -307,6 +307,7 @@ comment "IDE chipset support/bugfixes"
|
||||||
|
|
||||||
config IDE_GENERIC
|
config IDE_GENERIC
|
||||||
tristate "generic/default IDE chipset support"
|
tristate "generic/default IDE chipset support"
|
||||||
|
depends on ALPHA || X86 || IA64 || M32R || MIPS || PPC32
|
||||||
help
|
help
|
||||||
If unsure, say N.
|
If unsure, say N.
|
||||||
|
|
||||||
|
@ -1089,9 +1090,6 @@ config BLK_DEV_IDEDMA
|
||||||
def_bool BLK_DEV_IDEDMA_SFF || BLK_DEV_IDEDMA_PMAC || \
|
def_bool BLK_DEV_IDEDMA_SFF || BLK_DEV_IDEDMA_PMAC || \
|
||||||
BLK_DEV_IDEDMA_ICS || BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
|
BLK_DEV_IDEDMA_ICS || BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA
|
||||||
|
|
||||||
config IDE_ARCH_OBSOLETE_DEFAULTS
|
|
||||||
def_bool ALPHA || X86 || IA64 || M32R || MIPS || PPC32
|
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
config BLK_DEV_HD_ONLY
|
config BLK_DEV_HD_ONLY
|
||||||
|
|
|
@ -91,11 +91,17 @@ static int __init ide_generic_init(void)
|
||||||
|
|
||||||
for (i = 0; i < MAX_HWIFS; i++) {
|
for (i = 0; i < MAX_HWIFS; i++) {
|
||||||
ide_hwif_t *hwif = &ide_hwifs[i];
|
ide_hwif_t *hwif = &ide_hwifs[i];
|
||||||
|
unsigned long io_addr = ide_default_io_base(i);
|
||||||
|
hw_regs_t hw;
|
||||||
|
|
||||||
|
if (hwif->chipset == ide_unknown && io_addr) {
|
||||||
|
memset(&hw, 0, sizeof(hw));
|
||||||
|
ide_std_init_ports(&hw, io_addr, io_addr + 0x206);
|
||||||
|
hw.irq = ide_init_default_irq(io_addr);
|
||||||
|
ide_init_port_hw(hwif, &hw);
|
||||||
|
|
||||||
if (hwif->io_ports[IDE_DATA_OFFSET] &&
|
|
||||||
hwif->chipset == ide_unknown)
|
|
||||||
idx[i] = i;
|
idx[i] = i;
|
||||||
else
|
} else
|
||||||
idx[i] = 0xff;
|
idx[i] = 0xff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -165,11 +165,6 @@ static void ide_port_init_devices_data(ide_hwif_t *hwif)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS
|
|
||||||
# define ide_default_io_base(index) (0)
|
|
||||||
# define ide_init_default_irq(base) (0)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* init_ide_data() sets reasonable default values into all fields
|
* init_ide_data() sets reasonable default values into all fields
|
||||||
* of all instances of the hwifs and drives, but only on the first call.
|
* of all instances of the hwifs and drives, but only on the first call.
|
||||||
|
@ -192,7 +187,6 @@ static void __init init_ide_data (void)
|
||||||
{
|
{
|
||||||
unsigned int index;
|
unsigned int index;
|
||||||
static unsigned long magic_cookie = MAGIC_COOKIE;
|
static unsigned long magic_cookie = MAGIC_COOKIE;
|
||||||
hw_regs_t hw;
|
|
||||||
|
|
||||||
if (magic_cookie != MAGIC_COOKIE)
|
if (magic_cookie != MAGIC_COOKIE)
|
||||||
return; /* already initialized */
|
return; /* already initialized */
|
||||||
|
@ -201,19 +195,8 @@ static void __init init_ide_data (void)
|
||||||
/* Initialise all interface structures */
|
/* Initialise all interface structures */
|
||||||
for (index = 0; index < MAX_HWIFS; ++index) {
|
for (index = 0; index < MAX_HWIFS; ++index) {
|
||||||
ide_hwif_t *hwif = &ide_hwifs[index];
|
ide_hwif_t *hwif = &ide_hwifs[index];
|
||||||
unsigned long io_addr = ide_default_io_base(index);
|
|
||||||
unsigned long ctl_addr = io_addr + 0x206;
|
|
||||||
|
|
||||||
ide_init_port_data(hwif, index);
|
ide_init_port_data(hwif, index);
|
||||||
|
|
||||||
#ifdef CONFIG_IDE_ARCH_OBSOLETE_DEFAULTS
|
|
||||||
memset(&hw, 0, sizeof(hw));
|
|
||||||
ide_std_init_ports(&hw, io_addr, ctl_addr);
|
|
||||||
memcpy(hwif->io_ports, hw.io_ports, sizeof(hw.io_ports));
|
|
||||||
hwif->noprobe = !hwif->io_ports[IDE_DATA_OFFSET];
|
|
||||||
hwif->irq =
|
|
||||||
ide_init_default_irq(hwif->io_ports[IDE_DATA_OFFSET]);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue