blob: 5cd6ce537eea2f0b964301593b1e8d62f92cda7c [file] [log] [blame]
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +02001
2#include <linux/kernel.h>
3#include <linux/init.h>
4#include <linux/module.h>
5#include <linux/ide.h>
6
Bartlomiej Zolnierkiewicz2c4be252008-04-26 22:25:18 +02007#define DRV_NAME "ide-4drives"
8
Bartlomiej Zolnierkiewiczef87f8d2008-04-27 15:38:24 +02009static int probe_4drives;
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020010
11module_param_named(probe, probe_4drives, bool, 0);
12MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port");
13
Bartlomiej Zolnierkiewiczf333f922008-07-16 20:33:40 +020014static void ide_4drives_port_init_devs(ide_hwif_t *hwif)
15{
16 if (hwif->channel) {
17 hwif->drives[0].select.all ^= 0x20;
18 hwif->drives[1].select.all ^= 0x20;
19 }
20}
21
22static const struct ide_port_ops ide_4drives_port_ops = {
23 .port_init_devs = ide_4drives_port_init_devs,
24};
25
26static const struct ide_port_info ide_4drives_port_info = {
27 .port_ops = &ide_4drives_port_ops,
28 .host_flags = IDE_HFLAG_SERIALIZE | IDE_HFLAG_NO_DMA,
29};
30
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020031static int __init ide_4drives_init(void)
32{
33 ide_hwif_t *hwif, *mate;
Bartlomiej Zolnierkiewicz2c4be252008-04-26 22:25:18 +020034 unsigned long base = 0x1f0, ctl = 0x3f6;
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +020035 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Bartlomiej Zolnierkiewiczdfd87842008-04-18 00:46:35 +020036 hw_regs_t hw;
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020037
38 if (probe_4drives == 0)
39 return -ENODEV;
40
Bartlomiej Zolnierkiewicz2c4be252008-04-26 22:25:18 +020041 if (!request_region(base, 8, DRV_NAME)) {
42 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
43 DRV_NAME, base, base + 7);
44 return -EBUSY;
45 }
46
47 if (!request_region(ctl, 1, DRV_NAME)) {
48 printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
49 DRV_NAME, ctl);
50 release_region(base, 8);
51 return -EBUSY;
52 }
53
Bartlomiej Zolnierkiewiczdfd87842008-04-18 00:46:35 +020054 memset(&hw, 0, sizeof(hw));
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020055
Bartlomiej Zolnierkiewicz2c4be252008-04-26 22:25:18 +020056 ide_std_init_ports(&hw, base, ctl);
Bartlomiej Zolnierkiewiczdfd87842008-04-18 00:46:35 +020057 hw.irq = 14;
58 hw.chipset = ide_4drives;
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020059
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +020060 hwif = ide_find_port();
61 if (hwif) {
62 ide_init_port_hw(hwif, &hw);
63 idx[0] = hwif->index;
64 }
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020065
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +020066 mate = ide_find_port();
67 if (mate) {
68 ide_init_port_hw(mate, &hw);
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +020069 idx[1] = mate->index;
Bartlomiej Zolnierkiewicze277f912008-04-26 17:36:36 +020070 }
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020071
Bartlomiej Zolnierkiewiczf333f922008-07-16 20:33:40 +020072 ide_device_add(idx, &ide_4drives_port_info);
Bartlomiej Zolnierkiewiczffd4f6f2008-04-18 00:46:34 +020073
74 return 0;
75}
76
77module_init(ide_4drives_init);
78
79MODULE_AUTHOR("Bartlomiej Zolnierkiewicz");
80MODULE_DESCRIPTION("generic IDE chipset with 4 drives/port support");
81MODULE_LICENSE("GPL");