2 * generic/default IDE host driver
4 * Copyright (C) 2004, 2008 Bartlomiej Zolnierkiewicz
5 * This code was split off from ide.c. See it for original copyrights.
7 * May be copied or modified under the terms of the GNU General Public License.
11 * For special cases new interfaces may be added using sysfs, i.e.
13 * echo -n "0x168:0x36e:10" > /sys/class/ide_generic/add
15 * will add an interface using I/O ports 0x168-0x16f/0x36e and IRQ 10.
18 #include <linux/kernel.h>
19 #include <linux/init.h>
20 #include <linux/module.h>
21 #include <linux/ide.h>
22 #include <linux/pci_ids.h>
24 /* FIXME: convert m32r to use ide_platform host driver */
29 #define DRV_NAME "ide_generic"
31 static int probe_mask
;
32 module_param(probe_mask
, int, 0);
33 MODULE_PARM_DESC(probe_mask
, "probe mask for legacy ISA IDE ports");
35 static ssize_t
store_add(struct class *cls
, const char *buf
, size_t n
)
37 unsigned int base
, ctl
;
39 hw_regs_t hw
, *hws
[] = { &hw
, NULL
, NULL
, NULL
};
41 if (sscanf(buf
, "%x:%x:%d", &base
, &ctl
, &irq
) != 3)
44 memset(&hw
, 0, sizeof(hw
));
45 ide_std_init_ports(&hw
, base
, ctl
);
47 hw
.chipset
= ide_generic
;
49 rc
= ide_host_add(NULL
, hws
, NULL
);
56 static struct class_attribute ide_generic_class_attrs
[] = {
57 __ATTR(add
, S_IWUSR
, NULL
, store_add
),
61 static void ide_generic_class_release(struct class *cls
)
66 static int __init
ide_generic_sysfs_init(void)
71 cls
= kzalloc(sizeof(*cls
), GFP_KERNEL
);
76 cls
->owner
= THIS_MODULE
;
77 cls
->class_release
= ide_generic_class_release
;
78 cls
->class_attrs
= ide_generic_class_attrs
;
80 rc
= class_register(cls
);
89 #if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_MAPPI2) \
90 || defined(CONFIG_PLAT_OPSPUT)
91 static const u16 legacy_bases
[] = { 0x1f0 };
92 static const int legacy_irqs
[] = { PLD_IRQ_CFIREQ
};
93 #elif defined(CONFIG_PLAT_MAPPI3)
94 static const u16 legacy_bases
[] = { 0x1f0, 0x170 };
95 static const int legacy_irqs
[] = { PLD_IRQ_CFIREQ
, PLD_IRQ_IDEIREQ
};
96 #elif defined(CONFIG_ALPHA)
97 static const u16 legacy_bases
[] = { 0x1f0, 0x170, 0x1e8, 0x168 };
98 static const int legacy_irqs
[] = { 14, 15, 11, 10 };
100 static const u16 legacy_bases
[] = { 0x1f0, 0x170, 0x1e8, 0x168, 0x1e0, 0x160 };
101 static const int legacy_irqs
[] = { 14, 15, 11, 10, 8, 12 };
104 static void ide_generic_check_pci_legacy_iobases(int *primary
, int *secondary
)
106 struct pci_dev
*p
= NULL
;
109 for_each_pci_dev(p
) {
111 if (pci_resource_start(p
, 0) == 0x1f0)
113 if (pci_resource_start(p
, 2) == 0x170)
116 /* Cyrix CS55{1,2}0 pre SFF MWDMA ATA on the bridge */
117 if (p
->vendor
== PCI_VENDOR_ID_CYRIX
&&
118 (p
->device
== PCI_DEVICE_ID_CYRIX_5510
||
119 p
->device
== PCI_DEVICE_ID_CYRIX_5520
))
120 *primary
= *secondary
= 1;
122 /* Intel MPIIX - PIO ATA on non PCI side of bridge */
123 if (p
->vendor
== PCI_VENDOR_ID_INTEL
&&
124 p
->device
== PCI_DEVICE_ID_INTEL_82371MX
) {
126 pci_read_config_word(p
, 0x6C, &val
);
128 /* ATA port enabled */
138 static int __init
ide_generic_init(void)
140 hw_regs_t hw
, *hws
[] = { &hw
, NULL
, NULL
, NULL
};
141 unsigned long io_addr
;
142 int i
, rc
= 0, primary
= 0, secondary
= 0;
144 ide_generic_check_pci_legacy_iobases(&primary
, &secondary
);
147 printk(KERN_INFO DRV_NAME
": please use \"probe_mask=0x3f\" "
148 "module parameter for probing all legacy ISA IDE ports\n");
156 printk(KERN_INFO DRV_NAME
": enforcing probing of I/O ports "
157 "upon user request\n");
159 for (i
= 0; i
< ARRAY_SIZE(legacy_bases
); i
++) {
160 io_addr
= legacy_bases
[i
];
162 if ((probe_mask
& (1 << i
)) && io_addr
) {
163 if (!request_region(io_addr
, 8, DRV_NAME
)) {
164 printk(KERN_ERR
"%s: I/O resource 0x%lX-0x%lX "
166 DRV_NAME
, io_addr
, io_addr
+ 7);
170 if (!request_region(io_addr
+ 0x206, 1, DRV_NAME
)) {
171 printk(KERN_ERR
"%s: I/O resource 0x%lX "
173 DRV_NAME
, io_addr
+ 0x206);
174 release_region(io_addr
, 8);
178 memset(&hw
, 0, sizeof(hw
));
179 ide_std_init_ports(&hw
, io_addr
, io_addr
+ 0x206);
181 hw
.irq
= isa_irq_to_vector(legacy_irqs
[i
]);
183 hw
.irq
= legacy_irqs
[i
];
185 hw
.chipset
= ide_generic
;
187 rc
= ide_host_add(NULL
, hws
, NULL
);
189 release_region(io_addr
+ 0x206, 1);
190 release_region(io_addr
, 8);
195 if (ide_generic_sysfs_init())
196 printk(KERN_ERR DRV_NAME
": failed to create ide_generic "
202 module_init(ide_generic_init
);
204 MODULE_LICENSE("GPL");