]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - drivers/ide/ide-probe.c
40384838e43993759ee6071c99f77d9eb46b70f5
[mirror_ubuntu-focal-kernel.git] / drivers / ide / ide-probe.c
1 /*
2 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
3 * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
4 */
5
6 /*
7 * Mostly written by Mark Lord <mlord@pobox.com>
8 * and Gadi Oxman <gadio@netvision.net.il>
9 * and Andre Hedrick <andre@linux-ide.org>
10 *
11 * See linux/MAINTAINERS for address of current maintainer.
12 *
13 * This is the IDE probe module, as evolved from hd.c and ide.c.
14 *
15 * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
16 * by Andrea Arcangeli
17 */
18
19 #include <linux/module.h>
20 #include <linux/types.h>
21 #include <linux/string.h>
22 #include <linux/kernel.h>
23 #include <linux/timer.h>
24 #include <linux/mm.h>
25 #include <linux/interrupt.h>
26 #include <linux/major.h>
27 #include <linux/errno.h>
28 #include <linux/genhd.h>
29 #include <linux/slab.h>
30 #include <linux/delay.h>
31 #include <linux/ide.h>
32 #include <linux/spinlock.h>
33 #include <linux/kmod.h>
34 #include <linux/pci.h>
35 #include <linux/scatterlist.h>
36
37 #include <asm/byteorder.h>
38 #include <asm/irq.h>
39 #include <linux/uaccess.h>
40 #include <asm/io.h>
41
42 /**
43 * generic_id - add a generic drive id
44 * @drive: drive to make an ID block for
45 *
46 * Add a fake id field to the drive we are passed. This allows
47 * use to skip a ton of NULL checks (which people always miss)
48 * and make drive properties unconditional outside of this file
49 */
50
51 static void generic_id(ide_drive_t *drive)
52 {
53 u16 *id = drive->id;
54
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;
58 }
59
60 static void ide_disk_init_chs(ide_drive_t *drive)
61 {
62 u16 *id = drive->id;
63
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];
69 }
70
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];
76 }
77
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];
83 }
84 }
85
86 static void ide_disk_init_mult_count(ide_drive_t *drive)
87 {
88 u16 *id = drive->id;
89 u8 max_multsect = id[ATA_ID_MAX_MULTSECT] & 0xff;
90
91 if (max_multsect) {
92 if ((max_multsect / 2) > 1)
93 id[ATA_ID_MULTSECT] = max_multsect | 0x100;
94 else
95 id[ATA_ID_MULTSECT] &= ~0x1ff;
96
97 drive->mult_req = id[ATA_ID_MULTSECT] & 0xff;
98
99 if (drive->mult_req)
100 drive->special_flags |= IDE_SFLAG_SET_MULTMODE;
101 }
102 }
103
104 static void ide_classify_ata_dev(ide_drive_t *drive)
105 {
106 u16 *id = drive->id;
107 char *m = (char *)&id[ATA_ID_PROD];
108 int is_cfa = ata_id_is_cfa(id);
109
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;
113
114 drive->media = ide_disk;
115
116 if (!ata_id_has_unload(drive->id))
117 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
118
119 printk(KERN_INFO "%s: %s, %s DISK drive\n", drive->name, m,
120 is_cfa ? "CFA" : "ATA");
121 }
122
123 static void ide_classify_atapi_dev(ide_drive_t *drive)
124 {
125 u16 *id = drive->id;
126 char *m = (char *)&id[ATA_ID_PROD];
127 u8 type = (id[ATA_ID_CONFIG] >> 8) & 0x1f;
128
129 printk(KERN_INFO "%s: %s, ATAPI ", drive->name, m);
130 switch (type) {
131 case ide_floppy:
132 if (!strstr(m, "CD-ROM")) {
133 if (!strstr(m, "oppy") &&
134 !strstr(m, "poyp") &&
135 !strstr(m, "ZIP"))
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;
140 break;
141 }
142 }
143 /* Early cdrom models used zero */
144 type = ide_cdrom;
145 /* fall through */
146 case ide_cdrom:
147 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
148 #ifdef CONFIG_PPC
149 /* kludge for Apple PowerBook internal zip */
150 if (!strstr(m, "CD-ROM") && strstr(m, "ZIP")) {
151 printk(KERN_CONT "FLOPPY");
152 type = ide_floppy;
153 break;
154 }
155 #endif
156 printk(KERN_CONT "CD/DVD-ROM");
157 break;
158 case ide_tape:
159 printk(KERN_CONT "TAPE");
160 break;
161 case ide_optical:
162 printk(KERN_CONT "OPTICAL");
163 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
164 break;
165 default:
166 printk(KERN_CONT "UNKNOWN (type %d)", type);
167 break;
168 }
169
170 printk(KERN_CONT " drive\n");
171 drive->media = type;
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;
179 }
180
181 /**
182 * do_identify - identify a drive
183 * @drive: drive to identify
184 * @cmd: command used
185 * @id: buffer for IDENTIFY data
186 *
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.
190 */
191
192 static void do_identify(ide_drive_t *drive, u8 cmd, u16 *id)
193 {
194 ide_hwif_t *hwif = drive->hwif;
195 char *m = (char *)&id[ATA_ID_PROD];
196 unsigned long flags;
197 int bswap = 1;
198
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);
204
205 drive->dev_flags |= IDE_DFLAG_ID_READ;
206 #ifdef DEBUG
207 printk(KERN_INFO "%s: dumping identify data\n", drive->name);
208 ide_dump_identify((u8 *)id);
209 #endif
210 ide_fix_driveid(id);
211
212 /*
213 * ATA_CMD_ID_ATA returns little-endian info,
214 * ATA_CMD_ID_ATAPI *usually* returns little-endian info.
215 */
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 */
221 bswap ^= 1;
222 }
223
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);
227
228 /* we depend on this a lot! */
229 m[ATA_ID_PROD_LEN - 1] = '\0';
230
231 if (strstr(m, "E X A B Y T E N E S T"))
232 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
233 else
234 drive->dev_flags |= IDE_DFLAG_PRESENT;
235 }
236
237 /**
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
243 *
244 * Sends an ATA(PI) IDENTIFY request to a drive and waits for a response.
245 *
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)
249 */
250
251 int ide_dev_read_id(ide_drive_t *drive, u8 cmd, u16 *id, int irq_ctx)
252 {
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;
258 u8 s = 0, a = 0;
259
260 /*
261 * Disable device IRQ. Otherwise we'll get spurious interrupts
262 * during the identify phase that the IRQ handler isn't expecting.
263 */
264 if (io_ports->ctl_addr)
265 tp_ops->write_devctl(hwif, ATA_NIEN | ATA_DEVCTL_OBS);
266
267 /* take a deep breath */
268 if (irq_ctx)
269 mdelay(50);
270 else
271 msleep(50);
272
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",
281 drive->name, s, a);
282 else
283 /* use non-intrusive polling */
284 use_altstatus = 1;
285 }
286
287 /* set features register for atapi
288 * identify command to be sure of reply
289 */
290 if (cmd == ATA_CMD_ID_ATAPI) {
291 struct ide_taskfile tf;
292
293 memset(&tf, 0, sizeof(tf));
294 /* disable DMA & overlap */
295 tp_ops->tf_load(drive, &tf, IDE_VALID_FEATURE);
296 }
297
298 /* ask drive for ID */
299 tp_ops->exec_command(hwif, cmd);
300
301 timeout = ((cmd == ATA_CMD_ID_ATA) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
302
303 /* wait for IRQ and ATA_DRQ */
304 if (irq_ctx) {
305 rc = __ide_wait_stat(drive, ATA_DRQ, BAD_R_STAT, timeout, &s);
306 if (rc)
307 return 1;
308 } else {
309 rc = ide_busy_sleep(drive, timeout, use_altstatus);
310 if (rc)
311 return 1;
312
313 msleep(50);
314 s = tp_ops->read_status(hwif);
315 }
316
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 */
321 rc = 0;
322 /* clear drive IRQ */
323 (void)tp_ops->read_status(hwif);
324 } else {
325 /* drive refused ID */
326 rc = 2;
327 }
328 return rc;
329 }
330
331 int ide_busy_sleep(ide_drive_t *drive, unsigned long timeout, int altstatus)
332 {
333 ide_hwif_t *hwif = drive->hwif;
334 u8 stat;
335
336 timeout += jiffies;
337
338 do {
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)
343 return 0;
344 } while (time_before(jiffies, timeout));
345
346 printk(KERN_ERR "%s: timeout in %s\n", drive->name, __func__);
347
348 return 1; /* drive timed-out */
349 }
350
351 static u8 ide_read_device(ide_drive_t *drive)
352 {
353 struct ide_taskfile tf;
354
355 drive->hwif->tp_ops->tf_read(drive, &tf, IDE_VALID_DEVICE);
356
357 return tf.device;
358 }
359
360 /**
361 * do_probe - probe an IDE device
362 * @drive: drive to probe
363 * @cmd: command to use
364 *
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.
368 *
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.
373 *
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
379 */
380
381 static int do_probe (ide_drive_t *drive, u8 cmd)
382 {
383 ide_hwif_t *hwif = drive->hwif;
384 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
385 u16 *id = drive->id;
386 int rc;
387 u8 present = !!(drive->dev_flags & IDE_DFLAG_PRESENT), stat;
388
389 /* avoid waiting for inappropriate probes */
390 if (present && drive->media != ide_disk && cmd == ATA_CMD_ID_ATA)
391 return 4;
392
393 #ifdef DEBUG
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");
397 #endif
398
399 /* needed for some systems
400 * (e.g. crw9624 as drive0 with disk as slave)
401 */
402 msleep(50);
403 tp_ops->dev_select(drive);
404 msleep(50);
405
406 if (ide_read_device(drive) != drive->select && present == 0) {
407 if (drive->dn & 1) {
408 /* exit with drive0 selected */
409 tp_ops->dev_select(hwif->devices[0]);
410 /* allow ATA_BUSY to assert & clear */
411 msleep(50);
412 }
413 /* no i/f present: mmm.. this should be a 4 -ml */
414 return 3;
415 }
416
417 stat = tp_ops->read_status(hwif);
418
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);
422 if (rc)
423 /* failed: try again */
424 rc = ide_dev_read_id(drive, cmd, id, 0);
425
426 stat = tp_ops->read_status(hwif);
427
428 if (stat == (ATA_BUSY | ATA_DRDY))
429 return 4;
430
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);
434 msleep(50);
435 tp_ops->dev_select(drive);
436 msleep(50);
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);
440 }
441
442 /* ensure drive IRQ is clear */
443 stat = tp_ops->read_status(hwif);
444
445 if (rc == 1)
446 printk(KERN_ERR "%s: no response (status = 0x%02x)\n",
447 drive->name, stat);
448 } else {
449 /* not present or maybe ATAPI */
450 rc = 3;
451 }
452 if (drive->dn & 1) {
453 /* exit with drive0 selected */
454 tp_ops->dev_select(hwif->devices[0]);
455 msleep(50);
456 /* ensure drive irq is clear */
457 (void)tp_ops->read_status(hwif);
458 }
459 return rc;
460 }
461
462 /**
463 * probe_for_drives - upper level drive probe
464 * @drive: drive to probe for
465 *
466 * probe_for_drive() tests for existence of a given drive using do_probe()
467 * and presents things to the user as needed.
468 *
469 * Returns: 0 no device was found
470 * 1 device was found
471 * (note: IDE_DFLAG_PRESENT might still be not set)
472 */
473
474 static u8 probe_for_drive(ide_drive_t *drive)
475 {
476 char *m;
477 int rc;
478 u8 cmd;
479
480 drive->dev_flags &= ~IDE_DFLAG_ID_READ;
481
482 m = (char *)&drive->id[ATA_ID_PROD];
483 strcpy(m, "UNKNOWN");
484
485 /* skip probing? */
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);
490 if (rc >= 2) {
491 /* look for ATAPI device */
492 cmd = ATA_CMD_ID_ATAPI;
493 rc = do_probe(drive, cmd);
494 }
495
496 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
497 return 0;
498
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);
507 } else {
508 /* nuke it */
509 printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name);
510 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
511 }
512 } else {
513 if (cmd == ATA_CMD_ID_ATAPI)
514 ide_classify_atapi_dev(drive);
515 else
516 ide_classify_ata_dev(drive);
517 }
518 }
519
520 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
521 return 0;
522
523 /* The drive wasn't being helpful. Add generic info only */
524 if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
525 generic_id(drive);
526 return 1;
527 }
528
529 if (drive->media == ide_disk) {
530 ide_disk_init_chs(drive);
531 ide_disk_init_mult_count(drive);
532 }
533
534 return 1;
535 }
536
537 static void hwif_release_dev(struct device *dev)
538 {
539 ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
540
541 complete(&hwif->gendev_rel_comp);
542 }
543
544 static int ide_register_port(ide_hwif_t *hwif)
545 {
546 int ret;
547
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;
554
555 ret = device_register(&hwif->gendev);
556 if (ret < 0) {
557 printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
558 __func__, ret);
559 goto out;
560 }
561
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);
567 }
568 out:
569 return ret;
570 }
571
572 /**
573 * ide_port_wait_ready - wait for port to become ready
574 * @hwif: IDE port
575 *
576 * This is needed on some PPCs and a bunch of BIOS-less embedded
577 * platforms. Typical cases are:
578 *
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.
582 *
583 * - The firmware does nothing (or no firmware), the device is
584 * still in POST state (same as above actually).
585 *
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.
589 *
590 * Doing this wait-for-non-busy should not harm any existing
591 * configuration and fix some issues like the above.
592 *
593 * BenH.
594 *
595 * Returns 0 on success, error code (< 0) otherwise.
596 */
597
598 static int ide_port_wait_ready(ide_hwif_t *hwif)
599 {
600 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
601 ide_drive_t *drive;
602 int i, rc;
603
604 printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name);
605
606 /* Let HW settle down a bit from whatever init state we
607 * come from */
608 mdelay(2);
609
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
612 * here to be safe
613 */
614 rc = ide_wait_not_busy(hwif, 35000);
615 if (rc)
616 return rc;
617
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);
625 mdelay(2);
626 rc = ide_wait_not_busy(hwif, 35000);
627 if (rc)
628 goto out;
629 } else
630 printk(KERN_DEBUG "%s: ide_wait_not_busy() skipped\n",
631 drive->name);
632 }
633 out:
634 /* Exit function with master reselected (let's be sane) */
635 if (i)
636 tp_ops->dev_select(hwif->devices[0]);
637
638 return rc;
639 }
640
641 /**
642 * ide_undecoded_slave - look for bad CF adapters
643 * @dev1: slave device
644 *
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.
648 */
649
650 void ide_undecoded_slave(ide_drive_t *dev1)
651 {
652 ide_drive_t *dev0 = dev1->hwif->devices[0];
653
654 if ((dev1->dn & 1) == 0 || (dev0->dev_flags & IDE_DFLAG_PRESENT) == 0)
655 return;
656
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]))
660 return;
661
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))
665 return;
666
667 /* No serial number, thankfully very rare for CF */
668 if (*(char *)&dev0->id[ATA_ID_SERNO] == 0)
669 return;
670
671 /* Appears to be an IDE flash adapter with decode bugs */
672 printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n");
673
674 dev1->dev_flags &= ~IDE_DFLAG_PRESENT;
675 }
676
677 EXPORT_SYMBOL_GPL(ide_undecoded_slave);
678
679 static int ide_probe_port(ide_hwif_t *hwif)
680 {
681 ide_drive_t *drive;
682 unsigned int irqd;
683 int i, rc = -ENODEV;
684
685 BUG_ON(hwif->present);
686
687 if ((hwif->devices[0]->dev_flags & IDE_DFLAG_NOPROBE) &&
688 (hwif->devices[1]->dev_flags & IDE_DFLAG_NOPROBE))
689 return -EACCES;
690
691 /*
692 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
693 * we'll install our IRQ driver much later...
694 */
695 irqd = hwif->irq;
696 if (irqd)
697 disable_irq(hwif->irq);
698
699 if (ide_port_wait_ready(hwif) == -EBUSY)
700 printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
701
702 /*
703 * Second drive should only exist if first drive was found,
704 * but a lot of cdrom drives are configured as single slaves.
705 */
706 ide_port_for_each_dev(i, drive, hwif) {
707 (void) probe_for_drive(drive);
708 if (drive->dev_flags & IDE_DFLAG_PRESENT)
709 rc = 0;
710 }
711
712 /*
713 * Use cached IRQ number. It might be (and is...) changed by probe
714 * code above
715 */
716 if (irqd)
717 enable_irq(irqd);
718
719 return rc;
720 }
721
722 static void ide_port_tune_devices(ide_hwif_t *hwif)
723 {
724 const struct ide_port_ops *port_ops = hwif->port_ops;
725 ide_drive_t *drive;
726 int i;
727
728 ide_port_for_each_present_dev(i, drive, hwif) {
729 ide_check_nien_quirk_list(drive);
730
731 if (port_ops && port_ops->quirkproc)
732 port_ops->quirkproc(drive);
733 }
734
735 ide_port_for_each_present_dev(i, drive, hwif) {
736 ide_set_max_pio(drive);
737
738 drive->dev_flags |= IDE_DFLAG_NICE1;
739
740 if (hwif->dma_ops)
741 ide_set_dma(drive);
742 }
743 }
744
745 static void ide_initialize_rq(struct request *rq)
746 {
747 struct ide_request *req = blk_mq_rq_to_pdu(rq);
748
749 scsi_req_init(&req->sreq);
750 req->sreq.sense = req->sense;
751 }
752
753 static const struct blk_mq_ops ide_mq_ops = {
754 .queue_rq = ide_queue_rq,
755 .initialize_rq_fn = ide_initialize_rq,
756 };
757
758 /*
759 * init request queue
760 */
761 static int ide_init_queue(ide_drive_t *drive)
762 {
763 struct request_queue *q;
764 ide_hwif_t *hwif = drive->hwif;
765 int max_sectors = 256;
766 int max_sg_entries = PRD_ENTRIES;
767 struct blk_mq_tag_set *set;
768
769 /*
770 * Our default set up assumes the normal IDE case,
771 * that is 64K segmenting, standard PRD setup
772 * and LBA28. Some drivers then impose their own
773 * limits and LBA48 we could raise it but as yet
774 * do not.
775 */
776
777 set = &drive->tag_set;
778 set->ops = &ide_mq_ops;
779 set->nr_hw_queues = 1;
780 set->queue_depth = 32;
781 set->reserved_tags = 1;
782 set->cmd_size = sizeof(struct ide_request);
783 set->numa_node = hwif_to_node(hwif);
784 set->flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_BLOCKING;
785 if (blk_mq_alloc_tag_set(set))
786 return 1;
787
788 q = blk_mq_init_queue(set);
789 if (IS_ERR(q)) {
790 blk_mq_free_tag_set(set);
791 return 1;
792 }
793
794 blk_queue_flag_set(QUEUE_FLAG_SCSI_PASSTHROUGH, q);
795
796 q->queuedata = drive;
797 blk_queue_segment_boundary(q, 0xffff);
798
799 if (hwif->rqsize < max_sectors)
800 max_sectors = hwif->rqsize;
801 blk_queue_max_hw_sectors(q, max_sectors);
802
803 #ifdef CONFIG_PCI
804 /* When we have an IOMMU, we may have a problem where pci_map_sg()
805 * creates segments that don't completely match our boundary
806 * requirements and thus need to be broken up again. Because it
807 * doesn't align properly either, we may actually have to break up
808 * to more segments than what was we got in the first place, a max
809 * worst case is twice as many.
810 * This will be fixed once we teach pci_map_sg() about our boundary
811 * requirements, hopefully soon. *FIXME*
812 */
813 max_sg_entries >>= 1;
814 #endif /* CONFIG_PCI */
815
816 blk_queue_max_segments(q, max_sg_entries);
817
818 /* assign drive queue */
819 drive->queue = q;
820
821 return 0;
822 }
823
824 static DEFINE_MUTEX(ide_cfg_mtx);
825
826 /*
827 * For any present drive:
828 * - allocate the block device queue
829 */
830 static int ide_port_setup_devices(ide_hwif_t *hwif)
831 {
832 ide_drive_t *drive;
833 int i, j = 0;
834
835 mutex_lock(&ide_cfg_mtx);
836 ide_port_for_each_present_dev(i, drive, hwif) {
837 if (ide_init_queue(drive)) {
838 printk(KERN_ERR "ide: failed to init %s\n",
839 drive->name);
840 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
841 continue;
842 }
843
844 j++;
845 }
846 mutex_unlock(&ide_cfg_mtx);
847
848 return j;
849 }
850
851 static void ide_host_enable_irqs(struct ide_host *host)
852 {
853 ide_hwif_t *hwif;
854 int i;
855
856 ide_host_for_each_port(i, hwif, host) {
857 if (hwif == NULL)
858 continue;
859
860 /* clear any pending IRQs */
861 hwif->tp_ops->read_status(hwif);
862
863 /* unmask IRQs */
864 if (hwif->io_ports.ctl_addr)
865 hwif->tp_ops->write_devctl(hwif, ATA_DEVCTL_OBS);
866 }
867 }
868
869 /*
870 * This routine sets up the IRQ for an IDE interface.
871 */
872 static int init_irq (ide_hwif_t *hwif)
873 {
874 struct ide_io_ports *io_ports = &hwif->io_ports;
875 struct ide_host *host = hwif->host;
876 irq_handler_t irq_handler = host->irq_handler;
877 int sa = host->irq_flags;
878
879 if (irq_handler == NULL)
880 irq_handler = ide_intr;
881
882 if (!host->get_lock)
883 if (request_irq(hwif->irq, irq_handler, sa, hwif->name, hwif))
884 goto out_up;
885
886 #if !defined(__mc68000__)
887 printk(KERN_INFO "%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
888 io_ports->data_addr, io_ports->status_addr,
889 io_ports->ctl_addr, hwif->irq);
890 #else
891 printk(KERN_INFO "%s at 0x%08lx on irq %d", hwif->name,
892 io_ports->data_addr, hwif->irq);
893 #endif /* __mc68000__ */
894 if (hwif->host->host_flags & IDE_HFLAG_SERIALIZE)
895 printk(KERN_CONT " (serialized)");
896 printk(KERN_CONT "\n");
897
898 return 0;
899 out_up:
900 return 1;
901 }
902
903 static int ata_lock(dev_t dev, void *data)
904 {
905 /* FIXME: we want to pin hwif down */
906 return 0;
907 }
908
909 static struct kobject *ata_probe(dev_t dev, int *part, void *data)
910 {
911 ide_hwif_t *hwif = data;
912 int unit = *part >> PARTN_BITS;
913 ide_drive_t *drive = hwif->devices[unit];
914
915 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
916 return NULL;
917
918 if (drive->media == ide_disk)
919 request_module("ide-disk");
920 if (drive->media == ide_cdrom || drive->media == ide_optical)
921 request_module("ide-cd");
922 if (drive->media == ide_tape)
923 request_module("ide-tape");
924 if (drive->media == ide_floppy)
925 request_module("ide-floppy");
926
927 return NULL;
928 }
929
930 static struct kobject *exact_match(dev_t dev, int *part, void *data)
931 {
932 struct gendisk *p = data;
933 *part &= (1 << PARTN_BITS) - 1;
934 return &disk_to_dev(p)->kobj;
935 }
936
937 static int exact_lock(dev_t dev, void *data)
938 {
939 struct gendisk *p = data;
940
941 if (!get_disk_and_module(p))
942 return -1;
943 return 0;
944 }
945
946 void ide_register_region(struct gendisk *disk)
947 {
948 blk_register_region(MKDEV(disk->major, disk->first_minor),
949 disk->minors, NULL, exact_match, exact_lock, disk);
950 }
951
952 EXPORT_SYMBOL_GPL(ide_register_region);
953
954 void ide_unregister_region(struct gendisk *disk)
955 {
956 blk_unregister_region(MKDEV(disk->major, disk->first_minor),
957 disk->minors);
958 }
959
960 EXPORT_SYMBOL_GPL(ide_unregister_region);
961
962 void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
963 {
964 ide_hwif_t *hwif = drive->hwif;
965 unsigned int unit = drive->dn & 1;
966
967 disk->major = hwif->major;
968 disk->first_minor = unit << PARTN_BITS;
969 sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit);
970 disk->queue = drive->queue;
971 }
972
973 EXPORT_SYMBOL_GPL(ide_init_disk);
974
975 static void drive_release_dev (struct device *dev)
976 {
977 ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
978
979 ide_proc_unregister_device(drive);
980
981 if (drive->sense_rq)
982 blk_mq_free_request(drive->sense_rq);
983
984 blk_cleanup_queue(drive->queue);
985 drive->queue = NULL;
986 blk_mq_free_tag_set(&drive->tag_set);
987
988 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
989
990 complete(&drive->gendev_rel_comp);
991 }
992
993 static int hwif_init(ide_hwif_t *hwif)
994 {
995 if (!hwif->irq) {
996 printk(KERN_ERR "%s: disabled, no IRQ\n", hwif->name);
997 return 0;
998 }
999
1000 if (register_blkdev(hwif->major, hwif->name))
1001 return 0;
1002
1003 if (!hwif->sg_max_nents)
1004 hwif->sg_max_nents = PRD_ENTRIES;
1005
1006 hwif->sg_table = kmalloc_array(hwif->sg_max_nents,
1007 sizeof(struct scatterlist),
1008 GFP_KERNEL);
1009 if (!hwif->sg_table) {
1010 printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name);
1011 goto out;
1012 }
1013
1014 sg_init_table(hwif->sg_table, hwif->sg_max_nents);
1015
1016 if (init_irq(hwif)) {
1017 printk(KERN_ERR "%s: disabled, unable to get IRQ %d\n",
1018 hwif->name, hwif->irq);
1019 goto out;
1020 }
1021
1022 blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
1023 THIS_MODULE, ata_probe, ata_lock, hwif);
1024 return 1;
1025
1026 out:
1027 unregister_blkdev(hwif->major, hwif->name);
1028 return 0;
1029 }
1030
1031 static void hwif_register_devices(ide_hwif_t *hwif)
1032 {
1033 ide_drive_t *drive;
1034 unsigned int i;
1035
1036 ide_port_for_each_present_dev(i, drive, hwif) {
1037 struct device *dev = &drive->gendev;
1038 int ret;
1039
1040 dev_set_name(dev, "%u.%u", hwif->index, i);
1041 dev_set_drvdata(dev, drive);
1042 dev->parent = &hwif->gendev;
1043 dev->bus = &ide_bus_type;
1044 dev->release = drive_release_dev;
1045
1046 ret = device_register(dev);
1047 if (ret < 0)
1048 printk(KERN_WARNING "IDE: %s: device_register error: "
1049 "%d\n", __func__, ret);
1050 }
1051 }
1052
1053 static void ide_port_init_devices(ide_hwif_t *hwif)
1054 {
1055 const struct ide_port_ops *port_ops = hwif->port_ops;
1056 ide_drive_t *drive;
1057 int i;
1058
1059 ide_port_for_each_dev(i, drive, hwif) {
1060 drive->dn = i + hwif->channel * 2;
1061
1062 if (hwif->host_flags & IDE_HFLAG_IO_32BIT)
1063 drive->io_32bit = 1;
1064 if (hwif->host_flags & IDE_HFLAG_NO_IO_32BIT)
1065 drive->dev_flags |= IDE_DFLAG_NO_IO_32BIT;
1066 if (hwif->host_flags & IDE_HFLAG_UNMASK_IRQS)
1067 drive->dev_flags |= IDE_DFLAG_UNMASK;
1068 if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS)
1069 drive->dev_flags |= IDE_DFLAG_NO_UNMASK;
1070
1071 drive->pio_mode = XFER_PIO_0;
1072
1073 if (port_ops && port_ops->init_dev)
1074 port_ops->init_dev(drive);
1075 }
1076 }
1077
1078 static void ide_init_port(ide_hwif_t *hwif, unsigned int port,
1079 const struct ide_port_info *d)
1080 {
1081 hwif->channel = port;
1082
1083 hwif->chipset = d->chipset ? d->chipset : ide_pci;
1084
1085 if (d->init_iops)
1086 d->init_iops(hwif);
1087
1088 /* ->host_flags may be set by ->init_iops (or even earlier...) */
1089 hwif->host_flags |= d->host_flags;
1090 hwif->pio_mask = d->pio_mask;
1091
1092 if (d->tp_ops)
1093 hwif->tp_ops = d->tp_ops;
1094
1095 /* ->set_pio_mode for DTC2278 is currently limited to port 0 */
1096 if ((hwif->host_flags & IDE_HFLAG_DTC2278) == 0 || hwif->channel == 0)
1097 hwif->port_ops = d->port_ops;
1098
1099 hwif->swdma_mask = d->swdma_mask;
1100 hwif->mwdma_mask = d->mwdma_mask;
1101 hwif->ultra_mask = d->udma_mask;
1102
1103 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
1104 int rc;
1105
1106 hwif->dma_ops = d->dma_ops;
1107
1108 if (d->init_dma)
1109 rc = d->init_dma(hwif, d);
1110 else
1111 rc = ide_hwif_setup_dma(hwif, d);
1112
1113 if (rc < 0) {
1114 printk(KERN_INFO "%s: DMA disabled\n", hwif->name);
1115
1116 hwif->dma_ops = NULL;
1117 hwif->dma_base = 0;
1118 hwif->swdma_mask = 0;
1119 hwif->mwdma_mask = 0;
1120 hwif->ultra_mask = 0;
1121 }
1122 }
1123
1124 if ((d->host_flags & IDE_HFLAG_SERIALIZE) ||
1125 ((d->host_flags & IDE_HFLAG_SERIALIZE_DMA) && hwif->dma_base))
1126 hwif->host->host_flags |= IDE_HFLAG_SERIALIZE;
1127
1128 if (d->max_sectors)
1129 hwif->rqsize = d->max_sectors;
1130 else {
1131 if ((hwif->host_flags & IDE_HFLAG_NO_LBA48) ||
1132 (hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA))
1133 hwif->rqsize = 256;
1134 else
1135 hwif->rqsize = 65536;
1136 }
1137
1138 /* call chipset specific routine for each enabled port */
1139 if (d->init_hwif)
1140 d->init_hwif(hwif);
1141 }
1142
1143 static void ide_port_cable_detect(ide_hwif_t *hwif)
1144 {
1145 const struct ide_port_ops *port_ops = hwif->port_ops;
1146
1147 if (port_ops && port_ops->cable_detect && (hwif->ultra_mask & 0x78)) {
1148 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
1149 hwif->cbl = port_ops->cable_detect(hwif);
1150 }
1151 }
1152
1153 /*
1154 * Deferred request list insertion handler
1155 */
1156 static void drive_rq_insert_work(struct work_struct *work)
1157 {
1158 ide_drive_t *drive = container_of(work, ide_drive_t, rq_work);
1159 ide_hwif_t *hwif = drive->hwif;
1160 struct request *rq;
1161 LIST_HEAD(list);
1162
1163 spin_lock_irq(&hwif->lock);
1164 if (!list_empty(&drive->rq_list))
1165 list_splice_init(&drive->rq_list, &list);
1166 spin_unlock_irq(&hwif->lock);
1167
1168 while (!list_empty(&list)) {
1169 rq = list_first_entry(&list, struct request, queuelist);
1170 list_del_init(&rq->queuelist);
1171 blk_execute_rq_nowait(drive->queue, rq->rq_disk, rq, true, NULL);
1172 }
1173 }
1174
1175 static const u8 ide_hwif_to_major[] =
1176 { IDE0_MAJOR, IDE1_MAJOR, IDE2_MAJOR, IDE3_MAJOR, IDE4_MAJOR,
1177 IDE5_MAJOR, IDE6_MAJOR, IDE7_MAJOR, IDE8_MAJOR, IDE9_MAJOR };
1178
1179 static void ide_port_init_devices_data(ide_hwif_t *hwif)
1180 {
1181 ide_drive_t *drive;
1182 int i;
1183
1184 ide_port_for_each_dev(i, drive, hwif) {
1185 u8 j = (hwif->index * MAX_DRIVES) + i;
1186 u16 *saved_id = drive->id;
1187
1188 memset(drive, 0, sizeof(*drive));
1189 memset(saved_id, 0, SECTOR_SIZE);
1190 drive->id = saved_id;
1191
1192 drive->media = ide_disk;
1193 drive->select = (i << 4) | ATA_DEVICE_OBS;
1194 drive->hwif = hwif;
1195 drive->ready_stat = ATA_DRDY;
1196 drive->bad_wstat = BAD_W_STAT;
1197 drive->special_flags = IDE_SFLAG_RECALIBRATE |
1198 IDE_SFLAG_SET_GEOMETRY;
1199 drive->name[0] = 'h';
1200 drive->name[1] = 'd';
1201 drive->name[2] = 'a' + j;
1202 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
1203
1204 INIT_LIST_HEAD(&drive->list);
1205 init_completion(&drive->gendev_rel_comp);
1206
1207 INIT_WORK(&drive->rq_work, drive_rq_insert_work);
1208 INIT_LIST_HEAD(&drive->rq_list);
1209 }
1210 }
1211
1212 static void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
1213 {
1214 /* fill in any non-zero initial values */
1215 hwif->index = index;
1216 hwif->major = ide_hwif_to_major[index];
1217
1218 hwif->name[0] = 'i';
1219 hwif->name[1] = 'd';
1220 hwif->name[2] = 'e';
1221 hwif->name[3] = '0' + index;
1222
1223 spin_lock_init(&hwif->lock);
1224
1225 timer_setup(&hwif->timer, ide_timer_expiry, 0);
1226
1227 init_completion(&hwif->gendev_rel_comp);
1228
1229 hwif->tp_ops = &default_tp_ops;
1230
1231 ide_port_init_devices_data(hwif);
1232 }
1233
1234 static void ide_init_port_hw(ide_hwif_t *hwif, struct ide_hw *hw)
1235 {
1236 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
1237 hwif->irq = hw->irq;
1238 hwif->dev = hw->dev;
1239 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
1240 hwif->config_data = hw->config;
1241 }
1242
1243 static unsigned int ide_indexes;
1244
1245 /**
1246 * ide_find_port_slot - find free port slot
1247 * @d: IDE port info
1248 *
1249 * Return the new port slot index or -ENOENT if we are out of free slots.
1250 */
1251
1252 static int ide_find_port_slot(const struct ide_port_info *d)
1253 {
1254 int idx = -ENOENT;
1255 u8 bootable = (d && (d->host_flags & IDE_HFLAG_NON_BOOTABLE)) ? 0 : 1;
1256 u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;
1257
1258 /*
1259 * Claim an unassigned slot.
1260 *
1261 * Give preference to claiming other slots before claiming ide0/ide1,
1262 * just in case there's another interface yet-to-be-scanned
1263 * which uses ports 0x1f0/0x170 (the ide0/ide1 defaults).
1264 *
1265 * Unless there is a bootable card that does not use the standard
1266 * ports 0x1f0/0x170 (the ide0/ide1 defaults).
1267 */
1268 mutex_lock(&ide_cfg_mtx);
1269 if (bootable) {
1270 if ((ide_indexes | i) != (1 << MAX_HWIFS) - 1)
1271 idx = ffz(ide_indexes | i);
1272 } else {
1273 if ((ide_indexes | 3) != (1 << MAX_HWIFS) - 1)
1274 idx = ffz(ide_indexes | 3);
1275 else if ((ide_indexes & 3) != 3)
1276 idx = ffz(ide_indexes);
1277 }
1278 if (idx >= 0)
1279 ide_indexes |= (1 << idx);
1280 mutex_unlock(&ide_cfg_mtx);
1281
1282 return idx;
1283 }
1284
1285 static void ide_free_port_slot(int idx)
1286 {
1287 mutex_lock(&ide_cfg_mtx);
1288 ide_indexes &= ~(1 << idx);
1289 mutex_unlock(&ide_cfg_mtx);
1290 }
1291
1292 static void ide_port_free_devices(ide_hwif_t *hwif)
1293 {
1294 ide_drive_t *drive;
1295 int i;
1296
1297 ide_port_for_each_dev(i, drive, hwif) {
1298 kfree(drive->id);
1299 kfree(drive);
1300 }
1301 }
1302
1303 static int ide_port_alloc_devices(ide_hwif_t *hwif, int node)
1304 {
1305 ide_drive_t *drive;
1306 int i;
1307
1308 for (i = 0; i < MAX_DRIVES; i++) {
1309 drive = kzalloc_node(sizeof(*drive), GFP_KERNEL, node);
1310 if (drive == NULL)
1311 goto out_nomem;
1312
1313 /*
1314 * In order to keep things simple we have an id
1315 * block for all drives at all times. If the device
1316 * is pre ATA or refuses ATA/ATAPI identify we
1317 * will add faked data to this.
1318 *
1319 * Also note that 0 everywhere means "can't do X"
1320 */
1321 drive->id = kzalloc_node(SECTOR_SIZE, GFP_KERNEL, node);
1322 if (drive->id == NULL)
1323 goto out_free_drive;
1324
1325 hwif->devices[i] = drive;
1326 }
1327 return 0;
1328
1329 out_free_drive:
1330 kfree(drive);
1331 out_nomem:
1332 ide_port_free_devices(hwif);
1333 return -ENOMEM;
1334 }
1335
1336 struct ide_host *ide_host_alloc(const struct ide_port_info *d,
1337 struct ide_hw **hws, unsigned int n_ports)
1338 {
1339 struct ide_host *host;
1340 struct device *dev = hws[0] ? hws[0]->dev : NULL;
1341 int node = dev ? dev_to_node(dev) : -1;
1342 int i;
1343
1344 host = kzalloc_node(sizeof(*host), GFP_KERNEL, node);
1345 if (host == NULL)
1346 return NULL;
1347
1348 for (i = 0; i < n_ports; i++) {
1349 ide_hwif_t *hwif;
1350 int idx;
1351
1352 if (hws[i] == NULL)
1353 continue;
1354
1355 hwif = kzalloc_node(sizeof(*hwif), GFP_KERNEL, node);
1356 if (hwif == NULL)
1357 continue;
1358
1359 if (ide_port_alloc_devices(hwif, node) < 0) {
1360 kfree(hwif);
1361 continue;
1362 }
1363
1364 idx = ide_find_port_slot(d);
1365 if (idx < 0) {
1366 printk(KERN_ERR "%s: no free slot for interface\n",
1367 d ? d->name : "ide");
1368 ide_port_free_devices(hwif);
1369 kfree(hwif);
1370 continue;
1371 }
1372
1373 ide_init_port_data(hwif, idx);
1374
1375 hwif->host = host;
1376
1377 host->ports[i] = hwif;
1378 host->n_ports++;
1379 }
1380
1381 if (host->n_ports == 0) {
1382 kfree(host);
1383 return NULL;
1384 }
1385
1386 host->dev[0] = dev;
1387
1388 if (d) {
1389 host->init_chipset = d->init_chipset;
1390 host->get_lock = d->get_lock;
1391 host->release_lock = d->release_lock;
1392 host->host_flags = d->host_flags;
1393 host->irq_flags = d->irq_flags;
1394 }
1395
1396 return host;
1397 }
1398 EXPORT_SYMBOL_GPL(ide_host_alloc);
1399
1400 static void ide_port_free(ide_hwif_t *hwif)
1401 {
1402 ide_port_free_devices(hwif);
1403 ide_free_port_slot(hwif->index);
1404 kfree(hwif);
1405 }
1406
1407 static void ide_disable_port(ide_hwif_t *hwif)
1408 {
1409 struct ide_host *host = hwif->host;
1410 int i;
1411
1412 printk(KERN_INFO "%s: disabling port\n", hwif->name);
1413
1414 for (i = 0; i < MAX_HOST_PORTS; i++) {
1415 if (host->ports[i] == hwif) {
1416 host->ports[i] = NULL;
1417 host->n_ports--;
1418 }
1419 }
1420
1421 ide_port_free(hwif);
1422 }
1423
1424 int ide_host_register(struct ide_host *host, const struct ide_port_info *d,
1425 struct ide_hw **hws)
1426 {
1427 ide_hwif_t *hwif, *mate = NULL;
1428 int i, j = 0;
1429
1430 ide_host_for_each_port(i, hwif, host) {
1431 if (hwif == NULL) {
1432 mate = NULL;
1433 continue;
1434 }
1435
1436 ide_init_port_hw(hwif, hws[i]);
1437 ide_port_apply_params(hwif);
1438
1439 if ((i & 1) && mate) {
1440 hwif->mate = mate;
1441 mate->mate = hwif;
1442 }
1443
1444 mate = (i & 1) ? NULL : hwif;
1445
1446 ide_init_port(hwif, i & 1, d);
1447 ide_port_cable_detect(hwif);
1448
1449 hwif->port_flags |= IDE_PFLAG_PROBING;
1450
1451 ide_port_init_devices(hwif);
1452 }
1453
1454 ide_host_for_each_port(i, hwif, host) {
1455 if (hwif == NULL)
1456 continue;
1457
1458 if (ide_probe_port(hwif) == 0)
1459 hwif->present = 1;
1460
1461 hwif->port_flags &= ~IDE_PFLAG_PROBING;
1462
1463 if ((hwif->host_flags & IDE_HFLAG_4DRIVES) == 0 ||
1464 hwif->mate == NULL || hwif->mate->present == 0) {
1465 if (ide_register_port(hwif)) {
1466 ide_disable_port(hwif);
1467 continue;
1468 }
1469 }
1470
1471 if (hwif->present)
1472 ide_port_tune_devices(hwif);
1473 }
1474
1475 ide_host_enable_irqs(host);
1476
1477 ide_host_for_each_port(i, hwif, host) {
1478 if (hwif == NULL)
1479 continue;
1480
1481 if (hwif_init(hwif) == 0) {
1482 printk(KERN_INFO "%s: failed to initialize IDE "
1483 "interface\n", hwif->name);
1484 device_unregister(hwif->portdev);
1485 device_unregister(&hwif->gendev);
1486 ide_disable_port(hwif);
1487 continue;
1488 }
1489
1490 if (hwif->present)
1491 if (ide_port_setup_devices(hwif) == 0) {
1492 hwif->present = 0;
1493 continue;
1494 }
1495
1496 j++;
1497
1498 ide_acpi_init_port(hwif);
1499
1500 if (hwif->present)
1501 ide_acpi_port_init_devices(hwif);
1502 }
1503
1504 ide_host_for_each_port(i, hwif, host) {
1505 if (hwif == NULL)
1506 continue;
1507
1508 ide_sysfs_register_port(hwif);
1509 ide_proc_register_port(hwif);
1510
1511 if (hwif->present) {
1512 ide_proc_port_register_devices(hwif);
1513 hwif_register_devices(hwif);
1514 }
1515 }
1516
1517 return j ? 0 : -1;
1518 }
1519 EXPORT_SYMBOL_GPL(ide_host_register);
1520
1521 int ide_host_add(const struct ide_port_info *d, struct ide_hw **hws,
1522 unsigned int n_ports, struct ide_host **hostp)
1523 {
1524 struct ide_host *host;
1525 int rc;
1526
1527 host = ide_host_alloc(d, hws, n_ports);
1528 if (host == NULL)
1529 return -ENOMEM;
1530
1531 rc = ide_host_register(host, d, hws);
1532 if (rc) {
1533 ide_host_free(host);
1534 return rc;
1535 }
1536
1537 if (hostp)
1538 *hostp = host;
1539
1540 return 0;
1541 }
1542 EXPORT_SYMBOL_GPL(ide_host_add);
1543
1544 static void __ide_port_unregister_devices(ide_hwif_t *hwif)
1545 {
1546 ide_drive_t *drive;
1547 int i;
1548
1549 ide_port_for_each_present_dev(i, drive, hwif) {
1550 device_unregister(&drive->gendev);
1551 wait_for_completion(&drive->gendev_rel_comp);
1552 }
1553 }
1554
1555 void ide_port_unregister_devices(ide_hwif_t *hwif)
1556 {
1557 mutex_lock(&ide_cfg_mtx);
1558 __ide_port_unregister_devices(hwif);
1559 hwif->present = 0;
1560 ide_port_init_devices_data(hwif);
1561 mutex_unlock(&ide_cfg_mtx);
1562 }
1563 EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
1564
1565 /**
1566 * ide_unregister - free an IDE interface
1567 * @hwif: IDE interface
1568 *
1569 * Perform the final unregister of an IDE interface.
1570 *
1571 * Locking:
1572 * The caller must not hold the IDE locks.
1573 *
1574 * It is up to the caller to be sure there is no pending I/O here,
1575 * and that the interface will not be reopened (present/vanishing
1576 * locking isn't yet done BTW).
1577 */
1578
1579 static void ide_unregister(ide_hwif_t *hwif)
1580 {
1581 BUG_ON(in_interrupt());
1582 BUG_ON(irqs_disabled());
1583
1584 mutex_lock(&ide_cfg_mtx);
1585
1586 if (hwif->present) {
1587 __ide_port_unregister_devices(hwif);
1588 hwif->present = 0;
1589 }
1590
1591 ide_proc_unregister_port(hwif);
1592
1593 if (!hwif->host->get_lock)
1594 free_irq(hwif->irq, hwif);
1595
1596 device_unregister(hwif->portdev);
1597 device_unregister(&hwif->gendev);
1598 wait_for_completion(&hwif->gendev_rel_comp);
1599
1600 /*
1601 * Remove us from the kernel's knowledge
1602 */
1603 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
1604 kfree(hwif->sg_table);
1605 unregister_blkdev(hwif->major, hwif->name);
1606
1607 ide_release_dma_engine(hwif);
1608
1609 mutex_unlock(&ide_cfg_mtx);
1610 }
1611
1612 void ide_host_free(struct ide_host *host)
1613 {
1614 ide_hwif_t *hwif;
1615 int i;
1616
1617 ide_host_for_each_port(i, hwif, host) {
1618 if (hwif)
1619 ide_port_free(hwif);
1620 }
1621
1622 kfree(host);
1623 }
1624 EXPORT_SYMBOL_GPL(ide_host_free);
1625
1626 void ide_host_remove(struct ide_host *host)
1627 {
1628 ide_hwif_t *hwif;
1629 int i;
1630
1631 ide_host_for_each_port(i, hwif, host) {
1632 if (hwif)
1633 ide_unregister(hwif);
1634 }
1635
1636 ide_host_free(host);
1637 }
1638 EXPORT_SYMBOL_GPL(ide_host_remove);
1639
1640 void ide_port_scan(ide_hwif_t *hwif)
1641 {
1642 int rc;
1643
1644 ide_port_apply_params(hwif);
1645 ide_port_cable_detect(hwif);
1646
1647 hwif->port_flags |= IDE_PFLAG_PROBING;
1648
1649 ide_port_init_devices(hwif);
1650
1651 rc = ide_probe_port(hwif);
1652
1653 hwif->port_flags &= ~IDE_PFLAG_PROBING;
1654
1655 if (rc < 0)
1656 return;
1657
1658 hwif->present = 1;
1659
1660 ide_port_tune_devices(hwif);
1661 ide_port_setup_devices(hwif);
1662 ide_acpi_port_init_devices(hwif);
1663 hwif_register_devices(hwif);
1664 ide_proc_port_register_devices(hwif);
1665 }
1666 EXPORT_SYMBOL_GPL(ide_port_scan);