2 * generic/default IDE host driver
4 * Copyright (C) 2004, 2008-2009 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.
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
13 #include <linux/ide.h>
14 #include <linux/pci_ids.h>
16 /* FIXME: convert arm and m32r to use ide_platform host driver */
24 #define DRV_NAME "ide_generic"
26 static int probe_mask
;
27 module_param(probe_mask
, int, 0);
28 MODULE_PARM_DESC(probe_mask
, "probe mask for legacy ISA IDE ports");
30 static const struct ide_port_info ide_generic_port_info
= {
31 .host_flags
= IDE_HFLAG_NO_DMA
,
35 static const u16 legacy_bases
[] = { 0x1f0 };
36 static const int legacy_irqs
[] = { IRQ_HARDDISK
};
37 #elif defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_MAPPI2) || \
38 defined(CONFIG_PLAT_OPSPUT)
39 static const u16 legacy_bases
[] = { 0x1f0 };
40 static const int legacy_irqs
[] = { PLD_IRQ_CFIREQ
};
41 #elif defined(CONFIG_PLAT_MAPPI3)
42 static const u16 legacy_bases
[] = { 0x1f0, 0x170 };
43 static const int legacy_irqs
[] = { PLD_IRQ_CFIREQ
, PLD_IRQ_IDEIREQ
};
44 #elif defined(CONFIG_ALPHA)
45 static const u16 legacy_bases
[] = { 0x1f0, 0x170, 0x1e8, 0x168 };
46 static const int legacy_irqs
[] = { 14, 15, 11, 10 };
48 static const u16 legacy_bases
[] = { 0x1f0, 0x170, 0x1e8, 0x168, 0x1e0, 0x160 };
49 static const int legacy_irqs
[] = { 14, 15, 11, 10, 8, 12 };
52 static void ide_generic_check_pci_legacy_iobases(int *primary
, int *secondary
)
55 struct pci_dev
*p
= NULL
;
59 if (pci_resource_start(p
, 0) == 0x1f0)
61 if (pci_resource_start(p
, 2) == 0x170)
64 /* Cyrix CS55{1,2}0 pre SFF MWDMA ATA on the bridge */
65 if (p
->vendor
== PCI_VENDOR_ID_CYRIX
&&
66 (p
->device
== PCI_DEVICE_ID_CYRIX_5510
||
67 p
->device
== PCI_DEVICE_ID_CYRIX_5520
))
68 *primary
= *secondary
= 1;
70 /* Intel MPIIX - PIO ATA on non PCI side of bridge */
71 if (p
->vendor
== PCI_VENDOR_ID_INTEL
&&
72 p
->device
== PCI_DEVICE_ID_INTEL_82371MX
) {
73 pci_read_config_word(p
, 0x6C, &val
);
75 /* ATA port enabled */
86 static int __init
ide_generic_init(void)
88 hw_regs_t hw
, *hws
[] = { &hw
, NULL
, NULL
, NULL
};
89 unsigned long io_addr
;
90 int i
, rc
= 0, primary
= 0, secondary
= 0;
92 ide_generic_check_pci_legacy_iobases(&primary
, &secondary
);
95 printk(KERN_INFO DRV_NAME
": please use \"probe_mask=0x3f\" "
96 "module parameter for probing all legacy ISA IDE ports\n");
104 printk(KERN_INFO DRV_NAME
": enforcing probing of I/O ports "
105 "upon user request\n");
107 for (i
= 0; i
< ARRAY_SIZE(legacy_bases
); i
++) {
108 io_addr
= legacy_bases
[i
];
110 if ((probe_mask
& (1 << i
)) && io_addr
) {
111 if (!request_region(io_addr
, 8, DRV_NAME
)) {
112 printk(KERN_ERR
"%s: I/O resource 0x%lX-0x%lX "
114 DRV_NAME
, io_addr
, io_addr
+ 7);
119 if (!request_region(io_addr
+ 0x206, 1, DRV_NAME
)) {
120 printk(KERN_ERR
"%s: I/O resource 0x%lX "
122 DRV_NAME
, io_addr
+ 0x206);
123 release_region(io_addr
, 8);
128 memset(&hw
, 0, sizeof(hw
));
129 ide_std_init_ports(&hw
, io_addr
, io_addr
+ 0x206);
131 hw
.irq
= isa_irq_to_vector(legacy_irqs
[i
]);
133 hw
.irq
= legacy_irqs
[i
];
135 hw
.chipset
= ide_generic
;
137 rc
= ide_host_add(&ide_generic_port_info
, hws
, NULL
);
139 release_region(io_addr
+ 0x206, 1);
140 release_region(io_addr
, 8);
148 module_init(ide_generic_init
);
150 MODULE_LICENSE("GPL");