| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * generic/default IDE host driver | 
|  | 3 | * | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 4 | * Copyright (C) 2004, 2008 Bartlomiej Zolnierkiewicz | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * This code was split off from ide.c.  See it for original copyrights. | 
|  | 6 | * | 
|  | 7 | * May be copied or modified under the terms of the GNU General Public License. | 
|  | 8 | */ | 
|  | 9 |  | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 10 | /* | 
|  | 11 | * For special cases new interfaces may be added using sysfs, i.e. | 
|  | 12 | * | 
|  | 13 | *	echo -n "0x168:0x36e:10" > /sys/class/ide_generic/add | 
|  | 14 | * | 
|  | 15 | * will add an interface using I/O ports 0x168-0x16f/0x36e and IRQ 10. | 
|  | 16 | */ | 
|  | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> | 
|  | 19 | #include <linux/init.h> | 
|  | 20 | #include <linux/module.h> | 
|  | 21 | #include <linux/ide.h> | 
| Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 22 | #include <linux/pci_ids.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
| Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 24 | /* FIXME: convert m32r to use ide_platform host driver */ | 
|  | 25 | #ifdef CONFIG_M32R | 
|  | 26 | #include <asm/m32r.h> | 
|  | 27 | #endif | 
|  | 28 |  | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 29 | #define DRV_NAME	"ide_generic" | 
|  | 30 |  | 
| Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 31 | static int probe_mask; | 
| Bartlomiej Zolnierkiewicz | 0cbccbc | 2008-06-15 21:00:24 +0200 | [diff] [blame] | 32 | module_param(probe_mask, int, 0); | 
|  | 33 | MODULE_PARM_DESC(probe_mask, "probe mask for legacy ISA IDE ports"); | 
|  | 34 |  | 
| Bartlomiej Zolnierkiewicz | e518e58 | 2009-03-27 12:46:17 +0100 | [diff] [blame] | 35 | static const struct ide_port_info ide_generic_port_info = { | 
|  | 36 | .host_flags		= IDE_HFLAG_NO_DMA, | 
|  | 37 | }; | 
|  | 38 |  | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 39 | static ssize_t store_add(struct class *cls, const char *buf, size_t n) | 
|  | 40 | { | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 41 | unsigned int base, ctl; | 
| Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 42 | int irq, rc; | 
| Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 43 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 44 |  | 
|  | 45 | if (sscanf(buf, "%x:%x:%d", &base, &ctl, &irq) != 3) | 
|  | 46 | return -EINVAL; | 
|  | 47 |  | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 48 | memset(&hw, 0, sizeof(hw)); | 
|  | 49 | ide_std_init_ports(&hw, base, ctl); | 
|  | 50 | hw.irq = irq; | 
|  | 51 | hw.chipset = ide_generic; | 
|  | 52 |  | 
| Bartlomiej Zolnierkiewicz | e518e58 | 2009-03-27 12:46:17 +0100 | [diff] [blame] | 53 | rc = ide_host_add(&ide_generic_port_info, hws, NULL); | 
| Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 54 | if (rc) | 
|  | 55 | return rc; | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 56 |  | 
|  | 57 | return n; | 
|  | 58 | }; | 
|  | 59 |  | 
|  | 60 | static struct class_attribute ide_generic_class_attrs[] = { | 
|  | 61 | __ATTR(add, S_IWUSR, NULL, store_add), | 
|  | 62 | __ATTR_NULL | 
|  | 63 | }; | 
|  | 64 |  | 
|  | 65 | static void ide_generic_class_release(struct class *cls) | 
|  | 66 | { | 
|  | 67 | kfree(cls); | 
|  | 68 | } | 
|  | 69 |  | 
|  | 70 | static int __init ide_generic_sysfs_init(void) | 
|  | 71 | { | 
|  | 72 | struct class *cls; | 
|  | 73 | int rc; | 
|  | 74 |  | 
|  | 75 | cls = kzalloc(sizeof(*cls), GFP_KERNEL); | 
|  | 76 | if (!cls) | 
|  | 77 | return -ENOMEM; | 
|  | 78 |  | 
|  | 79 | cls->name = DRV_NAME; | 
|  | 80 | cls->owner = THIS_MODULE; | 
|  | 81 | cls->class_release = ide_generic_class_release; | 
|  | 82 | cls->class_attrs = ide_generic_class_attrs; | 
|  | 83 |  | 
|  | 84 | rc = class_register(cls); | 
|  | 85 | if (rc) { | 
|  | 86 | kfree(cls); | 
|  | 87 | return rc; | 
|  | 88 | } | 
|  | 89 |  | 
|  | 90 | return 0; | 
|  | 91 | } | 
|  | 92 |  | 
| Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 93 | #if defined(CONFIG_PLAT_M32700UT) || defined(CONFIG_PLAT_MAPPI2) \ | 
|  | 94 | || defined(CONFIG_PLAT_OPSPUT) | 
|  | 95 | static const u16 legacy_bases[] = { 0x1f0 }; | 
|  | 96 | static const int legacy_irqs[]  = { PLD_IRQ_CFIREQ }; | 
|  | 97 | #elif defined(CONFIG_PLAT_MAPPI3) | 
|  | 98 | static const u16 legacy_bases[] = { 0x1f0, 0x170 }; | 
|  | 99 | static const int legacy_irqs[]  = { PLD_IRQ_CFIREQ, PLD_IRQ_IDEIREQ }; | 
|  | 100 | #elif defined(CONFIG_ALPHA) | 
|  | 101 | static const u16 legacy_bases[] = { 0x1f0, 0x170, 0x1e8, 0x168 }; | 
|  | 102 | static const int legacy_irqs[]  = { 14, 15, 11, 10 }; | 
|  | 103 | #else | 
|  | 104 | static const u16 legacy_bases[] = { 0x1f0, 0x170, 0x1e8, 0x168, 0x1e0, 0x160 }; | 
|  | 105 | static const int legacy_irqs[]  = { 14, 15, 11, 10, 8, 12 }; | 
|  | 106 | #endif | 
|  | 107 |  | 
| Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 108 | static void ide_generic_check_pci_legacy_iobases(int *primary, int *secondary) | 
|  | 109 | { | 
|  | 110 | struct pci_dev *p = NULL; | 
|  | 111 | u16 val; | 
|  | 112 |  | 
|  | 113 | for_each_pci_dev(p) { | 
|  | 114 |  | 
|  | 115 | if (pci_resource_start(p, 0) == 0x1f0) | 
|  | 116 | *primary = 1; | 
|  | 117 | if (pci_resource_start(p, 2) == 0x170) | 
|  | 118 | *secondary = 1; | 
|  | 119 |  | 
|  | 120 | /* Cyrix CS55{1,2}0 pre SFF MWDMA ATA on the bridge */ | 
|  | 121 | if (p->vendor == PCI_VENDOR_ID_CYRIX && | 
|  | 122 | (p->device == PCI_DEVICE_ID_CYRIX_5510 || | 
|  | 123 | p->device == PCI_DEVICE_ID_CYRIX_5520)) | 
|  | 124 | *primary = *secondary = 1; | 
|  | 125 |  | 
|  | 126 | /* Intel MPIIX - PIO ATA on non PCI side of bridge */ | 
|  | 127 | if (p->vendor == PCI_VENDOR_ID_INTEL && | 
|  | 128 | p->device == PCI_DEVICE_ID_INTEL_82371MX) { | 
|  | 129 |  | 
|  | 130 | pci_read_config_word(p, 0x6C, &val); | 
|  | 131 | if (val & 0x8000) { | 
|  | 132 | /* ATA port enabled */ | 
|  | 133 | if (val & 0x4000) | 
|  | 134 | *secondary = 1; | 
|  | 135 | else | 
|  | 136 | *primary = 1; | 
|  | 137 | } | 
|  | 138 | } | 
|  | 139 | } | 
|  | 140 | } | 
|  | 141 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | static int __init ide_generic_init(void) | 
|  | 143 | { | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 144 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; | 
| Bartlomiej Zolnierkiewicz | 8a69580 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 145 | unsigned long io_addr; | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 146 | int i, rc = 0, primary = 0, secondary = 0; | 
| Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 147 |  | 
| Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame] | 148 | ide_generic_check_pci_legacy_iobases(&primary, &secondary); | 
|  | 149 |  | 
|  | 150 | if (!probe_mask) { | 
|  | 151 | printk(KERN_INFO DRV_NAME ": please use \"probe_mask=0x3f\" " | 
|  | 152 | "module parameter for probing all legacy ISA IDE ports\n"); | 
|  | 153 |  | 
|  | 154 | if (primary == 0) | 
|  | 155 | probe_mask |= 0x1; | 
|  | 156 |  | 
|  | 157 | if (secondary == 0) | 
|  | 158 | probe_mask |= 0x2; | 
|  | 159 | } else | 
|  | 160 | printk(KERN_INFO DRV_NAME ": enforcing probing of I/O ports " | 
|  | 161 | "upon user request\n"); | 
| Bartlomiej Zolnierkiewicz | 0cbccbc | 2008-06-15 21:00:24 +0200 | [diff] [blame] | 162 |  | 
| Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 163 | for (i = 0; i < ARRAY_SIZE(legacy_bases); i++) { | 
|  | 164 | io_addr = legacy_bases[i]; | 
| Bartlomiej Zolnierkiewicz | b2a53bc | 2008-02-06 02:57:48 +0100 | [diff] [blame] | 165 |  | 
| Bartlomiej Zolnierkiewicz | 0cbccbc | 2008-06-15 21:00:24 +0200 | [diff] [blame] | 166 | if ((probe_mask & (1 << i)) && io_addr) { | 
| Bartlomiej Zolnierkiewicz | 1664949 | 2008-04-26 22:25:17 +0200 | [diff] [blame] | 167 | if (!request_region(io_addr, 8, DRV_NAME)) { | 
|  | 168 | printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX " | 
|  | 169 | "not free.\n", | 
|  | 170 | DRV_NAME, io_addr, io_addr + 7); | 
|  | 171 | continue; | 
|  | 172 | } | 
|  | 173 |  | 
|  | 174 | if (!request_region(io_addr + 0x206, 1, DRV_NAME)) { | 
|  | 175 | printk(KERN_ERR "%s: I/O resource 0x%lX " | 
|  | 176 | "not free.\n", | 
|  | 177 | DRV_NAME, io_addr + 0x206); | 
|  | 178 | release_region(io_addr, 8); | 
|  | 179 | continue; | 
|  | 180 | } | 
|  | 181 |  | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 182 | memset(&hw, 0, sizeof(hw)); | 
|  | 183 | ide_std_init_ports(&hw, io_addr, io_addr + 0x206); | 
| Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 184 | #ifdef CONFIG_IA64 | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 185 | hw.irq = isa_irq_to_vector(legacy_irqs[i]); | 
| Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 186 | #else | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 187 | hw.irq = legacy_irqs[i]; | 
| Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 188 | #endif | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 189 | hw.chipset = ide_generic; | 
| Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 190 |  | 
| Bartlomiej Zolnierkiewicz | e518e58 | 2009-03-27 12:46:17 +0100 | [diff] [blame] | 191 | rc = ide_host_add(&ide_generic_port_info, hws, NULL); | 
| Bartlomiej Zolnierkiewicz | 6ccc6d7 | 2008-10-13 21:39:42 +0200 | [diff] [blame] | 192 | if (rc) { | 
|  | 193 | release_region(io_addr + 0x206, 1); | 
|  | 194 | release_region(io_addr, 8); | 
|  | 195 | } | 
| Bartlomiej Zolnierkiewicz | 1664949 | 2008-04-26 22:25:17 +0200 | [diff] [blame] | 196 | } | 
| Bartlomiej Zolnierkiewicz | b2a53bc | 2008-02-06 02:57:48 +0100 | [diff] [blame] | 197 | } | 
| Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 198 |  | 
| Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 199 | if (ide_generic_sysfs_init()) | 
|  | 200 | printk(KERN_ERR DRV_NAME ": failed to create ide_generic " | 
|  | 201 | "class\n"); | 
|  | 202 |  | 
| Bartlomiej Zolnierkiewicz | 8a69580 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 203 | return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | } | 
|  | 205 |  | 
|  | 206 | module_init(ide_generic_init); | 
|  | 207 |  | 
|  | 208 | MODULE_LICENSE("GPL"); |