Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 93635
b: refs/heads/master
c: 2c4be25
h: refs/heads/master
i:
  93633: 2babc92
  93631: f8b55b1
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz committed Apr 26, 2008
1 parent 1d83908 commit daa1f05
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1664949843e8c0782c8f2e40897285a8dfffdf27
refs/heads/master: 2c4be251be1cace01a2a18bf5abb847010516511
3 changes: 1 addition & 2 deletions trunk/drivers/ide/ide-probe.c
Original file line number Diff line number Diff line change
Expand Up @@ -1530,8 +1530,7 @@ int ide_device_add_all(u8 *idx, const struct ide_port_info *d)

hwif = &ide_hwifs[idx[i]];

if ((hwif->chipset != ide_4drives || !hwif->mate ||
!hwif->mate->present) && ide_hwif_request_regions(hwif)) {
if (ide_hwif_request_regions(hwif)) {
printk(KERN_ERR "%s: ports already in use, "
"skipping probe\n", hwif->name);
continue;
Expand Down
20 changes: 19 additions & 1 deletion trunk/drivers/ide/legacy/ide-4drives.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#include <linux/module.h>
#include <linux/ide.h>

#define DRV_NAME "ide-4drives"

int probe_4drives;

module_param_named(probe, probe_4drives, bool, 0);
Expand All @@ -12,21 +14,36 @@ MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port");
static int __init ide_4drives_init(void)
{
ide_hwif_t *hwif, *mate;
unsigned long base = 0x1f0, ctl = 0x3f6;
u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
hw_regs_t hw;

if (probe_4drives == 0)
return -ENODEV;

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, 0x1f0, 0x3f6);
ide_std_init_ports(&hw, base, ctl);
hw.irq = 14;
hw.chipset = ide_4drives;

hwif = ide_find_port();
if (hwif) {
ide_init_port_hw(hwif, &hw);
hwif->mmio = 1;
idx[0] = hwif->index;
}

Expand All @@ -35,6 +52,7 @@ static int __init ide_4drives_init(void)
ide_init_port_hw(mate, &hw);
mate->drives[0].select.all ^= 0x20;
mate->drives[1].select.all ^= 0x20;
mate->mmio = 1;
idx[1] = mate->index;

if (hwif) {
Expand Down

0 comments on commit daa1f05

Please sign in to comment.