Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 1 | |
| 2 | #include <linux/kernel.h> |
| 3 | #include <linux/init.h> |
| 4 | #include <linux/module.h> |
| 5 | #include <linux/ide.h> |
| 6 | |
Bartlomiej Zolnierkiewicz | 2c4be25 | 2008-04-26 22:25:18 +0200 | [diff] [blame] | 7 | #define DRV_NAME "ide-4drives" |
| 8 | |
Bartlomiej Zolnierkiewicz | ef87f8d | 2008-04-27 15:38:24 +0200 | [diff] [blame] | 9 | static int probe_4drives; |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 10 | |
| 11 | module_param_named(probe, probe_4drives, bool, 0); |
| 12 | MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port"); |
| 13 | |
Bartlomiej Zolnierkiewicz | e6d95bd | 2008-07-16 20:33:42 +0200 | [diff] [blame^] | 14 | static void ide_4drives_init_dev(ide_drive_t *drive) |
Bartlomiej Zolnierkiewicz | f333f92 | 2008-07-16 20:33:40 +0200 | [diff] [blame] | 15 | { |
Bartlomiej Zolnierkiewicz | e6d95bd | 2008-07-16 20:33:42 +0200 | [diff] [blame^] | 16 | if (drive->hwif->channel) |
| 17 | drive->select.all ^= 0x20; |
Bartlomiej Zolnierkiewicz | f333f92 | 2008-07-16 20:33:40 +0200 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | static const struct ide_port_ops ide_4drives_port_ops = { |
Bartlomiej Zolnierkiewicz | e6d95bd | 2008-07-16 20:33:42 +0200 | [diff] [blame^] | 21 | .init_dev = ide_4drives_init_dev, |
Bartlomiej Zolnierkiewicz | f333f92 | 2008-07-16 20:33:40 +0200 | [diff] [blame] | 22 | }; |
| 23 | |
| 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, |
| 27 | }; |
| 28 | |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 29 | static int __init ide_4drives_init(void) |
| 30 | { |
| 31 | ide_hwif_t *hwif, *mate; |
Bartlomiej Zolnierkiewicz | 2c4be25 | 2008-04-26 22:25:18 +0200 | [diff] [blame] | 32 | unsigned long base = 0x1f0, ctl = 0x3f6; |
Bartlomiej Zolnierkiewicz | e277f91 | 2008-04-26 17:36:36 +0200 | [diff] [blame] | 33 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; |
Bartlomiej Zolnierkiewicz | dfd8784 | 2008-04-18 00:46:35 +0200 | [diff] [blame] | 34 | hw_regs_t hw; |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 35 | |
| 36 | if (probe_4drives == 0) |
| 37 | return -ENODEV; |
| 38 | |
Bartlomiej Zolnierkiewicz | 2c4be25 | 2008-04-26 22:25:18 +0200 | [diff] [blame] | 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); |
| 42 | return -EBUSY; |
| 43 | } |
| 44 | |
| 45 | if (!request_region(ctl, 1, DRV_NAME)) { |
| 46 | printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n", |
| 47 | DRV_NAME, ctl); |
| 48 | release_region(base, 8); |
| 49 | return -EBUSY; |
| 50 | } |
| 51 | |
Bartlomiej Zolnierkiewicz | dfd8784 | 2008-04-18 00:46:35 +0200 | [diff] [blame] | 52 | memset(&hw, 0, sizeof(hw)); |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 53 | |
Bartlomiej Zolnierkiewicz | 2c4be25 | 2008-04-26 22:25:18 +0200 | [diff] [blame] | 54 | ide_std_init_ports(&hw, base, ctl); |
Bartlomiej Zolnierkiewicz | dfd8784 | 2008-04-18 00:46:35 +0200 | [diff] [blame] | 55 | hw.irq = 14; |
| 56 | hw.chipset = ide_4drives; |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 57 | |
Bartlomiej Zolnierkiewicz | e277f91 | 2008-04-26 17:36:36 +0200 | [diff] [blame] | 58 | hwif = ide_find_port(); |
| 59 | if (hwif) { |
| 60 | ide_init_port_hw(hwif, &hw); |
| 61 | idx[0] = hwif->index; |
| 62 | } |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 63 | |
Bartlomiej Zolnierkiewicz | e277f91 | 2008-04-26 17:36:36 +0200 | [diff] [blame] | 64 | mate = ide_find_port(); |
| 65 | if (mate) { |
| 66 | ide_init_port_hw(mate, &hw); |
Bartlomiej Zolnierkiewicz | e277f91 | 2008-04-26 17:36:36 +0200 | [diff] [blame] | 67 | idx[1] = mate->index; |
Bartlomiej Zolnierkiewicz | e277f91 | 2008-04-26 17:36:36 +0200 | [diff] [blame] | 68 | } |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 69 | |
Bartlomiej Zolnierkiewicz | f333f92 | 2008-07-16 20:33:40 +0200 | [diff] [blame] | 70 | ide_device_add(idx, &ide_4drives_port_info); |
Bartlomiej Zolnierkiewicz | ffd4f6f | 2008-04-18 00:46:34 +0200 | [diff] [blame] | 71 | |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | module_init(ide_4drives_init); |
| 76 | |
| 77 | MODULE_AUTHOR("Bartlomiej Zolnierkiewicz"); |
| 78 | MODULE_DESCRIPTION("generic IDE chipset with 4 drives/port support"); |
| 79 | MODULE_LICENSE("GPL"); |