Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Bartlomiej Zolnierkiewicz | 59bca8c | 2008-02-01 23:09:33 +0100 | [diff] [blame] | 2 | * Copyright (C) 1994-1998 Linus Torvalds & authors (see below) |
| 3 | * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | /* |
| 7 | * Mostly written by Mark Lord <mlord@pobox.com> |
| 8 | * and Gadi Oxman <gadio@netvision.net.il> |
| 9 | * and Andre Hedrick <andre@linux-ide.org> |
| 10 | * |
| 11 | * See linux/MAINTAINERS for address of current maintainer. |
| 12 | * |
| 13 | * This is the IDE probe module, as evolved from hd.c and ide.c. |
| 14 | * |
Bartlomiej Zolnierkiewicz | bbe4d6d | 2007-12-12 23:32:00 +0100 | [diff] [blame] | 15 | * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot |
| 16 | * by Andrea Arcangeli |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/module.h> |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/string.h> |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/timer.h> |
| 24 | #include <linux/mm.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/major.h> |
| 27 | #include <linux/errno.h> |
| 28 | #include <linux/genhd.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/ide.h> |
| 32 | #include <linux/spinlock.h> |
| 33 | #include <linux/kmod.h> |
| 34 | #include <linux/pci.h> |
FUJITA Tomonori | dc81785 | 2007-10-23 09:29:58 +0200 | [diff] [blame] | 35 | #include <linux/scatterlist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | #include <asm/byteorder.h> |
| 38 | #include <asm/irq.h> |
| 39 | #include <asm/uaccess.h> |
| 40 | #include <asm/io.h> |
| 41 | |
| 42 | /** |
| 43 | * generic_id - add a generic drive id |
| 44 | * @drive: drive to make an ID block for |
| 45 | * |
| 46 | * Add a fake id field to the drive we are passed. This allows |
| 47 | * use to skip a ton of NULL checks (which people always miss) |
| 48 | * and make drive properties unconditional outside of this file |
| 49 | */ |
| 50 | |
| 51 | static void generic_id(ide_drive_t *drive) |
| 52 | { |
| 53 | drive->id->cyls = drive->cyl; |
| 54 | drive->id->heads = drive->head; |
| 55 | drive->id->sectors = drive->sect; |
| 56 | drive->id->cur_cyls = drive->cyl; |
| 57 | drive->id->cur_heads = drive->head; |
| 58 | drive->id->cur_sectors = drive->sect; |
| 59 | } |
| 60 | |
| 61 | static void ide_disk_init_chs(ide_drive_t *drive) |
| 62 | { |
| 63 | struct hd_driveid *id = drive->id; |
| 64 | |
| 65 | /* Extract geometry if we did not already have one for the drive */ |
| 66 | if (!drive->cyl || !drive->head || !drive->sect) { |
| 67 | drive->cyl = drive->bios_cyl = id->cyls; |
| 68 | drive->head = drive->bios_head = id->heads; |
| 69 | drive->sect = drive->bios_sect = id->sectors; |
| 70 | } |
| 71 | |
| 72 | /* Handle logical geometry translation by the drive */ |
| 73 | if ((id->field_valid & 1) && id->cur_cyls && |
| 74 | id->cur_heads && (id->cur_heads <= 16) && id->cur_sectors) { |
| 75 | drive->cyl = id->cur_cyls; |
| 76 | drive->head = id->cur_heads; |
| 77 | drive->sect = id->cur_sectors; |
| 78 | } |
| 79 | |
| 80 | /* Use physical geometry if what we have still makes no sense */ |
| 81 | if (drive->head > 16 && id->heads && id->heads <= 16) { |
| 82 | drive->cyl = id->cyls; |
| 83 | drive->head = id->heads; |
| 84 | drive->sect = id->sectors; |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | static void ide_disk_init_mult_count(ide_drive_t *drive) |
| 89 | { |
| 90 | struct hd_driveid *id = drive->id; |
| 91 | |
| 92 | drive->mult_count = 0; |
| 93 | if (id->max_multsect) { |
| 94 | #ifdef CONFIG_IDEDISK_MULTI_MODE |
| 95 | id->multsect = ((id->max_multsect/2) > 1) ? id->max_multsect : 0; |
| 96 | id->multsect_valid = id->multsect ? 1 : 0; |
Bartlomiej Zolnierkiewicz | 4ee06b7 | 2008-01-25 22:17:08 +0100 | [diff] [blame] | 97 | drive->mult_req = id->multsect_valid ? id->max_multsect : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | drive->special.b.set_multmode = drive->mult_req ? 1 : 0; |
| 99 | #else /* original, pre IDE-NFG, per request of AC */ |
Bartlomiej Zolnierkiewicz | 4ee06b7 | 2008-01-25 22:17:08 +0100 | [diff] [blame] | 100 | drive->mult_req = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | if (drive->mult_req > id->max_multsect) |
| 102 | drive->mult_req = id->max_multsect; |
| 103 | if (drive->mult_req || ((id->multsect_valid & 1) && id->multsect)) |
| 104 | drive->special.b.set_multmode = 1; |
| 105 | #endif |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | * do_identify - identify a drive |
| 111 | * @drive: drive to identify |
| 112 | * @cmd: command used |
| 113 | * |
| 114 | * Called when we have issued a drive identify command to |
| 115 | * read and parse the results. This function is run with |
| 116 | * interrupts disabled. |
| 117 | */ |
| 118 | |
| 119 | static inline void do_identify (ide_drive_t *drive, u8 cmd) |
| 120 | { |
| 121 | ide_hwif_t *hwif = HWIF(drive); |
| 122 | int bswap = 1; |
| 123 | struct hd_driveid *id; |
| 124 | |
| 125 | id = drive->id; |
| 126 | /* read 512 bytes of id info */ |
| 127 | hwif->ata_input_data(drive, id, SECTOR_WORDS); |
| 128 | |
| 129 | drive->id_read = 1; |
| 130 | local_irq_enable(); |
Bartlomiej Zolnierkiewicz | 7b9f25b | 2008-02-01 23:09:28 +0100 | [diff] [blame] | 131 | #ifdef DEBUG |
| 132 | printk(KERN_INFO "%s: dumping identify data\n", drive->name); |
| 133 | ide_dump_identify((u8 *)id); |
| 134 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | ide_fix_driveid(id); |
| 136 | |
Robert P. J. Day | e71bc14 | 2007-07-09 23:17:57 +0200 | [diff] [blame] | 137 | #if defined (CONFIG_SCSI_EATA_PIO) || defined (CONFIG_SCSI_EATA) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | /* |
| 139 | * EATA SCSI controllers do a hardware ATA emulation: |
| 140 | * Ignore them if there is a driver for them available. |
| 141 | */ |
| 142 | if ((id->model[0] == 'P' && id->model[1] == 'M') || |
| 143 | (id->model[0] == 'S' && id->model[1] == 'K')) { |
| 144 | printk("%s: EATA SCSI HBA %.10s\n", drive->name, id->model); |
| 145 | goto err_misc; |
| 146 | } |
Robert P. J. Day | e71bc14 | 2007-07-09 23:17:57 +0200 | [diff] [blame] | 147 | #endif /* CONFIG_SCSI_EATA || CONFIG_SCSI_EATA_PIO */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | |
| 149 | /* |
| 150 | * WIN_IDENTIFY returns little-endian info, |
| 151 | * WIN_PIDENTIFY *usually* returns little-endian info. |
| 152 | */ |
| 153 | if (cmd == WIN_PIDENTIFY) { |
| 154 | if ((id->model[0] == 'N' && id->model[1] == 'E') /* NEC */ |
| 155 | || (id->model[0] == 'F' && id->model[1] == 'X') /* Mitsumi */ |
| 156 | || (id->model[0] == 'P' && id->model[1] == 'i'))/* Pioneer */ |
| 157 | /* Vertos drives may still be weird */ |
| 158 | bswap ^= 1; |
| 159 | } |
| 160 | ide_fixstring(id->model, sizeof(id->model), bswap); |
| 161 | ide_fixstring(id->fw_rev, sizeof(id->fw_rev), bswap); |
| 162 | ide_fixstring(id->serial_no, sizeof(id->serial_no), bswap); |
| 163 | |
Tejun Heo | 699b052 | 2007-11-05 21:42:25 +0100 | [diff] [blame] | 164 | /* we depend on this a lot! */ |
| 165 | id->model[sizeof(id->model)-1] = '\0'; |
| 166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | if (strstr(id->model, "E X A B Y T E N E S T")) |
| 168 | goto err_misc; |
| 169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | printk("%s: %s, ", drive->name, id->model); |
| 171 | drive->present = 1; |
| 172 | drive->dead = 0; |
| 173 | |
| 174 | /* |
| 175 | * Check for an ATAPI device |
| 176 | */ |
| 177 | if (cmd == WIN_PIDENTIFY) { |
| 178 | u8 type = (id->config >> 8) & 0x1f; |
| 179 | printk("ATAPI "); |
| 180 | switch (type) { |
| 181 | case ide_floppy: |
| 182 | if (!strstr(id->model, "CD-ROM")) { |
| 183 | if (!strstr(id->model, "oppy") && |
| 184 | !strstr(id->model, "poyp") && |
| 185 | !strstr(id->model, "ZIP")) |
| 186 | printk("cdrom or floppy?, assuming "); |
| 187 | if (drive->media != ide_cdrom) { |
| 188 | printk ("FLOPPY"); |
| 189 | drive->removable = 1; |
| 190 | break; |
| 191 | } |
| 192 | } |
| 193 | /* Early cdrom models used zero */ |
| 194 | type = ide_cdrom; |
| 195 | case ide_cdrom: |
| 196 | drive->removable = 1; |
| 197 | #ifdef CONFIG_PPC |
| 198 | /* kludge for Apple PowerBook internal zip */ |
| 199 | if (!strstr(id->model, "CD-ROM") && |
| 200 | strstr(id->model, "ZIP")) { |
| 201 | printk ("FLOPPY"); |
| 202 | type = ide_floppy; |
| 203 | break; |
| 204 | } |
| 205 | #endif |
| 206 | printk ("CD/DVD-ROM"); |
| 207 | break; |
| 208 | case ide_tape: |
| 209 | printk ("TAPE"); |
| 210 | break; |
| 211 | case ide_optical: |
| 212 | printk ("OPTICAL"); |
| 213 | drive->removable = 1; |
| 214 | break; |
| 215 | default: |
| 216 | printk("UNKNOWN (type %d)", type); |
| 217 | break; |
| 218 | } |
| 219 | printk (" drive\n"); |
| 220 | drive->media = type; |
| 221 | /* an ATAPI device ignores DRDY */ |
| 222 | drive->ready_stat = 0; |
| 223 | return; |
| 224 | } |
| 225 | |
| 226 | /* |
| 227 | * Not an ATAPI device: looks like a "regular" hard disk |
| 228 | */ |
Richard Purdie | 9810933 | 2006-02-03 03:04:55 -0800 | [diff] [blame] | 229 | |
| 230 | /* |
| 231 | * 0x848a = CompactFlash device |
| 232 | * These are *not* removable in Linux definition of the term |
| 233 | */ |
| 234 | |
| 235 | if ((id->config != 0x848a) && (id->config & (1<<7))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | drive->removable = 1; |
| 237 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | drive->media = ide_disk; |
Richard Purdie | 9810933 | 2006-02-03 03:04:55 -0800 | [diff] [blame] | 239 | printk("%s DISK drive\n", (id->config == 0x848a) ? "CFA" : "ATA" ); |
Bartlomiej Zolnierkiewicz | cd3dbc9 | 2008-01-25 22:17:13 +0100 | [diff] [blame] | 240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | return; |
| 242 | |
| 243 | err_misc: |
| 244 | kfree(id); |
| 245 | drive->present = 0; |
| 246 | return; |
| 247 | } |
| 248 | |
| 249 | /** |
| 250 | * actual_try_to_identify - send ata/atapi identify |
| 251 | * @drive: drive to identify |
| 252 | * @cmd: command to use |
| 253 | * |
| 254 | * try_to_identify() sends an ATA(PI) IDENTIFY request to a drive |
| 255 | * and waits for a response. It also monitors irqs while this is |
| 256 | * happening, in hope of automatically determining which one is |
| 257 | * being used by the interface. |
| 258 | * |
| 259 | * Returns: 0 device was identified |
| 260 | * 1 device timed-out (no response to identify request) |
| 261 | * 2 device aborted the command (refused to identify itself) |
| 262 | */ |
| 263 | |
| 264 | static int actual_try_to_identify (ide_drive_t *drive, u8 cmd) |
| 265 | { |
| 266 | ide_hwif_t *hwif = HWIF(drive); |
| 267 | int rc; |
| 268 | unsigned long hd_status; |
| 269 | unsigned long timeout; |
| 270 | u8 s = 0, a = 0; |
| 271 | |
| 272 | /* take a deep breath */ |
| 273 | msleep(50); |
| 274 | |
| 275 | if (IDE_CONTROL_REG) { |
| 276 | a = hwif->INB(IDE_ALTSTATUS_REG); |
| 277 | s = hwif->INB(IDE_STATUS_REG); |
| 278 | if ((a ^ s) & ~INDEX_STAT) { |
| 279 | printk(KERN_INFO "%s: probing with STATUS(0x%02x) instead of " |
| 280 | "ALTSTATUS(0x%02x)\n", drive->name, s, a); |
| 281 | /* ancient Seagate drives, broken interfaces */ |
| 282 | hd_status = IDE_STATUS_REG; |
| 283 | } else { |
| 284 | /* use non-intrusive polling */ |
| 285 | hd_status = IDE_ALTSTATUS_REG; |
| 286 | } |
| 287 | } else |
| 288 | hd_status = IDE_STATUS_REG; |
| 289 | |
| 290 | /* set features register for atapi |
| 291 | * identify command to be sure of reply |
| 292 | */ |
| 293 | if ((cmd == WIN_PIDENTIFY)) |
| 294 | /* disable dma & overlap */ |
| 295 | hwif->OUTB(0, IDE_FEATURE_REG); |
| 296 | |
| 297 | /* ask drive for ID */ |
| 298 | hwif->OUTB(cmd, IDE_COMMAND_REG); |
| 299 | |
| 300 | timeout = ((cmd == WIN_IDENTIFY) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2; |
| 301 | timeout += jiffies; |
| 302 | do { |
| 303 | if (time_after(jiffies, timeout)) { |
| 304 | /* drive timed-out */ |
| 305 | return 1; |
| 306 | } |
| 307 | /* give drive a breather */ |
| 308 | msleep(50); |
| 309 | } while ((hwif->INB(hd_status)) & BUSY_STAT); |
| 310 | |
| 311 | /* wait for IRQ and DRQ_STAT */ |
| 312 | msleep(50); |
| 313 | if (OK_STAT((hwif->INB(IDE_STATUS_REG)), DRQ_STAT, BAD_R_STAT)) { |
| 314 | unsigned long flags; |
| 315 | |
| 316 | /* local CPU only; some systems need this */ |
| 317 | local_irq_save(flags); |
| 318 | /* drive returned ID */ |
| 319 | do_identify(drive, cmd); |
| 320 | /* drive responded with ID */ |
| 321 | rc = 0; |
| 322 | /* clear drive IRQ */ |
| 323 | (void) hwif->INB(IDE_STATUS_REG); |
| 324 | local_irq_restore(flags); |
| 325 | } else { |
| 326 | /* drive refused ID */ |
| 327 | rc = 2; |
| 328 | } |
| 329 | return rc; |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * try_to_identify - try to identify a drive |
| 334 | * @drive: drive to probe |
| 335 | * @cmd: command to use |
| 336 | * |
| 337 | * Issue the identify command and then do IRQ probing to |
| 338 | * complete the identification when needed by finding the |
| 339 | * IRQ the drive is attached to |
| 340 | */ |
| 341 | |
| 342 | static int try_to_identify (ide_drive_t *drive, u8 cmd) |
| 343 | { |
| 344 | ide_hwif_t *hwif = HWIF(drive); |
| 345 | int retval; |
| 346 | int autoprobe = 0; |
| 347 | unsigned long cookie = 0; |
| 348 | |
| 349 | /* |
| 350 | * Disable device irq unless we need to |
| 351 | * probe for it. Otherwise we'll get spurious |
| 352 | * interrupts during the identify-phase that |
| 353 | * the irq handler isn't expecting. |
| 354 | */ |
| 355 | if (IDE_CONTROL_REG) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | if (!hwif->irq) { |
| 357 | autoprobe = 1; |
| 358 | cookie = probe_irq_on(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | } |
Bartlomiej Zolnierkiewicz | 81ca691 | 2008-01-26 20:13:08 +0100 | [diff] [blame] | 360 | ide_set_irq(drive, autoprobe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | retval = actual_try_to_identify(drive, cmd); |
| 364 | |
| 365 | if (autoprobe) { |
| 366 | int irq; |
Bartlomiej Zolnierkiewicz | 81ca691 | 2008-01-26 20:13:08 +0100 | [diff] [blame] | 367 | |
| 368 | ide_set_irq(drive, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | /* clear drive IRQ */ |
| 370 | (void) hwif->INB(IDE_STATUS_REG); |
| 371 | udelay(5); |
| 372 | irq = probe_irq_off(cookie); |
| 373 | if (!hwif->irq) { |
| 374 | if (irq > 0) { |
| 375 | hwif->irq = irq; |
| 376 | } else { |
| 377 | /* Mmmm.. multiple IRQs.. |
| 378 | * don't know which was ours |
| 379 | */ |
| 380 | printk("%s: IRQ probe failed (0x%lx)\n", |
| 381 | drive->name, cookie); |
| 382 | } |
| 383 | } |
| 384 | } |
| 385 | return retval; |
| 386 | } |
| 387 | |
Bartlomiej Zolnierkiewicz | 3a5015c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 388 | static int ide_busy_sleep(ide_hwif_t *hwif) |
| 389 | { |
| 390 | unsigned long timeout = jiffies + WAIT_WORSTCASE; |
| 391 | u8 stat; |
| 392 | |
| 393 | do { |
| 394 | msleep(50); |
| 395 | stat = hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]); |
| 396 | if ((stat & BUSY_STAT) == 0) |
| 397 | return 0; |
| 398 | } while (time_before(jiffies, timeout)); |
| 399 | |
| 400 | return 1; |
| 401 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | |
| 403 | /** |
| 404 | * do_probe - probe an IDE device |
| 405 | * @drive: drive to probe |
| 406 | * @cmd: command to use |
| 407 | * |
| 408 | * do_probe() has the difficult job of finding a drive if it exists, |
| 409 | * without getting hung up if it doesn't exist, without trampling on |
| 410 | * ethernet cards, and without leaving any IRQs dangling to haunt us later. |
| 411 | * |
| 412 | * If a drive is "known" to exist (from CMOS or kernel parameters), |
| 413 | * but does not respond right away, the probe will "hang in there" |
| 414 | * for the maximum wait time (about 30 seconds), otherwise it will |
| 415 | * exit much more quickly. |
| 416 | * |
| 417 | * Returns: 0 device was identified |
| 418 | * 1 device timed-out (no response to identify request) |
| 419 | * 2 device aborted the command (refused to identify itself) |
| 420 | * 3 bad status from device (possible for ATAPI drives) |
| 421 | * 4 probe was not attempted because failure was obvious |
| 422 | */ |
| 423 | |
| 424 | static int do_probe (ide_drive_t *drive, u8 cmd) |
| 425 | { |
| 426 | int rc; |
| 427 | ide_hwif_t *hwif = HWIF(drive); |
| 428 | |
| 429 | if (drive->present) { |
| 430 | /* avoid waiting for inappropriate probes */ |
| 431 | if ((drive->media != ide_disk) && (cmd == WIN_IDENTIFY)) |
| 432 | return 4; |
| 433 | } |
| 434 | #ifdef DEBUG |
| 435 | printk("probing for %s: present=%d, media=%d, probetype=%s\n", |
| 436 | drive->name, drive->present, drive->media, |
| 437 | (cmd == WIN_IDENTIFY) ? "ATA" : "ATAPI"); |
| 438 | #endif |
| 439 | |
| 440 | /* needed for some systems |
| 441 | * (e.g. crw9624 as drive0 with disk as slave) |
| 442 | */ |
| 443 | msleep(50); |
| 444 | SELECT_DRIVE(drive); |
| 445 | msleep(50); |
| 446 | if (hwif->INB(IDE_SELECT_REG) != drive->select.all && !drive->present) { |
| 447 | if (drive->select.b.unit != 0) { |
| 448 | /* exit with drive0 selected */ |
| 449 | SELECT_DRIVE(&hwif->drives[0]); |
| 450 | /* allow BUSY_STAT to assert & clear */ |
| 451 | msleep(50); |
| 452 | } |
| 453 | /* no i/f present: mmm.. this should be a 4 -ml */ |
| 454 | return 3; |
| 455 | } |
| 456 | |
| 457 | if (OK_STAT((hwif->INB(IDE_STATUS_REG)), READY_STAT, BUSY_STAT) || |
| 458 | drive->present || cmd == WIN_PIDENTIFY) { |
| 459 | /* send cmd and wait */ |
| 460 | if ((rc = try_to_identify(drive, cmd))) { |
| 461 | /* failed: try again */ |
| 462 | rc = try_to_identify(drive,cmd); |
| 463 | } |
| 464 | if (hwif->INB(IDE_STATUS_REG) == (BUSY_STAT|READY_STAT)) |
| 465 | return 4; |
| 466 | |
| 467 | if ((rc == 1 && cmd == WIN_PIDENTIFY) && |
| 468 | ((drive->autotune == IDE_TUNE_DEFAULT) || |
| 469 | (drive->autotune == IDE_TUNE_AUTO))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | printk("%s: no response (status = 0x%02x), " |
| 471 | "resetting drive\n", drive->name, |
| 472 | hwif->INB(IDE_STATUS_REG)); |
| 473 | msleep(50); |
| 474 | hwif->OUTB(drive->select.all, IDE_SELECT_REG); |
| 475 | msleep(50); |
| 476 | hwif->OUTB(WIN_SRST, IDE_COMMAND_REG); |
Bartlomiej Zolnierkiewicz | 3a5015c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 477 | (void)ide_busy_sleep(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | rc = try_to_identify(drive, cmd); |
| 479 | } |
| 480 | if (rc == 1) |
| 481 | printk("%s: no response (status = 0x%02x)\n", |
| 482 | drive->name, hwif->INB(IDE_STATUS_REG)); |
| 483 | /* ensure drive irq is clear */ |
| 484 | (void) hwif->INB(IDE_STATUS_REG); |
| 485 | } else { |
| 486 | /* not present or maybe ATAPI */ |
| 487 | rc = 3; |
| 488 | } |
| 489 | if (drive->select.b.unit != 0) { |
| 490 | /* exit with drive0 selected */ |
| 491 | SELECT_DRIVE(&hwif->drives[0]); |
| 492 | msleep(50); |
| 493 | /* ensure drive irq is clear */ |
| 494 | (void) hwif->INB(IDE_STATUS_REG); |
| 495 | } |
| 496 | return rc; |
| 497 | } |
| 498 | |
| 499 | /* |
| 500 | * |
| 501 | */ |
| 502 | static void enable_nest (ide_drive_t *drive) |
| 503 | { |
| 504 | ide_hwif_t *hwif = HWIF(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
| 506 | printk("%s: enabling %s -- ", hwif->name, drive->id->model); |
| 507 | SELECT_DRIVE(drive); |
| 508 | msleep(50); |
| 509 | hwif->OUTB(EXABYTE_ENABLE_NEST, IDE_COMMAND_REG); |
Bartlomiej Zolnierkiewicz | 3a5015c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 510 | |
| 511 | if (ide_busy_sleep(hwif)) { |
| 512 | printk(KERN_CONT "failed (timeout)\n"); |
| 513 | return; |
| 514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
| 516 | msleep(50); |
| 517 | |
| 518 | if (!OK_STAT((hwif->INB(IDE_STATUS_REG)), 0, BAD_STAT)) { |
| 519 | printk("failed (status = 0x%02x)\n", hwif->INB(IDE_STATUS_REG)); |
| 520 | } else { |
| 521 | printk("success\n"); |
| 522 | } |
| 523 | |
| 524 | /* if !(success||timed-out) */ |
| 525 | if (do_probe(drive, WIN_IDENTIFY) >= 2) { |
| 526 | /* look for ATAPI device */ |
| 527 | (void) do_probe(drive, WIN_PIDENTIFY); |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | /** |
| 532 | * probe_for_drives - upper level drive probe |
| 533 | * @drive: drive to probe for |
| 534 | * |
| 535 | * probe_for_drive() tests for existence of a given drive using do_probe() |
| 536 | * and presents things to the user as needed. |
| 537 | * |
| 538 | * Returns: 0 no device was found |
| 539 | * 1 device was found (note: drive->present might |
| 540 | * still be 0) |
| 541 | */ |
| 542 | |
| 543 | static inline u8 probe_for_drive (ide_drive_t *drive) |
| 544 | { |
| 545 | /* |
| 546 | * In order to keep things simple we have an id |
| 547 | * block for all drives at all times. If the device |
| 548 | * is pre ATA or refuses ATA/ATAPI identify we |
| 549 | * will add faked data to this. |
| 550 | * |
| 551 | * Also note that 0 everywhere means "can't do X" |
| 552 | */ |
| 553 | |
Deepak Saxena | f5e3c2f | 2005-11-07 01:01:25 -0800 | [diff] [blame] | 554 | drive->id = kzalloc(SECTOR_WORDS *4, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | drive->id_read = 0; |
| 556 | if(drive->id == NULL) |
| 557 | { |
| 558 | printk(KERN_ERR "ide: out of memory for id data.\n"); |
| 559 | return 0; |
| 560 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | strcpy(drive->id->model, "UNKNOWN"); |
| 562 | |
| 563 | /* skip probing? */ |
| 564 | if (!drive->noprobe) |
| 565 | { |
| 566 | /* if !(success||timed-out) */ |
| 567 | if (do_probe(drive, WIN_IDENTIFY) >= 2) { |
| 568 | /* look for ATAPI device */ |
| 569 | (void) do_probe(drive, WIN_PIDENTIFY); |
| 570 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | if (!drive->present) |
| 572 | /* drive not found */ |
| 573 | return 0; |
Alan Cox | 7859557 | 2007-07-03 22:28:35 +0200 | [diff] [blame] | 574 | if (strstr(drive->id->model, "E X A B Y T E N E S T")) |
| 575 | enable_nest(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
| 577 | /* identification failed? */ |
| 578 | if (!drive->id_read) { |
| 579 | if (drive->media == ide_disk) { |
| 580 | printk(KERN_INFO "%s: non-IDE drive, CHS=%d/%d/%d\n", |
| 581 | drive->name, drive->cyl, |
| 582 | drive->head, drive->sect); |
| 583 | } else if (drive->media == ide_cdrom) { |
| 584 | printk(KERN_INFO "%s: ATAPI cdrom (?)\n", drive->name); |
| 585 | } else { |
| 586 | /* nuke it */ |
| 587 | printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name); |
| 588 | drive->present = 0; |
| 589 | } |
| 590 | } |
| 591 | /* drive was found */ |
| 592 | } |
| 593 | if(!drive->present) |
| 594 | return 0; |
| 595 | /* The drive wasn't being helpful. Add generic info only */ |
| 596 | if (drive->id_read == 0) { |
| 597 | generic_id(drive); |
| 598 | return 1; |
| 599 | } |
| 600 | |
| 601 | if (drive->media == ide_disk) { |
| 602 | ide_disk_init_chs(drive); |
| 603 | ide_disk_init_mult_count(drive); |
| 604 | } |
| 605 | |
| 606 | return drive->present; |
| 607 | } |
| 608 | |
| 609 | static void hwif_release_dev (struct device *dev) |
| 610 | { |
| 611 | ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev); |
| 612 | |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 613 | complete(&hwif->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
| 615 | |
Bartlomiej Zolnierkiewicz | a14dc57 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 616 | static void ide_register_port(ide_hwif_t *hwif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | { |
Randy Dunlap | 349ae23 | 2006-10-03 01:14:23 -0700 | [diff] [blame] | 618 | int ret; |
| 619 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | /* register with global device tree */ |
| 621 | strlcpy(hwif->gendev.bus_id,hwif->name,BUS_ID_SIZE); |
| 622 | hwif->gendev.driver_data = hwif; |
| 623 | if (hwif->gendev.parent == NULL) { |
Bartlomiej Zolnierkiewicz | 3650165 | 2008-02-01 23:09:31 +0100 | [diff] [blame] | 624 | if (hwif->dev) |
| 625 | hwif->gendev.parent = hwif->dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | else |
| 627 | /* Would like to do = &device_legacy */ |
| 628 | hwif->gendev.parent = NULL; |
| 629 | } |
| 630 | hwif->gendev.release = hwif_release_dev; |
Randy Dunlap | 349ae23 | 2006-10-03 01:14:23 -0700 | [diff] [blame] | 631 | ret = device_register(&hwif->gendev); |
| 632 | if (ret < 0) |
| 633 | printk(KERN_WARNING "IDE: %s: device_register error: %d\n", |
| 634 | __FUNCTION__, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | } |
| 636 | |
Bartlomiej Zolnierkiewicz | c860a8f | 2008-02-01 23:09:34 +0100 | [diff] [blame] | 637 | /** |
| 638 | * ide_port_wait_ready - wait for port to become ready |
| 639 | * @hwif: IDE port |
| 640 | * |
| 641 | * This is needed on some PPCs and a bunch of BIOS-less embedded |
| 642 | * platforms. Typical cases are: |
| 643 | * |
| 644 | * - The firmware hard reset the disk before booting the kernel, |
| 645 | * the drive is still doing it's poweron-reset sequence, that |
| 646 | * can take up to 30 seconds. |
| 647 | * |
| 648 | * - The firmware does nothing (or no firmware), the device is |
| 649 | * still in POST state (same as above actually). |
| 650 | * |
| 651 | * - Some CD/DVD/Writer combo drives tend to drive the bus during |
| 652 | * their reset sequence even when they are non-selected slave |
| 653 | * devices, thus preventing discovery of the main HD. |
| 654 | * |
| 655 | * Doing this wait-for-non-busy should not harm any existing |
| 656 | * configuration and fix some issues like the above. |
| 657 | * |
| 658 | * BenH. |
| 659 | * |
| 660 | * Returns 0 on success, error code (< 0) otherwise. |
| 661 | */ |
| 662 | |
| 663 | static int ide_port_wait_ready(ide_hwif_t *hwif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | { |
Jonas Stare | 8266105 | 2007-11-27 21:35:53 +0100 | [diff] [blame] | 665 | int unit, rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | |
| 667 | printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name); |
| 668 | |
| 669 | /* Let HW settle down a bit from whatever init state we |
| 670 | * come from */ |
| 671 | mdelay(2); |
| 672 | |
| 673 | /* Wait for BSY bit to go away, spec timeout is 30 seconds, |
| 674 | * I know of at least one disk who takes 31 seconds, I use 35 |
| 675 | * here to be safe |
| 676 | */ |
| 677 | rc = ide_wait_not_busy(hwif, 35000); |
| 678 | if (rc) |
| 679 | return rc; |
| 680 | |
| 681 | /* Now make sure both master & slave are ready */ |
Jonas Stare | 8266105 | 2007-11-27 21:35:53 +0100 | [diff] [blame] | 682 | for (unit = 0; unit < MAX_DRIVES; unit++) { |
| 683 | ide_drive_t *drive = &hwif->drives[unit]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | |
Jonas Stare | 8266105 | 2007-11-27 21:35:53 +0100 | [diff] [blame] | 685 | /* Ignore disks that we will not probe for later. */ |
| 686 | if (!drive->noprobe || drive->present) { |
| 687 | SELECT_DRIVE(drive); |
Bartlomiej Zolnierkiewicz | 81ca691 | 2008-01-26 20:13:08 +0100 | [diff] [blame] | 688 | ide_set_irq(drive, 1); |
Jonas Stare | 8266105 | 2007-11-27 21:35:53 +0100 | [diff] [blame] | 689 | mdelay(2); |
| 690 | rc = ide_wait_not_busy(hwif, 35000); |
| 691 | if (rc) |
| 692 | goto out; |
| 693 | } else |
| 694 | printk(KERN_DEBUG "%s: ide_wait_not_busy() skipped\n", |
| 695 | drive->name); |
| 696 | } |
| 697 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | /* Exit function with master reselected (let's be sane) */ |
Jonas Stare | 8266105 | 2007-11-27 21:35:53 +0100 | [diff] [blame] | 699 | if (unit) |
| 700 | SELECT_DRIVE(&hwif->drives[0]); |
| 701 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | return rc; |
| 703 | } |
| 704 | |
| 705 | /** |
| 706 | * ide_undecoded_slave - look for bad CF adapters |
Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 707 | * @drive1: drive |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 708 | * |
| 709 | * Analyse the drives on the interface and attempt to decide if we |
| 710 | * have the same drive viewed twice. This occurs with crap CF adapters |
| 711 | * and PCMCIA sometimes. |
| 712 | */ |
| 713 | |
Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 714 | void ide_undecoded_slave(ide_drive_t *drive1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | { |
Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 716 | ide_drive_t *drive0 = &drive1->hwif->drives[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 718 | if ((drive1->dn & 1) == 0 || drive0->present == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | return; |
| 720 | |
| 721 | /* If the models don't match they are not the same product */ |
| 722 | if (strcmp(drive0->id->model, drive1->id->model)) |
| 723 | return; |
| 724 | |
| 725 | /* Serial numbers do not match */ |
| 726 | if (strncmp(drive0->id->serial_no, drive1->id->serial_no, 20)) |
| 727 | return; |
| 728 | |
| 729 | /* No serial number, thankfully very rare for CF */ |
| 730 | if (drive0->id->serial_no[0] == 0) |
| 731 | return; |
| 732 | |
| 733 | /* Appears to be an IDE flash adapter with decode bugs */ |
| 734 | printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n"); |
| 735 | |
| 736 | drive1->present = 0; |
| 737 | } |
| 738 | |
| 739 | EXPORT_SYMBOL_GPL(ide_undecoded_slave); |
| 740 | |
Bartlomiej Zolnierkiewicz | 9d50152 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 741 | static int ide_probe_port(ide_hwif_t *hwif) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | unsigned long flags; |
| 744 | unsigned int irqd; |
Bartlomiej Zolnierkiewicz | a14dc57 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 745 | int unit, rc = -ENODEV; |
| 746 | |
| 747 | BUG_ON(hwif->present); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | |
| 749 | if (hwif->noprobe) |
Bartlomiej Zolnierkiewicz | 9d50152 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 750 | return -EACCES; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | /* |
| 753 | * We must always disable IRQ, as probe_for_drive will assert IRQ, but |
| 754 | * we'll install our IRQ driver much later... |
| 755 | */ |
| 756 | irqd = hwif->irq; |
| 757 | if (irqd) |
| 758 | disable_irq(hwif->irq); |
| 759 | |
| 760 | local_irq_set(flags); |
| 761 | |
Bartlomiej Zolnierkiewicz | c860a8f | 2008-02-01 23:09:34 +0100 | [diff] [blame] | 762 | if (ide_port_wait_ready(hwif) == -EBUSY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name); |
| 764 | |
| 765 | /* |
Bartlomiej Zolnierkiewicz | b140b99 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 766 | * Need to probe slave device first to make it release PDIAG-. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | */ |
Bartlomiej Zolnierkiewicz | b140b99 | 2007-10-13 17:47:51 +0200 | [diff] [blame] | 768 | for (unit = MAX_DRIVES - 1; unit >= 0; unit--) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | ide_drive_t *drive = &hwif->drives[unit]; |
| 770 | drive->dn = (hwif->channel ? 2 : 0) + unit; |
| 771 | (void) probe_for_drive(drive); |
Bartlomiej Zolnierkiewicz | a14dc57 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 772 | if (drive->present) |
| 773 | rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | } |
| 775 | if (hwif->io_ports[IDE_CONTROL_OFFSET] && hwif->reset) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | printk(KERN_WARNING "%s: reset\n", hwif->name); |
| 777 | hwif->OUTB(12, hwif->io_ports[IDE_CONTROL_OFFSET]); |
| 778 | udelay(10); |
| 779 | hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]); |
Bartlomiej Zolnierkiewicz | 3a5015c | 2008-01-26 20:13:09 +0100 | [diff] [blame] | 780 | (void)ide_busy_sleep(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | } |
| 782 | local_irq_restore(flags); |
| 783 | /* |
| 784 | * Use cached IRQ number. It might be (and is...) changed by probe |
| 785 | * code above |
| 786 | */ |
| 787 | if (irqd) |
| 788 | enable_irq(irqd); |
| 789 | |
Bartlomiej Zolnierkiewicz | a14dc57 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 790 | return rc; |
Bartlomiej Zolnierkiewicz | e84e7ea | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | static void ide_port_tune_devices(ide_hwif_t *hwif) |
| 794 | { |
| 795 | int unit; |
| 796 | |
Bartlomiej Zolnierkiewicz | f01393e | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 797 | for (unit = 0; unit < MAX_DRIVES; unit++) { |
| 798 | ide_drive_t *drive = &hwif->drives[unit]; |
| 799 | |
| 800 | if (drive->present && hwif->quirkproc) |
| 801 | hwif->quirkproc(drive); |
| 802 | } |
Bartlomiej Zolnierkiewicz | 0380dad | 2007-06-08 15:14:29 +0200 | [diff] [blame] | 803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | for (unit = 0; unit < MAX_DRIVES; ++unit) { |
| 805 | ide_drive_t *drive = &hwif->drives[unit]; |
| 806 | |
| 807 | if (drive->present) { |
Bartlomiej Zolnierkiewicz | 26bcb87 | 2007-10-11 23:54:00 +0200 | [diff] [blame] | 808 | if (drive->autotune == IDE_TUNE_AUTO) |
| 809 | ide_set_max_pio(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | |
| 811 | if (drive->autotune != IDE_TUNE_DEFAULT && |
| 812 | drive->autotune != IDE_TUNE_AUTO) |
| 813 | continue; |
| 814 | |
| 815 | drive->nice1 = 1; |
| 816 | |
Bartlomiej Zolnierkiewicz | 15ce926 | 2008-01-26 20:13:03 +0100 | [diff] [blame] | 817 | if (hwif->dma_host_set) |
Bartlomiej Zolnierkiewicz | 8c0697c | 2007-10-16 22:29:58 +0200 | [diff] [blame] | 818 | ide_set_dma(drive); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | } |
| 820 | } |
Kumar Gala | 208a08f | 2006-03-24 03:18:21 -0800 | [diff] [blame] | 821 | |
| 822 | for (unit = 0; unit < MAX_DRIVES; ++unit) { |
| 823 | ide_drive_t *drive = &hwif->drives[unit]; |
| 824 | |
Bartlomiej Zolnierkiewicz | 807b90d | 2008-02-02 19:56:40 +0100 | [diff] [blame] | 825 | if (hwif->host_flags & IDE_HFLAG_NO_IO_32BIT) |
Kumar Gala | 208a08f | 2006-03-24 03:18:21 -0800 | [diff] [blame] | 826 | drive->no_io_32bit = 1; |
| 827 | else |
| 828 | drive->no_io_32bit = drive->id->dword_io ? 1 : 0; |
| 829 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | } |
| 831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | #if MAX_HWIFS > 1 |
| 833 | /* |
| 834 | * save_match() is used to simplify logic in init_irq() below. |
| 835 | * |
| 836 | * A loophole here is that we may not know about a particular |
| 837 | * hwif's irq until after that hwif is actually probed/initialized.. |
| 838 | * This could be a problem for the case where an hwif is on a |
| 839 | * dual interface that requires serialization (eg. cmd640) and another |
| 840 | * hwif using one of the same irqs is initialized beforehand. |
| 841 | * |
| 842 | * This routine detects and reports such situations, but does not fix them. |
| 843 | */ |
| 844 | static void save_match(ide_hwif_t *hwif, ide_hwif_t *new, ide_hwif_t **match) |
| 845 | { |
| 846 | ide_hwif_t *m = *match; |
| 847 | |
| 848 | if (m && m->hwgroup && m->hwgroup != new->hwgroup) { |
| 849 | if (!new->hwgroup) |
| 850 | return; |
| 851 | printk("%s: potential irq problem with %s and %s\n", |
| 852 | hwif->name, new->name, m->name); |
| 853 | } |
| 854 | if (!m || m->irq != hwif->irq) /* don't undo a prior perfect match */ |
| 855 | *match = new; |
| 856 | } |
| 857 | #endif /* MAX_HWIFS > 1 */ |
| 858 | |
| 859 | /* |
| 860 | * init request queue |
| 861 | */ |
| 862 | static int ide_init_queue(ide_drive_t *drive) |
| 863 | { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 864 | struct request_queue *q; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | ide_hwif_t *hwif = HWIF(drive); |
| 866 | int max_sectors = 256; |
| 867 | int max_sg_entries = PRD_ENTRIES; |
| 868 | |
| 869 | /* |
| 870 | * Our default set up assumes the normal IDE case, |
| 871 | * that is 64K segmenting, standard PRD setup |
| 872 | * and LBA28. Some drivers then impose their own |
| 873 | * limits and LBA48 we could raise it but as yet |
| 874 | * do not. |
| 875 | */ |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 876 | |
Ravikiran G Thirumalai | 556e58f | 2005-08-04 12:53:26 -0700 | [diff] [blame] | 877 | q = blk_init_queue_node(do_ide_request, &ide_lock, hwif_to_node(hwif)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | if (!q) |
| 879 | return 1; |
| 880 | |
| 881 | q->queuedata = drive; |
| 882 | blk_queue_segment_boundary(q, 0xffff); |
| 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | if (hwif->rqsize < max_sectors) |
| 885 | max_sectors = hwif->rqsize; |
| 886 | blk_queue_max_sectors(q, max_sectors); |
| 887 | |
| 888 | #ifdef CONFIG_PCI |
| 889 | /* When we have an IOMMU, we may have a problem where pci_map_sg() |
| 890 | * creates segments that don't completely match our boundary |
| 891 | * requirements and thus need to be broken up again. Because it |
| 892 | * doesn't align properly either, we may actually have to break up |
| 893 | * to more segments than what was we got in the first place, a max |
| 894 | * worst case is twice as many. |
| 895 | * This will be fixed once we teach pci_map_sg() about our boundary |
| 896 | * requirements, hopefully soon. *FIXME* |
| 897 | */ |
| 898 | if (!PCI_DMA_BUS_IS_PHYS) |
| 899 | max_sg_entries >>= 1; |
| 900 | #endif /* CONFIG_PCI */ |
| 901 | |
| 902 | blk_queue_max_hw_segments(q, max_sg_entries); |
| 903 | blk_queue_max_phys_segments(q, max_sg_entries); |
| 904 | |
| 905 | /* assign drive queue */ |
| 906 | drive->queue = q; |
| 907 | |
| 908 | /* needs drive->queue to be set */ |
| 909 | ide_toggle_bounce(drive, 1); |
| 910 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | return 0; |
| 912 | } |
| 913 | |
Bartlomiej Zolnierkiewicz | 0947e0d | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 914 | static void ide_add_drive_to_hwgroup(ide_drive_t *drive) |
| 915 | { |
| 916 | ide_hwgroup_t *hwgroup = drive->hwif->hwgroup; |
| 917 | |
| 918 | spin_lock_irq(&ide_lock); |
| 919 | if (!hwgroup->drive) { |
| 920 | /* first drive for hwgroup. */ |
| 921 | drive->next = drive; |
| 922 | hwgroup->drive = drive; |
| 923 | hwgroup->hwif = HWIF(hwgroup->drive); |
| 924 | } else { |
| 925 | drive->next = hwgroup->drive->next; |
| 926 | hwgroup->drive->next = drive; |
| 927 | } |
| 928 | spin_unlock_irq(&ide_lock); |
| 929 | } |
| 930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | /* |
Bartlomiej Zolnierkiewicz | d5bc659 | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 932 | * For any present drive: |
| 933 | * - allocate the block device queue |
| 934 | * - link drive into the hwgroup |
| 935 | */ |
| 936 | static void ide_port_setup_devices(ide_hwif_t *hwif) |
| 937 | { |
| 938 | int i; |
| 939 | |
| 940 | for (i = 0; i < MAX_DRIVES; i++) { |
| 941 | ide_drive_t *drive = &hwif->drives[i]; |
| 942 | |
| 943 | if (!drive->present) |
| 944 | continue; |
| 945 | |
| 946 | if (ide_init_queue(drive)) { |
| 947 | printk(KERN_ERR "ide: failed to init %s\n", |
| 948 | drive->name); |
| 949 | continue; |
| 950 | } |
| 951 | |
| 952 | ide_add_drive_to_hwgroup(drive); |
| 953 | } |
| 954 | } |
| 955 | |
| 956 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | * This routine sets up the irq for an ide interface, and creates a new |
| 958 | * hwgroup for the irq/hwif if none was previously assigned. |
| 959 | * |
| 960 | * Much of the code is for correctly detecting/handling irq sharing |
| 961 | * and irq serialization situations. This is somewhat complex because |
| 962 | * it handles static as well as dynamic (PCMCIA) IDE interfaces. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | */ |
| 964 | static int init_irq (ide_hwif_t *hwif) |
| 965 | { |
| 966 | unsigned int index; |
| 967 | ide_hwgroup_t *hwgroup; |
| 968 | ide_hwif_t *match = NULL; |
| 969 | |
| 970 | |
| 971 | BUG_ON(in_interrupt()); |
| 972 | BUG_ON(irqs_disabled()); |
Ravikiran G Thirumalai | 556e58f | 2005-08-04 12:53:26 -0700 | [diff] [blame] | 973 | BUG_ON(hwif == NULL); |
| 974 | |
Matthias Kaehlcke | ef29888 | 2007-07-09 23:17:55 +0200 | [diff] [blame] | 975 | mutex_lock(&ide_cfg_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | hwif->hwgroup = NULL; |
| 977 | #if MAX_HWIFS > 1 |
| 978 | /* |
| 979 | * Group up with any other hwifs that share our irq(s). |
| 980 | */ |
| 981 | for (index = 0; index < MAX_HWIFS; index++) { |
| 982 | ide_hwif_t *h = &ide_hwifs[index]; |
| 983 | if (h->hwgroup) { /* scan only initialized hwif's */ |
| 984 | if (hwif->irq == h->irq) { |
| 985 | hwif->sharing_irq = h->sharing_irq = 1; |
| 986 | if (hwif->chipset != ide_pci || |
| 987 | h->chipset != ide_pci) { |
| 988 | save_match(hwif, h, &match); |
| 989 | } |
| 990 | } |
| 991 | if (hwif->serialized) { |
| 992 | if (hwif->mate && hwif->mate->irq == h->irq) |
| 993 | save_match(hwif, h, &match); |
| 994 | } |
| 995 | if (h->serialized) { |
| 996 | if (h->mate && hwif->irq == h->mate->irq) |
| 997 | save_match(hwif, h, &match); |
| 998 | } |
| 999 | } |
| 1000 | } |
| 1001 | #endif /* MAX_HWIFS > 1 */ |
| 1002 | /* |
| 1003 | * If we are still without a hwgroup, then form a new one |
| 1004 | */ |
| 1005 | if (match) { |
| 1006 | hwgroup = match->hwgroup; |
| 1007 | hwif->hwgroup = hwgroup; |
| 1008 | /* |
| 1009 | * Link us into the hwgroup. |
| 1010 | * This must be done early, do ensure that unexpected_intr |
| 1011 | * can find the hwif and prevent irq storms. |
| 1012 | * No drives are attached to the new hwif, choose_drive |
| 1013 | * can't do anything stupid (yet). |
| 1014 | * Add ourself as the 2nd entry to the hwgroup->hwif |
| 1015 | * linked list, the first entry is the hwif that owns |
| 1016 | * hwgroup->handler - do not change that. |
| 1017 | */ |
| 1018 | spin_lock_irq(&ide_lock); |
| 1019 | hwif->next = hwgroup->hwif->next; |
| 1020 | hwgroup->hwif->next = hwif; |
Bartlomiej Zolnierkiewicz | cae5c82 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1021 | BUG_ON(hwif->next == hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | spin_unlock_irq(&ide_lock); |
| 1023 | } else { |
Bartlomiej Zolnierkiewicz | 422278e | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 1024 | hwgroup = kmalloc_node(sizeof(*hwgroup), GFP_KERNEL|__GFP_ZERO, |
| 1025 | hwif_to_node(hwif)); |
| 1026 | if (hwgroup == NULL) |
| 1027 | goto out_up; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | |
| 1029 | hwif->hwgroup = hwgroup; |
Bartlomiej Zolnierkiewicz | 422278e | 2008-02-01 23:09:35 +0100 | [diff] [blame] | 1030 | hwgroup->hwif = hwif->next = hwif; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | init_timer(&hwgroup->timer); |
| 1033 | hwgroup->timer.function = &ide_timer_expiry; |
| 1034 | hwgroup->timer.data = (unsigned long) hwgroup; |
| 1035 | } |
| 1036 | |
| 1037 | /* |
| 1038 | * Allocate the irq, if not already obtained for another hwif |
| 1039 | */ |
| 1040 | if (!match || match->irq != hwif->irq) { |
Bartlomiej Zolnierkiewicz | 7b5da4b | 2008-01-25 22:17:08 +0100 | [diff] [blame] | 1041 | int sa = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | #if defined(__mc68000__) || defined(CONFIG_APUS) |
Thomas Gleixner | 362537b | 2006-07-01 19:29:34 -0700 | [diff] [blame] | 1043 | sa = IRQF_SHARED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | #endif /* __mc68000__ || CONFIG_APUS */ |
| 1045 | |
Bartlomiej Zolnierkiewicz | 7b5da4b | 2008-01-25 22:17:08 +0100 | [diff] [blame] | 1046 | if (IDE_CHIPSET_IS_PCI(hwif->chipset)) |
Thomas Gleixner | 362537b | 2006-07-01 19:29:34 -0700 | [diff] [blame] | 1047 | sa = IRQF_SHARED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | |
| 1049 | if (hwif->io_ports[IDE_CONTROL_OFFSET]) |
| 1050 | /* clear nIEN */ |
| 1051 | hwif->OUTB(0x08, hwif->io_ports[IDE_CONTROL_OFFSET]); |
| 1052 | |
| 1053 | if (request_irq(hwif->irq,&ide_intr,sa,hwif->name,hwgroup)) |
| 1054 | goto out_unlink; |
| 1055 | } |
| 1056 | |
Bartlomiej Zolnierkiewicz | 8a0e7e1 | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 1057 | if (!hwif->rqsize) { |
| 1058 | if ((hwif->host_flags & IDE_HFLAG_NO_LBA48) || |
| 1059 | (hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA)) |
| 1060 | hwif->rqsize = 256; |
| 1061 | else |
| 1062 | hwif->rqsize = 65536; |
| 1063 | } |
| 1064 | |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 1065 | #if !defined(__mc68000__) && !defined(CONFIG_APUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | printk("%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name, |
| 1067 | hwif->io_ports[IDE_DATA_OFFSET], |
| 1068 | hwif->io_ports[IDE_DATA_OFFSET]+7, |
| 1069 | hwif->io_ports[IDE_CONTROL_OFFSET], hwif->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | #else |
| 1071 | printk("%s at 0x%08lx on irq %d", hwif->name, |
| 1072 | hwif->io_ports[IDE_DATA_OFFSET], hwif->irq); |
| 1073 | #endif /* __mc68000__ && CONFIG_APUS */ |
| 1074 | if (match) |
| 1075 | printk(" (%sed with %s)", |
| 1076 | hwif->sharing_irq ? "shar" : "serializ", match->name); |
| 1077 | printk("\n"); |
Bartlomiej Zolnierkiewicz | d5bc659 | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 1078 | |
| 1079 | ide_port_setup_devices(hwif); |
| 1080 | |
Matthias Kaehlcke | ef29888 | 2007-07-09 23:17:55 +0200 | [diff] [blame] | 1081 | mutex_unlock(&ide_cfg_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | return 0; |
| 1083 | out_unlink: |
Bartlomiej Zolnierkiewicz | fbd1308 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1084 | ide_remove_port_from_hwgroup(hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | out_up: |
Matthias Kaehlcke | ef29888 | 2007-07-09 23:17:55 +0200 | [diff] [blame] | 1086 | mutex_unlock(&ide_cfg_mtx); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | return 1; |
| 1088 | } |
| 1089 | |
| 1090 | static int ata_lock(dev_t dev, void *data) |
| 1091 | { |
| 1092 | /* FIXME: we want to pin hwif down */ |
| 1093 | return 0; |
| 1094 | } |
| 1095 | |
| 1096 | static struct kobject *ata_probe(dev_t dev, int *part, void *data) |
| 1097 | { |
| 1098 | ide_hwif_t *hwif = data; |
| 1099 | int unit = *part >> PARTN_BITS; |
| 1100 | ide_drive_t *drive = &hwif->drives[unit]; |
| 1101 | if (!drive->present) |
| 1102 | return NULL; |
| 1103 | |
| 1104 | if (drive->media == ide_disk) |
| 1105 | request_module("ide-disk"); |
| 1106 | if (drive->scsi) |
| 1107 | request_module("ide-scsi"); |
| 1108 | if (drive->media == ide_cdrom || drive->media == ide_optical) |
| 1109 | request_module("ide-cd"); |
| 1110 | if (drive->media == ide_tape) |
| 1111 | request_module("ide-tape"); |
| 1112 | if (drive->media == ide_floppy) |
| 1113 | request_module("ide-floppy"); |
| 1114 | |
| 1115 | return NULL; |
| 1116 | } |
| 1117 | |
| 1118 | static struct kobject *exact_match(dev_t dev, int *part, void *data) |
| 1119 | { |
| 1120 | struct gendisk *p = data; |
| 1121 | *part &= (1 << PARTN_BITS) - 1; |
Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 1122 | return &p->dev.kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1123 | } |
| 1124 | |
| 1125 | static int exact_lock(dev_t dev, void *data) |
| 1126 | { |
| 1127 | struct gendisk *p = data; |
| 1128 | |
| 1129 | if (!get_disk(p)) |
| 1130 | return -1; |
| 1131 | return 0; |
| 1132 | } |
| 1133 | |
| 1134 | void ide_register_region(struct gendisk *disk) |
| 1135 | { |
| 1136 | blk_register_region(MKDEV(disk->major, disk->first_minor), |
| 1137 | disk->minors, NULL, exact_match, exact_lock, disk); |
| 1138 | } |
| 1139 | |
| 1140 | EXPORT_SYMBOL_GPL(ide_register_region); |
| 1141 | |
| 1142 | void ide_unregister_region(struct gendisk *disk) |
| 1143 | { |
| 1144 | blk_unregister_region(MKDEV(disk->major, disk->first_minor), |
| 1145 | disk->minors); |
| 1146 | } |
| 1147 | |
| 1148 | EXPORT_SYMBOL_GPL(ide_unregister_region); |
| 1149 | |
| 1150 | void ide_init_disk(struct gendisk *disk, ide_drive_t *drive) |
| 1151 | { |
| 1152 | ide_hwif_t *hwif = drive->hwif; |
| 1153 | unsigned int unit = (drive->select.all >> 4) & 1; |
| 1154 | |
| 1155 | disk->major = hwif->major; |
| 1156 | disk->first_minor = unit << PARTN_BITS; |
| 1157 | sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit); |
| 1158 | disk->queue = drive->queue; |
| 1159 | } |
| 1160 | |
| 1161 | EXPORT_SYMBOL_GPL(ide_init_disk); |
| 1162 | |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1163 | static void ide_remove_drive_from_hwgroup(ide_drive_t *drive) |
| 1164 | { |
| 1165 | ide_hwgroup_t *hwgroup = drive->hwif->hwgroup; |
| 1166 | |
| 1167 | if (drive == drive->next) { |
| 1168 | /* special case: last drive from hwgroup. */ |
| 1169 | BUG_ON(hwgroup->drive != drive); |
| 1170 | hwgroup->drive = NULL; |
| 1171 | } else { |
| 1172 | ide_drive_t *walk; |
| 1173 | |
| 1174 | walk = hwgroup->drive; |
| 1175 | while (walk->next != drive) |
| 1176 | walk = walk->next; |
| 1177 | walk->next = drive->next; |
| 1178 | if (hwgroup->drive == drive) { |
| 1179 | hwgroup->drive = drive->next; |
| 1180 | hwgroup->hwif = hwgroup->drive->hwif; |
| 1181 | } |
| 1182 | } |
| 1183 | BUG_ON(hwgroup->drive == drive); |
| 1184 | } |
| 1185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | static void drive_release_dev (struct device *dev) |
| 1187 | { |
| 1188 | ide_drive_t *drive = container_of(dev, ide_drive_t, gendev); |
| 1189 | |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1190 | spin_lock_irq(&ide_lock); |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1191 | ide_remove_drive_from_hwgroup(drive); |
Jesper Juhl | 6044ec8 | 2005-11-07 01:01:32 -0800 | [diff] [blame] | 1192 | kfree(drive->id); |
| 1193 | drive->id = NULL; |
Bartlomiej Zolnierkiewicz | 8604aff | 2005-05-26 14:55:34 +0200 | [diff] [blame] | 1194 | drive->present = 0; |
| 1195 | /* Messed up locking ... */ |
| 1196 | spin_unlock_irq(&ide_lock); |
| 1197 | blk_cleanup_queue(drive->queue); |
| 1198 | spin_lock_irq(&ide_lock); |
| 1199 | drive->queue = NULL; |
| 1200 | spin_unlock_irq(&ide_lock); |
| 1201 | |
Aleksey Makarov | f36d402 | 2006-01-09 15:59:27 -0800 | [diff] [blame] | 1202 | complete(&drive->gendev_rel_comp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | } |
| 1204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | static int hwif_init(ide_hwif_t *hwif) |
| 1206 | { |
| 1207 | int old_irq; |
| 1208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | if (!hwif->irq) { |
| 1210 | if (!(hwif->irq = ide_default_irq(hwif->io_ports[IDE_DATA_OFFSET]))) |
| 1211 | { |
| 1212 | printk("%s: DISABLED, NO IRQ\n", hwif->name); |
Bartlomiej Zolnierkiewicz | 4853565 | 2008-02-01 23:09:34 +0100 | [diff] [blame] | 1213 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | } |
| 1215 | } |
| 1216 | #ifdef CONFIG_BLK_DEV_HD |
| 1217 | if (hwif->irq == HD_IRQ && hwif->io_ports[IDE_DATA_OFFSET] != HD_DATA) { |
| 1218 | printk("%s: CANNOT SHARE IRQ WITH OLD " |
| 1219 | "HARDDISK DRIVER (hd.c)\n", hwif->name); |
Bartlomiej Zolnierkiewicz | 4853565 | 2008-02-01 23:09:34 +0100 | [diff] [blame] | 1220 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | } |
| 1222 | #endif /* CONFIG_BLK_DEV_HD */ |
| 1223 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | if (register_blkdev(hwif->major, hwif->name)) |
| 1225 | return 0; |
| 1226 | |
| 1227 | if (!hwif->sg_max_nents) |
| 1228 | hwif->sg_max_nents = PRD_ENTRIES; |
| 1229 | |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 1230 | hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1231 | GFP_KERNEL); |
| 1232 | if (!hwif->sg_table) { |
| 1233 | printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name); |
| 1234 | goto out; |
| 1235 | } |
Jens Axboe | 45711f1 | 2007-10-22 21:19:53 +0200 | [diff] [blame] | 1236 | |
| 1237 | sg_init_table(hwif->sg_table, hwif->sg_max_nents); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | |
| 1239 | if (init_irq(hwif) == 0) |
| 1240 | goto done; |
| 1241 | |
| 1242 | old_irq = hwif->irq; |
| 1243 | /* |
| 1244 | * It failed to initialise. Find the default IRQ for |
| 1245 | * this port and try that. |
| 1246 | */ |
| 1247 | if (!(hwif->irq = ide_default_irq(hwif->io_ports[IDE_DATA_OFFSET]))) { |
| 1248 | printk("%s: Disabled unable to get IRQ %d.\n", |
| 1249 | hwif->name, old_irq); |
| 1250 | goto out; |
| 1251 | } |
| 1252 | if (init_irq(hwif)) { |
| 1253 | printk("%s: probed IRQ %d and default IRQ %d failed.\n", |
| 1254 | hwif->name, old_irq, hwif->irq); |
| 1255 | goto out; |
| 1256 | } |
| 1257 | printk("%s: probed IRQ %d failed, using default.\n", |
| 1258 | hwif->name, hwif->irq); |
| 1259 | |
| 1260 | done: |
Bartlomiej Zolnierkiewicz | 3a4e7c9 | 2008-02-02 19:56:40 +0100 | [diff] [blame] | 1261 | blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS, |
| 1262 | THIS_MODULE, ata_probe, ata_lock, hwif); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | return 1; |
| 1264 | |
| 1265 | out: |
| 1266 | unregister_blkdev(hwif->major, hwif->name); |
| 1267 | return 0; |
| 1268 | } |
| 1269 | |
Bartlomiej Zolnierkiewicz | 9601a60 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 1270 | static void hwif_register_devices(ide_hwif_t *hwif) |
| 1271 | { |
| 1272 | unsigned int i; |
| 1273 | |
| 1274 | for (i = 0; i < MAX_DRIVES; i++) { |
| 1275 | ide_drive_t *drive = &hwif->drives[i]; |
Bartlomiej Zolnierkiewicz | c5d70cc | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 1276 | struct device *dev = &drive->gendev; |
| 1277 | int ret; |
Bartlomiej Zolnierkiewicz | 9601a60 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 1278 | |
Bartlomiej Zolnierkiewicz | c5d70cc | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 1279 | if (!drive->present) |
| 1280 | continue; |
Bartlomiej Zolnierkiewicz | 9601a60 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 1281 | |
Bartlomiej Zolnierkiewicz | c5d70cc | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 1282 | ide_add_generic_settings(drive); |
| 1283 | |
| 1284 | snprintf(dev->bus_id, BUS_ID_SIZE, "%u.%u", hwif->index, i); |
| 1285 | dev->parent = &hwif->gendev; |
| 1286 | dev->bus = &ide_bus_type; |
| 1287 | dev->driver_data = drive; |
| 1288 | dev->release = drive_release_dev; |
| 1289 | |
| 1290 | ret = device_register(dev); |
| 1291 | if (ret < 0) |
| 1292 | printk(KERN_WARNING "IDE: %s: device_register error: " |
| 1293 | "%d\n", __func__, ret); |
Bartlomiej Zolnierkiewicz | 9601a60 | 2007-10-20 00:32:29 +0200 | [diff] [blame] | 1294 | } |
| 1295 | } |
| 1296 | |
Bartlomiej Zolnierkiewicz | 7704ca2 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 1297 | static void ide_port_init_devices(ide_hwif_t *hwif) |
| 1298 | { |
| 1299 | int i; |
| 1300 | |
| 1301 | for (i = 0; i < MAX_DRIVES; i++) { |
| 1302 | ide_drive_t *drive = &hwif->drives[i]; |
| 1303 | |
| 1304 | if (hwif->host_flags & IDE_HFLAG_IO_32BIT) |
| 1305 | drive->io_32bit = 1; |
| 1306 | if (hwif->host_flags & IDE_HFLAG_UNMASK_IRQS) |
| 1307 | drive->unmask = 1; |
Bartlomiej Zolnierkiewicz | 807b90d | 2008-02-02 19:56:40 +0100 | [diff] [blame] | 1308 | if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS) |
| 1309 | drive->no_unmask = 1; |
Bartlomiej Zolnierkiewicz | 7704ca2 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 1310 | if ((hwif->host_flags & IDE_HFLAG_NO_AUTOTUNE) == 0) |
| 1311 | drive->autotune = 1; |
| 1312 | } |
Bartlomiej Zolnierkiewicz | 1f2cf8b | 2008-02-02 19:56:40 +0100 | [diff] [blame] | 1313 | |
| 1314 | if (hwif->port_init_devs) |
| 1315 | hwif->port_init_devs(hwif); |
Bartlomiej Zolnierkiewicz | 7704ca2 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 1316 | } |
| 1317 | |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1318 | static void ide_init_port(ide_hwif_t *hwif, unsigned int port, |
| 1319 | const struct ide_port_info *d) |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 1320 | { |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1321 | if (d->chipset != ide_etrax100) |
| 1322 | hwif->channel = port; |
| 1323 | |
| 1324 | if (d->chipset) |
| 1325 | hwif->chipset = d->chipset; |
| 1326 | |
| 1327 | if (d->init_iops) |
| 1328 | d->init_iops(hwif); |
| 1329 | |
| 1330 | if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) |
| 1331 | ide_hwif_setup_dma(hwif, d); |
| 1332 | |
| 1333 | if ((!hwif->irq && (d->host_flags & IDE_HFLAG_LEGACY_IRQS)) || |
| 1334 | (d->host_flags & IDE_HFLAG_FORCE_LEGACY_IRQS)) |
| 1335 | hwif->irq = port ? 15 : 14; |
| 1336 | |
| 1337 | hwif->host_flags = d->host_flags; |
| 1338 | hwif->pio_mask = d->pio_mask; |
| 1339 | |
| 1340 | if ((d->host_flags & IDE_HFLAG_SERIALIZE) && hwif->mate) |
| 1341 | hwif->mate->serialized = hwif->serialized = 1; |
| 1342 | |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1343 | hwif->swdma_mask = d->swdma_mask; |
| 1344 | hwif->mwdma_mask = d->mwdma_mask; |
| 1345 | hwif->ultra_mask = d->udma_mask; |
| 1346 | |
| 1347 | /* reset DMA masks only for SFF-style DMA controllers */ |
| 1348 | if ((d->host_flags && IDE_HFLAG_NO_DMA) == 0 && hwif->dma_base == 0) |
| 1349 | hwif->swdma_mask = hwif->mwdma_mask = hwif->ultra_mask = 0; |
| 1350 | |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1351 | if (d->host_flags & IDE_HFLAG_RQSIZE_256) |
| 1352 | hwif->rqsize = 256; |
| 1353 | |
| 1354 | /* call chipset specific routine for each enabled port */ |
| 1355 | if (d->init_hwif) |
| 1356 | d->init_hwif(hwif); |
Bartlomiej Zolnierkiewicz | bfa14b4 | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1357 | |
| 1358 | if (hwif->cable_detect && (hwif->ultra_mask & 0x78)) { |
| 1359 | if (hwif->cbl != ATA_CBL_PATA40_SHORT) |
| 1360 | hwif->cbl = hwif->cable_detect(hwif); |
| 1361 | } |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | int ide_device_add_all(u8 *idx, const struct ide_port_info *d) |
| 1365 | { |
| 1366 | ide_hwif_t *hwif, *mate = NULL; |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 1367 | int i, rc = 0; |
| 1368 | |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1369 | for (i = 0; i < MAX_HWIFS; i++) { |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1370 | if (d == NULL || idx[i] == 0xff) { |
| 1371 | mate = NULL; |
| 1372 | continue; |
| 1373 | } |
| 1374 | |
| 1375 | hwif = &ide_hwifs[idx[i]]; |
| 1376 | |
| 1377 | if (d->chipset != ide_etrax100 && (i & 1) && mate) { |
| 1378 | hwif->mate = mate; |
| 1379 | mate->mate = hwif; |
| 1380 | } |
| 1381 | |
| 1382 | mate = (i & 1) ? NULL : hwif; |
| 1383 | |
| 1384 | ide_init_port(hwif, i & 1, d); |
Bartlomiej Zolnierkiewicz | 7704ca2 | 2008-02-02 19:56:39 +0100 | [diff] [blame] | 1385 | ide_port_init_devices(hwif); |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1386 | } |
| 1387 | |
| 1388 | for (i = 0; i < MAX_HWIFS; i++) { |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1389 | if (idx[i] == 0xff) |
| 1390 | continue; |
| 1391 | |
Bartlomiej Zolnierkiewicz | 139ddfc | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1392 | hwif = &ide_hwifs[idx[i]]; |
| 1393 | |
| 1394 | if ((hwif->chipset != ide_4drives || !hwif->mate || |
| 1395 | !hwif->mate->present) && ide_hwif_request_regions(hwif)) { |
| 1396 | printk(KERN_ERR "%s: ports already in use, " |
| 1397 | "skipping probe\n", hwif->name); |
| 1398 | continue; |
| 1399 | } |
| 1400 | |
Bartlomiej Zolnierkiewicz | e84e7ea | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1401 | if (ide_probe_port(hwif) < 0) { |
Bartlomiej Zolnierkiewicz | 139ddfc | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1402 | ide_hwif_release_regions(hwif); |
Bartlomiej Zolnierkiewicz | e84e7ea | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1403 | continue; |
| 1404 | } |
| 1405 | |
Bartlomiej Zolnierkiewicz | a14dc57 | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1406 | hwif->present = 1; |
| 1407 | |
| 1408 | if (hwif->chipset != ide_4drives || !hwif->mate || |
| 1409 | !hwif->mate->present) |
| 1410 | ide_register_port(hwif); |
| 1411 | |
Bartlomiej Zolnierkiewicz | e84e7ea | 2008-02-01 23:09:36 +0100 | [diff] [blame] | 1412 | ide_port_tune_devices(hwif); |
Bartlomiej Zolnierkiewicz | 2e13093 | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1413 | } |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1414 | |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1415 | for (i = 0; i < MAX_HWIFS; i++) { |
Bartlomiej Zolnierkiewicz | 2e13093 | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1416 | if (idx[i] == 0xff) |
| 1417 | continue; |
| 1418 | |
| 1419 | hwif = &ide_hwifs[idx[i]]; |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1420 | |
Bartlomiej Zolnierkiewicz | 4853565 | 2008-02-01 23:09:34 +0100 | [diff] [blame] | 1421 | if (!hwif->present) |
| 1422 | continue; |
| 1423 | |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1424 | if (hwif_init(hwif) == 0) { |
| 1425 | printk(KERN_INFO "%s: failed to initialize IDE " |
| 1426 | "interface\n", hwif->name); |
Bartlomiej Zolnierkiewicz | 4853565 | 2008-02-01 23:09:34 +0100 | [diff] [blame] | 1427 | hwif->present = 0; |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1428 | rc = -1; |
| 1429 | continue; |
| 1430 | } |
Bartlomiej Zolnierkiewicz | decdc3f | 2008-02-02 19:56:41 +0100 | [diff] [blame] | 1431 | |
| 1432 | ide_acpi_init(hwif); |
Bartlomiej Zolnierkiewicz | eafd88a | 2008-02-02 19:56:43 +0100 | [diff] [blame^] | 1433 | ide_acpi_port_init_devices(hwif); |
Bartlomiej Zolnierkiewicz | 2e13093 | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1434 | } |
| 1435 | |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1436 | for (i = 0; i < MAX_HWIFS; i++) { |
Bartlomiej Zolnierkiewicz | 2e13093 | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1437 | if (idx[i] == 0xff) |
| 1438 | continue; |
| 1439 | |
| 1440 | hwif = &ide_hwifs[idx[i]]; |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1441 | |
Bartlomiej Zolnierkiewicz | 71518342 | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1442 | if (hwif->present) { |
| 1443 | if (hwif->chipset == ide_unknown || |
| 1444 | hwif->chipset == ide_forced) |
| 1445 | hwif->chipset = ide_generic; |
Bartlomiej Zolnierkiewicz | ba6560a | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1446 | hwif_register_devices(hwif); |
Bartlomiej Zolnierkiewicz | 71518342 | 2008-01-26 20:13:04 +0100 | [diff] [blame] | 1447 | } |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 1448 | } |
| 1449 | |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1450 | for (i = 0; i < MAX_HWIFS; i++) { |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 1451 | if (idx[i] != 0xff) |
| 1452 | ide_proc_register_port(&ide_hwifs[idx[i]]); |
| 1453 | } |
| 1454 | |
| 1455 | return rc; |
| 1456 | } |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1457 | EXPORT_SYMBOL_GPL(ide_device_add_all); |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 1458 | |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1459 | int ide_device_add(u8 idx[4], const struct ide_port_info *d) |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1460 | { |
| 1461 | u8 idx_all[MAX_HWIFS]; |
| 1462 | int i; |
| 1463 | |
| 1464 | for (i = 0; i < MAX_HWIFS; i++) |
| 1465 | idx_all[i] = (i < 4) ? idx[i] : 0xff; |
| 1466 | |
Bartlomiej Zolnierkiewicz | c413b9b | 2008-02-02 19:56:31 +0100 | [diff] [blame] | 1467 | return ide_device_add_all(idx_all, d); |
Bartlomiej Zolnierkiewicz | 151575e | 2008-01-26 20:13:05 +0100 | [diff] [blame] | 1468 | } |
Bartlomiej Zolnierkiewicz | 8447d9d | 2007-10-20 00:32:31 +0200 | [diff] [blame] | 1469 | EXPORT_SYMBOL_GPL(ide_device_add); |