powerpc/pseries: Really fix the oprofile CPU type on pseries
[deliverable/linux.git] / drivers / ide / ide-4drives.c
CommitLineData
ffd4f6f0
BZ
1
2#include <linux/kernel.h>
3#include <linux/init.h>
4#include <linux/module.h>
5#include <linux/ide.h>
6
2c4be251
BZ
7#define DRV_NAME "ide-4drives"
8
ef87f8d0 9static int probe_4drives;
ffd4f6f0
BZ
10
11module_param_named(probe, probe_4drives, bool, 0);
12MODULE_PARM_DESC(probe, "probe for generic IDE chipset with 4 drives/port");
13
e6d95bd1 14static void ide_4drives_init_dev(ide_drive_t *drive)
f333f92b 15{
e6d95bd1 16 if (drive->hwif->channel)
7f612f27 17 drive->select ^= 0x20;
f333f92b
BZ
18}
19
20static const struct ide_port_ops ide_4drives_port_ops = {
e6d95bd1 21 .init_dev = ide_4drives_init_dev,
f333f92b
BZ
22};
23
24static const struct ide_port_info ide_4drives_port_info = {
25 .port_ops = &ide_4drives_port_ops,
c094ea07
BZ
26 .host_flags = IDE_HFLAG_SERIALIZE | IDE_HFLAG_NO_DMA |
27 IDE_HFLAG_4DRIVES,
f333f92b
BZ
28};
29
ffd4f6f0
BZ
30static int __init ide_4drives_init(void)
31{
2c4be251 32 unsigned long base = 0x1f0, ctl = 0x3f6;
48c3c107 33 hw_regs_t hw, *hws[] = { &hw, &hw, NULL, NULL };
ffd4f6f0
BZ
34
35 if (probe_4drives == 0)
36 return -ENODEV;
37
2c4be251
BZ
38 if (!request_region(base, 8, DRV_NAME)) {
39 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
40 DRV_NAME, base, base + 7);
41 return -EBUSY;
42 }
43
44 if (!request_region(ctl, 1, DRV_NAME)) {
45 printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
46 DRV_NAME, ctl);
47 release_region(base, 8);
48 return -EBUSY;
49 }
50
dfd87842 51 memset(&hw, 0, sizeof(hw));
ffd4f6f0 52
2c4be251 53 ide_std_init_ports(&hw, base, ctl);
dfd87842
BZ
54 hw.irq = 14;
55 hw.chipset = ide_4drives;
ffd4f6f0 56
6f904d01 57 return ide_host_add(&ide_4drives_port_info, hws, NULL);
ffd4f6f0
BZ
58}
59
60module_init(ide_4drives_init);
61
62MODULE_AUTHOR("Bartlomiej Zolnierkiewicz");
63MODULE_DESCRIPTION("generic IDE chipset with 4 drives/port support");
64MODULE_LICENSE("GPL");
This page took 0.14913 seconds and 5 git commands to generate.