MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / drivers / ide / ide-probe.c
blob984aa824a2629d2be15d567fd5c0d405dd6836b6
1 /*
2 * linux/drivers/ide/ide-probe.c Version 1.11 Mar 05, 2003
4 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
5 */
7 /*
8 * Mostly written by Mark Lord <mlord@pobox.com>
9 * and Gadi Oxman <gadio@netvision.net.il>
10 * and Andre Hedrick <andre@linux-ide.org>
12 * See linux/MAINTAINERS for address of current maintainer.
14 * This is the IDE probe module, as evolved from hd.c and ide.c.
16 * Version 1.00 move drive probing code from ide.c to ide-probe.c
17 * Version 1.01 fix compilation problem for m68k
18 * Version 1.02 increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
19 * by Andrea Arcangeli
20 * Version 1.03 fix for (hwif->chipset == ide_4drives)
21 * Version 1.04 fixed buggy treatments of known flash memory cards
23 * Version 1.05 fix for (hwif->chipset == ide_pdc4030)
24 * added ide6/7/8/9
25 * allowed for secondary flash card to be detectable
26 * with new flag : drive->ata_flash : 1;
27 * Version 1.06 stream line request queue and prep for cascade project.
28 * Version 1.07 max_sect <= 255; slower disks would get behind and
29 * then fall over when they get to 256. Paul G.
30 * Version 1.10 Update set for new IDE. drive->id is now always
31 * valid after probe time even with noprobe
34 #undef REALLY_SLOW_IO /* most systems can safely undef this */
36 #include <linux/module.h>
37 #include <linux/types.h>
38 #include <linux/string.h>
39 #include <linux/kernel.h>
40 #include <linux/timer.h>
41 #include <linux/mm.h>
42 #include <linux/interrupt.h>
43 #include <linux/major.h>
44 #include <linux/errno.h>
45 #include <linux/genhd.h>
46 #include <linux/slab.h>
47 #include <linux/delay.h>
48 #include <linux/ide.h>
49 #include <linux/spinlock.h>
50 #include <linux/kmod.h>
51 #include <linux/pci.h>
53 #include <asm/byteorder.h>
54 #include <asm/irq.h>
55 #include <asm/uaccess.h>
56 #include <asm/io.h>
59 /**
60 * generic_id - add a generic drive id
61 * @drive: drive to make an ID block for
63 * Add a fake id field to the drive we are passed. This allows
64 * use to skip a ton of NULL checks (which people always miss)
65 * and make drive properties unconditional outside of this file
68 static void generic_id(ide_drive_t *drive)
70 drive->id->cyls = drive->cyl;
71 drive->id->heads = drive->head;
72 drive->id->sectors = drive->sect;
73 drive->id->cur_cyls = drive->cyl;
74 drive->id->cur_heads = drive->head;
75 drive->id->cur_sectors = drive->sect;
78 static void ide_disk_init_chs(ide_drive_t *drive)
80 struct hd_driveid *id = drive->id;
82 /* Extract geometry if we did not already have one for the drive */
83 if (!drive->cyl || !drive->head || !drive->sect) {
84 drive->cyl = drive->bios_cyl = id->cyls;
85 drive->head = drive->bios_head = id->heads;
86 drive->sect = drive->bios_sect = id->sectors;
89 /* Handle logical geometry translation by the drive */
90 if ((id->field_valid & 1) && id->cur_cyls &&
91 id->cur_heads && (id->cur_heads <= 16) && id->cur_sectors) {
92 drive->cyl = id->cur_cyls;
93 drive->head = id->cur_heads;
94 drive->sect = id->cur_sectors;
97 /* Use physical geometry if what we have still makes no sense */
98 if (drive->head > 16 && id->heads && id->heads <= 16) {
99 drive->cyl = id->cyls;
100 drive->head = id->heads;
101 drive->sect = id->sectors;
105 static void ide_disk_init_mult_count(ide_drive_t *drive)
107 struct hd_driveid *id = drive->id;
109 drive->mult_count = 0;
110 if (id->max_multsect) {
111 #ifdef CONFIG_IDEDISK_MULTI_MODE
112 id->multsect = ((id->max_multsect/2) > 1) ? id->max_multsect : 0;
113 id->multsect_valid = id->multsect ? 1 : 0;
114 drive->mult_req = id->multsect_valid ? id->max_multsect : INITIAL_MULT_COUNT;
115 drive->special.b.set_multmode = drive->mult_req ? 1 : 0;
116 #else /* original, pre IDE-NFG, per request of AC */
117 drive->mult_req = INITIAL_MULT_COUNT;
118 if (drive->mult_req > id->max_multsect)
119 drive->mult_req = id->max_multsect;
120 if (drive->mult_req || ((id->multsect_valid & 1) && id->multsect))
121 drive->special.b.set_multmode = 1;
122 #endif
127 * do_identify - identify a drive
128 * @drive: drive to identify
129 * @cmd: command used
131 * Called when we have issued a drive identify command to
132 * read and parse the results. This function is run with
133 * interrupts disabled.
136 static inline void do_identify (ide_drive_t *drive, u8 cmd)
138 ide_hwif_t *hwif = HWIF(drive);
139 int bswap = 1;
140 struct hd_driveid *id;
142 id = drive->id;
143 /* read 512 bytes of id info */
144 hwif->ata_input_data(drive, id, SECTOR_WORDS);
146 drive->id_read = 1;
147 local_irq_enable();
148 ide_fix_driveid(id);
150 #if defined (CONFIG_SCSI_EATA_DMA) || defined (CONFIG_SCSI_EATA_PIO) || defined (CONFIG_SCSI_EATA)
152 * EATA SCSI controllers do a hardware ATA emulation:
153 * Ignore them if there is a driver for them available.
155 if ((id->model[0] == 'P' && id->model[1] == 'M') ||
156 (id->model[0] == 'S' && id->model[1] == 'K')) {
157 printk("%s: EATA SCSI HBA %.10s\n", drive->name, id->model);
158 goto err_misc;
160 #endif /* CONFIG_SCSI_EATA_DMA || CONFIG_SCSI_EATA_PIO */
163 * WIN_IDENTIFY returns little-endian info,
164 * WIN_PIDENTIFY *usually* returns little-endian info.
166 if (cmd == WIN_PIDENTIFY) {
167 if ((id->model[0] == 'N' && id->model[1] == 'E') /* NEC */
168 || (id->model[0] == 'F' && id->model[1] == 'X') /* Mitsumi */
169 || (id->model[0] == 'P' && id->model[1] == 'i'))/* Pioneer */
170 /* Vertos drives may still be weird */
171 bswap ^= 1;
173 ide_fixstring(id->model, sizeof(id->model), bswap);
174 ide_fixstring(id->fw_rev, sizeof(id->fw_rev), bswap);
175 ide_fixstring(id->serial_no, sizeof(id->serial_no), bswap);
177 if (strstr(id->model, "E X A B Y T E N E S T"))
178 goto err_misc;
180 /* we depend on this a lot! */
181 id->model[sizeof(id->model)-1] = '\0';
182 printk("%s: %s, ", drive->name, id->model);
183 drive->present = 1;
184 drive->dead = 0;
187 * Check for an ATAPI device
189 if (cmd == WIN_PIDENTIFY) {
190 u8 type = (id->config >> 8) & 0x1f;
191 printk("ATAPI ");
192 switch (type) {
193 case ide_floppy:
194 if (!strstr(id->model, "CD-ROM")) {
195 if (!strstr(id->model, "oppy") &&
196 !strstr(id->model, "poyp") &&
197 !strstr(id->model, "ZIP"))
198 printk("cdrom or floppy?, assuming ");
199 if (drive->media != ide_cdrom) {
200 printk ("FLOPPY");
201 drive->removable = 1;
202 break;
205 /* Early cdrom models used zero */
206 type = ide_cdrom;
207 case ide_cdrom:
208 drive->removable = 1;
209 #ifdef CONFIG_PPC
210 /* kludge for Apple PowerBook internal zip */
211 if (!strstr(id->model, "CD-ROM") &&
212 strstr(id->model, "ZIP")) {
213 printk ("FLOPPY");
214 type = ide_floppy;
215 break;
217 #endif
218 printk ("CD/DVD-ROM");
219 break;
220 case ide_tape:
221 printk ("TAPE");
222 break;
223 case ide_optical:
224 printk ("OPTICAL");
225 drive->removable = 1;
226 break;
227 default:
228 printk("UNKNOWN (type %d)", type);
229 break;
231 printk (" drive\n");
232 drive->media = type;
233 /* an ATAPI device ignores DRDY */
234 drive->ready_stat = 0;
235 return;
239 * Not an ATAPI device: looks like a "regular" hard disk
243 * 0x848a = CompactFlash device
244 * These are *not* removable in Linux definition of the term
247 if ((id->config != 0x848a) && (id->config & (1<<7)))
248 drive->removable = 1;
250 drive->media = ide_disk;
251 printk("%s DISK drive\n", (id->config == 0x848a) ? "CFA" : "ATA" );
252 QUIRK_LIST(drive);
253 return;
255 err_misc:
256 kfree(id);
257 drive->present = 0;
258 return;
262 * actual_try_to_identify - send ata/atapi identify
263 * @drive: drive to identify
264 * @cmd: command to use
266 * try_to_identify() sends an ATA(PI) IDENTIFY request to a drive
267 * and waits for a response. It also monitors irqs while this is
268 * happening, in hope of automatically determining which one is
269 * being used by the interface.
271 * Returns: 0 device was identified
272 * 1 device timed-out (no response to identify request)
273 * 2 device aborted the command (refused to identify itself)
276 static int actual_try_to_identify (ide_drive_t *drive, u8 cmd)
278 ide_hwif_t *hwif = HWIF(drive);
279 int rc;
280 unsigned long hd_status;
281 unsigned long timeout;
282 u8 s = 0, a = 0;
284 /* take a deep breath */
285 msleep(50);
287 if (IDE_CONTROL_REG) {
288 a = hwif->INB(IDE_ALTSTATUS_REG);
289 s = hwif->INB(IDE_STATUS_REG);
290 if ((a ^ s) & ~INDEX_STAT) {
291 printk(KERN_INFO "%s: probing with STATUS(0x%02x) instead of "
292 "ALTSTATUS(0x%02x)\n", drive->name, s, a);
293 /* ancient Seagate drives, broken interfaces */
294 hd_status = IDE_STATUS_REG;
295 } else {
296 /* use non-intrusive polling */
297 hd_status = IDE_ALTSTATUS_REG;
299 } else
300 hd_status = IDE_STATUS_REG;
302 /* set features register for atapi
303 * identify command to be sure of reply
305 if ((cmd == WIN_PIDENTIFY))
306 /* disable dma & overlap */
307 hwif->OUTB(0, IDE_FEATURE_REG);
309 /* ask drive for ID */
310 hwif->OUTB(cmd, IDE_COMMAND_REG);
312 timeout = ((cmd == WIN_IDENTIFY) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
313 timeout += jiffies;
314 do {
315 if (time_after(jiffies, timeout)) {
316 /* drive timed-out */
317 return 1;
319 /* give drive a breather */
320 msleep(50);
321 } while ((hwif->INB(hd_status)) & BUSY_STAT);
323 /* wait for IRQ and DRQ_STAT */
324 msleep(50);
325 if (OK_STAT((hwif->INB(IDE_STATUS_REG)), DRQ_STAT, BAD_R_STAT)) {
326 unsigned long flags;
328 /* local CPU only; some systems need this */
329 local_irq_save(flags);
330 /* drive returned ID */
331 do_identify(drive, cmd);
332 /* drive responded with ID */
333 rc = 0;
334 /* clear drive IRQ */
335 (void) hwif->INB(IDE_STATUS_REG);
336 local_irq_restore(flags);
337 } else {
338 /* drive refused ID */
339 rc = 2;
341 return rc;
345 * try_to_identify - try to identify a drive
346 * @drive: drive to probe
347 * @cmd: command to use
349 * Issue the identify command and then do IRQ probing to
350 * complete the identification when needed by finding the
351 * IRQ the drive is attached to
354 static int try_to_identify (ide_drive_t *drive, u8 cmd)
356 ide_hwif_t *hwif = HWIF(drive);
357 int retval;
358 int autoprobe = 0;
359 unsigned long cookie = 0;
362 * Disable device irq unless we need to
363 * probe for it. Otherwise we'll get spurious
364 * interrupts during the identify-phase that
365 * the irq handler isn't expecting.
367 if (IDE_CONTROL_REG) {
368 u8 ctl = drive->ctl | 2;
369 if (!hwif->irq) {
370 autoprobe = 1;
371 cookie = probe_irq_on();
372 /* enable device irq */
373 ctl &= ~2;
375 hwif->OUTB(ctl, IDE_CONTROL_REG);
378 retval = actual_try_to_identify(drive, cmd);
380 if (autoprobe) {
381 int irq;
382 /* mask device irq */
383 hwif->OUTB(drive->ctl|2, IDE_CONTROL_REG);
384 /* clear drive IRQ */
385 (void) hwif->INB(IDE_STATUS_REG);
386 udelay(5);
387 irq = probe_irq_off(cookie);
388 if (!hwif->irq) {
389 if (irq > 0) {
390 hwif->irq = irq;
391 } else {
392 /* Mmmm.. multiple IRQs..
393 * don't know which was ours
395 printk("%s: IRQ probe failed (0x%lx)\n",
396 drive->name, cookie);
400 return retval;
405 * do_probe - probe an IDE device
406 * @drive: drive to probe
407 * @cmd: command to use
409 * do_probe() has the difficult job of finding a drive if it exists,
410 * without getting hung up if it doesn't exist, without trampling on
411 * ethernet cards, and without leaving any IRQs dangling to haunt us later.
413 * If a drive is "known" to exist (from CMOS or kernel parameters),
414 * but does not respond right away, the probe will "hang in there"
415 * for the maximum wait time (about 30 seconds), otherwise it will
416 * exit much more quickly.
418 * Returns: 0 device was identified
419 * 1 device timed-out (no response to identify request)
420 * 2 device aborted the command (refused to identify itself)
421 * 3 bad status from device (possible for ATAPI drives)
422 * 4 probe was not attempted because failure was obvious
425 static int do_probe (ide_drive_t *drive, u8 cmd)
427 int rc;
428 ide_hwif_t *hwif = HWIF(drive);
430 if (drive->present) {
431 /* avoid waiting for inappropriate probes */
432 if ((drive->media != ide_disk) && (cmd == WIN_IDENTIFY))
433 return 4;
435 #ifdef DEBUG
436 printk("probing for %s: present=%d, media=%d, probetype=%s\n",
437 drive->name, drive->present, drive->media,
438 (cmd == WIN_IDENTIFY) ? "ATA" : "ATAPI");
439 #endif
441 /* needed for some systems
442 * (e.g. crw9624 as drive0 with disk as slave)
444 msleep(50);
445 SELECT_DRIVE(drive);
446 msleep(50);
447 if (hwif->INB(IDE_SELECT_REG) != drive->select.all && !drive->present) {
448 if (drive->select.b.unit != 0) {
449 /* exit with drive0 selected */
450 SELECT_DRIVE(&hwif->drives[0]);
451 /* allow BUSY_STAT to assert & clear */
452 msleep(50);
454 /* no i/f present: mmm.. this should be a 4 -ml */
455 return 3;
458 if (OK_STAT((hwif->INB(IDE_STATUS_REG)), READY_STAT, BUSY_STAT) ||
459 drive->present || cmd == WIN_PIDENTIFY) {
460 /* send cmd and wait */
461 if ((rc = try_to_identify(drive, cmd))) {
462 /* failed: try again */
463 rc = try_to_identify(drive,cmd);
465 if (hwif->INB(IDE_STATUS_REG) == (BUSY_STAT|READY_STAT))
466 return 4;
468 if ((rc == 1 && cmd == WIN_PIDENTIFY) &&
469 ((drive->autotune == IDE_TUNE_DEFAULT) ||
470 (drive->autotune == IDE_TUNE_AUTO))) {
471 unsigned long timeout;
472 printk("%s: no response (status = 0x%02x), "
473 "resetting drive\n", drive->name,
474 hwif->INB(IDE_STATUS_REG));
475 msleep(50);
476 hwif->OUTB(drive->select.all, IDE_SELECT_REG);
477 msleep(50);
478 hwif->OUTB(WIN_SRST, IDE_COMMAND_REG);
479 timeout = jiffies;
480 while (((hwif->INB(IDE_STATUS_REG)) & BUSY_STAT) &&
481 time_before(jiffies, timeout + WAIT_WORSTCASE))
482 msleep(50);
483 rc = try_to_identify(drive, cmd);
485 if (rc == 1)
486 printk("%s: no response (status = 0x%02x)\n",
487 drive->name, hwif->INB(IDE_STATUS_REG));
488 /* ensure drive irq is clear */
489 (void) hwif->INB(IDE_STATUS_REG);
490 } else {
491 /* not present or maybe ATAPI */
492 rc = 3;
494 if (drive->select.b.unit != 0) {
495 /* exit with drive0 selected */
496 SELECT_DRIVE(&hwif->drives[0]);
497 msleep(50);
498 /* ensure drive irq is clear */
499 (void) hwif->INB(IDE_STATUS_REG);
501 return rc;
507 static void enable_nest (ide_drive_t *drive)
509 ide_hwif_t *hwif = HWIF(drive);
510 unsigned long timeout;
512 printk("%s: enabling %s -- ", hwif->name, drive->id->model);
513 SELECT_DRIVE(drive);
514 msleep(50);
515 hwif->OUTB(EXABYTE_ENABLE_NEST, IDE_COMMAND_REG);
516 timeout = jiffies + WAIT_WORSTCASE;
517 do {
518 if (time_after(jiffies, timeout)) {
519 printk("failed (timeout)\n");
520 return;
522 msleep(50);
523 } while ((hwif->INB(IDE_STATUS_REG)) & BUSY_STAT);
525 msleep(50);
527 if (!OK_STAT((hwif->INB(IDE_STATUS_REG)), 0, BAD_STAT)) {
528 printk("failed (status = 0x%02x)\n", hwif->INB(IDE_STATUS_REG));
529 } else {
530 printk("success\n");
533 /* if !(success||timed-out) */
534 if (do_probe(drive, WIN_IDENTIFY) >= 2) {
535 /* look for ATAPI device */
536 (void) do_probe(drive, WIN_PIDENTIFY);
541 * probe_for_drives - upper level drive probe
542 * @drive: drive to probe for
544 * probe_for_drive() tests for existence of a given drive using do_probe()
545 * and presents things to the user as needed.
547 * Returns: 0 no device was found
548 * 1 device was found (note: drive->present might
549 * still be 0)
552 static inline u8 probe_for_drive (ide_drive_t *drive)
555 * In order to keep things simple we have an id
556 * block for all drives at all times. If the device
557 * is pre ATA or refuses ATA/ATAPI identify we
558 * will add faked data to this.
560 * Also note that 0 everywhere means "can't do X"
563 drive->id = kzalloc(SECTOR_WORDS *4, GFP_KERNEL);
564 drive->id_read = 0;
565 if(drive->id == NULL)
567 printk(KERN_ERR "ide: out of memory for id data.\n");
568 return 0;
570 strcpy(drive->id->model, "UNKNOWN");
572 /* skip probing? */
573 if (!drive->noprobe)
575 /* if !(success||timed-out) */
576 if (do_probe(drive, WIN_IDENTIFY) >= 2) {
577 /* look for ATAPI device */
578 (void) do_probe(drive, WIN_PIDENTIFY);
580 if (strstr(drive->id->model, "E X A B Y T E N E S T"))
581 enable_nest(drive);
582 if (!drive->present)
583 /* drive not found */
584 return 0;
586 /* identification failed? */
587 if (!drive->id_read) {
588 if (drive->media == ide_disk) {
589 printk(KERN_INFO "%s: non-IDE drive, CHS=%d/%d/%d\n",
590 drive->name, drive->cyl,
591 drive->head, drive->sect);
592 } else if (drive->media == ide_cdrom) {
593 printk(KERN_INFO "%s: ATAPI cdrom (?)\n", drive->name);
594 } else {
595 /* nuke it */
596 printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name);
597 drive->present = 0;
600 /* drive was found */
602 if(!drive->present)
603 return 0;
604 /* The drive wasn't being helpful. Add generic info only */
605 if (drive->id_read == 0) {
606 generic_id(drive);
607 return 1;
610 if (drive->media == ide_disk) {
611 ide_disk_init_chs(drive);
612 ide_disk_init_mult_count(drive);
615 return drive->present;
618 static void hwif_release_dev (struct device *dev)
620 ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
622 complete(&hwif->gendev_rel_comp);
625 static void hwif_register (ide_hwif_t *hwif)
627 int ret;
629 /* register with global device tree */
630 strlcpy(hwif->gendev.bus_id,hwif->name,BUS_ID_SIZE);
631 hwif->gendev.driver_data = hwif;
632 if (hwif->gendev.parent == NULL) {
633 if (hwif->pci_dev)
634 hwif->gendev.parent = &hwif->pci_dev->dev;
635 else
636 /* Would like to do = &device_legacy */
637 hwif->gendev.parent = NULL;
639 hwif->gendev.release = hwif_release_dev;
640 ret = device_register(&hwif->gendev);
641 if (ret < 0)
642 printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
643 __FUNCTION__, ret);
646 static int wait_hwif_ready(ide_hwif_t *hwif)
648 int rc;
650 printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name);
652 /* Let HW settle down a bit from whatever init state we
653 * come from */
654 mdelay(2);
656 /* Wait for BSY bit to go away, spec timeout is 30 seconds,
657 * I know of at least one disk who takes 31 seconds, I use 35
658 * here to be safe
660 rc = ide_wait_not_busy(hwif, 35000);
661 if (rc)
662 return rc;
664 /* Now make sure both master & slave are ready */
665 SELECT_DRIVE(&hwif->drives[0]);
666 hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]);
667 mdelay(2);
668 rc = ide_wait_not_busy(hwif, 35000);
669 if (rc)
670 return rc;
671 SELECT_DRIVE(&hwif->drives[1]);
672 hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]);
673 mdelay(2);
674 rc = ide_wait_not_busy(hwif, 35000);
676 /* Exit function with master reselected (let's be sane) */
677 SELECT_DRIVE(&hwif->drives[0]);
679 return rc;
683 * ide_undecoded_slave - look for bad CF adapters
684 * @hwif: interface
686 * Analyse the drives on the interface and attempt to decide if we
687 * have the same drive viewed twice. This occurs with crap CF adapters
688 * and PCMCIA sometimes.
691 void ide_undecoded_slave(ide_hwif_t *hwif)
693 ide_drive_t *drive0 = &hwif->drives[0];
694 ide_drive_t *drive1 = &hwif->drives[1];
696 if (drive0->present == 0 || drive1->present == 0)
697 return;
699 /* If the models don't match they are not the same product */
700 if (strcmp(drive0->id->model, drive1->id->model))
701 return;
703 /* Serial numbers do not match */
704 if (strncmp(drive0->id->serial_no, drive1->id->serial_no, 20))
705 return;
707 /* No serial number, thankfully very rare for CF */
708 if (drive0->id->serial_no[0] == 0)
709 return;
711 /* Appears to be an IDE flash adapter with decode bugs */
712 printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n");
714 drive1->present = 0;
717 EXPORT_SYMBOL_GPL(ide_undecoded_slave);
720 * This routine only knows how to look for drive units 0 and 1
721 * on an interface, so any setting of MAX_DRIVES > 2 won't work here.
723 static void probe_hwif(ide_hwif_t *hwif)
725 unsigned int unit;
726 unsigned long flags;
727 unsigned int irqd;
729 if (hwif->noprobe)
730 return;
732 if ((hwif->chipset != ide_4drives || !hwif->mate || !hwif->mate->present) &&
733 (ide_hwif_request_regions(hwif))) {
734 u16 msgout = 0;
735 for (unit = 0; unit < MAX_DRIVES; ++unit) {
736 ide_drive_t *drive = &hwif->drives[unit];
737 if (drive->present) {
738 drive->present = 0;
739 printk(KERN_ERR "%s: ERROR, PORTS ALREADY IN USE\n",
740 drive->name);
741 msgout = 1;
744 if (!msgout)
745 printk(KERN_ERR "%s: ports already in use, skipping probe\n",
746 hwif->name);
747 return;
751 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
752 * we'll install our IRQ driver much later...
754 irqd = hwif->irq;
755 if (irqd)
756 disable_irq(hwif->irq);
758 local_irq_set(flags);
760 /* This is needed on some PPCs and a bunch of BIOS-less embedded
761 * platforms. Typical cases are:
763 * - The firmware hard reset the disk before booting the kernel,
764 * the drive is still doing it's poweron-reset sequence, that
765 * can take up to 30 seconds
766 * - The firmware does nothing (or no firmware), the device is
767 * still in POST state (same as above actually).
768 * - Some CD/DVD/Writer combo drives tend to drive the bus during
769 * their reset sequence even when they are non-selected slave
770 * devices, thus preventing discovery of the main HD
772 * Doing this wait-for-busy should not harm any existing configuration
773 * (at least things won't be worse than what current code does, that
774 * is blindly go & talk to the drive) and fix some issues like the
775 * above.
777 * BenH.
779 if (wait_hwif_ready(hwif) == -EBUSY)
780 printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
783 * Second drive should only exist if first drive was found,
784 * but a lot of cdrom drives are configured as single slaves.
786 for (unit = 0; unit < MAX_DRIVES; ++unit) {
787 ide_drive_t *drive = &hwif->drives[unit];
788 drive->dn = (hwif->channel ? 2 : 0) + unit;
789 (void) probe_for_drive(drive);
790 if (drive->present && !hwif->present) {
791 hwif->present = 1;
792 if (hwif->chipset != ide_4drives ||
793 !hwif->mate ||
794 !hwif->mate->present) {
795 hwif_register(hwif);
799 if (hwif->io_ports[IDE_CONTROL_OFFSET] && hwif->reset) {
800 unsigned long timeout = jiffies + WAIT_WORSTCASE;
801 u8 stat;
803 printk(KERN_WARNING "%s: reset\n", hwif->name);
804 hwif->OUTB(12, hwif->io_ports[IDE_CONTROL_OFFSET]);
805 udelay(10);
806 hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]);
807 do {
808 msleep(50);
809 stat = hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
810 } while ((stat & BUSY_STAT) && time_after(timeout, jiffies));
813 local_irq_restore(flags);
815 * Use cached IRQ number. It might be (and is...) changed by probe
816 * code above
818 if (irqd)
819 enable_irq(irqd);
821 if (!hwif->present) {
822 ide_hwif_release_regions(hwif);
823 return;
826 for (unit = 0; unit < MAX_DRIVES; ++unit) {
827 ide_drive_t *drive = &hwif->drives[unit];
829 if (drive->present) {
830 if (hwif->tuneproc != NULL &&
831 drive->autotune == IDE_TUNE_AUTO)
832 /* auto-tune PIO mode */
833 hwif->tuneproc(drive, 255);
835 if (drive->autotune != IDE_TUNE_DEFAULT &&
836 drive->autotune != IDE_TUNE_AUTO)
837 continue;
839 drive->nice1 = 1;
842 * MAJOR HACK BARF :-/
844 * FIXME: chipsets own this cruft!
847 * Move here to prevent module loading clashing.
849 // drive->autodma = hwif->autodma;
850 if (hwif->ide_dma_check) {
852 * Force DMAing for the beginning of the check.
853 * Some chipsets appear to do interesting
854 * things, if not checked and cleared.
855 * PARANOIA!!!
857 hwif->ide_dma_off_quietly(drive);
858 #ifdef CONFIG_IDEDMA_ONLYDISK
859 if (drive->media == ide_disk)
860 #endif
861 hwif->ide_dma_check(drive);
866 for (unit = 0; unit < MAX_DRIVES; ++unit) {
867 ide_drive_t *drive = &hwif->drives[unit];
869 if (hwif->no_io_32bit)
870 drive->no_io_32bit = 1;
871 else
872 drive->no_io_32bit = drive->id->dword_io ? 1 : 0;
876 static int hwif_init(ide_hwif_t *hwif);
878 int probe_hwif_init_with_fixup(ide_hwif_t *hwif, void (*fixup)(ide_hwif_t *hwif))
880 if (fixup)
881 fixup(hwif);
882 probe_hwif(hwif);
884 if (!hwif_init(hwif)) {
885 printk(KERN_INFO "%s: failed to initialize IDE interface\n",
886 hwif->name);
887 return -1;
890 if (hwif->present) {
891 u16 unit = 0;
892 int ret;
894 for (unit = 0; unit < MAX_DRIVES; ++unit) {
895 ide_drive_t *drive = &hwif->drives[unit];
896 /* For now don't attach absent drives, we may
897 want them on default or a new "empty" class
898 for hotplug reprobing ? */
899 if (drive->present) {
900 ret = device_register(&drive->gendev);
901 if (ret < 0)
902 printk(KERN_WARNING "IDE: %s: "
903 "device_register error: %d\n",
904 __FUNCTION__, ret);
908 return 0;
911 int probe_hwif_init(ide_hwif_t *hwif)
913 return probe_hwif_init_with_fixup(hwif, NULL);
916 EXPORT_SYMBOL(probe_hwif_init);
918 #if MAX_HWIFS > 1
920 * save_match() is used to simplify logic in init_irq() below.
922 * A loophole here is that we may not know about a particular
923 * hwif's irq until after that hwif is actually probed/initialized..
924 * This could be a problem for the case where an hwif is on a
925 * dual interface that requires serialization (eg. cmd640) and another
926 * hwif using one of the same irqs is initialized beforehand.
928 * This routine detects and reports such situations, but does not fix them.
930 static void save_match(ide_hwif_t *hwif, ide_hwif_t *new, ide_hwif_t **match)
932 ide_hwif_t *m = *match;
934 if (m && m->hwgroup && m->hwgroup != new->hwgroup) {
935 if (!new->hwgroup)
936 return;
937 printk("%s: potential irq problem with %s and %s\n",
938 hwif->name, new->name, m->name);
940 if (!m || m->irq != hwif->irq) /* don't undo a prior perfect match */
941 *match = new;
943 #endif /* MAX_HWIFS > 1 */
946 * init request queue
948 static int ide_init_queue(ide_drive_t *drive)
950 request_queue_t *q;
951 ide_hwif_t *hwif = HWIF(drive);
952 int max_sectors = 256;
953 int max_sg_entries = PRD_ENTRIES;
956 * Our default set up assumes the normal IDE case,
957 * that is 64K segmenting, standard PRD setup
958 * and LBA28. Some drivers then impose their own
959 * limits and LBA48 we could raise it but as yet
960 * do not.
963 q = blk_init_queue_node(do_ide_request, &ide_lock, hwif_to_node(hwif));
964 if (!q)
965 return 1;
967 q->queuedata = drive;
968 blk_queue_segment_boundary(q, 0xffff);
970 if (!hwif->rqsize) {
971 if (hwif->no_lba48 || hwif->no_lba48_dma)
972 hwif->rqsize = 256;
973 else
974 hwif->rqsize = 65536;
976 if (hwif->rqsize < max_sectors)
977 max_sectors = hwif->rqsize;
978 blk_queue_max_sectors(q, max_sectors);
980 #ifdef CONFIG_PCI
981 /* When we have an IOMMU, we may have a problem where pci_map_sg()
982 * creates segments that don't completely match our boundary
983 * requirements and thus need to be broken up again. Because it
984 * doesn't align properly either, we may actually have to break up
985 * to more segments than what was we got in the first place, a max
986 * worst case is twice as many.
987 * This will be fixed once we teach pci_map_sg() about our boundary
988 * requirements, hopefully soon. *FIXME*
990 if (!PCI_DMA_BUS_IS_PHYS)
991 max_sg_entries >>= 1;
992 #endif /* CONFIG_PCI */
994 blk_queue_max_hw_segments(q, max_sg_entries);
995 blk_queue_max_phys_segments(q, max_sg_entries);
997 /* assign drive queue */
998 drive->queue = q;
1000 /* needs drive->queue to be set */
1001 ide_toggle_bounce(drive, 1);
1003 /* enable led activity for disk drives only */
1004 if (drive->media == ide_disk && hwif->led_act)
1005 blk_queue_activity_fn(q, hwif->led_act, drive);
1007 return 0;
1011 * This routine sets up the irq for an ide interface, and creates a new
1012 * hwgroup for the irq/hwif if none was previously assigned.
1014 * Much of the code is for correctly detecting/handling irq sharing
1015 * and irq serialization situations. This is somewhat complex because
1016 * it handles static as well as dynamic (PCMCIA) IDE interfaces.
1018 * The IRQF_DISABLED in sa_flags means ide_intr() is always entered with
1019 * interrupts completely disabled. This can be bad for interrupt latency,
1020 * but anything else has led to problems on some machines. We re-enable
1021 * interrupts as much as we can safely do in most places.
1023 static int init_irq (ide_hwif_t *hwif)
1025 unsigned int index;
1026 ide_hwgroup_t *hwgroup;
1027 ide_hwif_t *match = NULL;
1029 BUG_ON(in_interrupt());
1030 BUG_ON(irqs_disabled());
1031 BUG_ON(hwif == NULL);
1033 down(&ide_cfg_sem);
1034 hwif->hwgroup = NULL;
1035 #if MAX_HWIFS > 1
1037 * Group up with any other hwifs that share our irq(s).
1039 for (index = 0; index < MAX_HWIFS; index++) {
1040 ide_hwif_t *h = &ide_hwifs[index];
1041 if (h->hwgroup) { /* scan only initialized hwif's */
1042 if (hwif->irq == h->irq) {
1043 hwif->sharing_irq = h->sharing_irq = 1;
1044 if (hwif->chipset != ide_pci ||
1045 h->chipset != ide_pci) {
1046 save_match(hwif, h, &match);
1049 if (hwif->serialized) {
1050 if (hwif->mate && hwif->mate->irq == h->irq)
1051 save_match(hwif, h, &match);
1053 if (h->serialized) {
1054 if (h->mate && hwif->irq == h->mate->irq)
1055 save_match(hwif, h, &match);
1059 #endif /* MAX_HWIFS > 1 */
1061 * If we are still without a hwgroup, then form a new one
1063 if (match) {
1064 hwgroup = match->hwgroup;
1065 hwif->hwgroup = hwgroup;
1067 * Link us into the hwgroup.
1068 * This must be done early, do ensure that unexpected_intr
1069 * can find the hwif and prevent irq storms.
1070 * No drives are attached to the new hwif, choose_drive
1071 * can't do anything stupid (yet).
1072 * Add ourself as the 2nd entry to the hwgroup->hwif
1073 * linked list, the first entry is the hwif that owns
1074 * hwgroup->handler - do not change that.
1076 spin_lock_irq(&ide_lock);
1077 hwif->next = hwgroup->hwif->next;
1078 hwgroup->hwif->next = hwif;
1079 spin_unlock_irq(&ide_lock);
1080 } else {
1081 hwgroup = kmalloc_node(sizeof(ide_hwgroup_t), GFP_KERNEL,
1082 hwif_to_node(hwif->drives[0].hwif));
1083 if (!hwgroup)
1084 goto out_up;
1086 hwif->hwgroup = hwgroup;
1088 memset(hwgroup, 0, sizeof(ide_hwgroup_t));
1089 hwgroup->hwif = hwif->next = hwif;
1090 hwgroup->rq = NULL;
1091 hwgroup->handler = NULL;
1092 hwgroup->drive = NULL;
1093 hwgroup->busy = 0;
1094 init_timer(&hwgroup->timer);
1095 hwgroup->timer.function = &ide_timer_expiry;
1096 hwgroup->timer.data = (unsigned long) hwgroup;
1100 * Allocate the irq, if not already obtained for another hwif
1102 if (!match || match->irq != hwif->irq) {
1103 int sa = IRQF_DISABLED;
1104 #if defined(__mc68000__) || defined(CONFIG_APUS)
1105 sa = IRQF_SHARED;
1106 #endif /* __mc68000__ || CONFIG_APUS */
1108 if (IDE_CHIPSET_IS_PCI(hwif->chipset)) {
1109 sa = IRQF_SHARED;
1110 #ifndef CONFIG_IDEPCI_SHARE_IRQ
1111 sa |= IRQF_DISABLED;
1112 #endif /* CONFIG_IDEPCI_SHARE_IRQ */
1115 if (hwif->io_ports[IDE_CONTROL_OFFSET])
1116 /* clear nIEN */
1117 hwif->OUTB(0x08, hwif->io_ports[IDE_CONTROL_OFFSET]);
1119 if (request_irq(hwif->irq,&ide_intr,sa,hwif->name,hwgroup))
1120 goto out_unlink;
1124 * For any present drive:
1125 * - allocate the block device queue
1126 * - link drive into the hwgroup
1128 for (index = 0; index < MAX_DRIVES; ++index) {
1129 ide_drive_t *drive = &hwif->drives[index];
1130 if (!drive->present)
1131 continue;
1132 if (ide_init_queue(drive)) {
1133 printk(KERN_ERR "ide: failed to init %s\n",drive->name);
1134 continue;
1136 spin_lock_irq(&ide_lock);
1137 if (!hwgroup->drive) {
1138 /* first drive for hwgroup. */
1139 drive->next = drive;
1140 hwgroup->drive = drive;
1141 hwgroup->hwif = HWIF(hwgroup->drive);
1142 } else {
1143 drive->next = hwgroup->drive->next;
1144 hwgroup->drive->next = drive;
1146 spin_unlock_irq(&ide_lock);
1149 #if !defined(__mc68000__) && !defined(CONFIG_APUS)
1150 printk("%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
1151 hwif->io_ports[IDE_DATA_OFFSET],
1152 hwif->io_ports[IDE_DATA_OFFSET]+7,
1153 hwif->io_ports[IDE_CONTROL_OFFSET], hwif->irq);
1154 #else
1155 printk("%s at 0x%08lx on irq %d", hwif->name,
1156 hwif->io_ports[IDE_DATA_OFFSET], hwif->irq);
1157 #endif /* __mc68000__ && CONFIG_APUS */
1158 if (match)
1159 printk(" (%sed with %s)",
1160 hwif->sharing_irq ? "shar" : "serializ", match->name);
1161 printk("\n");
1162 up(&ide_cfg_sem);
1163 return 0;
1164 out_unlink:
1165 spin_lock_irq(&ide_lock);
1166 if (hwif->next == hwif) {
1167 BUG_ON(match);
1168 BUG_ON(hwgroup->hwif != hwif);
1169 kfree(hwgroup);
1170 } else {
1171 ide_hwif_t *g;
1172 g = hwgroup->hwif;
1173 while (g->next != hwif)
1174 g = g->next;
1175 g->next = hwif->next;
1176 if (hwgroup->hwif == hwif) {
1177 /* Impossible. */
1178 printk(KERN_ERR "Duh. Uninitialized hwif listed as active hwif.\n");
1179 hwgroup->hwif = g;
1181 BUG_ON(hwgroup->hwif == hwif);
1183 spin_unlock_irq(&ide_lock);
1184 out_up:
1185 up(&ide_cfg_sem);
1186 return 1;
1189 static int ata_lock(dev_t dev, void *data)
1191 /* FIXME: we want to pin hwif down */
1192 return 0;
1195 static struct kobject *ata_probe(dev_t dev, int *part, void *data)
1197 ide_hwif_t *hwif = data;
1198 int unit = *part >> PARTN_BITS;
1199 ide_drive_t *drive = &hwif->drives[unit];
1200 if (!drive->present)
1201 return NULL;
1203 if (drive->media == ide_disk)
1204 request_module("ide-disk");
1205 if (drive->scsi)
1206 request_module("ide-scsi");
1207 if (drive->media == ide_cdrom || drive->media == ide_optical)
1208 request_module("ide-cd");
1209 if (drive->media == ide_tape)
1210 request_module("ide-tape");
1211 if (drive->media == ide_floppy)
1212 request_module("ide-floppy");
1214 return NULL;
1217 static struct kobject *exact_match(dev_t dev, int *part, void *data)
1219 struct gendisk *p = data;
1220 *part &= (1 << PARTN_BITS) - 1;
1221 return &p->kobj;
1224 static int exact_lock(dev_t dev, void *data)
1226 struct gendisk *p = data;
1228 if (!get_disk(p))
1229 return -1;
1230 return 0;
1233 void ide_register_region(struct gendisk *disk)
1235 blk_register_region(MKDEV(disk->major, disk->first_minor),
1236 disk->minors, NULL, exact_match, exact_lock, disk);
1239 EXPORT_SYMBOL_GPL(ide_register_region);
1241 void ide_unregister_region(struct gendisk *disk)
1243 blk_unregister_region(MKDEV(disk->major, disk->first_minor),
1244 disk->minors);
1247 EXPORT_SYMBOL_GPL(ide_unregister_region);
1249 void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
1251 ide_hwif_t *hwif = drive->hwif;
1252 unsigned int unit = (drive->select.all >> 4) & 1;
1254 disk->major = hwif->major;
1255 disk->first_minor = unit << PARTN_BITS;
1256 sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit);
1257 disk->queue = drive->queue;
1260 EXPORT_SYMBOL_GPL(ide_init_disk);
1262 static void ide_remove_drive_from_hwgroup(ide_drive_t *drive)
1264 ide_hwgroup_t *hwgroup = drive->hwif->hwgroup;
1266 if (drive == drive->next) {
1267 /* special case: last drive from hwgroup. */
1268 BUG_ON(hwgroup->drive != drive);
1269 hwgroup->drive = NULL;
1270 } else {
1271 ide_drive_t *walk;
1273 walk = hwgroup->drive;
1274 while (walk->next != drive)
1275 walk = walk->next;
1276 walk->next = drive->next;
1277 if (hwgroup->drive == drive) {
1278 hwgroup->drive = drive->next;
1279 hwgroup->hwif = hwgroup->drive->hwif;
1282 BUG_ON(hwgroup->drive == drive);
1285 static void drive_release_dev (struct device *dev)
1287 ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
1289 spin_lock_irq(&ide_lock);
1290 ide_remove_drive_from_hwgroup(drive);
1291 kfree(drive->id);
1292 drive->id = NULL;
1293 drive->present = 0;
1294 /* Messed up locking ... */
1295 spin_unlock_irq(&ide_lock);
1296 blk_cleanup_queue(drive->queue);
1297 spin_lock_irq(&ide_lock);
1298 drive->queue = NULL;
1299 spin_unlock_irq(&ide_lock);
1301 complete(&drive->gendev_rel_comp);
1305 * init_gendisk() (as opposed to ide_geninit) is called for each major device,
1306 * after probing for drives, to allocate partition tables and other data
1307 * structures needed for the routines in genhd.c. ide_geninit() gets called
1308 * somewhat later, during the partition check.
1310 static void init_gendisk (ide_hwif_t *hwif)
1312 unsigned int unit;
1314 for (unit = 0; unit < MAX_DRIVES; ++unit) {
1315 ide_drive_t * drive = &hwif->drives[unit];
1316 ide_add_generic_settings(drive);
1317 snprintf(drive->gendev.bus_id,BUS_ID_SIZE,"%u.%u",
1318 hwif->index,unit);
1319 drive->gendev.parent = &hwif->gendev;
1320 drive->gendev.bus = &ide_bus_type;
1321 drive->gendev.driver_data = drive;
1322 drive->gendev.release = drive_release_dev;
1324 blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
1325 THIS_MODULE, ata_probe, ata_lock, hwif);
1328 static int hwif_init(ide_hwif_t *hwif)
1330 int old_irq;
1332 /* Return success if no device is connected */
1333 if (!hwif->present)
1334 return 1;
1336 if (!hwif->irq) {
1337 if (!(hwif->irq = ide_default_irq(hwif->io_ports[IDE_DATA_OFFSET])))
1339 printk("%s: DISABLED, NO IRQ\n", hwif->name);
1340 return (hwif->present = 0);
1343 #ifdef CONFIG_BLK_DEV_HD
1344 if (hwif->irq == HD_IRQ && hwif->io_ports[IDE_DATA_OFFSET] != HD_DATA) {
1345 printk("%s: CANNOT SHARE IRQ WITH OLD "
1346 "HARDDISK DRIVER (hd.c)\n", hwif->name);
1347 return (hwif->present = 0);
1349 #endif /* CONFIG_BLK_DEV_HD */
1351 /* we set it back to 1 if all is ok below */
1352 hwif->present = 0;
1354 if (register_blkdev(hwif->major, hwif->name))
1355 return 0;
1357 if (!hwif->sg_max_nents)
1358 hwif->sg_max_nents = PRD_ENTRIES;
1360 hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents,
1361 GFP_KERNEL);
1362 if (!hwif->sg_table) {
1363 printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name);
1364 goto out;
1367 if (init_irq(hwif) == 0)
1368 goto done;
1370 old_irq = hwif->irq;
1372 * It failed to initialise. Find the default IRQ for
1373 * this port and try that.
1375 if (!(hwif->irq = ide_default_irq(hwif->io_ports[IDE_DATA_OFFSET]))) {
1376 printk("%s: Disabled unable to get IRQ %d.\n",
1377 hwif->name, old_irq);
1378 goto out;
1380 if (init_irq(hwif)) {
1381 printk("%s: probed IRQ %d and default IRQ %d failed.\n",
1382 hwif->name, old_irq, hwif->irq);
1383 goto out;
1385 printk("%s: probed IRQ %d failed, using default.\n",
1386 hwif->name, hwif->irq);
1388 done:
1389 init_gendisk(hwif);
1390 hwif->present = 1; /* success */
1391 return 1;
1393 out:
1394 unregister_blkdev(hwif->major, hwif->name);
1395 return 0;
1398 int ideprobe_init (void)
1400 unsigned int index;
1401 int probe[MAX_HWIFS];
1403 memset(probe, 0, MAX_HWIFS * sizeof(int));
1404 for (index = 0; index < MAX_HWIFS; ++index)
1405 probe[index] = !ide_hwifs[index].present;
1407 for (index = 0; index < MAX_HWIFS; ++index)
1408 if (probe[index])
1409 probe_hwif(&ide_hwifs[index]);
1410 for (index = 0; index < MAX_HWIFS; ++index)
1411 if (probe[index])
1412 hwif_init(&ide_hwifs[index]);
1413 for (index = 0; index < MAX_HWIFS; ++index) {
1414 if (probe[index]) {
1415 ide_hwif_t *hwif = &ide_hwifs[index];
1416 int unit;
1417 if (!hwif->present)
1418 continue;
1419 if (hwif->chipset == ide_unknown || hwif->chipset == ide_forced)
1420 hwif->chipset = ide_generic;
1421 for (unit = 0; unit < MAX_DRIVES; ++unit)
1422 if (hwif->drives[unit].present) {
1423 int ret = device_register(
1424 &hwif->drives[unit].gendev);
1425 if (ret < 0)
1426 printk(KERN_WARNING "IDE: %s: "
1427 "device_register error: %d\n",
1428 __FUNCTION__, ret);
1432 return 0;
1435 EXPORT_SYMBOL_GPL(ideprobe_init);