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 <asm/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
)
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
;
61 static void ide_disk_init_chs(ide_drive_t
*drive
)
63 struct hd_driveid
*id
= drive
->id
;
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
;
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
;
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
;
88 static void ide_disk_init_mult_count(ide_drive_t
*drive
)
90 struct hd_driveid
*id
= drive
->id
;
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;
97 drive
->mult_req
= id
->multsect_valid
? id
->max_multsect
: 0;
98 drive
->special
.b
.set_multmode
= drive
->mult_req
? 1 : 0;
99 #else /* original, pre IDE-NFG, per request of AC */
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;
110 * do_identify - identify a drive
111 * @drive: drive to identify
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.
119 static inline void do_identify (ide_drive_t
*drive
, u8 cmd
)
121 ide_hwif_t
*hwif
= HWIF(drive
);
123 struct hd_driveid
*id
;
126 /* read 512 bytes of id info */
127 hwif
->tp_ops
->input_data(drive
, NULL
, id
, SECTOR_SIZE
);
132 printk(KERN_INFO
"%s: dumping identify data\n", drive
->name
);
133 ide_dump_identify((u8
*)id
);
138 * WIN_IDENTIFY returns little-endian info,
139 * WIN_PIDENTIFY *usually* returns little-endian info.
141 if (cmd
== WIN_PIDENTIFY
) {
142 if ((id
->model
[0] == 'N' && id
->model
[1] == 'E') /* NEC */
143 || (id
->model
[0] == 'F' && id
->model
[1] == 'X') /* Mitsumi */
144 || (id
->model
[0] == 'P' && id
->model
[1] == 'i'))/* Pioneer */
145 /* Vertos drives may still be weird */
148 ide_fixstring(id
->model
, sizeof(id
->model
), bswap
);
149 ide_fixstring(id
->fw_rev
, sizeof(id
->fw_rev
), bswap
);
150 ide_fixstring(id
->serial_no
, sizeof(id
->serial_no
), bswap
);
152 /* we depend on this a lot! */
153 id
->model
[sizeof(id
->model
)-1] = '\0';
155 if (strstr(id
->model
, "E X A B Y T E N E S T"))
158 printk(KERN_INFO
"%s: %s, ", drive
->name
, id
->model
);
164 * Check for an ATAPI device
166 if (cmd
== WIN_PIDENTIFY
) {
167 u8 type
= (id
->config
>> 8) & 0x1f;
169 printk(KERN_CONT
"ATAPI ");
172 if (!strstr(id
->model
, "CD-ROM")) {
173 if (!strstr(id
->model
, "oppy") &&
174 !strstr(id
->model
, "poyp") &&
175 !strstr(id
->model
, "ZIP"))
176 printk(KERN_CONT
"cdrom or floppy?, assuming ");
177 if (drive
->media
!= ide_cdrom
) {
178 printk(KERN_CONT
"FLOPPY");
179 drive
->removable
= 1;
183 /* Early cdrom models used zero */
186 drive
->removable
= 1;
188 /* kludge for Apple PowerBook internal zip */
189 if (!strstr(id
->model
, "CD-ROM") &&
190 strstr(id
->model
, "ZIP")) {
191 printk(KERN_CONT
"FLOPPY");
196 printk(KERN_CONT
"CD/DVD-ROM");
199 printk(KERN_CONT
"TAPE");
202 printk(KERN_CONT
"OPTICAL");
203 drive
->removable
= 1;
206 printk(KERN_CONT
"UNKNOWN (type %d)", type
);
209 printk(KERN_CONT
" drive\n");
211 /* an ATAPI device ignores DRDY */
212 drive
->ready_stat
= 0;
217 * Not an ATAPI device: looks like a "regular" hard disk
221 * 0x848a = CompactFlash device
222 * These are *not* removable in Linux definition of the term
225 if ((id
->config
!= 0x848a) && (id
->config
& (1<<7)))
226 drive
->removable
= 1;
228 drive
->media
= ide_disk
;
230 printk(KERN_CONT
"%s DISK drive\n",
231 (id
->config
== 0x848a) ? "CFA" : "ATA");
242 * actual_try_to_identify - send ata/atapi identify
243 * @drive: drive to identify
244 * @cmd: command to use
246 * try_to_identify() sends an ATA(PI) IDENTIFY request to a drive
247 * and waits for a response. It also monitors irqs while this is
248 * happening, in hope of automatically determining which one is
249 * being used by the interface.
251 * Returns: 0 device was identified
252 * 1 device timed-out (no response to identify request)
253 * 2 device aborted the command (refused to identify itself)
256 static int actual_try_to_identify (ide_drive_t
*drive
, u8 cmd
)
258 ide_hwif_t
*hwif
= HWIF(drive
);
259 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
260 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
261 int use_altstatus
= 0, rc
;
262 unsigned long timeout
;
265 /* take a deep breath */
268 if (io_ports
->ctl_addr
) {
269 a
= tp_ops
->read_altstatus(hwif
);
270 s
= tp_ops
->read_status(hwif
);
271 if ((a
^ s
) & ~INDEX_STAT
)
272 /* ancient Seagate drives, broken interfaces */
273 printk(KERN_INFO
"%s: probing with STATUS(0x%02x) "
274 "instead of ALTSTATUS(0x%02x)\n",
277 /* use non-intrusive polling */
281 /* set features register for atapi
282 * identify command to be sure of reply
284 if (cmd
== WIN_PIDENTIFY
) {
287 memset(&task
, 0, sizeof(task
));
288 /* disable DMA & overlap */
289 task
.tf_flags
= IDE_TFLAG_OUT_FEATURE
;
291 tp_ops
->tf_load(drive
, &task
);
294 /* ask drive for ID */
295 tp_ops
->exec_command(hwif
, cmd
);
297 timeout
= ((cmd
== WIN_IDENTIFY
) ? WAIT_WORSTCASE
: WAIT_PIDENTIFY
) / 2;
300 if (time_after(jiffies
, timeout
)) {
301 /* drive timed-out */
304 /* give drive a breather */
306 s
= use_altstatus
? tp_ops
->read_altstatus(hwif
)
307 : tp_ops
->read_status(hwif
);
308 } while (s
& BUSY_STAT
);
310 /* wait for IRQ and DRQ_STAT */
312 s
= tp_ops
->read_status(hwif
);
314 if (OK_STAT(s
, DRQ_STAT
, BAD_R_STAT
)) {
317 /* local CPU only; some systems need this */
318 local_irq_save(flags
);
319 /* drive returned ID */
320 do_identify(drive
, cmd
);
321 /* drive responded with ID */
323 /* clear drive IRQ */
324 (void)tp_ops
->read_status(hwif
);
325 local_irq_restore(flags
);
327 /* drive refused ID */
334 * try_to_identify - try to identify a drive
335 * @drive: drive to probe
336 * @cmd: command to use
338 * Issue the identify command and then do IRQ probing to
339 * complete the identification when needed by finding the
340 * IRQ the drive is attached to
343 static int try_to_identify (ide_drive_t
*drive
, u8 cmd
)
345 ide_hwif_t
*hwif
= HWIF(drive
);
346 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
349 unsigned long cookie
= 0;
352 * Disable device irq unless we need to
353 * probe for it. Otherwise we'll get spurious
354 * interrupts during the identify-phase that
355 * the irq handler isn't expecting.
357 if (hwif
->io_ports
.ctl_addr
) {
360 cookie
= probe_irq_on();
362 tp_ops
->set_irq(hwif
, autoprobe
);
365 retval
= actual_try_to_identify(drive
, cmd
);
370 tp_ops
->set_irq(hwif
, 0);
371 /* clear drive IRQ */
372 (void)tp_ops
->read_status(hwif
);
374 irq
= probe_irq_off(cookie
);
379 /* Mmmm.. multiple IRQs..
380 * don't know which was ours
382 printk(KERN_ERR
"%s: IRQ probe failed (0x%lx)\n",
383 drive
->name
, cookie
);
390 static int ide_busy_sleep(ide_hwif_t
*hwif
)
392 unsigned long timeout
= jiffies
+ WAIT_WORSTCASE
;
397 stat
= hwif
->tp_ops
->read_status(hwif
);
398 if ((stat
& BUSY_STAT
) == 0)
400 } while (time_before(jiffies
, timeout
));
405 static u8
ide_read_device(ide_drive_t
*drive
)
409 memset(&task
, 0, sizeof(task
));
410 task
.tf_flags
= IDE_TFLAG_IN_DEVICE
;
412 drive
->hwif
->tp_ops
->tf_read(drive
, &task
);
414 return task
.tf
.device
;
418 * do_probe - probe an IDE device
419 * @drive: drive to probe
420 * @cmd: command to use
422 * do_probe() has the difficult job of finding a drive if it exists,
423 * without getting hung up if it doesn't exist, without trampling on
424 * ethernet cards, and without leaving any IRQs dangling to haunt us later.
426 * If a drive is "known" to exist (from CMOS or kernel parameters),
427 * but does not respond right away, the probe will "hang in there"
428 * for the maximum wait time (about 30 seconds), otherwise it will
429 * exit much more quickly.
431 * Returns: 0 device was identified
432 * 1 device timed-out (no response to identify request)
433 * 2 device aborted the command (refused to identify itself)
434 * 3 bad status from device (possible for ATAPI drives)
435 * 4 probe was not attempted because failure was obvious
438 static int do_probe (ide_drive_t
*drive
, u8 cmd
)
440 ide_hwif_t
*hwif
= HWIF(drive
);
441 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
445 if (drive
->present
) {
446 /* avoid waiting for inappropriate probes */
447 if ((drive
->media
!= ide_disk
) && (cmd
== WIN_IDENTIFY
))
451 printk(KERN_INFO
"probing for %s: present=%d, media=%d, probetype=%s\n",
452 drive
->name
, drive
->present
, drive
->media
,
453 (cmd
== WIN_IDENTIFY
) ? "ATA" : "ATAPI");
456 /* needed for some systems
457 * (e.g. crw9624 as drive0 with disk as slave)
463 if (ide_read_device(drive
) != drive
->select
.all
&& !drive
->present
) {
464 if (drive
->select
.b
.unit
!= 0) {
465 /* exit with drive0 selected */
466 SELECT_DRIVE(&hwif
->drives
[0]);
467 /* allow BUSY_STAT to assert & clear */
470 /* no i/f present: mmm.. this should be a 4 -ml */
474 stat
= tp_ops
->read_status(hwif
);
476 if (OK_STAT(stat
, READY_STAT
, BUSY_STAT
) ||
477 drive
->present
|| cmd
== WIN_PIDENTIFY
) {
478 /* send cmd and wait */
479 if ((rc
= try_to_identify(drive
, cmd
))) {
480 /* failed: try again */
481 rc
= try_to_identify(drive
,cmd
);
484 stat
= tp_ops
->read_status(hwif
);
486 if (stat
== (BUSY_STAT
| READY_STAT
))
489 if (rc
== 1 && cmd
== WIN_PIDENTIFY
) {
490 printk(KERN_ERR
"%s: no response (status = 0x%02x), "
491 "resetting drive\n", drive
->name
, stat
);
495 tp_ops
->exec_command(hwif
, WIN_SRST
);
496 (void)ide_busy_sleep(hwif
);
497 rc
= try_to_identify(drive
, cmd
);
500 /* ensure drive IRQ is clear */
501 stat
= tp_ops
->read_status(hwif
);
504 printk(KERN_ERR
"%s: no response (status = 0x%02x)\n",
507 /* not present or maybe ATAPI */
510 if (drive
->select
.b
.unit
!= 0) {
511 /* exit with drive0 selected */
512 SELECT_DRIVE(&hwif
->drives
[0]);
514 /* ensure drive irq is clear */
515 (void)tp_ops
->read_status(hwif
);
523 static void enable_nest (ide_drive_t
*drive
)
525 ide_hwif_t
*hwif
= HWIF(drive
);
526 const struct ide_tp_ops
*tp_ops
= hwif
->tp_ops
;
529 printk(KERN_INFO
"%s: enabling %s -- ", hwif
->name
, drive
->id
->model
);
533 tp_ops
->exec_command(hwif
, EXABYTE_ENABLE_NEST
);
535 if (ide_busy_sleep(hwif
)) {
536 printk(KERN_CONT
"failed (timeout)\n");
542 stat
= tp_ops
->read_status(hwif
);
544 if (!OK_STAT(stat
, 0, BAD_STAT
))
545 printk(KERN_CONT
"failed (status = 0x%02x)\n", stat
);
547 printk(KERN_CONT
"success\n");
549 /* if !(success||timed-out) */
550 if (do_probe(drive
, WIN_IDENTIFY
) >= 2) {
551 /* look for ATAPI device */
552 (void) do_probe(drive
, WIN_PIDENTIFY
);
557 * probe_for_drives - upper level drive probe
558 * @drive: drive to probe for
560 * probe_for_drive() tests for existence of a given drive using do_probe()
561 * and presents things to the user as needed.
563 * Returns: 0 no device was found
564 * 1 device was found (note: drive->present might
568 static inline u8
probe_for_drive (ide_drive_t
*drive
)
571 * In order to keep things simple we have an id
572 * block for all drives at all times. If the device
573 * is pre ATA or refuses ATA/ATAPI identify we
574 * will add faked data to this.
576 * Also note that 0 everywhere means "can't do X"
579 drive
->id
= kzalloc(SECTOR_WORDS
*4, GFP_KERNEL
);
581 if(drive
->id
== NULL
)
583 printk(KERN_ERR
"ide: out of memory for id data.\n");
586 strcpy(drive
->id
->model
, "UNKNOWN");
591 /* if !(success||timed-out) */
592 if (do_probe(drive
, WIN_IDENTIFY
) >= 2) {
593 /* look for ATAPI device */
594 (void) do_probe(drive
, WIN_PIDENTIFY
);
597 /* drive not found */
599 if (strstr(drive
->id
->model
, "E X A B Y T E N E S T"))
602 /* identification failed? */
603 if (!drive
->id_read
) {
604 if (drive
->media
== ide_disk
) {
605 printk(KERN_INFO
"%s: non-IDE drive, CHS=%d/%d/%d\n",
606 drive
->name
, drive
->cyl
,
607 drive
->head
, drive
->sect
);
608 } else if (drive
->media
== ide_cdrom
) {
609 printk(KERN_INFO
"%s: ATAPI cdrom (?)\n", drive
->name
);
612 printk(KERN_WARNING
"%s: Unknown device on bus refused identification. Ignoring.\n", drive
->name
);
616 /* drive was found */
620 /* The drive wasn't being helpful. Add generic info only */
621 if (drive
->id_read
== 0) {
626 if (drive
->media
== ide_disk
) {
627 ide_disk_init_chs(drive
);
628 ide_disk_init_mult_count(drive
);
631 return drive
->present
;
634 static void hwif_release_dev(struct device
*dev
)
636 ide_hwif_t
*hwif
= container_of(dev
, ide_hwif_t
, gendev
);
638 complete(&hwif
->gendev_rel_comp
);
641 static int ide_register_port(ide_hwif_t
*hwif
)
645 /* register with global device tree */
646 strlcpy(hwif
->gendev
.bus_id
,hwif
->name
,BUS_ID_SIZE
);
647 hwif
->gendev
.driver_data
= hwif
;
648 if (hwif
->gendev
.parent
== NULL
) {
650 hwif
->gendev
.parent
= hwif
->dev
;
652 /* Would like to do = &device_legacy */
653 hwif
->gendev
.parent
= NULL
;
655 hwif
->gendev
.release
= hwif_release_dev
;
656 ret
= device_register(&hwif
->gendev
);
658 printk(KERN_WARNING
"IDE: %s: device_register error: %d\n",
663 hwif
->portdev
= device_create_drvdata(ide_port_class
, &hwif
->gendev
,
664 MKDEV(0, 0), hwif
, hwif
->name
);
665 if (IS_ERR(hwif
->portdev
)) {
666 ret
= PTR_ERR(hwif
->portdev
);
667 device_unregister(&hwif
->gendev
);
674 * ide_port_wait_ready - wait for port to become ready
677 * This is needed on some PPCs and a bunch of BIOS-less embedded
678 * platforms. Typical cases are:
680 * - The firmware hard reset the disk before booting the kernel,
681 * the drive is still doing it's poweron-reset sequence, that
682 * can take up to 30 seconds.
684 * - The firmware does nothing (or no firmware), the device is
685 * still in POST state (same as above actually).
687 * - Some CD/DVD/Writer combo drives tend to drive the bus during
688 * their reset sequence even when they are non-selected slave
689 * devices, thus preventing discovery of the main HD.
691 * Doing this wait-for-non-busy should not harm any existing
692 * configuration and fix some issues like the above.
696 * Returns 0 on success, error code (< 0) otherwise.
699 static int ide_port_wait_ready(ide_hwif_t
*hwif
)
703 printk(KERN_DEBUG
"Probing IDE interface %s...\n", hwif
->name
);
705 /* Let HW settle down a bit from whatever init state we
709 /* Wait for BSY bit to go away, spec timeout is 30 seconds,
710 * I know of at least one disk who takes 31 seconds, I use 35
713 rc
= ide_wait_not_busy(hwif
, 35000);
717 /* Now make sure both master & slave are ready */
718 for (unit
= 0; unit
< MAX_DRIVES
; unit
++) {
719 ide_drive_t
*drive
= &hwif
->drives
[unit
];
721 /* Ignore disks that we will not probe for later. */
722 if (!drive
->noprobe
|| drive
->present
) {
724 hwif
->tp_ops
->set_irq(hwif
, 1);
726 rc
= ide_wait_not_busy(hwif
, 35000);
730 printk(KERN_DEBUG
"%s: ide_wait_not_busy() skipped\n",
734 /* Exit function with master reselected (let's be sane) */
736 SELECT_DRIVE(&hwif
->drives
[0]);
742 * ide_undecoded_slave - look for bad CF adapters
745 * Analyse the drives on the interface and attempt to decide if we
746 * have the same drive viewed twice. This occurs with crap CF adapters
747 * and PCMCIA sometimes.
750 void ide_undecoded_slave(ide_drive_t
*drive1
)
752 ide_drive_t
*drive0
= &drive1
->hwif
->drives
[0];
754 if ((drive1
->dn
& 1) == 0 || drive0
->present
== 0)
757 /* If the models don't match they are not the same product */
758 if (strcmp(drive0
->id
->model
, drive1
->id
->model
))
761 /* Serial numbers do not match */
762 if (strncmp(drive0
->id
->serial_no
, drive1
->id
->serial_no
, 20))
765 /* No serial number, thankfully very rare for CF */
766 if (drive0
->id
->serial_no
[0] == 0)
769 /* Appears to be an IDE flash adapter with decode bugs */
770 printk(KERN_WARNING
"ide-probe: ignoring undecoded slave\n");
775 EXPORT_SYMBOL_GPL(ide_undecoded_slave
);
777 static int ide_probe_port(ide_hwif_t
*hwif
)
781 int unit
, rc
= -ENODEV
;
783 BUG_ON(hwif
->present
);
785 if (hwif
->drives
[0].noprobe
&& hwif
->drives
[1].noprobe
)
789 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
790 * we'll install our IRQ driver much later...
794 disable_irq(hwif
->irq
);
796 local_irq_set(flags
);
798 if (ide_port_wait_ready(hwif
) == -EBUSY
)
799 printk(KERN_DEBUG
"%s: Wait for ready failed before probe !\n", hwif
->name
);
802 * Second drive should only exist if first drive was found,
803 * but a lot of cdrom drives are configured as single slaves.
805 for (unit
= 0; unit
< MAX_DRIVES
; ++unit
) {
806 ide_drive_t
*drive
= &hwif
->drives
[unit
];
807 drive
->dn
= (hwif
->channel
? 2 : 0) + unit
;
808 (void) probe_for_drive(drive
);
813 local_irq_restore(flags
);
816 * Use cached IRQ number. It might be (and is...) changed by probe
825 static void ide_port_tune_devices(ide_hwif_t
*hwif
)
827 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
830 for (unit
= 0; unit
< MAX_DRIVES
; unit
++) {
831 ide_drive_t
*drive
= &hwif
->drives
[unit
];
833 if (drive
->present
&& port_ops
&& port_ops
->quirkproc
)
834 port_ops
->quirkproc(drive
);
837 for (unit
= 0; unit
< MAX_DRIVES
; ++unit
) {
838 ide_drive_t
*drive
= &hwif
->drives
[unit
];
840 if (drive
->present
) {
841 ide_set_max_pio(drive
);
850 for (unit
= 0; unit
< MAX_DRIVES
; ++unit
) {
851 ide_drive_t
*drive
= &hwif
->drives
[unit
];
853 if (hwif
->host_flags
& IDE_HFLAG_NO_IO_32BIT
)
854 drive
->no_io_32bit
= 1;
856 drive
->no_io_32bit
= drive
->id
->dword_io
? 1 : 0;
862 * save_match() is used to simplify logic in init_irq() below.
864 * A loophole here is that we may not know about a particular
865 * hwif's irq until after that hwif is actually probed/initialized..
866 * This could be a problem for the case where an hwif is on a
867 * dual interface that requires serialization (eg. cmd640) and another
868 * hwif using one of the same irqs is initialized beforehand.
870 * This routine detects and reports such situations, but does not fix them.
872 static void save_match(ide_hwif_t
*hwif
, ide_hwif_t
*new, ide_hwif_t
**match
)
874 ide_hwif_t
*m
= *match
;
876 if (m
&& m
->hwgroup
&& m
->hwgroup
!= new->hwgroup
) {
879 printk(KERN_WARNING
"%s: potential IRQ problem with %s and %s\n",
880 hwif
->name
, new->name
, m
->name
);
882 if (!m
|| m
->irq
!= hwif
->irq
) /* don't undo a prior perfect match */
885 #endif /* MAX_HWIFS > 1 */
890 static int ide_init_queue(ide_drive_t
*drive
)
892 struct request_queue
*q
;
893 ide_hwif_t
*hwif
= HWIF(drive
);
894 int max_sectors
= 256;
895 int max_sg_entries
= PRD_ENTRIES
;
898 * Our default set up assumes the normal IDE case,
899 * that is 64K segmenting, standard PRD setup
900 * and LBA28. Some drivers then impose their own
901 * limits and LBA48 we could raise it but as yet
905 q
= blk_init_queue_node(do_ide_request
, &ide_lock
, hwif_to_node(hwif
));
909 q
->queuedata
= drive
;
910 blk_queue_segment_boundary(q
, 0xffff);
912 if (hwif
->rqsize
< max_sectors
)
913 max_sectors
= hwif
->rqsize
;
914 blk_queue_max_sectors(q
, max_sectors
);
917 /* When we have an IOMMU, we may have a problem where pci_map_sg()
918 * creates segments that don't completely match our boundary
919 * requirements and thus need to be broken up again. Because it
920 * doesn't align properly either, we may actually have to break up
921 * to more segments than what was we got in the first place, a max
922 * worst case is twice as many.
923 * This will be fixed once we teach pci_map_sg() about our boundary
924 * requirements, hopefully soon. *FIXME*
926 if (!PCI_DMA_BUS_IS_PHYS
)
927 max_sg_entries
>>= 1;
928 #endif /* CONFIG_PCI */
930 blk_queue_max_hw_segments(q
, max_sg_entries
);
931 blk_queue_max_phys_segments(q
, max_sg_entries
);
933 /* assign drive queue */
936 /* needs drive->queue to be set */
937 ide_toggle_bounce(drive
, 1);
942 static void ide_add_drive_to_hwgroup(ide_drive_t
*drive
)
944 ide_hwgroup_t
*hwgroup
= drive
->hwif
->hwgroup
;
946 spin_lock_irq(&ide_lock
);
947 if (!hwgroup
->drive
) {
948 /* first drive for hwgroup. */
950 hwgroup
->drive
= drive
;
951 hwgroup
->hwif
= HWIF(hwgroup
->drive
);
953 drive
->next
= hwgroup
->drive
->next
;
954 hwgroup
->drive
->next
= drive
;
956 spin_unlock_irq(&ide_lock
);
960 * For any present drive:
961 * - allocate the block device queue
962 * - link drive into the hwgroup
964 static void ide_port_setup_devices(ide_hwif_t
*hwif
)
968 mutex_lock(&ide_cfg_mtx
);
969 for (i
= 0; i
< MAX_DRIVES
; i
++) {
970 ide_drive_t
*drive
= &hwif
->drives
[i
];
975 if (ide_init_queue(drive
)) {
976 printk(KERN_ERR
"ide: failed to init %s\n",
981 ide_add_drive_to_hwgroup(drive
);
983 mutex_unlock(&ide_cfg_mtx
);
986 static ide_hwif_t
*ide_ports
[MAX_HWIFS
];
988 void ide_remove_port_from_hwgroup(ide_hwif_t
*hwif
)
990 ide_hwgroup_t
*hwgroup
= hwif
->hwgroup
;
992 ide_ports
[hwif
->index
] = NULL
;
994 spin_lock_irq(&ide_lock
);
996 * Remove us from the hwgroup, and free
997 * the hwgroup if we were the only member
999 if (hwif
->next
== hwif
) {
1000 BUG_ON(hwgroup
->hwif
!= hwif
);
1003 /* There is another interface in hwgroup.
1004 * Unlink us, and set hwgroup->drive and ->hwif to
1007 ide_hwif_t
*g
= hwgroup
->hwif
;
1009 while (g
->next
!= hwif
)
1011 g
->next
= hwif
->next
;
1012 if (hwgroup
->hwif
== hwif
) {
1013 /* Chose a random hwif for hwgroup->hwif.
1014 * It's guaranteed that there are no drives
1015 * left in the hwgroup.
1017 BUG_ON(hwgroup
->drive
!= NULL
);
1020 BUG_ON(hwgroup
->hwif
== hwif
);
1022 spin_unlock_irq(&ide_lock
);
1026 * This routine sets up the irq for an ide interface, and creates a new
1027 * hwgroup for the irq/hwif if none was previously assigned.
1029 * Much of the code is for correctly detecting/handling irq sharing
1030 * and irq serialization situations. This is somewhat complex because
1031 * it handles static as well as dynamic (PCMCIA) IDE interfaces.
1033 static int init_irq (ide_hwif_t
*hwif
)
1035 struct ide_io_ports
*io_ports
= &hwif
->io_ports
;
1037 ide_hwgroup_t
*hwgroup
;
1038 ide_hwif_t
*match
= NULL
;
1041 BUG_ON(in_interrupt());
1042 BUG_ON(irqs_disabled());
1043 BUG_ON(hwif
== NULL
);
1045 mutex_lock(&ide_cfg_mtx
);
1046 hwif
->hwgroup
= NULL
;
1049 * Group up with any other hwifs that share our irq(s).
1051 for (index
= 0; index
< MAX_HWIFS
; index
++) {
1052 ide_hwif_t
*h
= ide_ports
[index
];
1054 if (h
&& h
->hwgroup
) { /* scan only initialized ports */
1055 if (hwif
->irq
== h
->irq
) {
1056 hwif
->sharing_irq
= h
->sharing_irq
= 1;
1057 if (hwif
->chipset
!= ide_pci
||
1058 h
->chipset
!= ide_pci
) {
1059 save_match(hwif
, h
, &match
);
1062 if (hwif
->serialized
) {
1063 if (hwif
->mate
&& hwif
->mate
->irq
== h
->irq
)
1064 save_match(hwif
, h
, &match
);
1066 if (h
->serialized
) {
1067 if (h
->mate
&& hwif
->irq
== h
->mate
->irq
)
1068 save_match(hwif
, h
, &match
);
1072 #endif /* MAX_HWIFS > 1 */
1074 * If we are still without a hwgroup, then form a new one
1077 hwgroup
= match
->hwgroup
;
1078 hwif
->hwgroup
= hwgroup
;
1080 * Link us into the hwgroup.
1081 * This must be done early, do ensure that unexpected_intr
1082 * can find the hwif and prevent irq storms.
1083 * No drives are attached to the new hwif, choose_drive
1084 * can't do anything stupid (yet).
1085 * Add ourself as the 2nd entry to the hwgroup->hwif
1086 * linked list, the first entry is the hwif that owns
1087 * hwgroup->handler - do not change that.
1089 spin_lock_irq(&ide_lock
);
1090 hwif
->next
= hwgroup
->hwif
->next
;
1091 hwgroup
->hwif
->next
= hwif
;
1092 BUG_ON(hwif
->next
== hwif
);
1093 spin_unlock_irq(&ide_lock
);
1095 hwgroup
= kmalloc_node(sizeof(*hwgroup
), GFP_KERNEL
|__GFP_ZERO
,
1096 hwif_to_node(hwif
));
1097 if (hwgroup
== NULL
)
1100 hwif
->hwgroup
= hwgroup
;
1101 hwgroup
->hwif
= hwif
->next
= hwif
;
1103 init_timer(&hwgroup
->timer
);
1104 hwgroup
->timer
.function
= &ide_timer_expiry
;
1105 hwgroup
->timer
.data
= (unsigned long) hwgroup
;
1108 ide_ports
[hwif
->index
] = hwif
;
1111 * Allocate the irq, if not already obtained for another hwif
1113 if (!match
|| match
->irq
!= hwif
->irq
) {
1115 #if defined(__mc68000__)
1117 #endif /* __mc68000__ */
1119 if (IDE_CHIPSET_IS_PCI(hwif
->chipset
))
1122 if (io_ports
->ctl_addr
)
1123 hwif
->tp_ops
->set_irq(hwif
, 1);
1125 if (request_irq(hwif
->irq
,&ide_intr
,sa
,hwif
->name
,hwgroup
))
1129 if (!hwif
->rqsize
) {
1130 if ((hwif
->host_flags
& IDE_HFLAG_NO_LBA48
) ||
1131 (hwif
->host_flags
& IDE_HFLAG_NO_LBA48_DMA
))
1134 hwif
->rqsize
= 65536;
1137 #if !defined(__mc68000__)
1138 printk(KERN_INFO
"%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif
->name
,
1139 io_ports
->data_addr
, io_ports
->status_addr
,
1140 io_ports
->ctl_addr
, hwif
->irq
);
1142 printk(KERN_INFO
"%s at 0x%08lx on irq %d", hwif
->name
,
1143 io_ports
->data_addr
, hwif
->irq
);
1144 #endif /* __mc68000__ */
1146 printk(KERN_CONT
" (%sed with %s)",
1147 hwif
->sharing_irq
? "shar" : "serializ", match
->name
);
1148 printk(KERN_CONT
"\n");
1150 mutex_unlock(&ide_cfg_mtx
);
1153 ide_remove_port_from_hwgroup(hwif
);
1155 mutex_unlock(&ide_cfg_mtx
);
1159 static int ata_lock(dev_t dev
, void *data
)
1161 /* FIXME: we want to pin hwif down */
1165 static struct kobject
*ata_probe(dev_t dev
, int *part
, void *data
)
1167 ide_hwif_t
*hwif
= data
;
1168 int unit
= *part
>> PARTN_BITS
;
1169 ide_drive_t
*drive
= &hwif
->drives
[unit
];
1170 if (!drive
->present
)
1173 if (drive
->media
== ide_disk
)
1174 request_module("ide-disk");
1176 request_module("ide-scsi");
1177 if (drive
->media
== ide_cdrom
|| drive
->media
== ide_optical
)
1178 request_module("ide-cd");
1179 if (drive
->media
== ide_tape
)
1180 request_module("ide-tape");
1181 if (drive
->media
== ide_floppy
)
1182 request_module("ide-floppy");
1187 static struct kobject
*exact_match(dev_t dev
, int *part
, void *data
)
1189 struct gendisk
*p
= data
;
1190 *part
&= (1 << PARTN_BITS
) - 1;
1191 return &p
->dev
.kobj
;
1194 static int exact_lock(dev_t dev
, void *data
)
1196 struct gendisk
*p
= data
;
1203 void ide_register_region(struct gendisk
*disk
)
1205 blk_register_region(MKDEV(disk
->major
, disk
->first_minor
),
1206 disk
->minors
, NULL
, exact_match
, exact_lock
, disk
);
1209 EXPORT_SYMBOL_GPL(ide_register_region
);
1211 void ide_unregister_region(struct gendisk
*disk
)
1213 blk_unregister_region(MKDEV(disk
->major
, disk
->first_minor
),
1217 EXPORT_SYMBOL_GPL(ide_unregister_region
);
1219 void ide_init_disk(struct gendisk
*disk
, ide_drive_t
*drive
)
1221 ide_hwif_t
*hwif
= drive
->hwif
;
1222 unsigned int unit
= (drive
->select
.all
>> 4) & 1;
1224 disk
->major
= hwif
->major
;
1225 disk
->first_minor
= unit
<< PARTN_BITS
;
1226 sprintf(disk
->disk_name
, "hd%c", 'a' + hwif
->index
* MAX_DRIVES
+ unit
);
1227 disk
->queue
= drive
->queue
;
1230 EXPORT_SYMBOL_GPL(ide_init_disk
);
1232 static void ide_remove_drive_from_hwgroup(ide_drive_t
*drive
)
1234 ide_hwgroup_t
*hwgroup
= drive
->hwif
->hwgroup
;
1236 if (drive
== drive
->next
) {
1237 /* special case: last drive from hwgroup. */
1238 BUG_ON(hwgroup
->drive
!= drive
);
1239 hwgroup
->drive
= NULL
;
1243 walk
= hwgroup
->drive
;
1244 while (walk
->next
!= drive
)
1246 walk
->next
= drive
->next
;
1247 if (hwgroup
->drive
== drive
) {
1248 hwgroup
->drive
= drive
->next
;
1249 hwgroup
->hwif
= hwgroup
->drive
->hwif
;
1252 BUG_ON(hwgroup
->drive
== drive
);
1255 static void drive_release_dev (struct device
*dev
)
1257 ide_drive_t
*drive
= container_of(dev
, ide_drive_t
, gendev
);
1259 ide_proc_unregister_device(drive
);
1261 spin_lock_irq(&ide_lock
);
1262 ide_remove_drive_from_hwgroup(drive
);
1266 /* Messed up locking ... */
1267 spin_unlock_irq(&ide_lock
);
1268 blk_cleanup_queue(drive
->queue
);
1269 spin_lock_irq(&ide_lock
);
1270 drive
->queue
= NULL
;
1271 spin_unlock_irq(&ide_lock
);
1273 complete(&drive
->gendev_rel_comp
);
1276 static int hwif_init(ide_hwif_t
*hwif
)
1281 hwif
->irq
= __ide_default_irq(hwif
->io_ports
.data_addr
);
1283 printk(KERN_ERR
"%s: disabled, no IRQ\n", hwif
->name
);
1288 if (register_blkdev(hwif
->major
, hwif
->name
))
1291 if (!hwif
->sg_max_nents
)
1292 hwif
->sg_max_nents
= PRD_ENTRIES
;
1294 hwif
->sg_table
= kmalloc(sizeof(struct scatterlist
)*hwif
->sg_max_nents
,
1296 if (!hwif
->sg_table
) {
1297 printk(KERN_ERR
"%s: unable to allocate SG table.\n", hwif
->name
);
1301 sg_init_table(hwif
->sg_table
, hwif
->sg_max_nents
);
1303 if (init_irq(hwif
) == 0)
1306 old_irq
= hwif
->irq
;
1308 * It failed to initialise. Find the default IRQ for
1309 * this port and try that.
1311 hwif
->irq
= __ide_default_irq(hwif
->io_ports
.data_addr
);
1313 printk(KERN_ERR
"%s: disabled, unable to get IRQ %d\n",
1314 hwif
->name
, old_irq
);
1317 if (init_irq(hwif
)) {
1318 printk(KERN_ERR
"%s: probed IRQ %d and default IRQ %d failed\n",
1319 hwif
->name
, old_irq
, hwif
->irq
);
1322 printk(KERN_WARNING
"%s: probed IRQ %d failed, using default\n",
1323 hwif
->name
, hwif
->irq
);
1326 blk_register_region(MKDEV(hwif
->major
, 0), MAX_DRIVES
<< PARTN_BITS
,
1327 THIS_MODULE
, ata_probe
, ata_lock
, hwif
);
1331 unregister_blkdev(hwif
->major
, hwif
->name
);
1335 static void hwif_register_devices(ide_hwif_t
*hwif
)
1339 for (i
= 0; i
< MAX_DRIVES
; i
++) {
1340 ide_drive_t
*drive
= &hwif
->drives
[i
];
1341 struct device
*dev
= &drive
->gendev
;
1344 if (!drive
->present
)
1347 ide_add_generic_settings(drive
);
1349 snprintf(dev
->bus_id
, BUS_ID_SIZE
, "%u.%u", hwif
->index
, i
);
1350 dev
->parent
= &hwif
->gendev
;
1351 dev
->bus
= &ide_bus_type
;
1352 dev
->driver_data
= drive
;
1353 dev
->release
= drive_release_dev
;
1355 ret
= device_register(dev
);
1357 printk(KERN_WARNING
"IDE: %s: device_register error: "
1358 "%d\n", __func__
, ret
);
1362 static void ide_port_init_devices(ide_hwif_t
*hwif
)
1364 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
1367 for (i
= 0; i
< MAX_DRIVES
; i
++) {
1368 ide_drive_t
*drive
= &hwif
->drives
[i
];
1370 if (hwif
->host_flags
& IDE_HFLAG_IO_32BIT
)
1371 drive
->io_32bit
= 1;
1372 if (hwif
->host_flags
& IDE_HFLAG_UNMASK_IRQS
)
1374 if (hwif
->host_flags
& IDE_HFLAG_NO_UNMASK_IRQS
)
1375 drive
->no_unmask
= 1;
1377 if (port_ops
&& port_ops
->init_dev
)
1378 port_ops
->init_dev(drive
);
1382 static void ide_init_port(ide_hwif_t
*hwif
, unsigned int port
,
1383 const struct ide_port_info
*d
)
1385 hwif
->channel
= port
;
1388 hwif
->chipset
= d
->chipset
;
1393 if ((!hwif
->irq
&& (d
->host_flags
& IDE_HFLAG_LEGACY_IRQS
)) ||
1394 (d
->host_flags
& IDE_HFLAG_FORCE_LEGACY_IRQS
))
1395 hwif
->irq
= port
? 15 : 14;
1397 /* ->host_flags may be set by ->init_iops (or even earlier...) */
1398 hwif
->host_flags
|= d
->host_flags
;
1399 hwif
->pio_mask
= d
->pio_mask
;
1402 hwif
->tp_ops
= d
->tp_ops
;
1404 /* ->set_pio_mode for DTC2278 is currently limited to port 0 */
1405 if (hwif
->chipset
!= ide_dtc2278
|| hwif
->channel
== 0)
1406 hwif
->port_ops
= d
->port_ops
;
1408 hwif
->swdma_mask
= d
->swdma_mask
;
1409 hwif
->mwdma_mask
= d
->mwdma_mask
;
1410 hwif
->ultra_mask
= d
->udma_mask
;
1412 if ((d
->host_flags
& IDE_HFLAG_NO_DMA
) == 0) {
1416 rc
= d
->init_dma(hwif
, d
);
1418 rc
= ide_hwif_setup_dma(hwif
, d
);
1421 printk(KERN_INFO
"%s: DMA disabled\n", hwif
->name
);
1423 hwif
->swdma_mask
= 0;
1424 hwif
->mwdma_mask
= 0;
1425 hwif
->ultra_mask
= 0;
1426 } else if (d
->dma_ops
)
1427 hwif
->dma_ops
= d
->dma_ops
;
1430 if ((d
->host_flags
& IDE_HFLAG_SERIALIZE
) ||
1431 ((d
->host_flags
& IDE_HFLAG_SERIALIZE_DMA
) && hwif
->dma_base
)) {
1433 hwif
->mate
->serialized
= hwif
->serialized
= 1;
1436 if (d
->host_flags
& IDE_HFLAG_RQSIZE_256
)
1439 /* call chipset specific routine for each enabled port */
1444 static void ide_port_cable_detect(ide_hwif_t
*hwif
)
1446 const struct ide_port_ops
*port_ops
= hwif
->port_ops
;
1448 if (port_ops
&& port_ops
->cable_detect
&& (hwif
->ultra_mask
& 0x78)) {
1449 if (hwif
->cbl
!= ATA_CBL_PATA40_SHORT
)
1450 hwif
->cbl
= port_ops
->cable_detect(hwif
);
1454 static ssize_t
store_delete_devices(struct device
*portdev
,
1455 struct device_attribute
*attr
,
1456 const char *buf
, size_t n
)
1458 ide_hwif_t
*hwif
= dev_get_drvdata(portdev
);
1460 if (strncmp(buf
, "1", n
))
1463 ide_port_unregister_devices(hwif
);
1468 static DEVICE_ATTR(delete_devices
, S_IWUSR
, NULL
, store_delete_devices
);
1470 static ssize_t
store_scan(struct device
*portdev
,
1471 struct device_attribute
*attr
,
1472 const char *buf
, size_t n
)
1474 ide_hwif_t
*hwif
= dev_get_drvdata(portdev
);
1476 if (strncmp(buf
, "1", n
))
1479 ide_port_unregister_devices(hwif
);
1480 ide_port_scan(hwif
);
1485 static DEVICE_ATTR(scan
, S_IWUSR
, NULL
, store_scan
);
1487 static struct device_attribute
*ide_port_attrs
[] = {
1488 &dev_attr_delete_devices
,
1493 static int ide_sysfs_register_port(ide_hwif_t
*hwif
)
1495 int i
, uninitialized_var(rc
);
1497 for (i
= 0; ide_port_attrs
[i
]; i
++) {
1498 rc
= device_create_file(hwif
->portdev
, ide_port_attrs
[i
]);
1506 static unsigned int ide_indexes
;
1509 * ide_find_port_slot - find free port slot
1512 * Return the new port slot index or -ENOENT if we are out of free slots.
1515 static int ide_find_port_slot(const struct ide_port_info
*d
)
1518 u8 bootable
= (d
&& (d
->host_flags
& IDE_HFLAG_NON_BOOTABLE
)) ? 0 : 1;
1519 u8 i
= (d
&& (d
->host_flags
& IDE_HFLAG_QD_2ND_PORT
)) ? 1 : 0;;
1522 * Claim an unassigned slot.
1524 * Give preference to claiming other slots before claiming ide0/ide1,
1525 * just in case there's another interface yet-to-be-scanned
1526 * which uses ports 0x1f0/0x170 (the ide0/ide1 defaults).
1528 * Unless there is a bootable card that does not use the standard
1529 * ports 0x1f0/0x170 (the ide0/ide1 defaults).
1531 mutex_lock(&ide_cfg_mtx
);
1532 if (MAX_HWIFS
== 1) {
1533 if (ide_indexes
== 0 && i
== 0)
1537 if ((ide_indexes
| i
) != (1 << MAX_HWIFS
) - 1)
1538 idx
= ffz(ide_indexes
| i
);
1540 if ((ide_indexes
| 3) != (1 << MAX_HWIFS
) - 1)
1541 idx
= ffz(ide_indexes
| 3);
1542 else if ((ide_indexes
& 3) != 3)
1543 idx
= ffz(ide_indexes
);
1547 ide_indexes
|= (1 << idx
);
1548 mutex_unlock(&ide_cfg_mtx
);
1553 static void ide_free_port_slot(int idx
)
1555 mutex_lock(&ide_cfg_mtx
);
1556 ide_indexes
&= ~(1 << idx
);
1557 mutex_unlock(&ide_cfg_mtx
);
1560 struct ide_host
*ide_host_alloc_all(const struct ide_port_info
*d
,
1563 struct ide_host
*host
;
1566 host
= kzalloc(sizeof(*host
), GFP_KERNEL
);
1570 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1577 hwif
= kzalloc(sizeof(*hwif
), GFP_KERNEL
);
1581 idx
= ide_find_port_slot(d
);
1583 printk(KERN_ERR
"%s: no free slot for interface\n",
1584 d
? d
->name
: "ide");
1589 ide_init_port_data(hwif
, idx
);
1593 host
->ports
[i
] = hwif
;
1597 if (host
->n_ports
== 0) {
1603 host
->dev
[0] = hws
[0]->dev
;
1606 host
->host_flags
= d
->host_flags
;
1610 EXPORT_SYMBOL_GPL(ide_host_alloc_all
);
1612 struct ide_host
*ide_host_alloc(const struct ide_port_info
*d
, hw_regs_t
**hws
)
1614 hw_regs_t
*hws_all
[MAX_HWIFS
];
1617 for (i
= 0; i
< MAX_HWIFS
; i
++)
1618 hws_all
[i
] = (i
< 4) ? hws
[i
] : NULL
;
1620 return ide_host_alloc_all(d
, hws_all
);
1622 EXPORT_SYMBOL_GPL(ide_host_alloc
);
1624 int ide_host_register(struct ide_host
*host
, const struct ide_port_info
*d
,
1627 ide_hwif_t
*hwif
, *mate
= NULL
;
1630 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1631 hwif
= host
->ports
[i
];
1638 ide_init_port_hw(hwif
, hws
[i
]);
1639 ide_port_apply_params(hwif
);
1646 if ((i
& 1) && mate
) {
1651 mate
= (i
& 1) ? NULL
: hwif
;
1653 ide_init_port(hwif
, i
& 1, d
);
1654 ide_port_cable_detect(hwif
);
1655 ide_port_init_devices(hwif
);
1658 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1659 hwif
= host
->ports
[i
];
1664 if (ide_probe_port(hwif
) == 0)
1667 if (hwif
->chipset
!= ide_4drives
|| !hwif
->mate
||
1668 !hwif
->mate
->present
)
1669 ide_register_port(hwif
);
1672 ide_port_tune_devices(hwif
);
1675 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1676 hwif
= host
->ports
[i
];
1681 if (hwif_init(hwif
) == 0) {
1682 printk(KERN_INFO
"%s: failed to initialize IDE "
1683 "interface\n", hwif
->name
);
1691 ide_port_setup_devices(hwif
);
1693 ide_acpi_init(hwif
);
1696 ide_acpi_port_init_devices(hwif
);
1699 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1700 hwif
= host
->ports
[i
];
1705 if (hwif
->chipset
== ide_unknown
)
1706 hwif
->chipset
= ide_generic
;
1709 hwif_register_devices(hwif
);
1712 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1713 hwif
= host
->ports
[i
];
1718 ide_sysfs_register_port(hwif
);
1719 ide_proc_register_port(hwif
);
1722 ide_proc_port_register_devices(hwif
);
1727 EXPORT_SYMBOL_GPL(ide_host_register
);
1729 int ide_host_add(const struct ide_port_info
*d
, hw_regs_t
**hws
,
1730 struct ide_host
**hostp
)
1732 struct ide_host
*host
;
1735 host
= ide_host_alloc(d
, hws
);
1739 rc
= ide_host_register(host
, d
, hws
);
1741 ide_host_free(host
);
1750 EXPORT_SYMBOL_GPL(ide_host_add
);
1752 void ide_host_free(struct ide_host
*host
)
1757 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1758 hwif
= host
->ports
[i
];
1763 ide_free_port_slot(hwif
->index
);
1769 EXPORT_SYMBOL_GPL(ide_host_free
);
1771 void ide_host_remove(struct ide_host
*host
)
1775 for (i
= 0; i
< MAX_HWIFS
; i
++) {
1777 ide_unregister(host
->ports
[i
]);
1780 ide_host_free(host
);
1782 EXPORT_SYMBOL_GPL(ide_host_remove
);
1784 void ide_port_scan(ide_hwif_t
*hwif
)
1786 ide_port_apply_params(hwif
);
1787 ide_port_cable_detect(hwif
);
1788 ide_port_init_devices(hwif
);
1790 if (ide_probe_port(hwif
) < 0)
1795 ide_port_tune_devices(hwif
);
1796 ide_acpi_port_init_devices(hwif
);
1797 ide_port_setup_devices(hwif
);
1798 hwif_register_devices(hwif
);
1799 ide_proc_port_register_devices(hwif
);
1801 EXPORT_SYMBOL_GPL(ide_port_scan
);
1803 static void ide_legacy_init_one(hw_regs_t
**hws
, hw_regs_t
*hw
,
1804 u8 port_no
, const struct ide_port_info
*d
,
1805 unsigned long config
)
1807 unsigned long base
, ctl
;
1820 if (!request_region(base
, 8, d
->name
)) {
1821 printk(KERN_ERR
"%s: I/O resource 0x%lX-0x%lX not free.\n",
1822 d
->name
, base
, base
+ 7);
1826 if (!request_region(ctl
, 1, d
->name
)) {
1827 printk(KERN_ERR
"%s: I/O resource 0x%lX not free.\n",
1829 release_region(base
, 8);
1833 ide_std_init_ports(hw
, base
, ctl
);
1835 hw
->chipset
= d
->chipset
;
1836 hw
->config
= config
;
1841 int ide_legacy_device_add(const struct ide_port_info
*d
, unsigned long config
)
1843 hw_regs_t hw
[2], *hws
[] = { NULL
, NULL
, NULL
, NULL
};
1845 memset(&hw
, 0, sizeof(hw
));
1847 if ((d
->host_flags
& IDE_HFLAG_QD_2ND_PORT
) == 0)
1848 ide_legacy_init_one(hws
, &hw
[0], 0, d
, config
);
1849 ide_legacy_init_one(hws
, &hw
[1], 1, d
, config
);
1851 if (hws
[0] == NULL
&& hws
[1] == NULL
&&
1852 (d
->host_flags
& IDE_HFLAG_SINGLE
))
1855 return ide_host_add(d
, hws
, NULL
);
1857 EXPORT_SYMBOL_GPL(ide_legacy_device_add
);