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 | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 35 | static ssize_t store_add(struct class *cls, const char *buf, size_t n) |
| 36 | { |
Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 37 | unsigned int base, ctl; |
Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 38 | int irq, rc; |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 39 | hw_regs_t hw, *hws[] = { &hw, NULL, NULL, NULL }; |
Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 40 | |
| 41 | if (sscanf(buf, "%x:%x:%d", &base, &ctl, &irq) != 3) |
| 42 | return -EINVAL; |
| 43 | |
Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 44 | memset(&hw, 0, sizeof(hw)); |
| 45 | ide_std_init_ports(&hw, base, ctl); |
| 46 | hw.irq = irq; |
| 47 | hw.chipset = ide_generic; |
| 48 | |
Bartlomiej Zolnierkiewicz | 6f904d0 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 49 | rc = ide_host_add(NULL, hws, NULL); |
| 50 | if (rc) |
| 51 | return rc; |
Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 52 | |
| 53 | return n; |
| 54 | }; |
| 55 | |
| 56 | static struct class_attribute ide_generic_class_attrs[] = { |
| 57 | __ATTR(add, S_IWUSR, NULL, store_add), |
| 58 | __ATTR_NULL |
| 59 | }; |
| 60 | |
| 61 | static void ide_generic_class_release(struct class *cls) |
| 62 | { |
| 63 | kfree(cls); |
| 64 | } |
| 65 | |
| 66 | static int __init ide_generic_sysfs_init(void) |
| 67 | { |
| 68 | struct class *cls; |
| 69 | int rc; |
| 70 | |
| 71 | cls = kzalloc(sizeof(*cls), GFP_KERNEL); |
| 72 | if (!cls) |
| 73 | return -ENOMEM; |
| 74 | |
| 75 | cls->name = DRV_NAME; |
| 76 | cls->owner = THIS_MODULE; |
| 77 | cls->class_release = ide_generic_class_release; |
| 78 | cls->class_attrs = ide_generic_class_attrs; |
| 79 | |
| 80 | rc = class_register(cls); |
| 81 | if (rc) { |
| 82 | kfree(cls); |
| 83 | return rc; |
| 84 | } |
| 85 | |
| 86 | return 0; |
| 87 | } |
| 88 | |
Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 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 }; |
| 99 | #else |
| 100 | static const u16 legacy_bases[] = { 0x1f0, 0x170, 0x1e8, 0x168, 0x1e0, 0x160 }; |
| 101 | static const int legacy_irqs[] = { 14, 15, 11, 10, 8, 12 }; |
| 102 | #endif |
| 103 | |
Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame^] | 104 | static void ide_generic_check_pci_legacy_iobases(int *primary, int *secondary) |
| 105 | { |
| 106 | struct pci_dev *p = NULL; |
| 107 | u16 val; |
| 108 | |
| 109 | for_each_pci_dev(p) { |
| 110 | |
| 111 | if (pci_resource_start(p, 0) == 0x1f0) |
| 112 | *primary = 1; |
| 113 | if (pci_resource_start(p, 2) == 0x170) |
| 114 | *secondary = 1; |
| 115 | |
| 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; |
| 121 | |
| 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) { |
| 125 | |
| 126 | pci_read_config_word(p, 0x6C, &val); |
| 127 | if (val & 0x8000) { |
| 128 | /* ATA port enabled */ |
| 129 | if (val & 0x4000) |
| 130 | *secondary = 1; |
| 131 | else |
| 132 | *primary = 1; |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | } |
| 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | static int __init ide_generic_init(void) |
| 139 | { |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 140 | hw_regs_t hw[MAX_HWIFS], *hws[MAX_HWIFS]; |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 141 | struct ide_host *host; |
Bartlomiej Zolnierkiewicz | 8a69580 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 142 | unsigned long io_addr; |
Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame^] | 143 | int i, rc, primary = 0, secondary = 0; |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 144 | |
Bartlomiej Zolnierkiewicz | dbdec83 | 2008-07-24 22:53:28 +0200 | [diff] [blame] | 145 | #ifdef CONFIG_MIPS |
| 146 | if (!ide_probe_legacy()) |
| 147 | return -ENODEV; |
| 148 | #endif |
Borislav Petkov | 20df429 | 2008-10-10 22:39:35 +0200 | [diff] [blame^] | 149 | ide_generic_check_pci_legacy_iobases(&primary, &secondary); |
| 150 | |
| 151 | if (!probe_mask) { |
| 152 | printk(KERN_INFO DRV_NAME ": please use \"probe_mask=0x3f\" " |
| 153 | "module parameter for probing all legacy ISA IDE ports\n"); |
| 154 | |
| 155 | if (primary == 0) |
| 156 | probe_mask |= 0x1; |
| 157 | |
| 158 | if (secondary == 0) |
| 159 | probe_mask |= 0x2; |
| 160 | } else |
| 161 | printk(KERN_INFO DRV_NAME ": enforcing probing of I/O ports " |
| 162 | "upon user request\n"); |
Bartlomiej Zolnierkiewicz | 0cbccbc | 2008-06-15 21:00:24 +0200 | [diff] [blame] | 163 | |
Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 164 | memset(hws, 0, sizeof(hw_regs_t *) * MAX_HWIFS); |
| 165 | |
| 166 | for (i = 0; i < ARRAY_SIZE(legacy_bases); i++) { |
| 167 | io_addr = legacy_bases[i]; |
Bartlomiej Zolnierkiewicz | b2a53bc | 2008-02-06 02:57:48 +0100 | [diff] [blame] | 168 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 169 | hws[i] = NULL; |
Bartlomiej Zolnierkiewicz | 1664949 | 2008-04-26 22:25:17 +0200 | [diff] [blame] | 170 | |
Bartlomiej Zolnierkiewicz | 0cbccbc | 2008-06-15 21:00:24 +0200 | [diff] [blame] | 171 | if ((probe_mask & (1 << i)) && io_addr) { |
Bartlomiej Zolnierkiewicz | 1664949 | 2008-04-26 22:25:17 +0200 | [diff] [blame] | 172 | if (!request_region(io_addr, 8, DRV_NAME)) { |
| 173 | printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX " |
| 174 | "not free.\n", |
| 175 | DRV_NAME, io_addr, io_addr + 7); |
| 176 | continue; |
| 177 | } |
| 178 | |
| 179 | if (!request_region(io_addr + 0x206, 1, DRV_NAME)) { |
| 180 | printk(KERN_ERR "%s: I/O resource 0x%lX " |
| 181 | "not free.\n", |
| 182 | DRV_NAME, io_addr + 0x206); |
| 183 | release_region(io_addr, 8); |
| 184 | continue; |
| 185 | } |
| 186 | |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 187 | memset(&hw[i], 0, sizeof(hw[i])); |
| 188 | ide_std_init_ports(&hw[i], io_addr, io_addr + 0x206); |
Bartlomiej Zolnierkiewicz | f01d35d | 2008-07-24 22:53:31 +0200 | [diff] [blame] | 189 | #ifdef CONFIG_IA64 |
| 190 | hw[i].irq = isa_irq_to_vector(legacy_irqs[i]); |
| 191 | #else |
| 192 | hw[i].irq = legacy_irqs[i]; |
| 193 | #endif |
Bartlomiej Zolnierkiewicz | c97c6ac | 2008-07-23 19:55:50 +0200 | [diff] [blame] | 194 | hw[i].chipset = ide_generic; |
| 195 | |
| 196 | hws[i] = &hw[i]; |
Bartlomiej Zolnierkiewicz | 1664949 | 2008-04-26 22:25:17 +0200 | [diff] [blame] | 197 | } |
Bartlomiej Zolnierkiewicz | b2a53bc | 2008-02-06 02:57:48 +0100 | [diff] [blame] | 198 | } |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 199 | |
Bartlomiej Zolnierkiewicz | 48c3c10 | 2008-07-23 19:55:57 +0200 | [diff] [blame] | 200 | host = ide_host_alloc_all(NULL, hws); |
Bartlomiej Zolnierkiewicz | 8a69580 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 201 | if (host == NULL) { |
| 202 | rc = -ENOMEM; |
| 203 | goto err; |
| 204 | } |
| 205 | |
| 206 | rc = ide_host_register(host, NULL, hws); |
| 207 | if (rc) |
| 208 | goto err_free; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
Bartlomiej Zolnierkiewicz | f029851 | 2008-04-18 00:46:23 +0200 | [diff] [blame] | 210 | if (ide_generic_sysfs_init()) |
| 211 | printk(KERN_ERR DRV_NAME ": failed to create ide_generic " |
| 212 | "class\n"); |
| 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return 0; |
Bartlomiej Zolnierkiewicz | 8a69580 | 2008-07-23 19:55:59 +0200 | [diff] [blame] | 215 | err_free: |
| 216 | ide_host_free(host); |
| 217 | err: |
| 218 | for (i = 0; i < MAX_HWIFS; i++) { |
| 219 | if (hws[i] == NULL) |
| 220 | continue; |
| 221 | |
| 222 | io_addr = hws[i]->io_ports.data_addr; |
| 223 | release_region(io_addr + 0x206, 1); |
| 224 | release_region(io_addr, 8); |
| 225 | } |
| 226 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | module_init(ide_generic_init); |
| 230 | |
| 231 | MODULE_LICENSE("GPL"); |