it821x: use ide_get_pair_dev() helper
[linux-2.6-block.git] / drivers / ide / ide-probe.c
CommitLineData
1da177e4 1/*
59bca8cc
BZ
2 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
3 * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
1da177e4
LT
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 *
bbe4d6d8
BZ
15 * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
16 * by Andrea Arcangeli
1da177e4
LT
17 */
18
1da177e4
LT
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>
dc81785d 35#include <linux/scatterlist.h>
1da177e4
LT
36
37#include <asm/byteorder.h>
38#include <asm/irq.h>
39#include <asm/uaccess.h>
40#include <asm/io.h>
41
42/**
43 * generic_id - add a generic drive id
44 * @drive: drive to make an ID block for
45 *
46 * Add a fake id field to the drive we are passed. This allows
47 * use to skip a ton of NULL checks (which people always miss)
48 * and make drive properties unconditional outside of this file
49 */
50
51static void generic_id(ide_drive_t *drive)
52{
4dde4492
BZ
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;
1da177e4
LT
58}
59
60static void ide_disk_init_chs(ide_drive_t *drive)
61{
4dde4492 62 u16 *id = drive->id;
1da177e4
LT
63
64 /* Extract geometry if we did not already have one for the drive */
65 if (!drive->cyl || !drive->head || !drive->sect) {
4dde4492
BZ
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];
1da177e4
LT
69 }
70
71 /* Handle logical geometry translation by the drive */
dd8f46f6 72 if (ata_id_current_chs_valid(id)) {
4dde4492
BZ
73 drive->cyl = id[ATA_ID_CUR_CYLS];
74 drive->head = id[ATA_ID_CUR_HEADS];
75 drive->sect = id[ATA_ID_CUR_SECTORS];
1da177e4
LT
76 }
77
78 /* Use physical geometry if what we have still makes no sense */
4dde4492
BZ
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];
1da177e4
LT
83 }
84}
85
86static void ide_disk_init_mult_count(ide_drive_t *drive)
87{
48fb2688
BZ
88 u16 *id = drive->id;
89 u8 max_multsect = id[ATA_ID_MAX_MULTSECT] & 0xff;
1da177e4 90
48fb2688 91 if (max_multsect) {
48fb2688
BZ
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;
7c51c17e
BZ
98
99 if (drive->mult_req)
df1f8378 100 drive->special.b.set_multmode = 1;
1da177e4
LT
101 }
102}
103
24630dc6
BZ
104static 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
123static 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 case ide_cdrom:
146 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
147#ifdef CONFIG_PPC
148 /* kludge for Apple PowerBook internal zip */
149 if (!strstr(m, "CD-ROM") && strstr(m, "ZIP")) {
150 printk(KERN_CONT "FLOPPY");
151 type = ide_floppy;
152 break;
153 }
154#endif
155 printk(KERN_CONT "CD/DVD-ROM");
156 break;
157 case ide_tape:
158 printk(KERN_CONT "TAPE");
159 break;
160 case ide_optical:
161 printk(KERN_CONT "OPTICAL");
162 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
163 break;
164 default:
165 printk(KERN_CONT "UNKNOWN (type %d)", type);
166 break;
167 }
168
169 printk(KERN_CONT " drive\n");
170 drive->media = type;
171 /* an ATAPI device ignores DRDY */
172 drive->ready_stat = 0;
173 if (ata_id_cdb_intr(id))
174 drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT;
175 drive->dev_flags |= IDE_DFLAG_DOORLOCKING;
176 /* we don't do head unloading on ATAPI devices */
177 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
178}
179
1da177e4
LT
180/**
181 * do_identify - identify a drive
182 * @drive: drive to identify
183 * @cmd: command used
184 *
185 * Called when we have issued a drive identify command to
186 * read and parse the results. This function is run with
187 * interrupts disabled.
188 */
047140ae
BZ
189
190static void do_identify(ide_drive_t *drive, u8 cmd)
1da177e4 191{
898ec223 192 ide_hwif_t *hwif = drive->hwif;
4dde4492
BZ
193 u16 *id = drive->id;
194 char *m = (char *)&id[ATA_ID_PROD];
94b9efdf 195 unsigned long flags;
24630dc6 196 int bswap = 1;
1da177e4 197
94b9efdf
BZ
198 /* local CPU only; some systems need this */
199 local_irq_save(flags);
1da177e4 200 /* read 512 bytes of id info */
374e042c 201 hwif->tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
94b9efdf 202 local_irq_restore(flags);
1da177e4 203
97100fc8 204 drive->dev_flags |= IDE_DFLAG_ID_READ;
7b9f25b5
BZ
205#ifdef DEBUG
206 printk(KERN_INFO "%s: dumping identify data\n", drive->name);
207 ide_dump_identify((u8 *)id);
208#endif
1da177e4
LT
209 ide_fix_driveid(id);
210
1da177e4 211 /*
aaaade3f
BZ
212 * ATA_CMD_ID_ATA returns little-endian info,
213 * ATA_CMD_ID_ATAPI *usually* returns little-endian info.
1da177e4 214 */
aaaade3f 215 if (cmd == ATA_CMD_ID_ATAPI) {
4dde4492
BZ
216 if ((m[0] == 'N' && m[1] == 'E') || /* NEC */
217 (m[0] == 'F' && m[1] == 'X') || /* Mitsumi */
218 (m[0] == 'P' && m[1] == 'i')) /* Pioneer */
1da177e4 219 /* Vertos drives may still be weird */
4dde4492 220 bswap ^= 1;
1da177e4 221 }
4dde4492
BZ
222
223 ide_fixstring(m, ATA_ID_PROD_LEN, bswap);
224 ide_fixstring((char *)&id[ATA_ID_FW_REV], ATA_ID_FW_REV_LEN, bswap);
225 ide_fixstring((char *)&id[ATA_ID_SERNO], ATA_ID_SERNO_LEN, bswap);
1da177e4 226
699b052a 227 /* we depend on this a lot! */
4dde4492 228 m[ATA_ID_PROD_LEN - 1] = '\0';
699b052a 229
4dde4492 230 if (strstr(m, "E X A B Y T E N E S T"))
1da177e4
LT
231 goto err_misc;
232
97100fc8
BZ
233 drive->dev_flags |= IDE_DFLAG_PRESENT;
234 drive->dev_flags &= ~IDE_DFLAG_DEAD;
1da177e4
LT
235
236 /*
237 * Check for an ATAPI device
238 */
24630dc6
BZ
239 if (cmd == ATA_CMD_ID_ATAPI)
240 ide_classify_atapi_dev(drive);
241 else
1da177e4
LT
242 /*
243 * Not an ATAPI device: looks like a "regular" hard disk
244 */
24630dc6 245 ide_classify_ata_dev(drive);
1da177e4 246 return;
1da177e4
LT
247err_misc:
248 kfree(id);
97100fc8 249 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
1da177e4
LT
250}
251
252/**
253 * actual_try_to_identify - send ata/atapi identify
254 * @drive: drive to identify
255 * @cmd: command to use
256 *
257 * try_to_identify() sends an ATA(PI) IDENTIFY request to a drive
258 * and waits for a response. It also monitors irqs while this is
259 * happening, in hope of automatically determining which one is
260 * being used by the interface.
261 *
262 * Returns: 0 device was identified
263 * 1 device timed-out (no response to identify request)
264 * 2 device aborted the command (refused to identify itself)
265 */
266
267static int actual_try_to_identify (ide_drive_t *drive, u8 cmd)
268{
898ec223 269 ide_hwif_t *hwif = drive->hwif;
4c3032d8 270 struct ide_io_ports *io_ports = &hwif->io_ports;
374e042c 271 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
c47137a9 272 int use_altstatus = 0, rc;
1da177e4
LT
273 unsigned long timeout;
274 u8 s = 0, a = 0;
275
276 /* take a deep breath */
277 msleep(50);
278
6636487e
BZ
279 if (io_ports->ctl_addr &&
280 (hwif->host_flags & IDE_HFLAG_BROKEN_ALTSTATUS) == 0) {
374e042c
BZ
281 a = tp_ops->read_altstatus(hwif);
282 s = tp_ops->read_status(hwif);
3a7d2484 283 if ((a ^ s) & ~ATA_IDX)
1da177e4 284 /* ancient Seagate drives, broken interfaces */
c47137a9
BZ
285 printk(KERN_INFO "%s: probing with STATUS(0x%02x) "
286 "instead of ALTSTATUS(0x%02x)\n",
287 drive->name, s, a);
288 else
1da177e4 289 /* use non-intrusive polling */
c47137a9
BZ
290 use_altstatus = 1;
291 }
1da177e4
LT
292
293 /* set features register for atapi
294 * identify command to be sure of reply
295 */
aaaade3f 296 if (cmd == ATA_CMD_ID_ATAPI) {
4e65837b
BZ
297 ide_task_t task;
298
299 memset(&task, 0, sizeof(task));
300 /* disable DMA & overlap */
301 task.tf_flags = IDE_TFLAG_OUT_FEATURE;
302
374e042c 303 tp_ops->tf_load(drive, &task);
4e65837b 304 }
1da177e4
LT
305
306 /* ask drive for ID */
374e042c 307 tp_ops->exec_command(hwif, cmd);
1da177e4 308
aaaade3f 309 timeout = ((cmd == ATA_CMD_ID_ATA) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
b163f46d
BZ
310
311 if (ide_busy_sleep(hwif, timeout, use_altstatus))
312 return 1;
1da177e4 313
3a7d2484 314 /* wait for IRQ and ATA_DRQ */
1da177e4 315 msleep(50);
374e042c 316 s = tp_ops->read_status(hwif);
c47137a9 317
3a7d2484 318 if (OK_STAT(s, ATA_DRQ, BAD_R_STAT)) {
1da177e4
LT
319 /* drive returned ID */
320 do_identify(drive, cmd);
321 /* drive responded with ID */
322 rc = 0;
323 /* clear drive IRQ */
374e042c 324 (void)tp_ops->read_status(hwif);
1da177e4
LT
325 } else {
326 /* drive refused ID */
327 rc = 2;
328 }
329 return rc;
330}
331
332/**
333 * try_to_identify - try to identify a drive
334 * @drive: drive to probe
335 * @cmd: command to use
336 *
337 * Issue the identify command and then do IRQ probing to
338 * complete the identification when needed by finding the
339 * IRQ the drive is attached to
340 */
341
342static int try_to_identify (ide_drive_t *drive, u8 cmd)
343{
898ec223 344 ide_hwif_t *hwif = drive->hwif;
374e042c 345 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
1da177e4
LT
346 int retval;
347 int autoprobe = 0;
348 unsigned long cookie = 0;
349
350 /*
351 * Disable device irq unless we need to
352 * probe for it. Otherwise we'll get spurious
353 * interrupts during the identify-phase that
354 * the irq handler isn't expecting.
355 */
4c3032d8 356 if (hwif->io_ports.ctl_addr) {
1da177e4
LT
357 if (!hwif->irq) {
358 autoprobe = 1;
359 cookie = probe_irq_on();
1da177e4 360 }
374e042c 361 tp_ops->set_irq(hwif, autoprobe);
1da177e4
LT
362 }
363
364 retval = actual_try_to_identify(drive, cmd);
365
366 if (autoprobe) {
367 int irq;
81ca6919 368
374e042c 369 tp_ops->set_irq(hwif, 0);
1da177e4 370 /* clear drive IRQ */
374e042c 371 (void)tp_ops->read_status(hwif);
1da177e4
LT
372 udelay(5);
373 irq = probe_irq_off(cookie);
374 if (!hwif->irq) {
375 if (irq > 0) {
376 hwif->irq = irq;
377 } else {
378 /* Mmmm.. multiple IRQs..
379 * don't know which was ours
380 */
1b8ebad8 381 printk(KERN_ERR "%s: IRQ probe failed (0x%lx)\n",
1da177e4
LT
382 drive->name, cookie);
383 }
384 }
385 }
386 return retval;
387}
388
b163f46d 389int ide_busy_sleep(ide_hwif_t *hwif, unsigned long timeout, int altstatus)
3a5015cc 390{
3a5015cc
BZ
391 u8 stat;
392
b163f46d
BZ
393 timeout += jiffies;
394
3a5015cc 395 do {
b163f46d
BZ
396 msleep(50); /* give drive a breather */
397 stat = altstatus ? hwif->tp_ops->read_altstatus(hwif)
398 : hwif->tp_ops->read_status(hwif);
3a7d2484 399 if ((stat & ATA_BUSY) == 0)
3a5015cc
BZ
400 return 0;
401 } while (time_before(jiffies, timeout));
402
b163f46d 403 return 1; /* drive timed-out */
3a5015cc 404}
1da177e4 405
1f2efb82
BZ
406static u8 ide_read_device(ide_drive_t *drive)
407{
408 ide_task_t task;
409
410 memset(&task, 0, sizeof(task));
411 task.tf_flags = IDE_TFLAG_IN_DEVICE;
412
374e042c 413 drive->hwif->tp_ops->tf_read(drive, &task);
1f2efb82
BZ
414
415 return task.tf.device;
416}
417
1da177e4
LT
418/**
419 * do_probe - probe an IDE device
420 * @drive: drive to probe
421 * @cmd: command to use
422 *
423 * do_probe() has the difficult job of finding a drive if it exists,
424 * without getting hung up if it doesn't exist, without trampling on
425 * ethernet cards, and without leaving any IRQs dangling to haunt us later.
426 *
427 * If a drive is "known" to exist (from CMOS or kernel parameters),
428 * but does not respond right away, the probe will "hang in there"
429 * for the maximum wait time (about 30 seconds), otherwise it will
430 * exit much more quickly.
431 *
432 * Returns: 0 device was identified
433 * 1 device timed-out (no response to identify request)
434 * 2 device aborted the command (refused to identify itself)
435 * 3 bad status from device (possible for ATAPI drives)
436 * 4 probe was not attempted because failure was obvious
437 */
438
439static int do_probe (ide_drive_t *drive, u8 cmd)
440{
898ec223 441 ide_hwif_t *hwif = drive->hwif;
374e042c 442 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
57b55275 443 int rc;
97100fc8
BZ
444 u8 present = !!(drive->dev_flags & IDE_DFLAG_PRESENT), stat;
445
446 /* avoid waiting for inappropriate probes */
447 if (present && drive->media != ide_disk && cmd == ATA_CMD_ID_ATA)
448 return 4;
1da177e4 449
1da177e4 450#ifdef DEBUG
1b8ebad8 451 printk(KERN_INFO "probing for %s: present=%d, media=%d, probetype=%s\n",
97100fc8 452 drive->name, present, drive->media,
aaaade3f 453 (cmd == ATA_CMD_ID_ATA) ? "ATA" : "ATAPI");
1da177e4
LT
454#endif
455
456 /* needed for some systems
457 * (e.g. crw9624 as drive0 with disk as slave)
458 */
459 msleep(50);
460 SELECT_DRIVE(drive);
461 msleep(50);
1f2efb82 462
7f612f27 463 if (ide_read_device(drive) != drive->select && present == 0) {
123995b9 464 if (drive->dn & 1) {
1da177e4
LT
465 /* exit with drive0 selected */
466 SELECT_DRIVE(&hwif->drives[0]);
3a7d2484 467 /* allow ATA_BUSY to assert & clear */
1da177e4
LT
468 msleep(50);
469 }
470 /* no i/f present: mmm.. this should be a 4 -ml */
471 return 3;
472 }
473
374e042c 474 stat = tp_ops->read_status(hwif);
c47137a9 475
3a7d2484 476 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY) ||
97100fc8 477 present || cmd == ATA_CMD_ID_ATAPI) {
1da177e4
LT
478 /* send cmd and wait */
479 if ((rc = try_to_identify(drive, cmd))) {
480 /* failed: try again */
481 rc = try_to_identify(drive,cmd);
482 }
57b55275 483
374e042c 484 stat = tp_ops->read_status(hwif);
57b55275 485
3a7d2484 486 if (stat == (ATA_BUSY | ATA_DRDY))
1da177e4
LT
487 return 4;
488
aaaade3f 489 if (rc == 1 && cmd == ATA_CMD_ID_ATAPI) {
57b55275
BZ
490 printk(KERN_ERR "%s: no response (status = 0x%02x), "
491 "resetting drive\n", drive->name, stat);
1da177e4 492 msleep(50);
e81a3bde 493 SELECT_DRIVE(drive);
1da177e4 494 msleep(50);
aaaade3f 495 tp_ops->exec_command(hwif, ATA_CMD_DEV_RESET);
b163f46d 496 (void)ide_busy_sleep(hwif, WAIT_WORSTCASE, 0);
1da177e4
LT
497 rc = try_to_identify(drive, cmd);
498 }
57b55275
BZ
499
500 /* ensure drive IRQ is clear */
374e042c 501 stat = tp_ops->read_status(hwif);
57b55275 502
1da177e4 503 if (rc == 1)
57b55275
BZ
504 printk(KERN_ERR "%s: no response (status = 0x%02x)\n",
505 drive->name, stat);
1da177e4
LT
506 } else {
507 /* not present or maybe ATAPI */
508 rc = 3;
509 }
123995b9 510 if (drive->dn & 1) {
1da177e4
LT
511 /* exit with drive0 selected */
512 SELECT_DRIVE(&hwif->drives[0]);
513 msleep(50);
514 /* ensure drive irq is clear */
374e042c 515 (void)tp_ops->read_status(hwif);
1da177e4
LT
516 }
517 return rc;
518}
519
520/*
521 *
522 */
523static void enable_nest (ide_drive_t *drive)
524{
898ec223 525 ide_hwif_t *hwif = drive->hwif;
374e042c 526 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
57b55275 527 u8 stat;
1da177e4 528
4dde4492
BZ
529 printk(KERN_INFO "%s: enabling %s -- ",
530 hwif->name, (char *)&drive->id[ATA_ID_PROD]);
1b8ebad8 531
1da177e4
LT
532 SELECT_DRIVE(drive);
533 msleep(50);
aaaade3f 534 tp_ops->exec_command(hwif, ATA_EXABYTE_ENABLE_NEST);
3a5015cc 535
b163f46d 536 if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 0)) {
3a5015cc
BZ
537 printk(KERN_CONT "failed (timeout)\n");
538 return;
539 }
1da177e4
LT
540
541 msleep(50);
542
374e042c 543 stat = tp_ops->read_status(hwif);
57b55275
BZ
544
545 if (!OK_STAT(stat, 0, BAD_STAT))
546 printk(KERN_CONT "failed (status = 0x%02x)\n", stat);
547 else
548 printk(KERN_CONT "success\n");
1da177e4
LT
549}
550
551/**
552 * probe_for_drives - upper level drive probe
553 * @drive: drive to probe for
554 *
555 * probe_for_drive() tests for existence of a given drive using do_probe()
556 * and presents things to the user as needed.
557 *
558 * Returns: 0 no device was found
97100fc8
BZ
559 * 1 device was found
560 * (note: IDE_DFLAG_PRESENT might still be not set)
1da177e4 561 */
047140ae
BZ
562
563static u8 probe_for_drive(ide_drive_t *drive)
1da177e4 564{
4dde4492
BZ
565 char *m;
566
1da177e4
LT
567 /*
568 * In order to keep things simple we have an id
569 * block for all drives at all times. If the device
570 * is pre ATA or refuses ATA/ATAPI identify we
571 * will add faked data to this.
572 *
573 * Also note that 0 everywhere means "can't do X"
574 */
575
97100fc8
BZ
576 drive->dev_flags &= ~IDE_DFLAG_ID_READ;
577
151a6701 578 drive->id = kzalloc(SECTOR_SIZE, GFP_KERNEL);
97100fc8 579 if (drive->id == NULL) {
1da177e4
LT
580 printk(KERN_ERR "ide: out of memory for id data.\n");
581 return 0;
582 }
4dde4492
BZ
583
584 m = (char *)&drive->id[ATA_ID_PROD];
585 strcpy(m, "UNKNOWN");
586
1da177e4 587 /* skip probing? */
97100fc8 588 if ((drive->dev_flags & IDE_DFLAG_NOPROBE) == 0) {
c36a7e98 589retry:
1da177e4 590 /* if !(success||timed-out) */
aaaade3f 591 if (do_probe(drive, ATA_CMD_ID_ATA) >= 2)
1da177e4 592 /* look for ATAPI device */
aaaade3f 593 (void)do_probe(drive, ATA_CMD_ID_ATAPI);
c36a7e98 594
97100fc8 595 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
1da177e4
LT
596 /* drive not found */
597 return 0;
4dde4492 598
c36a7e98 599 if (strstr(m, "E X A B Y T E N E S T")) {
78595575 600 enable_nest(drive);
c36a7e98
BZ
601 goto retry;
602 }
603
1da177e4 604 /* identification failed? */
97100fc8 605 if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
1da177e4
LT
606 if (drive->media == ide_disk) {
607 printk(KERN_INFO "%s: non-IDE drive, CHS=%d/%d/%d\n",
608 drive->name, drive->cyl,
609 drive->head, drive->sect);
610 } else if (drive->media == ide_cdrom) {
611 printk(KERN_INFO "%s: ATAPI cdrom (?)\n", drive->name);
612 } else {
613 /* nuke it */
614 printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name);
97100fc8 615 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
1da177e4
LT
616 }
617 }
618 /* drive was found */
619 }
97100fc8
BZ
620
621 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
1da177e4 622 return 0;
97100fc8 623
1da177e4 624 /* The drive wasn't being helpful. Add generic info only */
97100fc8 625 if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
1da177e4
LT
626 generic_id(drive);
627 return 1;
628 }
629
630 if (drive->media == ide_disk) {
631 ide_disk_init_chs(drive);
632 ide_disk_init_mult_count(drive);
633 }
634
97100fc8 635 return !!(drive->dev_flags & IDE_DFLAG_PRESENT);
1da177e4
LT
636}
637
fc410698 638static void hwif_release_dev(struct device *dev)
1da177e4
LT
639{
640 ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
641
f36d4024 642 complete(&hwif->gendev_rel_comp);
1da177e4
LT
643}
644
f74c9141 645static int ide_register_port(ide_hwif_t *hwif)
1da177e4 646{
349ae23f
RD
647 int ret;
648
1da177e4 649 /* register with global device tree */
dc09c784 650 dev_set_name(&hwif->gendev, hwif->name);
1da177e4 651 hwif->gendev.driver_data = hwif;
96d40941 652 hwif->gendev.parent = hwif->dev;
1da177e4 653 hwif->gendev.release = hwif_release_dev;
96d40941 654
349ae23f 655 ret = device_register(&hwif->gendev);
f74c9141 656 if (ret < 0) {
349ae23f 657 printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
eb63963a 658 __func__, ret);
f74c9141
BZ
659 goto out;
660 }
661
3ee074bf
GKH
662 hwif->portdev = device_create(ide_port_class, &hwif->gendev,
663 MKDEV(0, 0), hwif, hwif->name);
f74c9141
BZ
664 if (IS_ERR(hwif->portdev)) {
665 ret = PTR_ERR(hwif->portdev);
666 device_unregister(&hwif->gendev);
667 }
f74c9141
BZ
668out:
669 return ret;
1da177e4
LT
670}
671
c860a8f2
BZ
672/**
673 * ide_port_wait_ready - wait for port to become ready
674 * @hwif: IDE port
675 *
676 * This is needed on some PPCs and a bunch of BIOS-less embedded
677 * platforms. Typical cases are:
678 *
679 * - The firmware hard reset the disk before booting the kernel,
680 * the drive is still doing it's poweron-reset sequence, that
681 * can take up to 30 seconds.
682 *
683 * - The firmware does nothing (or no firmware), the device is
684 * still in POST state (same as above actually).
685 *
686 * - Some CD/DVD/Writer combo drives tend to drive the bus during
687 * their reset sequence even when they are non-selected slave
688 * devices, thus preventing discovery of the main HD.
689 *
690 * Doing this wait-for-non-busy should not harm any existing
691 * configuration and fix some issues like the above.
692 *
693 * BenH.
694 *
695 * Returns 0 on success, error code (< 0) otherwise.
696 */
697
698static int ide_port_wait_ready(ide_hwif_t *hwif)
1da177e4 699{
8266105b 700 int unit, rc;
1da177e4
LT
701
702 printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name);
703
704 /* Let HW settle down a bit from whatever init state we
705 * come from */
706 mdelay(2);
707
708 /* Wait for BSY bit to go away, spec timeout is 30 seconds,
709 * I know of at least one disk who takes 31 seconds, I use 35
710 * here to be safe
711 */
712 rc = ide_wait_not_busy(hwif, 35000);
713 if (rc)
714 return rc;
715
716 /* Now make sure both master & slave are ready */
8266105b
JS
717 for (unit = 0; unit < MAX_DRIVES; unit++) {
718 ide_drive_t *drive = &hwif->drives[unit];
719
720 /* Ignore disks that we will not probe for later. */
97100fc8
BZ
721 if ((drive->dev_flags & IDE_DFLAG_NOPROBE) == 0 ||
722 (drive->dev_flags & IDE_DFLAG_PRESENT)) {
8266105b 723 SELECT_DRIVE(drive);
374e042c 724 hwif->tp_ops->set_irq(hwif, 1);
8266105b
JS
725 mdelay(2);
726 rc = ide_wait_not_busy(hwif, 35000);
727 if (rc)
728 goto out;
729 } else
730 printk(KERN_DEBUG "%s: ide_wait_not_busy() skipped\n",
731 drive->name);
732 }
733out:
1da177e4 734 /* Exit function with master reselected (let's be sane) */
8266105b
JS
735 if (unit)
736 SELECT_DRIVE(&hwif->drives[0]);
737
1da177e4
LT
738 return rc;
739}
740
741/**
742 * ide_undecoded_slave - look for bad CF adapters
4dde4492 743 * @dev1: slave device
1da177e4
LT
744 *
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.
748 */
749
4dde4492 750void ide_undecoded_slave(ide_drive_t *dev1)
1da177e4 751{
4dde4492 752 ide_drive_t *dev0 = &dev1->hwif->drives[0];
1da177e4 753
97100fc8 754 if ((dev1->dn & 1) == 0 || (dev0->dev_flags & IDE_DFLAG_PRESENT) == 0)
1da177e4
LT
755 return;
756
757 /* If the models don't match they are not the same product */
4dde4492
BZ
758 if (strcmp((char *)&dev0->id[ATA_ID_PROD],
759 (char *)&dev1->id[ATA_ID_PROD]))
1da177e4
LT
760 return;
761
762 /* Serial numbers do not match */
4dde4492
BZ
763 if (strncmp((char *)&dev0->id[ATA_ID_SERNO],
764 (char *)&dev1->id[ATA_ID_SERNO], ATA_ID_SERNO_LEN))
1da177e4
LT
765 return;
766
767 /* No serial number, thankfully very rare for CF */
4dde4492 768 if (*(char *)&dev0->id[ATA_ID_SERNO] == 0)
1da177e4
LT
769 return;
770
771 /* Appears to be an IDE flash adapter with decode bugs */
772 printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n");
773
97100fc8 774 dev1->dev_flags &= ~IDE_DFLAG_PRESENT;
1da177e4
LT
775}
776
777EXPORT_SYMBOL_GPL(ide_undecoded_slave);
778
9d501529 779static int ide_probe_port(ide_hwif_t *hwif)
1da177e4 780{
1da177e4
LT
781 unsigned long flags;
782 unsigned int irqd;
a14dc574
BZ
783 int unit, rc = -ENODEV;
784
785 BUG_ON(hwif->present);
1da177e4 786
97100fc8
BZ
787 if ((hwif->drives[0].dev_flags & IDE_DFLAG_NOPROBE) &&
788 (hwif->drives[1].dev_flags & IDE_DFLAG_NOPROBE))
9d501529 789 return -EACCES;
1da177e4 790
1da177e4
LT
791 /*
792 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
793 * we'll install our IRQ driver much later...
794 */
795 irqd = hwif->irq;
796 if (irqd)
797 disable_irq(hwif->irq);
798
54cc1428
BZ
799 local_irq_save(flags);
800 local_irq_enable_in_hardirq();
1da177e4 801
c860a8f2 802 if (ide_port_wait_ready(hwif) == -EBUSY)
1da177e4
LT
803 printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
804
805 /*
f367bed0
BZ
806 * Second drive should only exist if first drive was found,
807 * but a lot of cdrom drives are configured as single slaves.
1da177e4 808 */
f367bed0 809 for (unit = 0; unit < MAX_DRIVES; ++unit) {
1da177e4 810 ide_drive_t *drive = &hwif->drives[unit];
123995b9 811
1da177e4 812 (void) probe_for_drive(drive);
97100fc8 813 if (drive->dev_flags & IDE_DFLAG_PRESENT)
a14dc574 814 rc = 0;
1da177e4 815 }
e460a597 816
1da177e4 817 local_irq_restore(flags);
e460a597 818
1da177e4
LT
819 /*
820 * Use cached IRQ number. It might be (and is...) changed by probe
821 * code above
822 */
823 if (irqd)
824 enable_irq(irqd);
825
a14dc574 826 return rc;
e84e7ea7
BZ
827}
828
829static void ide_port_tune_devices(ide_hwif_t *hwif)
830{
ac95beed 831 const struct ide_port_ops *port_ops = hwif->port_ops;
e84e7ea7
BZ
832 int unit;
833
f01393e4
BZ
834 for (unit = 0; unit < MAX_DRIVES; unit++) {
835 ide_drive_t *drive = &hwif->drives[unit];
836
97100fc8
BZ
837 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
838 if (port_ops && port_ops->quirkproc)
839 port_ops->quirkproc(drive);
840 }
f01393e4 841 }
0380dad4 842
1da177e4
LT
843 for (unit = 0; unit < MAX_DRIVES; ++unit) {
844 ide_drive_t *drive = &hwif->drives[unit];
845
97100fc8 846 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
207daeaa 847 ide_set_max_pio(drive);
1da177e4 848
97100fc8 849 drive->dev_flags |= IDE_DFLAG_NICE1;
1da177e4 850
5e37bdc0 851 if (hwif->dma_ops)
8c0697cc 852 ide_set_dma(drive);
1da177e4
LT
853 }
854 }
208a08f7
KG
855
856 for (unit = 0; unit < MAX_DRIVES; ++unit) {
857 ide_drive_t *drive = &hwif->drives[unit];
858
97100fc8
BZ
859 if ((hwif->host_flags & IDE_HFLAG_NO_IO_32BIT) ||
860 drive->id[ATA_ID_DWORD_IO])
861 drive->dev_flags |= IDE_DFLAG_NO_IO_32BIT;
208a08f7 862 else
97100fc8 863 drive->dev_flags &= ~IDE_DFLAG_NO_IO_32BIT;
208a08f7 864 }
1da177e4
LT
865}
866
1da177e4
LT
867/*
868 * init request queue
869 */
870static int ide_init_queue(ide_drive_t *drive)
871{
165125e1 872 struct request_queue *q;
898ec223 873 ide_hwif_t *hwif = drive->hwif;
1da177e4
LT
874 int max_sectors = 256;
875 int max_sg_entries = PRD_ENTRIES;
876
877 /*
878 * Our default set up assumes the normal IDE case,
879 * that is 64K segmenting, standard PRD setup
880 * and LBA28. Some drivers then impose their own
881 * limits and LBA48 we could raise it but as yet
882 * do not.
883 */
1946089a 884
201bffa4 885 q = blk_init_queue_node(do_ide_request, NULL, hwif_to_node(hwif));
1da177e4
LT
886 if (!q)
887 return 1;
888
889 q->queuedata = drive;
890 blk_queue_segment_boundary(q, 0xffff);
891
1da177e4
LT
892 if (hwif->rqsize < max_sectors)
893 max_sectors = hwif->rqsize;
894 blk_queue_max_sectors(q, max_sectors);
895
896#ifdef CONFIG_PCI
897 /* When we have an IOMMU, we may have a problem where pci_map_sg()
898 * creates segments that don't completely match our boundary
899 * requirements and thus need to be broken up again. Because it
900 * doesn't align properly either, we may actually have to break up
901 * to more segments than what was we got in the first place, a max
902 * worst case is twice as many.
903 * This will be fixed once we teach pci_map_sg() about our boundary
904 * requirements, hopefully soon. *FIXME*
905 */
906 if (!PCI_DMA_BUS_IS_PHYS)
907 max_sg_entries >>= 1;
908#endif /* CONFIG_PCI */
909
910 blk_queue_max_hw_segments(q, max_sg_entries);
911 blk_queue_max_phys_segments(q, max_sg_entries);
912
913 /* assign drive queue */
914 drive->queue = q;
915
916 /* needs drive->queue to be set */
917 ide_toggle_bounce(drive, 1);
918
1da177e4
LT
919 return 0;
920}
921
b40d1b88
BZ
922static DEFINE_MUTEX(ide_cfg_mtx);
923
d5bc6592
BZ
924/*
925 * For any present drive:
926 * - allocate the block device queue
d5bc6592 927 */
e415e495 928static int ide_port_setup_devices(ide_hwif_t *hwif)
d5bc6592 929{
e415e495 930 int i, j = 0;
d5bc6592 931
26042d05 932 mutex_lock(&ide_cfg_mtx);
d5bc6592
BZ
933 for (i = 0; i < MAX_DRIVES; i++) {
934 ide_drive_t *drive = &hwif->drives[i];
935
97100fc8 936 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
d5bc6592
BZ
937 continue;
938
939 if (ide_init_queue(drive)) {
940 printk(KERN_ERR "ide: failed to init %s\n",
941 drive->name);
e415e495
EO
942 kfree(drive->id);
943 drive->id = NULL;
944 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
d5bc6592
BZ
945 continue;
946 }
947
e415e495 948 j++;
d5bc6592 949 }
26042d05 950 mutex_unlock(&ide_cfg_mtx);
e415e495
EO
951
952 return j;
d5bc6592
BZ
953}
954
1da177e4 955/*
b65fac32 956 * This routine sets up the IRQ for an IDE interface.
1da177e4
LT
957 */
958static int init_irq (ide_hwif_t *hwif)
959{
4c3032d8 960 struct ide_io_ports *io_ports = &hwif->io_ports;
ae86afae 961 int sa = 0;
1da177e4 962
ef29888e 963 mutex_lock(&ide_cfg_mtx);
b65fac32 964 spin_lock_init(&hwif->lock);
af1cbba3 965
b65fac32
BZ
966 init_timer(&hwif->timer);
967 hwif->timer.function = &ide_timer_expiry;
968 hwif->timer.data = (unsigned long)hwif;
af1cbba3 969
7b892806 970#if defined(__mc68000__)
ae86afae 971 sa = IRQF_SHARED;
e1771e20 972#endif /* __mc68000__ */
1da177e4 973
ae86afae
BZ
974 if (hwif->chipset == ide_pci)
975 sa = IRQF_SHARED;
1da177e4 976
ae86afae
BZ
977 if (io_ports->ctl_addr)
978 hwif->tp_ops->set_irq(hwif, 1);
1da177e4 979
ae86afae 980 if (request_irq(hwif->irq, &ide_intr, sa, hwif->name, hwif))
b65fac32 981 goto out_up;
1da177e4 982
8a0e7e14
BZ
983 if (!hwif->rqsize) {
984 if ((hwif->host_flags & IDE_HFLAG_NO_LBA48) ||
985 (hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA))
986 hwif->rqsize = 256;
987 else
988 hwif->rqsize = 65536;
989 }
990
7b892806 991#if !defined(__mc68000__)
1b8ebad8 992 printk(KERN_INFO "%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
4c3032d8
BZ
993 io_ports->data_addr, io_ports->status_addr,
994 io_ports->ctl_addr, hwif->irq);
1da177e4 995#else
1b8ebad8 996 printk(KERN_INFO "%s at 0x%08lx on irq %d", hwif->name,
4c3032d8 997 io_ports->data_addr, hwif->irq);
7b892806 998#endif /* __mc68000__ */
b65fac32
BZ
999 if (hwif->host->host_flags & IDE_HFLAG_SERIALIZE)
1000 printk(KERN_CONT " (serialized)");
1b8ebad8 1001 printk(KERN_CONT "\n");
d5bc6592 1002
ef29888e 1003 mutex_unlock(&ide_cfg_mtx);
1da177e4 1004 return 0;
1da177e4 1005out_up:
ef29888e 1006 mutex_unlock(&ide_cfg_mtx);
1da177e4
LT
1007 return 1;
1008}
1009
1010static int ata_lock(dev_t dev, void *data)
1011{
1012 /* FIXME: we want to pin hwif down */
1013 return 0;
1014}
1015
1016static struct kobject *ata_probe(dev_t dev, int *part, void *data)
1017{
1018 ide_hwif_t *hwif = data;
1019 int unit = *part >> PARTN_BITS;
1020 ide_drive_t *drive = &hwif->drives[unit];
97100fc8
BZ
1021
1022 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
1da177e4
LT
1023 return NULL;
1024
1025 if (drive->media == ide_disk)
1026 request_module("ide-disk");
1da177e4
LT
1027 if (drive->media == ide_cdrom || drive->media == ide_optical)
1028 request_module("ide-cd");
1029 if (drive->media == ide_tape)
1030 request_module("ide-tape");
1031 if (drive->media == ide_floppy)
1032 request_module("ide-floppy");
1033
1034 return NULL;
1035}
1036
1037static struct kobject *exact_match(dev_t dev, int *part, void *data)
1038{
1039 struct gendisk *p = data;
1040 *part &= (1 << PARTN_BITS) - 1;
ed9e1982 1041 return &disk_to_dev(p)->kobj;
1da177e4
LT
1042}
1043
1044static int exact_lock(dev_t dev, void *data)
1045{
1046 struct gendisk *p = data;
1047
1048 if (!get_disk(p))
1049 return -1;
1050 return 0;
1051}
1052
1053void ide_register_region(struct gendisk *disk)
1054{
1055 blk_register_region(MKDEV(disk->major, disk->first_minor),
1056 disk->minors, NULL, exact_match, exact_lock, disk);
1057}
1058
1059EXPORT_SYMBOL_GPL(ide_register_region);
1060
1061void ide_unregister_region(struct gendisk *disk)
1062{
1063 blk_unregister_region(MKDEV(disk->major, disk->first_minor),
1064 disk->minors);
1065}
1066
1067EXPORT_SYMBOL_GPL(ide_unregister_region);
1068
1069void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
1070{
1071 ide_hwif_t *hwif = drive->hwif;
7f612f27 1072 unsigned int unit = drive->dn & 1;
1da177e4
LT
1073
1074 disk->major = hwif->major;
1075 disk->first_minor = unit << PARTN_BITS;
1076 sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit);
1077 disk->queue = drive->queue;
1078}
1079
1080EXPORT_SYMBOL_GPL(ide_init_disk);
1081
1082static void drive_release_dev (struct device *dev)
1083{
1084 ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
b65fac32 1085 ide_hwif_t *hwif = drive->hwif;
1da177e4 1086
5b0c4b30
BZ
1087 ide_proc_unregister_device(drive);
1088
b65fac32 1089 spin_lock_irq(&hwif->lock);
6044ec88
JJ
1090 kfree(drive->id);
1091 drive->id = NULL;
97100fc8 1092 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
8604affd 1093 /* Messed up locking ... */
b65fac32 1094 spin_unlock_irq(&hwif->lock);
8604affd 1095 blk_cleanup_queue(drive->queue);
b65fac32 1096 spin_lock_irq(&hwif->lock);
8604affd 1097 drive->queue = NULL;
b65fac32 1098 spin_unlock_irq(&hwif->lock);
8604affd 1099
f36d4024 1100 complete(&drive->gendev_rel_comp);
1da177e4
LT
1101}
1102
1da177e4
LT
1103static int hwif_init(ide_hwif_t *hwif)
1104{
1105 int old_irq;
1106
1da177e4 1107 if (!hwif->irq) {
a861beb1 1108 hwif->irq = __ide_default_irq(hwif->io_ports.data_addr);
4c3032d8 1109 if (!hwif->irq) {
1b8ebad8 1110 printk(KERN_ERR "%s: disabled, no IRQ\n", hwif->name);
48535651 1111 return 0;
1da177e4
LT
1112 }
1113 }
1da177e4 1114
1da177e4
LT
1115 if (register_blkdev(hwif->major, hwif->name))
1116 return 0;
1117
1118 if (!hwif->sg_max_nents)
1119 hwif->sg_max_nents = PRD_ENTRIES;
1120
45711f1a 1121 hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents,
1da177e4
LT
1122 GFP_KERNEL);
1123 if (!hwif->sg_table) {
1124 printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name);
1125 goto out;
1126 }
45711f1a
JA
1127
1128 sg_init_table(hwif->sg_table, hwif->sg_max_nents);
1da177e4
LT
1129
1130 if (init_irq(hwif) == 0)
1131 goto done;
1132
1133 old_irq = hwif->irq;
1134 /*
1135 * It failed to initialise. Find the default IRQ for
1136 * this port and try that.
1137 */
a861beb1 1138 hwif->irq = __ide_default_irq(hwif->io_ports.data_addr);
4c3032d8 1139 if (!hwif->irq) {
1b8ebad8 1140 printk(KERN_ERR "%s: disabled, unable to get IRQ %d\n",
1da177e4
LT
1141 hwif->name, old_irq);
1142 goto out;
1143 }
1144 if (init_irq(hwif)) {
1b8ebad8 1145 printk(KERN_ERR "%s: probed IRQ %d and default IRQ %d failed\n",
1da177e4
LT
1146 hwif->name, old_irq, hwif->irq);
1147 goto out;
1148 }
1b8ebad8 1149 printk(KERN_WARNING "%s: probed IRQ %d failed, using default\n",
1da177e4
LT
1150 hwif->name, hwif->irq);
1151
1152done:
3a4e7c96
BZ
1153 blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
1154 THIS_MODULE, ata_probe, ata_lock, hwif);
1da177e4
LT
1155 return 1;
1156
1157out:
1158 unregister_blkdev(hwif->major, hwif->name);
1159 return 0;
1160}
1161
9601a607
BZ
1162static void hwif_register_devices(ide_hwif_t *hwif)
1163{
1164 unsigned int i;
1165
1166 for (i = 0; i < MAX_DRIVES; i++) {
1167 ide_drive_t *drive = &hwif->drives[i];
c5d70cc7
BZ
1168 struct device *dev = &drive->gendev;
1169 int ret;
9601a607 1170
97100fc8 1171 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
c5d70cc7 1172 continue;
9601a607 1173
dc09c784 1174 dev_set_name(dev, "%u.%u", hwif->index, i);
c5d70cc7
BZ
1175 dev->parent = &hwif->gendev;
1176 dev->bus = &ide_bus_type;
1177 dev->driver_data = drive;
1178 dev->release = drive_release_dev;
1179
1180 ret = device_register(dev);
1181 if (ret < 0)
1182 printk(KERN_WARNING "IDE: %s: device_register error: "
1183 "%d\n", __func__, ret);
9601a607
BZ
1184 }
1185}
1186
7704ca2a
BZ
1187static void ide_port_init_devices(ide_hwif_t *hwif)
1188{
ac95beed 1189 const struct ide_port_ops *port_ops = hwif->port_ops;
7704ca2a
BZ
1190 int i;
1191
1192 for (i = 0; i < MAX_DRIVES; i++) {
1193 ide_drive_t *drive = &hwif->drives[i];
1194
123995b9
BZ
1195 drive->dn = i + hwif->channel * 2;
1196
7704ca2a
BZ
1197 if (hwif->host_flags & IDE_HFLAG_IO_32BIT)
1198 drive->io_32bit = 1;
1199 if (hwif->host_flags & IDE_HFLAG_UNMASK_IRQS)
97100fc8 1200 drive->dev_flags |= IDE_DFLAG_UNMASK;
807b90d0 1201 if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS)
97100fc8 1202 drive->dev_flags |= IDE_DFLAG_NO_UNMASK;
1f2cf8b0 1203
e6d95bd1
BZ
1204 if (port_ops && port_ops->init_dev)
1205 port_ops->init_dev(drive);
1206 }
7704ca2a
BZ
1207}
1208
c413b9b9
BZ
1209static void ide_init_port(ide_hwif_t *hwif, unsigned int port,
1210 const struct ide_port_info *d)
8447d9d5 1211{
b7691646 1212 hwif->channel = port;
c413b9b9
BZ
1213
1214 if (d->chipset)
1215 hwif->chipset = d->chipset;
1216
1217 if (d->init_iops)
1218 d->init_iops(hwif);
1219
c413b9b9
BZ
1220 if ((!hwif->irq && (d->host_flags & IDE_HFLAG_LEGACY_IRQS)) ||
1221 (d->host_flags & IDE_HFLAG_FORCE_LEGACY_IRQS))
1222 hwif->irq = port ? 15 : 14;
1223
23f8e4bf
BZ
1224 /* ->host_flags may be set by ->init_iops (or even earlier...) */
1225 hwif->host_flags |= d->host_flags;
c413b9b9
BZ
1226 hwif->pio_mask = d->pio_mask;
1227
374e042c
BZ
1228 if (d->tp_ops)
1229 hwif->tp_ops = d->tp_ops;
1230
ac95beed
BZ
1231 /* ->set_pio_mode for DTC2278 is currently limited to port 0 */
1232 if (hwif->chipset != ide_dtc2278 || hwif->channel == 0)
1233 hwif->port_ops = d->port_ops;
1234
c413b9b9
BZ
1235 hwif->swdma_mask = d->swdma_mask;
1236 hwif->mwdma_mask = d->mwdma_mask;
1237 hwif->ultra_mask = d->udma_mask;
1238
b123f56e
BZ
1239 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
1240 int rc;
1241
1242 if (d->init_dma)
1243 rc = d->init_dma(hwif, d);
1244 else
1245 rc = ide_hwif_setup_dma(hwif, d);
1246
1247 if (rc < 0) {
1248 printk(KERN_INFO "%s: DMA disabled\n", hwif->name);
ebb00fb5 1249 hwif->dma_base = 0;
b123f56e
BZ
1250 hwif->swdma_mask = 0;
1251 hwif->mwdma_mask = 0;
1252 hwif->ultra_mask = 0;
5e37bdc0
BZ
1253 } else if (d->dma_ops)
1254 hwif->dma_ops = d->dma_ops;
b123f56e 1255 }
c413b9b9 1256
1024c5f4 1257 if ((d->host_flags & IDE_HFLAG_SERIALIZE) ||
702c026b
BZ
1258 ((d->host_flags & IDE_HFLAG_SERIALIZE_DMA) && hwif->dma_base))
1259 hwif->host->host_flags |= IDE_HFLAG_SERIALIZE;
1024c5f4 1260
6b492496
BZ
1261 if (d->max_sectors)
1262 hwif->rqsize = d->max_sectors;
c413b9b9
BZ
1263
1264 /* call chipset specific routine for each enabled port */
1265 if (d->init_hwif)
1266 d->init_hwif(hwif);
c7f6f21a 1267}
bfa14b42 1268
c7f6f21a
BZ
1269static void ide_port_cable_detect(ide_hwif_t *hwif)
1270{
ac95beed
BZ
1271 const struct ide_port_ops *port_ops = hwif->port_ops;
1272
1273 if (port_ops && port_ops->cable_detect && (hwif->ultra_mask & 0x78)) {
bfa14b42 1274 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
ac95beed 1275 hwif->cbl = port_ops->cable_detect(hwif);
bfa14b42 1276 }
c413b9b9
BZ
1277}
1278
b40d1b88
BZ
1279static const u8 ide_hwif_to_major[] =
1280 { IDE0_MAJOR, IDE1_MAJOR, IDE2_MAJOR, IDE3_MAJOR, IDE4_MAJOR,
1281 IDE5_MAJOR, IDE6_MAJOR, IDE7_MAJOR, IDE8_MAJOR, IDE9_MAJOR };
1282
1283static void ide_port_init_devices_data(ide_hwif_t *hwif)
1284{
1285 int unit;
1286
1287 for (unit = 0; unit < MAX_DRIVES; ++unit) {
1288 ide_drive_t *drive = &hwif->drives[unit];
1289 u8 j = (hwif->index * MAX_DRIVES) + unit;
1290
1291 memset(drive, 0, sizeof(*drive));
1292
1293 drive->media = ide_disk;
1294 drive->select = (unit << 4) | ATA_DEVICE_OBS;
1295 drive->hwif = hwif;
1296 drive->ready_stat = ATA_DRDY;
1297 drive->bad_wstat = BAD_W_STAT;
1298 drive->special.b.recalibrate = 1;
1299 drive->special.b.set_geometry = 1;
1300 drive->name[0] = 'h';
1301 drive->name[1] = 'd';
1302 drive->name[2] = 'a' + j;
1303 drive->max_failures = IDE_DEFAULT_MAX_FAILURES;
1304
1305 INIT_LIST_HEAD(&drive->list);
1306 init_completion(&drive->gendev_rel_comp);
1307 }
1308}
1309
1310static void ide_init_port_data(ide_hwif_t *hwif, unsigned int index)
1311{
1312 /* bulk initialize hwif & drive info with zeros */
1313 memset(hwif, 0, sizeof(ide_hwif_t));
1314
1315 /* fill in any non-zero initial values */
1316 hwif->index = index;
1317 hwif->major = ide_hwif_to_major[index];
1318
1319 hwif->name[0] = 'i';
1320 hwif->name[1] = 'd';
1321 hwif->name[2] = 'e';
1322 hwif->name[3] = '0' + index;
1323
1324 init_completion(&hwif->gendev_rel_comp);
1325
1326 hwif->tp_ops = &default_tp_ops;
1327
1328 ide_port_init_devices_data(hwif);
1329}
1330
1331static void ide_init_port_hw(ide_hwif_t *hwif, hw_regs_t *hw)
1332{
1333 memcpy(&hwif->io_ports, &hw->io_ports, sizeof(hwif->io_ports));
1334 hwif->irq = hw->irq;
1335 hwif->chipset = hw->chipset;
1336 hwif->dev = hw->dev;
1337 hwif->gendev.parent = hw->parent ? hw->parent : hw->dev;
1338 hwif->ack_intr = hw->ack_intr;
1339 hwif->config_data = hw->config;
1340}
1341
8cdf3100
BZ
1342static unsigned int ide_indexes;
1343
fe80b937 1344/**
8cdf3100 1345 * ide_find_port_slot - find free port slot
fe80b937
BZ
1346 * @d: IDE port info
1347 *
8cdf3100 1348 * Return the new port slot index or -ENOENT if we are out of free slots.
fe80b937
BZ
1349 */
1350
8cdf3100 1351static int ide_find_port_slot(const struct ide_port_info *d)
fe80b937 1352{
8cdf3100 1353 int idx = -ENOENT;
fe80b937 1354 u8 bootable = (d && (d->host_flags & IDE_HFLAG_NON_BOOTABLE)) ? 0 : 1;
8cdf3100 1355 u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;;
fe80b937
BZ
1356
1357 /*
1358 * Claim an unassigned slot.
1359 *
1360 * Give preference to claiming other slots before claiming ide0/ide1,
1361 * just in case there's another interface yet-to-be-scanned
1362 * which uses ports 0x1f0/0x170 (the ide0/ide1 defaults).
1363 *
1364 * Unless there is a bootable card that does not use the standard
1365 * ports 0x1f0/0x170 (the ide0/ide1 defaults).
1366 */
8cdf3100 1367 mutex_lock(&ide_cfg_mtx);
75d21fff
BZ
1368 if (bootable) {
1369 if ((ide_indexes | i) != (1 << MAX_HWIFS) - 1)
1370 idx = ffz(ide_indexes | i);
fe80b937 1371 } else {
75d21fff
BZ
1372 if ((ide_indexes | 3) != (1 << MAX_HWIFS) - 1)
1373 idx = ffz(ide_indexes | 3);
1374 else if ((ide_indexes & 3) != 3)
1375 idx = ffz(ide_indexes);
fe80b937 1376 }
8cdf3100
BZ
1377 if (idx >= 0)
1378 ide_indexes |= (1 << idx);
1379 mutex_unlock(&ide_cfg_mtx);
fe80b937 1380
8cdf3100
BZ
1381 return idx;
1382}
256c5f8e 1383
8cdf3100
BZ
1384static void ide_free_port_slot(int idx)
1385{
1386 mutex_lock(&ide_cfg_mtx);
1387 ide_indexes &= ~(1 << idx);
1388 mutex_unlock(&ide_cfg_mtx);
fe80b937 1389}
fe80b937 1390
a36223b0 1391struct ide_host *ide_host_alloc(const struct ide_port_info *d, hw_regs_t **hws)
48c3c107
BZ
1392{
1393 struct ide_host *host;
1394 int i;
1395
1396 host = kzalloc(sizeof(*host), GFP_KERNEL);
1397 if (host == NULL)
1398 return NULL;
1399
a36223b0 1400 for (i = 0; i < MAX_HOST_PORTS; i++) {
48c3c107 1401 ide_hwif_t *hwif;
8cdf3100 1402 int idx;
48c3c107
BZ
1403
1404 if (hws[i] == NULL)
1405 continue;
1406
18de1017
BZ
1407 hwif = kzalloc(sizeof(*hwif), GFP_KERNEL);
1408 if (hwif == NULL)
1409 continue;
1410
8cdf3100
BZ
1411 idx = ide_find_port_slot(d);
1412 if (idx < 0) {
1413 printk(KERN_ERR "%s: no free slot for interface\n",
1414 d ? d->name : "ide");
18de1017 1415 kfree(hwif);
8cdf3100 1416 continue;
48c3c107 1417 }
8cdf3100 1418
8cdf3100
BZ
1419 ide_init_port_data(hwif, idx);
1420
08da591e
BZ
1421 hwif->host = host;
1422
8cdf3100
BZ
1423 host->ports[i] = hwif;
1424 host->n_ports++;
48c3c107
BZ
1425 }
1426
1427 if (host->n_ports == 0) {
1428 kfree(host);
1429 return NULL;
1430 }
1431
6cdf6eb3
BZ
1432 if (hws[0])
1433 host->dev[0] = hws[0]->dev;
1434
feb22b7f
BZ
1435 if (d) {
1436 host->init_chipset = d->init_chipset;
ef0b0427 1437 host->host_flags = d->host_flags;
feb22b7f 1438 }
ef0b0427 1439
48c3c107
BZ
1440 return host;
1441}
48c3c107
BZ
1442EXPORT_SYMBOL_GPL(ide_host_alloc);
1443
1444int ide_host_register(struct ide_host *host, const struct ide_port_info *d,
1445 hw_regs_t **hws)
c413b9b9
BZ
1446{
1447 ide_hwif_t *hwif, *mate = NULL;
e0d00207 1448 int i, j = 0;
8447d9d5 1449
a36223b0 1450 for (i = 0; i < MAX_HOST_PORTS; i++) {
e0d00207 1451 hwif = host->ports[i];
48c3c107 1452
e0d00207 1453 if (hwif == NULL) {
c413b9b9
BZ
1454 mate = NULL;
1455 continue;
1456 }
1457
c97c6aca 1458 ide_init_port_hw(hwif, hws[i]);
9fd91d95
BZ
1459 ide_port_apply_params(hwif);
1460
1461 if (d == NULL) {
1462 mate = NULL;
123995b9
BZ
1463 } else {
1464 if ((i & 1) && mate) {
1465 hwif->mate = mate;
1466 mate->mate = hwif;
1467 }
9fd91d95 1468
123995b9 1469 mate = (i & 1) ? NULL : hwif;
c413b9b9 1470
123995b9
BZ
1471 ide_init_port(hwif, i & 1, d);
1472 ide_port_cable_detect(hwif);
1473 }
c413b9b9 1474
7704ca2a 1475 ide_port_init_devices(hwif);
c413b9b9
BZ
1476 }
1477
a36223b0 1478 for (i = 0; i < MAX_HOST_PORTS; i++) {
e0d00207 1479 hwif = host->ports[i];
ba6560aa 1480
e0d00207
BZ
1481 if (hwif == NULL)
1482 continue;
139ddfca 1483
eb716beb
BZ
1484 if (ide_probe_port(hwif) == 0)
1485 hwif->present = 1;
a14dc574
BZ
1486
1487 if (hwif->chipset != ide_4drives || !hwif->mate ||
1488 !hwif->mate->present)
1489 ide_register_port(hwif);
1490
eb716beb
BZ
1491 if (hwif->present)
1492 ide_port_tune_devices(hwif);
2e13093a 1493 }
ba6560aa 1494
a36223b0 1495 for (i = 0; i < MAX_HOST_PORTS; i++) {
e0d00207 1496 hwif = host->ports[i];
2e13093a 1497
e0d00207
BZ
1498 if (hwif == NULL)
1499 continue;
ba6560aa
BZ
1500
1501 if (hwif_init(hwif) == 0) {
1502 printk(KERN_INFO "%s: failed to initialize IDE "
1503 "interface\n", hwif->name);
48535651 1504 hwif->present = 0;
ba6560aa
BZ
1505 continue;
1506 }
decdc3f0 1507
eb716beb 1508 if (hwif->present)
e415e495
EO
1509 if (ide_port_setup_devices(hwif) == 0) {
1510 hwif->present = 0;
1511 continue;
1512 }
1513
1514 j++;
26042d05 1515
decdc3f0 1516 ide_acpi_init(hwif);
eb716beb
BZ
1517
1518 if (hwif->present)
1519 ide_acpi_port_init_devices(hwif);
2e13093a
BZ
1520 }
1521
a36223b0 1522 for (i = 0; i < MAX_HOST_PORTS; i++) {
e0d00207 1523 hwif = host->ports[i];
2e13093a 1524
e0d00207
BZ
1525 if (hwif == NULL)
1526 continue;
ba6560aa 1527
eb716beb 1528 if (hwif->present)
ba6560aa 1529 hwif_register_devices(hwif);
8447d9d5
BZ
1530 }
1531
a36223b0 1532 for (i = 0; i < MAX_HOST_PORTS; i++) {
e0d00207 1533 hwif = host->ports[i];
327617e1 1534
e0d00207
BZ
1535 if (hwif == NULL)
1536 continue;
327617e1 1537
eb716beb
BZ
1538 ide_sysfs_register_port(hwif);
1539 ide_proc_register_port(hwif);
1540
1541 if (hwif->present)
d9270a3f 1542 ide_proc_port_register_devices(hwif);
8447d9d5
BZ
1543 }
1544
e0d00207 1545 return j ? 0 : -1;
8447d9d5 1546}
48c3c107 1547EXPORT_SYMBOL_GPL(ide_host_register);
151575e4 1548
6f904d01
BZ
1549int ide_host_add(const struct ide_port_info *d, hw_regs_t **hws,
1550 struct ide_host **hostp)
1551{
1552 struct ide_host *host;
8a69580e 1553 int rc;
6f904d01
BZ
1554
1555 host = ide_host_alloc(d, hws);
1556 if (host == NULL)
1557 return -ENOMEM;
1558
8a69580e
BZ
1559 rc = ide_host_register(host, d, hws);
1560 if (rc) {
1561 ide_host_free(host);
1562 return rc;
1563 }
6f904d01
BZ
1564
1565 if (hostp)
1566 *hostp = host;
1567
1568 return 0;
1569}
1570EXPORT_SYMBOL_GPL(ide_host_add);
1571
b40d1b88
BZ
1572static void __ide_port_unregister_devices(ide_hwif_t *hwif)
1573{
1574 int i;
1575
1576 for (i = 0; i < MAX_DRIVES; i++) {
1577 ide_drive_t *drive = &hwif->drives[i];
1578
1579 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
1580 device_unregister(&drive->gendev);
1581 wait_for_completion(&drive->gendev_rel_comp);
1582 }
1583 }
1584}
1585
1586void ide_port_unregister_devices(ide_hwif_t *hwif)
1587{
1588 mutex_lock(&ide_cfg_mtx);
1589 __ide_port_unregister_devices(hwif);
1590 hwif->present = 0;
1591 ide_port_init_devices_data(hwif);
1592 mutex_unlock(&ide_cfg_mtx);
1593}
1594EXPORT_SYMBOL_GPL(ide_port_unregister_devices);
1595
1596/**
1597 * ide_unregister - free an IDE interface
1598 * @hwif: IDE interface
1599 *
1600 * Perform the final unregister of an IDE interface.
1601 *
1602 * Locking:
1603 * The caller must not hold the IDE locks.
1604 *
1605 * It is up to the caller to be sure there is no pending I/O here,
1606 * and that the interface will not be reopened (present/vanishing
1607 * locking isn't yet done BTW).
1608 */
1609
1610static void ide_unregister(ide_hwif_t *hwif)
1611{
1612 BUG_ON(in_interrupt());
1613 BUG_ON(irqs_disabled());
1614
1615 mutex_lock(&ide_cfg_mtx);
1616
1617 if (hwif->present) {
1618 __ide_port_unregister_devices(hwif);
1619 hwif->present = 0;
1620 }
1621
1622 ide_proc_unregister_port(hwif);
1623
1624 free_irq(hwif->irq, hwif);
1625
1626 device_unregister(hwif->portdev);
1627 device_unregister(&hwif->gendev);
1628 wait_for_completion(&hwif->gendev_rel_comp);
1629
1630 /*
1631 * Remove us from the kernel's knowledge
1632 */
1633 blk_unregister_region(MKDEV(hwif->major, 0), MAX_DRIVES<<PARTN_BITS);
1634 kfree(hwif->sg_table);
1635 unregister_blkdev(hwif->major, hwif->name);
1636
1637 ide_release_dma_engine(hwif);
1638
1639 mutex_unlock(&ide_cfg_mtx);
1640}
1641
8a69580e 1642void ide_host_free(struct ide_host *host)
151575e4 1643{
8cdf3100 1644 ide_hwif_t *hwif;
151575e4 1645 int i;
8447d9d5 1646
a36223b0 1647 for (i = 0; i < MAX_HOST_PORTS; i++) {
8cdf3100
BZ
1648 hwif = host->ports[i];
1649
1650 if (hwif == NULL)
1651 continue;
1652
8cdf3100 1653 ide_free_port_slot(hwif->index);
18de1017 1654 kfree(hwif);
c97c6aca 1655 }
151575e4 1656
48c3c107 1657 kfree(host);
151575e4 1658}
8a69580e
BZ
1659EXPORT_SYMBOL_GPL(ide_host_free);
1660
1661void ide_host_remove(struct ide_host *host)
1662{
1663 int i;
1664
a36223b0 1665 for (i = 0; i < MAX_HOST_PORTS; i++) {
8a69580e
BZ
1666 if (host->ports[i])
1667 ide_unregister(host->ports[i]);
1668 }
1669
1670 ide_host_free(host);
1671}
48c3c107 1672EXPORT_SYMBOL_GPL(ide_host_remove);
2dde7861
BZ
1673
1674void ide_port_scan(ide_hwif_t *hwif)
1675{
9fd91d95 1676 ide_port_apply_params(hwif);
2dde7861
BZ
1677 ide_port_cable_detect(hwif);
1678 ide_port_init_devices(hwif);
1679
1680 if (ide_probe_port(hwif) < 0)
1681 return;
1682
1683 hwif->present = 1;
1684
1685 ide_port_tune_devices(hwif);
1686 ide_acpi_port_init_devices(hwif);
1687 ide_port_setup_devices(hwif);
1688 hwif_register_devices(hwif);
1689 ide_proc_port_register_devices(hwif);
1690}
1691EXPORT_SYMBOL_GPL(ide_port_scan);