2 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
3 * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
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>
11 * See linux/MAINTAINERS for address of current maintainer.
13 * This is the IDE probe module, as evolved from hd.c and ide.c.
15 * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
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>
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>
35 #include <linux/scatterlist.h>
37 #include <asm/byteorder.h>
39 #include <linux/uaccess.h>
43 * generic_id - add a generic drive id
44 * @drive: drive to make an ID block for
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
51 static void generic_id(ide_drive_t
*drive
)
55 id
[ATA_ID_CUR_CYLS
] = id
[ATA_ID_CYLS
] = drive
->cyl
;
56 id
[ATA_ID_CUR_HEADS
] = id
[ATA_ID_HEADS
] = drive
->head
;
57 id
[ATA_ID_CUR_SECTORS
] = id
[ATA_ID_SECTORS
] = drive
->sect
;
60 static void ide_disk_init_chs(ide_drive_t
*drive
)
64 /* Extract geometry if we did not already have one for the drive */
65 if (!drive
->cyl
|| !drive
->head
|| !drive
->sect
) {
66 drive
->cyl
= drive
->bios_cyl
= id
[ATA_ID_CYLS
];
67 drive
->head
= drive
->bios_head
= id
[ATA_ID_HEADS
];
68 drive
->sect
= drive
->bios_sect
= id
[ATA_ID_SECTORS
];
71 /* Handle logical geometry translation by the drive */
72 if (ata_id_current_chs_valid(id
)) {
73 drive
->cyl
= id
[ATA_ID_CUR_CYLS
];
74 drive
->head
= id
[ATA_ID_CUR_HEADS
];
75 drive
->sect
= id
[ATA_ID_CUR_SECTORS
];
78 /* Use physical geometry if what we have still makes no sense */
79 if (drive
->head
> 16 && id
[ATA_ID_HEADS
] && id
[ATA_ID_HEADS
] <= 16) {
80 drive
->cyl
= id
[ATA_ID_CYLS
];
81 drive
->head
= id
[ATA_ID_HEADS
];
82 drive
->sect
= id
[ATA_ID_SECTORS
];
86 static void ide_disk_init_mult_count(ide_drive_t
*drive
)
89 u8 max_multsect
= id
[ATA_ID_MAX_MULTSECT
] & 0xff;
92 if ((max_multsect
/ 2) > 1)
93 id
[ATA_ID_MULTSECT
] = max_multsect
| 0x100;
95 id
[ATA_ID_MULTSECT
] &= ~0x1ff;
97 drive
->mult_req
= id
[ATA_ID_MULTSECT
] & 0xff;
100 drive
->special_flags
|= IDE_SFLAG_SET_MULTMODE
;
104 static void ide_classify_ata_dev(ide_drive_t
*drive
)
107 char *m
= (char *)&id
[ATA_ID_PROD
];
108 int is_cfa
= ata_id_is_cfa(id
);
110 /* CF devices are *not* removable in Linux definition of the term */
111 if (is_cfa
== 0 && (id
[ATA_ID_CONFIG
] & (1 << 7)))
112 drive
->dev_flags
|= IDE_DFLAG_REMOVABLE
;
114 drive
->media
= ide_disk
;
116 if (!ata_id_has_unload(drive
->id
))
117 drive
->dev_flags
|= IDE_DFLAG_NO_UNLOAD
;
119 printk(KERN_INFO
"%s: %s, %s DISK drive\n", drive
->name
, m
,
120 is_cfa
? "CFA" : "ATA");
123 static void ide_classify_atapi_dev(ide_drive_t
*drive
)
126 char *m
= (char *)&id
[ATA_ID_PROD
];
127 u8 type
= (id
[ATA_ID_CONFIG
] >> 8) & 0x1f;
129 printk(KERN_INFO
"%s: %s, ATAPI ", drive
->name
, m
);
132 if (!strstr(m
, "CD-ROM")) {
133 if (!strstr(m
, "oppy") &&
134 !strstr(m
, "poyp") &&
136 printk(KERN_CONT
"cdrom or floppy?, assuming ");
137 if (drive
->media
!= ide_cdrom
) {
138 printk(KERN_CONT
"FLOPPY");
139 drive
->dev_flags
|= IDE_DFLAG_REMOVABLE
;
143 /* Early cdrom models used zero */
147 drive
->dev_flags
|= IDE_DFLAG_REMOVABLE
;
149 /* kludge for Apple PowerBook internal zip */
150 if (!strstr(m
, "CD-ROM") && strstr(m
, "ZIP")) {
151 printk(KERN_CONT
"FLOPPY");
156 printk(KERN_CONT
"CD/DVD-ROM");
159 printk(KERN_CONT
"TAPE");
162 printk(KERN_CONT
"OPTICAL");
163 drive
->dev_flags
|= IDE_DFLAG_REMOVABLE
;
166 printk(KERN_CONT
"UNKNOWN (type %d)", type
);
170 printk(KERN_CONT
" drive\n");
172 /* an ATAPI device ignores DRDY */
173 drive
->ready_stat
= 0;
174 if (ata_id_cdb_intr(id
))
175 drive
->atapi_flags
|= IDE_AFLAG_DRQ_INTERRUPT
;
176 drive
->dev_flags
|= IDE_DFLAG_DOORLOCKING
;
177 /* we don't do head unloading on ATAPI devices */
178 drive
->dev_flags
|= IDE_DFLAG_NO_UNLOAD
;
182 * do_identify - identify a drive
183 * @drive: drive to identify
185 * @id: buffer for IDENTIFY data
187 * Called when we have issued a drive identify command to
188 * read and parse the results. This function is run with
189 * interrupts disabled.
192 static void do_identify(ide_drive_t
*drive
, u8 cmd
, u16
*id
)
194 ide_hwif_t
*hwif
= drive
->hwif
;
195 char *m
= (char *)&id
[ATA_ID_PROD
];
199 /* local CPU only; some systems need this */
200 local_irq_save(flags
);
201 /* read 512 bytes of id info */
202 hwif
->tp_ops
->input_data(drive
, NULL
, id
, SECTOR_SIZE
);
203 local_irq_restore(flags
);
205 drive
->dev_flags
|= IDE_DFLAG_ID_READ
;
207 printk(KERN_INFO
"%s: dumping identify data\n", drive
->name
);
208 ide_dump_identify((u8
*)id
);
213 * ATA_CMD_ID_ATA returns little-endian info,
214 * ATA_CMD_ID_ATAPI *usually* returns little-endian info.
216 if (cmd
== ATA_CMD_ID_ATAPI
) {
217 if ((m
[0] == 'N' && m
[1] == 'E') || /* NEC */
218 (m
[0] == 'F' && m
[1] == 'X') || /* Mitsumi */
219 (m
[0] == 'P' && m
[1] == 'i')) /* Pioneer */
220 /* Vertos drives may still be weird */
224 ide_fixstring(m
, ATA_ID_PROD_LEN
, bswap
);
225 ide_fixstring((char *)&id
[ATA_ID_FW_REV
], ATA_ID_FW_REV_LEN
, bswap
);
226 ide_fixstring((char *)&id
[ATA_ID_SERNO
], ATA_ID_SERNO_LEN
, bswap
);
228 /* we depend on this a lot! */
229 m
[ATA_ID_PROD_LEN
- 1] = '\0';
231 if (strstr(m
, "E X A B Y T E N E S T"))
232 drive
->dev_flags
&= ~IDE_DFLAG_PRESENT
;
234 drive
->dev_flags
|= IDE_DFLAG_PRESENT
;
238 * ide_dev_read_id - send ATA/ATAPI IDENTIFY command
239 * @drive: drive to identify
240 * @cmd: command to use
241 * @id: buffer for IDENTIFY data
242 * @irq_ctx: flag set when called from the IRQ context
244 * Sends an ATA(PI) IDENTIFY request to a drive and waits for a response.
246 * Returns: 0 device was identified
247 * 1 device timed-out (no response to identify request)
248 * 2 device aborted the command (refused to identify itself)
251 int ide_dev_read_id(ide_drive_t
*drive
, u8 cmd
, u16
*id
, int irq_ctx
)
253 ide_hwif_t
*hwif
= drive
->hwif
;
254 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
255 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
256 int use_altstatus
= 0, rc
;
257 unsigned long timeout
;
261 * Disable device IRQ. Otherwise we'll get spurious interrupts
262 * during the identify phase that the IRQ handler isn't expecting.
264 if (io_ports
->ctl_addr
)
265 tp_ops
->write_devctl(hwif
, ATA_NIEN
| ATA_DEVCTL_OBS
);
267 /* take a deep breath */
273 if (io_ports
->ctl_addr
&&
274 (hwif
->host_flags
& IDE_HFLAG_BROKEN_ALTSTATUS
) == 0) {
275 a
= tp_ops
->read_altstatus(hwif
);
276 s
= tp_ops
->read_status(hwif
);
277 if ((a
^ s
) & ~ATA_SENSE
)
278 /* ancient Seagate drives, broken interfaces */
279 printk(KERN_INFO
"%s: probing with STATUS(0x%02x) "
280 "instead of ALTSTATUS(0x%02x)\n",
283 /* use non-intrusive polling */
287 /* set features register for atapi
288 * identify command to be sure of reply
290 if (cmd
== ATA_CMD_ID_ATAPI
) {
291 struct ide_taskfile tf
;
293 memset(&tf
, 0, sizeof(tf
));
294 /* disable DMA & overlap */
295 tp_ops
->tf_load(drive
, &tf
, IDE_VALID_FEATURE
);
298 /* ask drive for ID */
299 tp_ops
->exec_command(hwif
, cmd
);
301 timeout
= ((cmd
== ATA_CMD_ID_ATA
) ? WAIT_WORSTCASE
: WAIT_PIDENTIFY
) / 2;
303 /* wait for IRQ and ATA_DRQ */
305 rc
= __ide_wait_stat(drive
, ATA_DRQ
, BAD_R_STAT
, timeout
, &s
);
309 rc
= ide_busy_sleep(drive
, timeout
, use_altstatus
);
314 s
= tp_ops
->read_status(hwif
);
317 if (OK_STAT(s
, ATA_DRQ
, BAD_R_STAT
)) {
318 /* drive returned ID */
319 do_identify(drive
, cmd
, id
);
320 /* drive responded with ID */
322 /* clear drive IRQ */
323 (void)tp_ops
->read_status(hwif
);
325 /* drive refused ID */
331 int ide_busy_sleep(ide_drive_t
*drive
, unsigned long timeout
, int altstatus
)
333 ide_hwif_t
*hwif
= drive
->hwif
;
339 msleep(50); /* give drive a breather */
340 stat
= altstatus
? hwif
->tp_ops
->read_altstatus(hwif
)
341 : hwif
->tp_ops
->read_status(hwif
);
342 if ((stat
& ATA_BUSY
) == 0)
344 } while (time_before(jiffies
, timeout
));
346 printk(KERN_ERR
"%s: timeout in %s\n", drive
->name
, __func__
);
348 return 1; /* drive timed-out */
351 static u8
ide_read_device(ide_drive_t
*drive
)
353 struct ide_taskfile tf
;
355 drive
->hwif
->tp_ops
->tf_read(drive
, &tf
, IDE_VALID_DEVICE
);
361 * do_probe - probe an IDE device
362 * @drive: drive to probe
363 * @cmd: command to use
365 * do_probe() has the difficult job of finding a drive if it exists,
366 * without getting hung up if it doesn't exist, without trampling on
367 * ethernet cards, and without leaving any IRQs dangling to haunt us later.
369 * If a drive is "known" to exist (from CMOS or kernel parameters),
370 * but does not respond right away, the probe will "hang in there"
371 * for the maximum wait time (about 30 seconds), otherwise it will
372 * exit much more quickly.
374 * Returns: 0 device was identified
375 * 1 device timed-out (no response to identify request)
376 * 2 device aborted the command (refused to identify itself)
377 * 3 bad status from device (possible for ATAPI drives)
378 * 4 probe was not attempted because failure was obvious
381 static int do_probe (ide_drive_t
*drive
, u8 cmd
)
383 ide_hwif_t
*hwif
= drive
->hwif
;
384 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
387 u8 present
= !!(drive
->dev_flags
& IDE_DFLAG_PRESENT
), stat
;
389 /* avoid waiting for inappropriate probes */
390 if (present
&& drive
->media
!= ide_disk
&& cmd
== ATA_CMD_ID_ATA
)
394 printk(KERN_INFO
"probing for %s: present=%d, media=%d, probetype=%s\n",
395 drive
->name
, present
, drive
->media
,
396 (cmd
== ATA_CMD_ID_ATA
) ? "ATA" : "ATAPI");
399 /* needed for some systems
400 * (e.g. crw9624 as drive0 with disk as slave)
403 tp_ops
->dev_select(drive
);
406 if (ide_read_device(drive
) != drive
->select
&& present
== 0) {
408 /* exit with drive0 selected */
409 tp_ops
->dev_select(hwif
->devices
[0]);
410 /* allow ATA_BUSY to assert & clear */
413 /* no i/f present: mmm.. this should be a 4 -ml */
417 stat
= tp_ops
->read_status(hwif
);
419 if (OK_STAT(stat
, ATA_DRDY
, ATA_BUSY
) ||
420 present
|| cmd
== ATA_CMD_ID_ATAPI
) {
421 rc
= ide_dev_read_id(drive
, cmd
, id
, 0);
423 /* failed: try again */
424 rc
= ide_dev_read_id(drive
, cmd
, id
, 0);
426 stat
= tp_ops
->read_status(hwif
);
428 if (stat
== (ATA_BUSY
| ATA_DRDY
))
431 if (rc
== 1 && cmd
== ATA_CMD_ID_ATAPI
) {
432 printk(KERN_ERR
"%s: no response (status = 0x%02x), "
433 "resetting drive\n", drive
->name
, stat
);
435 tp_ops
->dev_select(drive
);
437 tp_ops
->exec_command(hwif
, ATA_CMD_DEV_RESET
);
438 (void)ide_busy_sleep(drive
, WAIT_WORSTCASE
, 0);
439 rc
= ide_dev_read_id(drive
, cmd
, id
, 0);
442 /* ensure drive IRQ is clear */
443 stat
= tp_ops
->read_status(hwif
);
446 printk(KERN_ERR
"%s: no response (status = 0x%02x)\n",
449 /* not present or maybe ATAPI */
453 /* exit with drive0 selected */
454 tp_ops
->dev_select(hwif
->devices
[0]);
456 /* ensure drive irq is clear */
457 (void)tp_ops
->read_status(hwif
);
463 * probe_for_drives - upper level drive probe
464 * @drive: drive to probe for
466 * probe_for_drive() tests for existence of a given drive using do_probe()
467 * and presents things to the user as needed.
469 * Returns: 0 no device was found
471 * (note: IDE_DFLAG_PRESENT might still be not set)
474 static u8
probe_for_drive(ide_drive_t
*drive
)
480 drive
->dev_flags
&= ~IDE_DFLAG_ID_READ
;
482 m
= (char *)&drive
->id
[ATA_ID_PROD
];
483 strcpy(m
, "UNKNOWN");
486 if ((drive
->dev_flags
& IDE_DFLAG_NOPROBE
) == 0) {
487 /* if !(success||timed-out) */
488 cmd
= ATA_CMD_ID_ATA
;
489 rc
= do_probe(drive
, cmd
);
491 /* look for ATAPI device */
492 cmd
= ATA_CMD_ID_ATAPI
;
493 rc
= do_probe(drive
, cmd
);
496 if ((drive
->dev_flags
& IDE_DFLAG_PRESENT
) == 0)
499 /* identification failed? */
500 if ((drive
->dev_flags
& IDE_DFLAG_ID_READ
) == 0) {
501 if (drive
->media
== ide_disk
) {
502 printk(KERN_INFO
"%s: non-IDE drive, CHS=%d/%d/%d\n",
503 drive
->name
, drive
->cyl
,
504 drive
->head
, drive
->sect
);
505 } else if (drive
->media
== ide_cdrom
) {
506 printk(KERN_INFO
"%s: ATAPI cdrom (?)\n", drive
->name
);
509 printk(KERN_WARNING
"%s: Unknown device on bus refused identification. Ignoring.\n", drive
->name
);
510 drive
->dev_flags
&= ~IDE_DFLAG_PRESENT
;
513 if (cmd
== ATA_CMD_ID_ATAPI
)
514 ide_classify_atapi_dev(drive
);
516 ide_classify_ata_dev(drive
);
520 if ((drive
->dev_flags
& IDE_DFLAG_PRESENT
) == 0)
523 /* The drive wasn't being helpful. Add generic info only */
524 if ((drive
->dev_flags
& IDE_DFLAG_ID_READ
) == 0) {
529 if (drive
->media
== ide_disk
) {
530 ide_disk_init_chs(drive
);
531 ide_disk_init_mult_count(drive
);
537 static void hwif_release_dev(struct device
*dev
)
539 ide_hwif_t
*hwif
= container_of(dev
, ide_hwif_t
, gendev
);
541 complete(&hwif
->gendev_rel_comp
);
544 static int ide_register_port(ide_hwif_t
*hwif
)
548 /* register with global device tree */
549 dev_set_name(&hwif
->gendev
, "%s", hwif
->name
);
550 dev_set_drvdata(&hwif
->gendev
, hwif
);
551 if (hwif
->gendev
.parent
== NULL
)
552 hwif
->gendev
.parent
= hwif
->dev
;
553 hwif
->gendev
.release
= hwif_release_dev
;
555 ret
= device_register(&hwif
->gendev
);
557 printk(KERN_WARNING
"IDE: %s: device_register error: %d\n",
562 hwif
->portdev
= device_create(ide_port_class
, &hwif
->gendev
,
563 MKDEV(0, 0), hwif
, "%s", hwif
->name
);
564 if (IS_ERR(hwif
->portdev
)) {
565 ret
= PTR_ERR(hwif
->portdev
);
566 device_unregister(&hwif
->gendev
);
573 * ide_port_wait_ready - wait for port to become ready
576 * This is needed on some PPCs and a bunch of BIOS-less embedded
577 * platforms. Typical cases are:
579 * - The firmware hard reset the disk before booting the kernel,
580 * the drive is still doing it's poweron-reset sequence, that
581 * can take up to 30 seconds.
583 * - The firmware does nothing (or no firmware), the device is
584 * still in POST state (same as above actually).
586 * - Some CD/DVD/Writer combo drives tend to drive the bus during
587 * their reset sequence even when they are non-selected slave
588 * devices, thus preventing discovery of the main HD.
590 * Doing this wait-for-non-busy should not harm any existing
591 * configuration and fix some issues like the above.
595 * Returns 0 on success, error code (< 0) otherwise.
598 static int ide_port_wait_ready(ide_hwif_t
*hwif
)
600 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
604 printk(KERN_DEBUG
"Probing IDE interface %s...\n", hwif
->name
);
606 /* Let HW settle down a bit from whatever init state we
610 /* Wait for BSY bit to go away, spec timeout is 30 seconds,
611 * I know of at least one disk who takes 31 seconds, I use 35
614 rc
= ide_wait_not_busy(hwif
, 35000);
618 /* Now make sure both master & slave are ready */
619 ide_port_for_each_dev(i
, drive
, hwif
) {
620 /* Ignore disks that we will not probe for later. */
621 if ((drive
->dev_flags
& IDE_DFLAG_NOPROBE
) == 0 ||
622 (drive
->dev_flags
& IDE_DFLAG_PRESENT
)) {
623 tp_ops
->dev_select(drive
);
624 tp_ops
->write_devctl(hwif
, ATA_DEVCTL_OBS
);
626 rc
= ide_wait_not_busy(hwif
, 35000);
630 printk(KERN_DEBUG
"%s: ide_wait_not_busy() skipped\n",
634 /* Exit function with master reselected (let's be sane) */
636 tp_ops
->dev_select(hwif
->devices
[0]);
642 * ide_undecoded_slave - look for bad CF adapters
643 * @dev1: slave device
645 * Analyse the drives on the interface and attempt to decide if we
646 * have the same drive viewed twice. This occurs with crap CF adapters
647 * and PCMCIA sometimes.
650 void ide_undecoded_slave(ide_drive_t
*dev1
)
652 ide_drive_t
*dev0
= dev1
->hwif
->devices
[0];
654 if ((dev1
->dn
& 1) == 0 || (dev0
->dev_flags
& IDE_DFLAG_PRESENT
) == 0)
657 /* If the models don't match they are not the same product */
658 if (strcmp((char *)&dev0
->id
[ATA_ID_PROD
],
659 (char *)&dev1
->id
[ATA_ID_PROD
]))
662 /* Serial numbers do not match */
663 if (strncmp((char *)&dev0
->id
[ATA_ID_SERNO
],
664 (char *)&dev1
->id
[ATA_ID_SERNO
], ATA_ID_SERNO_LEN
))
667 /* No serial number, thankfully very rare for CF */
668 if (*(char *)&dev0
->id
[ATA_ID_SERNO
] == 0)
671 /* Appears to be an IDE flash adapter with decode bugs */
672 printk(KERN_WARNING
"ide-probe: ignoring undecoded slave\n");
674 dev1
->dev_flags
&= ~IDE_DFLAG_PRESENT
;
677 EXPORT_SYMBOL_GPL(ide_undecoded_slave
);
679 static int ide_probe_port(ide_hwif_t
*hwif
)
685 BUG_ON(hwif
->present
);
687 if ((hwif
->devices
[0]->dev_flags
& IDE_DFLAG_NOPROBE
) &&
688 (hwif
->devices
[1]->dev_flags
& IDE_DFLAG_NOPROBE
))
692 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
693 * we'll install our IRQ driver much later...
697 disable_irq(hwif
->irq
);
699 if (ide_port_wait_ready(hwif
) == -EBUSY
)
700 printk(KERN_DEBUG
"%s: Wait for ready failed before probe !\n", hwif
->name
);
703 * Second drive should only exist if first drive was found,
704 * but a lot of cdrom drives are configured as single slaves.
706 ide_port_for_each_dev(i
, drive
, hwif
) {
707 (void) probe_for_drive(drive
);
708 if (drive
->dev_flags
& IDE_DFLAG_PRESENT
)
713 * Use cached IRQ number. It might be (and is...) changed by probe
722 static void ide_port_tune_devices(ide_hwif_t
*hwif
)
724 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
728 ide_port_for_each_present_dev(i
, drive
, hwif
) {
729 ide_check_nien_quirk_list(drive
);
731 if (port_ops
&& port_ops
->quirkproc
)
732 port_ops
->quirkproc(drive
);
735 ide_port_for_each_present_dev(i
, drive
, hwif
) {
736 ide_set_max_pio(drive
);
738 drive
->dev_flags
|= IDE_DFLAG_NICE1
;
745 static void ide_initialize_rq(struct request
*rq
)
747 struct ide_request
*req
= blk_mq_rq_to_pdu(rq
);
749 scsi_req_init(&req
->sreq
);
750 req
->sreq
.sense
= req
->sense
;
756 static int ide_init_queue(ide_drive_t
*drive
)
758 struct request_queue
*q
;
759 ide_hwif_t
*hwif
= drive
->hwif
;
760 int max_sectors
= 256;
761 int max_sg_entries
= PRD_ENTRIES
;
764 * Our default set up assumes the normal IDE case,
765 * that is 64K segmenting, standard PRD setup
766 * and LBA28. Some drivers then impose their own
767 * limits and LBA48 we could raise it but as yet
770 q
= blk_alloc_queue_node(GFP_KERNEL
, hwif_to_node(hwif
), NULL
);
774 q
->request_fn
= do_ide_request
;
775 q
->initialize_rq_fn
= ide_initialize_rq
;
776 q
->cmd_size
= sizeof(struct ide_request
);
777 blk_queue_flag_set(QUEUE_FLAG_SCSI_PASSTHROUGH
, q
);
778 if (blk_init_allocated_queue(q
) < 0) {
779 blk_cleanup_queue(q
);
783 q
->queuedata
= drive
;
784 blk_queue_segment_boundary(q
, 0xffff);
786 if (hwif
->rqsize
< max_sectors
)
787 max_sectors
= hwif
->rqsize
;
788 blk_queue_max_hw_sectors(q
, max_sectors
);
791 /* When we have an IOMMU, we may have a problem where pci_map_sg()
792 * creates segments that don't completely match our boundary
793 * requirements and thus need to be broken up again. Because it
794 * doesn't align properly either, we may actually have to break up
795 * to more segments than what was we got in the first place, a max
796 * worst case is twice as many.
797 * This will be fixed once we teach pci_map_sg() about our boundary
798 * requirements, hopefully soon. *FIXME*
800 max_sg_entries
>>= 1;
801 #endif /* CONFIG_PCI */
803 blk_queue_max_segments(q
, max_sg_entries
);
805 /* assign drive queue */
811 static DEFINE_MUTEX(ide_cfg_mtx
);
814 * For any present drive:
815 * - allocate the block device queue
817 static int ide_port_setup_devices(ide_hwif_t
*hwif
)
822 mutex_lock(&ide_cfg_mtx
);
823 ide_port_for_each_present_dev(i
, drive
, hwif
) {
824 if (ide_init_queue(drive
)) {
825 printk(KERN_ERR
"ide: failed to init %s\n",
827 drive
->dev_flags
&= ~IDE_DFLAG_PRESENT
;
833 mutex_unlock(&ide_cfg_mtx
);
838 static void ide_host_enable_irqs(struct ide_host
*host
)
843 ide_host_for_each_port(i
, hwif
, host
) {
847 /* clear any pending IRQs */
848 hwif
->tp_ops
->read_status(hwif
);
851 if (hwif
->io_ports
.ctl_addr
)
852 hwif
->tp_ops
->write_devctl(hwif
, ATA_DEVCTL_OBS
);
857 * This routine sets up the IRQ for an IDE interface.
859 static int init_irq (ide_hwif_t
*hwif
)
861 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
862 struct ide_host
*host
= hwif
->host
;
863 irq_handler_t irq_handler
= host
->irq_handler
;
864 int sa
= host
->irq_flags
;
866 if (irq_handler
== NULL
)
867 irq_handler
= ide_intr
;
870 if (request_irq(hwif
->irq
, irq_handler
, sa
, hwif
->name
, hwif
))
873 #if !defined(__mc68000__)
874 printk(KERN_INFO
"%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif
->name
,
875 io_ports
->data_addr
, io_ports
->status_addr
,
876 io_ports
->ctl_addr
, hwif
->irq
);
878 printk(KERN_INFO
"%s at 0x%08lx on irq %d", hwif
->name
,
879 io_ports
->data_addr
, hwif
->irq
);
880 #endif /* __mc68000__ */
881 if (hwif
->host
->host_flags
& IDE_HFLAG_SERIALIZE
)
882 printk(KERN_CONT
" (serialized)");
883 printk(KERN_CONT
"\n");
890 static int ata_lock(dev_t dev
, void *data
)
892 /* FIXME: we want to pin hwif down */
896 static struct kobject
*ata_probe(dev_t dev
, int *part
, void *data
)
898 ide_hwif_t
*hwif
= data
;
899 int unit
= *part
>> PARTN_BITS
;
900 ide_drive_t
*drive
= hwif
->devices
[unit
];
902 if ((drive
->dev_flags
& IDE_DFLAG_PRESENT
) == 0)
905 if (drive
->media
== ide_disk
)
906 request_module("ide-disk");
907 if (drive
->media
== ide_cdrom
|| drive
->media
== ide_optical
)
908 request_module("ide-cd");
909 if (drive
->media
== ide_tape
)
910 request_module("ide-tape");
911 if (drive
->media
== ide_floppy
)
912 request_module("ide-floppy");
917 static struct kobject
*exact_match(dev_t dev
, int *part
, void *data
)
919 struct gendisk
*p
= data
;
920 *part
&= (1 << PARTN_BITS
) - 1;
921 return &disk_to_dev(p
)->kobj
;
924 static int exact_lock(dev_t dev
, void *data
)
926 struct gendisk
*p
= data
;
928 if (!get_disk_and_module(p
))
933 void ide_register_region(struct gendisk
*disk
)
935 blk_register_region(MKDEV(disk
->major
, disk
->first_minor
),
936 disk
->minors
, NULL
, exact_match
, exact_lock
, disk
);
939 EXPORT_SYMBOL_GPL(ide_register_region
);
941 void ide_unregister_region(struct gendisk
*disk
)
943 blk_unregister_region(MKDEV(disk
->major
, disk
->first_minor
),
947 EXPORT_SYMBOL_GPL(ide_unregister_region
);
949 void ide_init_disk(struct gendisk
*disk
, ide_drive_t
*drive
)
951 ide_hwif_t
*hwif
= drive
->hwif
;
952 unsigned int unit
= drive
->dn
& 1;
954 disk
->major
= hwif
->major
;
955 disk
->first_minor
= unit
<< PARTN_BITS
;
956 sprintf(disk
->disk_name
, "hd%c", 'a' + hwif
->index
* MAX_DRIVES
+ unit
);
957 disk
->queue
= drive
->queue
;
960 EXPORT_SYMBOL_GPL(ide_init_disk
);
962 static void drive_release_dev (struct device
*dev
)
964 ide_drive_t
*drive
= container_of(dev
, ide_drive_t
, gendev
);
966 ide_proc_unregister_device(drive
);
968 blk_cleanup_queue(drive
->queue
);
971 drive
->dev_flags
&= ~IDE_DFLAG_PRESENT
;
973 complete(&drive
->gendev_rel_comp
);
976 static int hwif_init(ide_hwif_t
*hwif
)
979 printk(KERN_ERR
"%s: disabled, no IRQ\n", hwif
->name
);
983 if (register_blkdev(hwif
->major
, hwif
->name
))
986 if (!hwif
->sg_max_nents
)
987 hwif
->sg_max_nents
= PRD_ENTRIES
;
989 hwif
->sg_table
= kmalloc_array(hwif
->sg_max_nents
,
990 sizeof(struct scatterlist
),
992 if (!hwif
->sg_table
) {
993 printk(KERN_ERR
"%s: unable to allocate SG table.\n", hwif
->name
);
997 sg_init_table(hwif
->sg_table
, hwif
->sg_max_nents
);
999 if (init_irq(hwif
)) {
1000 printk(KERN_ERR
"%s: disabled, unable to get IRQ %d\n",
1001 hwif
->name
, hwif
->irq
);
1005 blk_register_region(MKDEV(hwif
->major
, 0), MAX_DRIVES
<< PARTN_BITS
,
1006 THIS_MODULE
, ata_probe
, ata_lock
, hwif
);
1010 unregister_blkdev(hwif
->major
, hwif
->name
);
1014 static void hwif_register_devices(ide_hwif_t
*hwif
)
1019 ide_port_for_each_present_dev(i
, drive
, hwif
) {
1020 struct device
*dev
= &drive
->gendev
;
1023 dev_set_name(dev
, "%u.%u", hwif
->index
, i
);
1024 dev_set_drvdata(dev
, drive
);
1025 dev
->parent
= &hwif
->gendev
;
1026 dev
->bus
= &ide_bus_type
;
1027 dev
->release
= drive_release_dev
;
1029 ret
= device_register(dev
);
1031 printk(KERN_WARNING
"IDE: %s: device_register error: "
1032 "%d\n", __func__
, ret
);
1036 static void ide_port_init_devices(ide_hwif_t
*hwif
)
1038 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
1042 ide_port_for_each_dev(i
, drive
, hwif
) {
1043 drive
->dn
= i
+ hwif
->channel
* 2;
1045 if (hwif
->host_flags
& IDE_HFLAG_IO_32BIT
)
1046 drive
->io_32bit
= 1;
1047 if (hwif
->host_flags
& IDE_HFLAG_NO_IO_32BIT
)
1048 drive
->dev_flags
|= IDE_DFLAG_NO_IO_32BIT
;
1049 if (hwif
->host_flags
& IDE_HFLAG_UNMASK_IRQS
)
1050 drive
->dev_flags
|= IDE_DFLAG_UNMASK
;
1051 if (hwif
->host_flags
& IDE_HFLAG_NO_UNMASK_IRQS
)
1052 drive
->dev_flags
|= IDE_DFLAG_NO_UNMASK
;
1054 drive
->pio_mode
= XFER_PIO_0
;
1056 if (port_ops
&& port_ops
->init_dev
)
1057 port_ops
->init_dev(drive
);
1061 static void ide_init_port(ide_hwif_t
*hwif
, unsigned int port
,
1062 const struct ide_port_info
*d
)
1064 hwif
->channel
= port
;
1066 hwif
->chipset
= d
->chipset
? d
->chipset
: ide_pci
;
1071 /* ->host_flags may be set by ->init_iops (or even earlier...) */
1072 hwif
->host_flags
|= d
->host_flags
;
1073 hwif
->pio_mask
= d
->pio_mask
;
1076 hwif
->tp_ops
= d
->tp_ops
;
1078 /* ->set_pio_mode for DTC2278 is currently limited to port 0 */
1079 if ((hwif
->host_flags
& IDE_HFLAG_DTC2278
) == 0 || hwif
->channel
== 0)
1080 hwif
->port_ops
= d
->port_ops
;
1082 hwif
->swdma_mask
= d
->swdma_mask
;
1083 hwif
->mwdma_mask
= d
->mwdma_mask
;
1084 hwif
->ultra_mask
= d
->udma_mask
;
1086 if ((d
->host_flags
& IDE_HFLAG_NO_DMA
) == 0) {
1089 hwif
->dma_ops
= d
->dma_ops
;
1092 rc
= d
->init_dma(hwif
, d
);
1094 rc
= ide_hwif_setup_dma(hwif
, d
);
1097 printk(KERN_INFO
"%s: DMA disabled\n", hwif
->name
);
1099 hwif
->dma_ops
= NULL
;
1101 hwif
->swdma_mask
= 0;
1102 hwif
->mwdma_mask
= 0;
1103 hwif
->ultra_mask
= 0;
1107 if ((d
->host_flags
& IDE_HFLAG_SERIALIZE
) ||
1108 ((d
->host_flags
& IDE_HFLAG_SERIALIZE_DMA
) && hwif
->dma_base
))
1109 hwif
->host
->host_flags
|= IDE_HFLAG_SERIALIZE
;
1112 hwif
->rqsize
= d
->max_sectors
;
1114 if ((hwif
->host_flags
& IDE_HFLAG_NO_LBA48
) ||
1115 (hwif
->host_flags
& IDE_HFLAG_NO_LBA48_DMA
))
1118 hwif
->rqsize
= 65536;
1121 /* call chipset specific routine for each enabled port */
1126 static void ide_port_cable_detect(ide_hwif_t
*hwif
)
1128 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
1130 if (port_ops
&& port_ops
->cable_detect
&& (hwif
->ultra_mask
& 0x78)) {
1131 if (hwif
->cbl
!= ATA_CBL_PATA40_SHORT
)
1132 hwif
->cbl
= port_ops
->cable_detect(hwif
);
1136 static const u8 ide_hwif_to_major
[] =
1137 { IDE0_MAJOR
, IDE1_MAJOR
, IDE2_MAJOR
, IDE3_MAJOR
, IDE4_MAJOR
,
1138 IDE5_MAJOR
, IDE6_MAJOR
, IDE7_MAJOR
, IDE8_MAJOR
, IDE9_MAJOR
};
1140 static void ide_port_init_devices_data(ide_hwif_t
*hwif
)
1145 ide_port_for_each_dev(i
, drive
, hwif
) {
1146 u8 j
= (hwif
->index
* MAX_DRIVES
) + i
;
1147 u16
*saved_id
= drive
->id
;
1148 struct request
*saved_sense_rq
= drive
->sense_rq
;
1150 memset(drive
, 0, sizeof(*drive
));
1151 memset(saved_id
, 0, SECTOR_SIZE
);
1152 drive
->id
= saved_id
;
1153 drive
->sense_rq
= saved_sense_rq
;
1155 drive
->media
= ide_disk
;
1156 drive
->select
= (i
<< 4) | ATA_DEVICE_OBS
;
1158 drive
->ready_stat
= ATA_DRDY
;
1159 drive
->bad_wstat
= BAD_W_STAT
;
1160 drive
->special_flags
= IDE_SFLAG_RECALIBRATE
|
1161 IDE_SFLAG_SET_GEOMETRY
;
1162 drive
->name
[0] = 'h';
1163 drive
->name
[1] = 'd';
1164 drive
->name
[2] = 'a' + j
;
1165 drive
->max_failures
= IDE_DEFAULT_MAX_FAILURES
;
1167 INIT_LIST_HEAD(&drive
->list
);
1168 init_completion(&drive
->gendev_rel_comp
);
1172 static void ide_init_port_data(ide_hwif_t
*hwif
, unsigned int index
)
1174 /* fill in any non-zero initial values */
1175 hwif
->index
= index
;
1176 hwif
->major
= ide_hwif_to_major
[index
];
1178 hwif
->name
[0] = 'i';
1179 hwif
->name
[1] = 'd';
1180 hwif
->name
[2] = 'e';
1181 hwif
->name
[3] = '0' + index
;
1183 spin_lock_init(&hwif
->lock
);
1185 timer_setup(&hwif
->timer
, ide_timer_expiry
, 0);
1187 init_completion(&hwif
->gendev_rel_comp
);
1189 hwif
->tp_ops
= &default_tp_ops
;
1191 ide_port_init_devices_data(hwif
);
1194 static void ide_init_port_hw(ide_hwif_t
*hwif
, struct ide_hw
*hw
)
1196 memcpy(&hwif
->io_ports
, &hw
->io_ports
, sizeof(hwif
->io_ports
));
1197 hwif
->irq
= hw
->irq
;
1198 hwif
->dev
= hw
->dev
;
1199 hwif
->gendev
.parent
= hw
->parent
? hw
->parent
: hw
->dev
;
1200 hwif
->config_data
= hw
->config
;
1203 static unsigned int ide_indexes
;
1206 * ide_find_port_slot - find free port slot
1209 * Return the new port slot index or -ENOENT if we are out of free slots.
1212 static int ide_find_port_slot(const struct ide_port_info
*d
)
1215 u8 bootable
= (d
&& (d
->host_flags
& IDE_HFLAG_NON_BOOTABLE
)) ? 0 : 1;
1216 u8 i
= (d
&& (d
->host_flags
& IDE_HFLAG_QD_2ND_PORT
)) ? 1 : 0;
1219 * Claim an unassigned slot.
1221 * Give preference to claiming other slots before claiming ide0/ide1,
1222 * just in case there's another interface yet-to-be-scanned
1223 * which uses ports 0x1f0/0x170 (the ide0/ide1 defaults).
1225 * Unless there is a bootable card that does not use the standard
1226 * ports 0x1f0/0x170 (the ide0/ide1 defaults).
1228 mutex_lock(&ide_cfg_mtx
);
1230 if ((ide_indexes
| i
) != (1 << MAX_HWIFS
) - 1)
1231 idx
= ffz(ide_indexes
| i
);
1233 if ((ide_indexes
| 3) != (1 << MAX_HWIFS
) - 1)
1234 idx
= ffz(ide_indexes
| 3);
1235 else if ((ide_indexes
& 3) != 3)
1236 idx
= ffz(ide_indexes
);
1239 ide_indexes
|= (1 << idx
);
1240 mutex_unlock(&ide_cfg_mtx
);
1245 static void ide_free_port_slot(int idx
)
1247 mutex_lock(&ide_cfg_mtx
);
1248 ide_indexes
&= ~(1 << idx
);
1249 mutex_unlock(&ide_cfg_mtx
);
1252 static void ide_port_free_devices(ide_hwif_t
*hwif
)
1257 ide_port_for_each_dev(i
, drive
, hwif
) {
1258 kfree(drive
->sense_rq
);
1264 static int ide_port_alloc_devices(ide_hwif_t
*hwif
, int node
)
1269 for (i
= 0; i
< MAX_DRIVES
; i
++) {
1270 drive
= kzalloc_node(sizeof(*drive
), GFP_KERNEL
, node
);
1275 * In order to keep things simple we have an id
1276 * block for all drives at all times. If the device
1277 * is pre ATA or refuses ATA/ATAPI identify we
1278 * will add faked data to this.
1280 * Also note that 0 everywhere means "can't do X"
1282 drive
->id
= kzalloc_node(SECTOR_SIZE
, GFP_KERNEL
, node
);
1283 if (drive
->id
== NULL
)
1284 goto out_free_drive
;
1286 drive
->sense_rq
= kmalloc(sizeof(struct request
) +
1287 sizeof(struct ide_request
), GFP_KERNEL
);
1288 if (!drive
->sense_rq
)
1291 hwif
->devices
[i
] = drive
;
1300 ide_port_free_devices(hwif
);
1304 struct ide_host
*ide_host_alloc(const struct ide_port_info
*d
,
1305 struct ide_hw
**hws
, unsigned int n_ports
)
1307 struct ide_host
*host
;
1308 struct device
*dev
= hws
[0] ? hws
[0]->dev
: NULL
;
1309 int node
= dev
? dev_to_node(dev
) : -1;
1312 host
= kzalloc_node(sizeof(*host
), GFP_KERNEL
, node
);
1316 for (i
= 0; i
< n_ports
; i
++) {
1323 hwif
= kzalloc_node(sizeof(*hwif
), GFP_KERNEL
, node
);
1327 if (ide_port_alloc_devices(hwif
, node
) < 0) {
1332 idx
= ide_find_port_slot(d
);
1334 printk(KERN_ERR
"%s: no free slot for interface\n",
1335 d
? d
->name
: "ide");
1336 ide_port_free_devices(hwif
);
1341 ide_init_port_data(hwif
, idx
);
1345 host
->ports
[i
] = hwif
;
1349 if (host
->n_ports
== 0) {
1357 host
->init_chipset
= d
->init_chipset
;
1358 host
->get_lock
= d
->get_lock
;
1359 host
->release_lock
= d
->release_lock
;
1360 host
->host_flags
= d
->host_flags
;
1361 host
->irq_flags
= d
->irq_flags
;
1366 EXPORT_SYMBOL_GPL(ide_host_alloc
);
1368 static void ide_port_free(ide_hwif_t
*hwif
)
1370 ide_port_free_devices(hwif
);
1371 ide_free_port_slot(hwif
->index
);
1375 static void ide_disable_port(ide_hwif_t
*hwif
)
1377 struct ide_host
*host
= hwif
->host
;
1380 printk(KERN_INFO
"%s: disabling port\n", hwif
->name
);
1382 for (i
= 0; i
< MAX_HOST_PORTS
; i
++) {
1383 if (host
->ports
[i
] == hwif
) {
1384 host
->ports
[i
] = NULL
;
1389 ide_port_free(hwif
);
1392 int ide_host_register(struct ide_host
*host
, const struct ide_port_info
*d
,
1393 struct ide_hw
**hws
)
1395 ide_hwif_t
*hwif
, *mate
= NULL
;
1398 ide_host_for_each_port(i
, hwif
, host
) {
1404 ide_init_port_hw(hwif
, hws
[i
]);
1405 ide_port_apply_params(hwif
);
1407 if ((i
& 1) && mate
) {
1412 mate
= (i
& 1) ? NULL
: hwif
;
1414 ide_init_port(hwif
, i
& 1, d
);
1415 ide_port_cable_detect(hwif
);
1417 hwif
->port_flags
|= IDE_PFLAG_PROBING
;
1419 ide_port_init_devices(hwif
);
1422 ide_host_for_each_port(i
, hwif
, host
) {
1426 if (ide_probe_port(hwif
) == 0)
1429 hwif
->port_flags
&= ~IDE_PFLAG_PROBING
;
1431 if ((hwif
->host_flags
& IDE_HFLAG_4DRIVES
) == 0 ||
1432 hwif
->mate
== NULL
|| hwif
->mate
->present
== 0) {
1433 if (ide_register_port(hwif
)) {
1434 ide_disable_port(hwif
);
1440 ide_port_tune_devices(hwif
);
1443 ide_host_enable_irqs(host
);
1445 ide_host_for_each_port(i
, hwif
, host
) {
1449 if (hwif_init(hwif
) == 0) {
1450 printk(KERN_INFO
"%s: failed to initialize IDE "
1451 "interface\n", hwif
->name
);
1452 device_unregister(hwif
->portdev
);
1453 device_unregister(&hwif
->gendev
);
1454 ide_disable_port(hwif
);
1459 if (ide_port_setup_devices(hwif
) == 0) {
1466 ide_acpi_init_port(hwif
);
1469 ide_acpi_port_init_devices(hwif
);
1472 ide_host_for_each_port(i
, hwif
, host
) {
1476 ide_sysfs_register_port(hwif
);
1477 ide_proc_register_port(hwif
);
1479 if (hwif
->present
) {
1480 ide_proc_port_register_devices(hwif
);
1481 hwif_register_devices(hwif
);
1487 EXPORT_SYMBOL_GPL(ide_host_register
);
1489 int ide_host_add(const struct ide_port_info
*d
, struct ide_hw
**hws
,
1490 unsigned int n_ports
, struct ide_host
**hostp
)
1492 struct ide_host
*host
;
1495 host
= ide_host_alloc(d
, hws
, n_ports
);
1499 rc
= ide_host_register(host
, d
, hws
);
1501 ide_host_free(host
);
1510 EXPORT_SYMBOL_GPL(ide_host_add
);
1512 static void __ide_port_unregister_devices(ide_hwif_t
*hwif
)
1517 ide_port_for_each_present_dev(i
, drive
, hwif
) {
1518 device_unregister(&drive
->gendev
);
1519 wait_for_completion(&drive
->gendev_rel_comp
);
1523 void ide_port_unregister_devices(ide_hwif_t
*hwif
)
1525 mutex_lock(&ide_cfg_mtx
);
1526 __ide_port_unregister_devices(hwif
);
1528 ide_port_init_devices_data(hwif
);
1529 mutex_unlock(&ide_cfg_mtx
);
1531 EXPORT_SYMBOL_GPL(ide_port_unregister_devices
);
1534 * ide_unregister - free an IDE interface
1535 * @hwif: IDE interface
1537 * Perform the final unregister of an IDE interface.
1540 * The caller must not hold the IDE locks.
1542 * It is up to the caller to be sure there is no pending I/O here,
1543 * and that the interface will not be reopened (present/vanishing
1544 * locking isn't yet done BTW).
1547 static void ide_unregister(ide_hwif_t
*hwif
)
1549 BUG_ON(in_interrupt());
1550 BUG_ON(irqs_disabled());
1552 mutex_lock(&ide_cfg_mtx
);
1554 if (hwif
->present
) {
1555 __ide_port_unregister_devices(hwif
);
1559 ide_proc_unregister_port(hwif
);
1561 if (!hwif
->host
->get_lock
)
1562 free_irq(hwif
->irq
, hwif
);
1564 device_unregister(hwif
->portdev
);
1565 device_unregister(&hwif
->gendev
);
1566 wait_for_completion(&hwif
->gendev_rel_comp
);
1569 * Remove us from the kernel's knowledge
1571 blk_unregister_region(MKDEV(hwif
->major
, 0), MAX_DRIVES
<<PARTN_BITS
);
1572 kfree(hwif
->sg_table
);
1573 unregister_blkdev(hwif
->major
, hwif
->name
);
1575 ide_release_dma_engine(hwif
);
1577 mutex_unlock(&ide_cfg_mtx
);
1580 void ide_host_free(struct ide_host
*host
)
1585 ide_host_for_each_port(i
, hwif
, host
) {
1587 ide_port_free(hwif
);
1592 EXPORT_SYMBOL_GPL(ide_host_free
);
1594 void ide_host_remove(struct ide_host
*host
)
1599 ide_host_for_each_port(i
, hwif
, host
) {
1601 ide_unregister(hwif
);
1604 ide_host_free(host
);
1606 EXPORT_SYMBOL_GPL(ide_host_remove
);
1608 void ide_port_scan(ide_hwif_t
*hwif
)
1612 ide_port_apply_params(hwif
);
1613 ide_port_cable_detect(hwif
);
1615 hwif
->port_flags
|= IDE_PFLAG_PROBING
;
1617 ide_port_init_devices(hwif
);
1619 rc
= ide_probe_port(hwif
);
1621 hwif
->port_flags
&= ~IDE_PFLAG_PROBING
;
1628 ide_port_tune_devices(hwif
);
1629 ide_port_setup_devices(hwif
);
1630 ide_acpi_port_init_devices(hwif
);
1631 hwif_register_devices(hwif
);
1632 ide_proc_port_register_devices(hwif
);
1634 EXPORT_SYMBOL_GPL(ide_port_scan
);