2 #include <linux/kernel.h>
3 #include <linux/init.h>
4 #include <linux/module.h>
7 #define DRV_NAME "ide-4drives"
9 static int probe_4drives
;
11 module_param_named(probe
, probe_4drives
, bool, 0);
12 MODULE_PARM_DESC(probe
, "probe for generic IDE chipset with 4 drives/port");
14 static void ide_4drives_init_dev(ide_drive_t
*drive
)
16 if (drive
->hwif
->channel
)
17 drive
->select
^= 0x20;
20 static const struct ide_port_ops ide_4drives_port_ops
= {
21 .init_dev
= ide_4drives_init_dev
,
24 static const struct ide_port_info ide_4drives_port_info
= {
25 .port_ops
= &ide_4drives_port_ops
,
26 .host_flags
= IDE_HFLAG_SERIALIZE
| IDE_HFLAG_NO_DMA
|
28 .chipset
= ide_4drives
,
31 static int __init
ide_4drives_init(void)
33 unsigned long base
= 0x1f0, ctl
= 0x3f6;
34 struct ide_hw hw
, *hws
[] = { &hw
, &hw
};
36 if (probe_4drives
== 0)
39 if (!request_region(base
, 8, DRV_NAME
)) {
40 printk(KERN_ERR
"%s: I/O resource 0x%lX-0x%lX not free.\n",
41 DRV_NAME
, base
, base
+ 7);
45 if (!request_region(ctl
, 1, DRV_NAME
)) {
46 printk(KERN_ERR
"%s: I/O resource 0x%lX not free.\n",
48 release_region(base
, 8);
52 memset(&hw
, 0, sizeof(hw
));
54 ide_std_init_ports(&hw
, base
, ctl
);
57 return ide_host_add(&ide_4drives_port_info
, hws
, 2, NULL
);
60 module_init(ide_4drives_init
);
62 MODULE_AUTHOR("Bartlomiej Zolnierkiewicz");
63 MODULE_DESCRIPTION("generic IDE chipset with 4 drives/port support");
64 MODULE_LICENSE("GPL");