blob: 21672001a8ad654573295f11d6b2f4c86dc5f7f4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
3 * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
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 *
Bartlomiej Zolnierkiewiczbbe4d6d2007-12-12 23:32:00 +010015 * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
16 * by Andrea Arcangeli
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#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>
FUJITA Tomonoridc817852007-10-23 09:29:58 +020035#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
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{
53 drive->id->cyls = drive->cyl;
54 drive->id->heads = drive->head;
55 drive->id->sectors = drive->sect;
56 drive->id->cur_cyls = drive->cyl;
57 drive->id->cur_heads = drive->head;
58 drive->id->cur_sectors = drive->sect;
59}
60
61static void ide_disk_init_chs(ide_drive_t *drive)
62{
63 struct hd_driveid *id = drive->id;
64
65 /* Extract geometry if we did not already have one for the drive */
66 if (!drive->cyl || !drive->head || !drive->sect) {
67 drive->cyl = drive->bios_cyl = id->cyls;
68 drive->head = drive->bios_head = id->heads;
69 drive->sect = drive->bios_sect = id->sectors;
70 }
71
72 /* Handle logical geometry translation by the drive */
73 if ((id->field_valid & 1) && id->cur_cyls &&
74 id->cur_heads && (id->cur_heads <= 16) && id->cur_sectors) {
75 drive->cyl = id->cur_cyls;
76 drive->head = id->cur_heads;
77 drive->sect = id->cur_sectors;
78 }
79
80 /* Use physical geometry if what we have still makes no sense */
81 if (drive->head > 16 && id->heads && id->heads <= 16) {
82 drive->cyl = id->cyls;
83 drive->head = id->heads;
84 drive->sect = id->sectors;
85 }
86}
87
88static void ide_disk_init_mult_count(ide_drive_t *drive)
89{
90 struct hd_driveid *id = drive->id;
91
92 drive->mult_count = 0;
93 if (id->max_multsect) {
94#ifdef CONFIG_IDEDISK_MULTI_MODE
95 id->multsect = ((id->max_multsect/2) > 1) ? id->max_multsect : 0;
96 id->multsect_valid = id->multsect ? 1 : 0;
Bartlomiej Zolnierkiewicz4ee06b72008-01-25 22:17:08 +010097 drive->mult_req = id->multsect_valid ? id->max_multsect : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 drive->special.b.set_multmode = drive->mult_req ? 1 : 0;
99#else /* original, pre IDE-NFG, per request of AC */
Bartlomiej Zolnierkiewicz4ee06b72008-01-25 22:17:08 +0100100 drive->mult_req = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 if (drive->mult_req > id->max_multsect)
102 drive->mult_req = id->max_multsect;
103 if (drive->mult_req || ((id->multsect_valid & 1) && id->multsect))
104 drive->special.b.set_multmode = 1;
105#endif
106 }
107}
108
109/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * do_identify - identify a drive
111 * @drive: drive to identify
112 * @cmd: command used
113 *
114 * Called when we have issued a drive identify command to
115 * read and parse the results. This function is run with
116 * interrupts disabled.
117 */
118
119static inline void do_identify (ide_drive_t *drive, u8 cmd)
120{
121 ide_hwif_t *hwif = HWIF(drive);
122 int bswap = 1;
123 struct hd_driveid *id;
124
125 id = drive->id;
126 /* read 512 bytes of id info */
127 hwif->ata_input_data(drive, id, SECTOR_WORDS);
128
129 drive->id_read = 1;
130 local_irq_enable();
Bartlomiej Zolnierkiewicz7b9f25b2008-02-01 23:09:28 +0100131#ifdef DEBUG
132 printk(KERN_INFO "%s: dumping identify data\n", drive->name);
133 ide_dump_identify((u8 *)id);
134#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 ide_fix_driveid(id);
136
Robert P. J. Daye71bc142007-07-09 23:17:57 +0200137#if defined (CONFIG_SCSI_EATA_PIO) || defined (CONFIG_SCSI_EATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /*
139 * EATA SCSI controllers do a hardware ATA emulation:
140 * Ignore them if there is a driver for them available.
141 */
142 if ((id->model[0] == 'P' && id->model[1] == 'M') ||
143 (id->model[0] == 'S' && id->model[1] == 'K')) {
144 printk("%s: EATA SCSI HBA %.10s\n", drive->name, id->model);
145 goto err_misc;
146 }
Robert P. J. Daye71bc142007-07-09 23:17:57 +0200147#endif /* CONFIG_SCSI_EATA || CONFIG_SCSI_EATA_PIO */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /*
150 * WIN_IDENTIFY returns little-endian info,
151 * WIN_PIDENTIFY *usually* returns little-endian info.
152 */
153 if (cmd == WIN_PIDENTIFY) {
154 if ((id->model[0] == 'N' && id->model[1] == 'E') /* NEC */
155 || (id->model[0] == 'F' && id->model[1] == 'X') /* Mitsumi */
156 || (id->model[0] == 'P' && id->model[1] == 'i'))/* Pioneer */
157 /* Vertos drives may still be weird */
158 bswap ^= 1;
159 }
160 ide_fixstring(id->model, sizeof(id->model), bswap);
161 ide_fixstring(id->fw_rev, sizeof(id->fw_rev), bswap);
162 ide_fixstring(id->serial_no, sizeof(id->serial_no), bswap);
163
Tejun Heo699b0522007-11-05 21:42:25 +0100164 /* we depend on this a lot! */
165 id->model[sizeof(id->model)-1] = '\0';
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (strstr(id->model, "E X A B Y T E N E S T"))
168 goto err_misc;
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 printk("%s: %s, ", drive->name, id->model);
171 drive->present = 1;
172 drive->dead = 0;
173
174 /*
175 * Check for an ATAPI device
176 */
177 if (cmd == WIN_PIDENTIFY) {
178 u8 type = (id->config >> 8) & 0x1f;
179 printk("ATAPI ");
180 switch (type) {
181 case ide_floppy:
182 if (!strstr(id->model, "CD-ROM")) {
183 if (!strstr(id->model, "oppy") &&
184 !strstr(id->model, "poyp") &&
185 !strstr(id->model, "ZIP"))
186 printk("cdrom or floppy?, assuming ");
187 if (drive->media != ide_cdrom) {
188 printk ("FLOPPY");
189 drive->removable = 1;
190 break;
191 }
192 }
193 /* Early cdrom models used zero */
194 type = ide_cdrom;
195 case ide_cdrom:
196 drive->removable = 1;
197#ifdef CONFIG_PPC
198 /* kludge for Apple PowerBook internal zip */
199 if (!strstr(id->model, "CD-ROM") &&
200 strstr(id->model, "ZIP")) {
201 printk ("FLOPPY");
202 type = ide_floppy;
203 break;
204 }
205#endif
206 printk ("CD/DVD-ROM");
207 break;
208 case ide_tape:
209 printk ("TAPE");
210 break;
211 case ide_optical:
212 printk ("OPTICAL");
213 drive->removable = 1;
214 break;
215 default:
216 printk("UNKNOWN (type %d)", type);
217 break;
218 }
219 printk (" drive\n");
220 drive->media = type;
221 /* an ATAPI device ignores DRDY */
222 drive->ready_stat = 0;
223 return;
224 }
225
226 /*
227 * Not an ATAPI device: looks like a "regular" hard disk
228 */
Richard Purdie98109332006-02-03 03:04:55 -0800229
230 /*
231 * 0x848a = CompactFlash device
232 * These are *not* removable in Linux definition of the term
233 */
234
235 if ((id->config != 0x848a) && (id->config & (1<<7)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 drive->removable = 1;
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 drive->media = ide_disk;
Richard Purdie98109332006-02-03 03:04:55 -0800239 printk("%s DISK drive\n", (id->config == 0x848a) ? "CFA" : "ATA" );
Bartlomiej Zolnierkiewiczcd3dbc92008-01-25 22:17:13 +0100240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return;
242
243err_misc:
244 kfree(id);
245 drive->present = 0;
246 return;
247}
248
249/**
250 * actual_try_to_identify - send ata/atapi identify
251 * @drive: drive to identify
252 * @cmd: command to use
253 *
254 * try_to_identify() sends an ATA(PI) IDENTIFY request to a drive
255 * and waits for a response. It also monitors irqs while this is
256 * happening, in hope of automatically determining which one is
257 * being used by the interface.
258 *
259 * Returns: 0 device was identified
260 * 1 device timed-out (no response to identify request)
261 * 2 device aborted the command (refused to identify itself)
262 */
263
264static int actual_try_to_identify (ide_drive_t *drive, u8 cmd)
265{
266 ide_hwif_t *hwif = HWIF(drive);
267 int rc;
268 unsigned long hd_status;
269 unsigned long timeout;
270 u8 s = 0, a = 0;
271
272 /* take a deep breath */
273 msleep(50);
274
275 if (IDE_CONTROL_REG) {
276 a = hwif->INB(IDE_ALTSTATUS_REG);
277 s = hwif->INB(IDE_STATUS_REG);
278 if ((a ^ s) & ~INDEX_STAT) {
279 printk(KERN_INFO "%s: probing with STATUS(0x%02x) instead of "
280 "ALTSTATUS(0x%02x)\n", drive->name, s, a);
281 /* ancient Seagate drives, broken interfaces */
282 hd_status = IDE_STATUS_REG;
283 } else {
284 /* use non-intrusive polling */
285 hd_status = IDE_ALTSTATUS_REG;
286 }
287 } else
288 hd_status = IDE_STATUS_REG;
289
290 /* set features register for atapi
291 * identify command to be sure of reply
292 */
293 if ((cmd == WIN_PIDENTIFY))
294 /* disable dma & overlap */
295 hwif->OUTB(0, IDE_FEATURE_REG);
296
297 /* ask drive for ID */
298 hwif->OUTB(cmd, IDE_COMMAND_REG);
299
300 timeout = ((cmd == WIN_IDENTIFY) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
301 timeout += jiffies;
302 do {
303 if (time_after(jiffies, timeout)) {
304 /* drive timed-out */
305 return 1;
306 }
307 /* give drive a breather */
308 msleep(50);
309 } while ((hwif->INB(hd_status)) & BUSY_STAT);
310
311 /* wait for IRQ and DRQ_STAT */
312 msleep(50);
313 if (OK_STAT((hwif->INB(IDE_STATUS_REG)), DRQ_STAT, BAD_R_STAT)) {
314 unsigned long flags;
315
316 /* local CPU only; some systems need this */
317 local_irq_save(flags);
318 /* drive returned ID */
319 do_identify(drive, cmd);
320 /* drive responded with ID */
321 rc = 0;
322 /* clear drive IRQ */
323 (void) hwif->INB(IDE_STATUS_REG);
324 local_irq_restore(flags);
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{
344 ide_hwif_t *hwif = HWIF(drive);
345 int retval;
346 int autoprobe = 0;
347 unsigned long cookie = 0;
348
349 /*
350 * Disable device irq unless we need to
351 * probe for it. Otherwise we'll get spurious
352 * interrupts during the identify-phase that
353 * the irq handler isn't expecting.
354 */
355 if (IDE_CONTROL_REG) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 if (!hwif->irq) {
357 autoprobe = 1;
358 cookie = probe_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100360 ide_set_irq(drive, autoprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 retval = actual_try_to_identify(drive, cmd);
364
365 if (autoprobe) {
366 int irq;
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100367
368 ide_set_irq(drive, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /* clear drive IRQ */
370 (void) hwif->INB(IDE_STATUS_REG);
371 udelay(5);
372 irq = probe_irq_off(cookie);
373 if (!hwif->irq) {
374 if (irq > 0) {
375 hwif->irq = irq;
376 } else {
377 /* Mmmm.. multiple IRQs..
378 * don't know which was ours
379 */
380 printk("%s: IRQ probe failed (0x%lx)\n",
381 drive->name, cookie);
382 }
383 }
384 }
385 return retval;
386}
387
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100388static int ide_busy_sleep(ide_hwif_t *hwif)
389{
390 unsigned long timeout = jiffies + WAIT_WORSTCASE;
391 u8 stat;
392
393 do {
394 msleep(50);
395 stat = hwif->INB(hwif->io_ports[IDE_STATUS_OFFSET]);
396 if ((stat & BUSY_STAT) == 0)
397 return 0;
398 } while (time_before(jiffies, timeout));
399
400 return 1;
401}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403/**
404 * do_probe - probe an IDE device
405 * @drive: drive to probe
406 * @cmd: command to use
407 *
408 * do_probe() has the difficult job of finding a drive if it exists,
409 * without getting hung up if it doesn't exist, without trampling on
410 * ethernet cards, and without leaving any IRQs dangling to haunt us later.
411 *
412 * If a drive is "known" to exist (from CMOS or kernel parameters),
413 * but does not respond right away, the probe will "hang in there"
414 * for the maximum wait time (about 30 seconds), otherwise it will
415 * exit much more quickly.
416 *
417 * Returns: 0 device was identified
418 * 1 device timed-out (no response to identify request)
419 * 2 device aborted the command (refused to identify itself)
420 * 3 bad status from device (possible for ATAPI drives)
421 * 4 probe was not attempted because failure was obvious
422 */
423
424static int do_probe (ide_drive_t *drive, u8 cmd)
425{
426 int rc;
427 ide_hwif_t *hwif = HWIF(drive);
428
429 if (drive->present) {
430 /* avoid waiting for inappropriate probes */
431 if ((drive->media != ide_disk) && (cmd == WIN_IDENTIFY))
432 return 4;
433 }
434#ifdef DEBUG
435 printk("probing for %s: present=%d, media=%d, probetype=%s\n",
436 drive->name, drive->present, drive->media,
437 (cmd == WIN_IDENTIFY) ? "ATA" : "ATAPI");
438#endif
439
440 /* needed for some systems
441 * (e.g. crw9624 as drive0 with disk as slave)
442 */
443 msleep(50);
444 SELECT_DRIVE(drive);
445 msleep(50);
446 if (hwif->INB(IDE_SELECT_REG) != drive->select.all && !drive->present) {
447 if (drive->select.b.unit != 0) {
448 /* exit with drive0 selected */
449 SELECT_DRIVE(&hwif->drives[0]);
450 /* allow BUSY_STAT to assert & clear */
451 msleep(50);
452 }
453 /* no i/f present: mmm.. this should be a 4 -ml */
454 return 3;
455 }
456
457 if (OK_STAT((hwif->INB(IDE_STATUS_REG)), READY_STAT, BUSY_STAT) ||
458 drive->present || cmd == WIN_PIDENTIFY) {
459 /* send cmd and wait */
460 if ((rc = try_to_identify(drive, cmd))) {
461 /* failed: try again */
462 rc = try_to_identify(drive,cmd);
463 }
464 if (hwif->INB(IDE_STATUS_REG) == (BUSY_STAT|READY_STAT))
465 return 4;
466
467 if ((rc == 1 && cmd == WIN_PIDENTIFY) &&
468 ((drive->autotune == IDE_TUNE_DEFAULT) ||
469 (drive->autotune == IDE_TUNE_AUTO))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 printk("%s: no response (status = 0x%02x), "
471 "resetting drive\n", drive->name,
472 hwif->INB(IDE_STATUS_REG));
473 msleep(50);
474 hwif->OUTB(drive->select.all, IDE_SELECT_REG);
475 msleep(50);
476 hwif->OUTB(WIN_SRST, IDE_COMMAND_REG);
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100477 (void)ide_busy_sleep(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 rc = try_to_identify(drive, cmd);
479 }
480 if (rc == 1)
481 printk("%s: no response (status = 0x%02x)\n",
482 drive->name, hwif->INB(IDE_STATUS_REG));
483 /* ensure drive irq is clear */
484 (void) hwif->INB(IDE_STATUS_REG);
485 } else {
486 /* not present or maybe ATAPI */
487 rc = 3;
488 }
489 if (drive->select.b.unit != 0) {
490 /* exit with drive0 selected */
491 SELECT_DRIVE(&hwif->drives[0]);
492 msleep(50);
493 /* ensure drive irq is clear */
494 (void) hwif->INB(IDE_STATUS_REG);
495 }
496 return rc;
497}
498
499/*
500 *
501 */
502static void enable_nest (ide_drive_t *drive)
503{
504 ide_hwif_t *hwif = HWIF(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 printk("%s: enabling %s -- ", hwif->name, drive->id->model);
507 SELECT_DRIVE(drive);
508 msleep(50);
509 hwif->OUTB(EXABYTE_ENABLE_NEST, IDE_COMMAND_REG);
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100510
511 if (ide_busy_sleep(hwif)) {
512 printk(KERN_CONT "failed (timeout)\n");
513 return;
514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 msleep(50);
517
518 if (!OK_STAT((hwif->INB(IDE_STATUS_REG)), 0, BAD_STAT)) {
519 printk("failed (status = 0x%02x)\n", hwif->INB(IDE_STATUS_REG));
520 } else {
521 printk("success\n");
522 }
523
524 /* if !(success||timed-out) */
525 if (do_probe(drive, WIN_IDENTIFY) >= 2) {
526 /* look for ATAPI device */
527 (void) do_probe(drive, WIN_PIDENTIFY);
528 }
529}
530
531/**
532 * probe_for_drives - upper level drive probe
533 * @drive: drive to probe for
534 *
535 * probe_for_drive() tests for existence of a given drive using do_probe()
536 * and presents things to the user as needed.
537 *
538 * Returns: 0 no device was found
539 * 1 device was found (note: drive->present might
540 * still be 0)
541 */
542
543static inline u8 probe_for_drive (ide_drive_t *drive)
544{
545 /*
546 * In order to keep things simple we have an id
547 * block for all drives at all times. If the device
548 * is pre ATA or refuses ATA/ATAPI identify we
549 * will add faked data to this.
550 *
551 * Also note that 0 everywhere means "can't do X"
552 */
553
Deepak Saxenaf5e3c2f2005-11-07 01:01:25 -0800554 drive->id = kzalloc(SECTOR_WORDS *4, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 drive->id_read = 0;
556 if(drive->id == NULL)
557 {
558 printk(KERN_ERR "ide: out of memory for id data.\n");
559 return 0;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 strcpy(drive->id->model, "UNKNOWN");
562
563 /* skip probing? */
564 if (!drive->noprobe)
565 {
566 /* if !(success||timed-out) */
567 if (do_probe(drive, WIN_IDENTIFY) >= 2) {
568 /* look for ATAPI device */
569 (void) do_probe(drive, WIN_PIDENTIFY);
570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (!drive->present)
572 /* drive not found */
573 return 0;
Alan Cox78595572007-07-03 22:28:35 +0200574 if (strstr(drive->id->model, "E X A B Y T E N E S T"))
575 enable_nest(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 /* identification failed? */
578 if (!drive->id_read) {
579 if (drive->media == ide_disk) {
580 printk(KERN_INFO "%s: non-IDE drive, CHS=%d/%d/%d\n",
581 drive->name, drive->cyl,
582 drive->head, drive->sect);
583 } else if (drive->media == ide_cdrom) {
584 printk(KERN_INFO "%s: ATAPI cdrom (?)\n", drive->name);
585 } else {
586 /* nuke it */
587 printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name);
588 drive->present = 0;
589 }
590 }
591 /* drive was found */
592 }
593 if(!drive->present)
594 return 0;
595 /* The drive wasn't being helpful. Add generic info only */
596 if (drive->id_read == 0) {
597 generic_id(drive);
598 return 1;
599 }
600
601 if (drive->media == ide_disk) {
602 ide_disk_init_chs(drive);
603 ide_disk_init_mult_count(drive);
604 }
605
606 return drive->present;
607}
608
609static void hwif_release_dev (struct device *dev)
610{
611 ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
612
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800613 complete(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616static void hwif_register (ide_hwif_t *hwif)
617{
Randy Dunlap349ae232006-10-03 01:14:23 -0700618 int ret;
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* register with global device tree */
621 strlcpy(hwif->gendev.bus_id,hwif->name,BUS_ID_SIZE);
622 hwif->gendev.driver_data = hwif;
623 if (hwif->gendev.parent == NULL) {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100624 if (hwif->dev)
625 hwif->gendev.parent = hwif->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 else
627 /* Would like to do = &device_legacy */
628 hwif->gendev.parent = NULL;
629 }
630 hwif->gendev.release = hwif_release_dev;
Randy Dunlap349ae232006-10-03 01:14:23 -0700631 ret = device_register(&hwif->gendev);
632 if (ret < 0)
633 printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
634 __FUNCTION__, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
637static int wait_hwif_ready(ide_hwif_t *hwif)
638{
Jonas Stare82661052007-11-27 21:35:53 +0100639 int unit, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name);
642
643 /* Let HW settle down a bit from whatever init state we
644 * come from */
645 mdelay(2);
646
647 /* Wait for BSY bit to go away, spec timeout is 30 seconds,
648 * I know of at least one disk who takes 31 seconds, I use 35
649 * here to be safe
650 */
651 rc = ide_wait_not_busy(hwif, 35000);
652 if (rc)
653 return rc;
654
655 /* Now make sure both master & slave are ready */
Jonas Stare82661052007-11-27 21:35:53 +0100656 for (unit = 0; unit < MAX_DRIVES; unit++) {
657 ide_drive_t *drive = &hwif->drives[unit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jonas Stare82661052007-11-27 21:35:53 +0100659 /* Ignore disks that we will not probe for later. */
660 if (!drive->noprobe || drive->present) {
661 SELECT_DRIVE(drive);
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100662 ide_set_irq(drive, 1);
Jonas Stare82661052007-11-27 21:35:53 +0100663 mdelay(2);
664 rc = ide_wait_not_busy(hwif, 35000);
665 if (rc)
666 goto out;
667 } else
668 printk(KERN_DEBUG "%s: ide_wait_not_busy() skipped\n",
669 drive->name);
670 }
671out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* Exit function with master reselected (let's be sane) */
Jonas Stare82661052007-11-27 21:35:53 +0100673 if (unit)
674 SELECT_DRIVE(&hwif->drives[0]);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return rc;
677}
678
679/**
680 * ide_undecoded_slave - look for bad CF adapters
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100681 * @drive1: drive
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 *
683 * Analyse the drives on the interface and attempt to decide if we
684 * have the same drive viewed twice. This occurs with crap CF adapters
685 * and PCMCIA sometimes.
686 */
687
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100688void ide_undecoded_slave(ide_drive_t *drive1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100690 ide_drive_t *drive0 = &drive1->hwif->drives[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100692 if ((drive1->dn & 1) == 0 || drive0->present == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return;
694
695 /* If the models don't match they are not the same product */
696 if (strcmp(drive0->id->model, drive1->id->model))
697 return;
698
699 /* Serial numbers do not match */
700 if (strncmp(drive0->id->serial_no, drive1->id->serial_no, 20))
701 return;
702
703 /* No serial number, thankfully very rare for CF */
704 if (drive0->id->serial_no[0] == 0)
705 return;
706
707 /* Appears to be an IDE flash adapter with decode bugs */
708 printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n");
709
710 drive1->present = 0;
711}
712
713EXPORT_SYMBOL_GPL(ide_undecoded_slave);
714
715/*
716 * This routine only knows how to look for drive units 0 and 1
717 * on an interface, so any setting of MAX_DRIVES > 2 won't work here.
718 */
Bartlomiej Zolnierkiewiczfd9bb532007-10-20 00:32:31 +0200719static void probe_hwif(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 unsigned long flags;
722 unsigned int irqd;
Bartlomiej Zolnierkiewiczb140b992007-10-13 17:47:51 +0200723 int unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 if (hwif->noprobe)
726 return;
727
728 if ((hwif->chipset != ide_4drives || !hwif->mate || !hwif->mate->present) &&
729 (ide_hwif_request_regions(hwif))) {
730 u16 msgout = 0;
731 for (unit = 0; unit < MAX_DRIVES; ++unit) {
732 ide_drive_t *drive = &hwif->drives[unit];
733 if (drive->present) {
734 drive->present = 0;
735 printk(KERN_ERR "%s: ERROR, PORTS ALREADY IN USE\n",
736 drive->name);
737 msgout = 1;
738 }
739 }
740 if (!msgout)
741 printk(KERN_ERR "%s: ports already in use, skipping probe\n",
742 hwif->name);
743 return;
744 }
745
746 /*
747 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
748 * we'll install our IRQ driver much later...
749 */
750 irqd = hwif->irq;
751 if (irqd)
752 disable_irq(hwif->irq);
753
754 local_irq_set(flags);
755
756 /* This is needed on some PPCs and a bunch of BIOS-less embedded
757 * platforms. Typical cases are:
758 *
759 * - The firmware hard reset the disk before booting the kernel,
760 * the drive is still doing it's poweron-reset sequence, that
761 * can take up to 30 seconds
762 * - The firmware does nothing (or no firmware), the device is
763 * still in POST state (same as above actually).
764 * - Some CD/DVD/Writer combo drives tend to drive the bus during
765 * their reset sequence even when they are non-selected slave
766 * devices, thus preventing discovery of the main HD
767 *
768 * Doing this wait-for-busy should not harm any existing configuration
769 * (at least things won't be worse than what current code does, that
770 * is blindly go & talk to the drive) and fix some issues like the
771 * above.
772 *
773 * BenH.
774 */
775 if (wait_hwif_ready(hwif) == -EBUSY)
776 printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
777
778 /*
Bartlomiej Zolnierkiewiczb140b992007-10-13 17:47:51 +0200779 * Need to probe slave device first to make it release PDIAG-.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 */
Bartlomiej Zolnierkiewiczb140b992007-10-13 17:47:51 +0200781 for (unit = MAX_DRIVES - 1; unit >= 0; unit--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 ide_drive_t *drive = &hwif->drives[unit];
783 drive->dn = (hwif->channel ? 2 : 0) + unit;
784 (void) probe_for_drive(drive);
785 if (drive->present && !hwif->present) {
786 hwif->present = 1;
787 if (hwif->chipset != ide_4drives ||
788 !hwif->mate ||
789 !hwif->mate->present) {
790 hwif_register(hwif);
791 }
792 }
793 }
794 if (hwif->io_ports[IDE_CONTROL_OFFSET] && hwif->reset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 printk(KERN_WARNING "%s: reset\n", hwif->name);
796 hwif->OUTB(12, hwif->io_ports[IDE_CONTROL_OFFSET]);
797 udelay(10);
798 hwif->OUTB(8, hwif->io_ports[IDE_CONTROL_OFFSET]);
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100799 (void)ide_busy_sleep(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801 local_irq_restore(flags);
802 /*
803 * Use cached IRQ number. It might be (and is...) changed by probe
804 * code above
805 */
806 if (irqd)
807 enable_irq(irqd);
808
809 if (!hwif->present) {
810 ide_hwif_release_regions(hwif);
811 return;
812 }
813
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100814 for (unit = 0; unit < MAX_DRIVES; unit++) {
815 ide_drive_t *drive = &hwif->drives[unit];
816
817 if (drive->present && hwif->quirkproc)
818 hwif->quirkproc(drive);
819 }
Bartlomiej Zolnierkiewicz0380dad2007-06-08 15:14:29 +0200820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 for (unit = 0; unit < MAX_DRIVES; ++unit) {
822 ide_drive_t *drive = &hwif->drives[unit];
823
824 if (drive->present) {
Bartlomiej Zolnierkiewicz26bcb872007-10-11 23:54:00 +0200825 if (drive->autotune == IDE_TUNE_AUTO)
826 ide_set_max_pio(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 if (drive->autotune != IDE_TUNE_DEFAULT &&
829 drive->autotune != IDE_TUNE_AUTO)
830 continue;
831
832 drive->nice1 = 1;
833
Bartlomiej Zolnierkiewicz15ce9262008-01-26 20:13:03 +0100834 if (hwif->dma_host_set)
Bartlomiej Zolnierkiewicz8c0697c2007-10-16 22:29:58 +0200835 ide_set_dma(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837 }
Kumar Gala208a08f2006-03-24 03:18:21 -0800838
839 for (unit = 0; unit < MAX_DRIVES; ++unit) {
840 ide_drive_t *drive = &hwif->drives[unit];
841
842 if (hwif->no_io_32bit)
843 drive->no_io_32bit = 1;
844 else
845 drive->no_io_32bit = drive->id->dword_io ? 1 : 0;
846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849#if MAX_HWIFS > 1
850/*
851 * save_match() is used to simplify logic in init_irq() below.
852 *
853 * A loophole here is that we may not know about a particular
854 * hwif's irq until after that hwif is actually probed/initialized..
855 * This could be a problem for the case where an hwif is on a
856 * dual interface that requires serialization (eg. cmd640) and another
857 * hwif using one of the same irqs is initialized beforehand.
858 *
859 * This routine detects and reports such situations, but does not fix them.
860 */
861static void save_match(ide_hwif_t *hwif, ide_hwif_t *new, ide_hwif_t **match)
862{
863 ide_hwif_t *m = *match;
864
865 if (m && m->hwgroup && m->hwgroup != new->hwgroup) {
866 if (!new->hwgroup)
867 return;
868 printk("%s: potential irq problem with %s and %s\n",
869 hwif->name, new->name, m->name);
870 }
871 if (!m || m->irq != hwif->irq) /* don't undo a prior perfect match */
872 *match = new;
873}
874#endif /* MAX_HWIFS > 1 */
875
876/*
877 * init request queue
878 */
879static int ide_init_queue(ide_drive_t *drive)
880{
Jens Axboe165125e2007-07-24 09:28:11 +0200881 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 ide_hwif_t *hwif = HWIF(drive);
883 int max_sectors = 256;
884 int max_sg_entries = PRD_ENTRIES;
885
886 /*
887 * Our default set up assumes the normal IDE case,
888 * that is 64K segmenting, standard PRD setup
889 * and LBA28. Some drivers then impose their own
890 * limits and LBA48 we could raise it but as yet
891 * do not.
892 */
Christoph Lameter19460892005-06-23 00:08:19 -0700893
Ravikiran G Thirumalai556e58f2005-08-04 12:53:26 -0700894 q = blk_init_queue_node(do_ide_request, &ide_lock, hwif_to_node(hwif));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!q)
896 return 1;
897
898 q->queuedata = drive;
899 blk_queue_segment_boundary(q, 0xffff);
900
901 if (!hwif->rqsize) {
Bartlomiej Zolnierkiewicz238e4f12007-10-19 00:30:07 +0200902 if ((hwif->host_flags & IDE_HFLAG_NO_LBA48) ||
903 (hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 hwif->rqsize = 256;
905 else
906 hwif->rqsize = 65536;
907 }
908 if (hwif->rqsize < max_sectors)
909 max_sectors = hwif->rqsize;
910 blk_queue_max_sectors(q, max_sectors);
911
912#ifdef CONFIG_PCI
913 /* When we have an IOMMU, we may have a problem where pci_map_sg()
914 * creates segments that don't completely match our boundary
915 * requirements and thus need to be broken up again. Because it
916 * doesn't align properly either, we may actually have to break up
917 * to more segments than what was we got in the first place, a max
918 * worst case is twice as many.
919 * This will be fixed once we teach pci_map_sg() about our boundary
920 * requirements, hopefully soon. *FIXME*
921 */
922 if (!PCI_DMA_BUS_IS_PHYS)
923 max_sg_entries >>= 1;
924#endif /* CONFIG_PCI */
925
926 blk_queue_max_hw_segments(q, max_sg_entries);
927 blk_queue_max_phys_segments(q, max_sg_entries);
928
929 /* assign drive queue */
930 drive->queue = q;
931
932 /* needs drive->queue to be set */
933 ide_toggle_bounce(drive, 1);
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
936}
937
938/*
939 * This routine sets up the irq for an ide interface, and creates a new
940 * hwgroup for the irq/hwif if none was previously assigned.
941 *
942 * Much of the code is for correctly detecting/handling irq sharing
943 * and irq serialization situations. This is somewhat complex because
944 * it handles static as well as dynamic (PCMCIA) IDE interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 */
946static int init_irq (ide_hwif_t *hwif)
947{
948 unsigned int index;
949 ide_hwgroup_t *hwgroup;
950 ide_hwif_t *match = NULL;
951
952
953 BUG_ON(in_interrupt());
954 BUG_ON(irqs_disabled());
Ravikiran G Thirumalai556e58f2005-08-04 12:53:26 -0700955 BUG_ON(hwif == NULL);
956
Matthias Kaehlckeef298882007-07-09 23:17:55 +0200957 mutex_lock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 hwif->hwgroup = NULL;
959#if MAX_HWIFS > 1
960 /*
961 * Group up with any other hwifs that share our irq(s).
962 */
963 for (index = 0; index < MAX_HWIFS; index++) {
964 ide_hwif_t *h = &ide_hwifs[index];
965 if (h->hwgroup) { /* scan only initialized hwif's */
966 if (hwif->irq == h->irq) {
967 hwif->sharing_irq = h->sharing_irq = 1;
968 if (hwif->chipset != ide_pci ||
969 h->chipset != ide_pci) {
970 save_match(hwif, h, &match);
971 }
972 }
973 if (hwif->serialized) {
974 if (hwif->mate && hwif->mate->irq == h->irq)
975 save_match(hwif, h, &match);
976 }
977 if (h->serialized) {
978 if (h->mate && hwif->irq == h->mate->irq)
979 save_match(hwif, h, &match);
980 }
981 }
982 }
983#endif /* MAX_HWIFS > 1 */
984 /*
985 * If we are still without a hwgroup, then form a new one
986 */
987 if (match) {
988 hwgroup = match->hwgroup;
989 hwif->hwgroup = hwgroup;
990 /*
991 * Link us into the hwgroup.
992 * This must be done early, do ensure that unexpected_intr
993 * can find the hwif and prevent irq storms.
994 * No drives are attached to the new hwif, choose_drive
995 * can't do anything stupid (yet).
996 * Add ourself as the 2nd entry to the hwgroup->hwif
997 * linked list, the first entry is the hwif that owns
998 * hwgroup->handler - do not change that.
999 */
1000 spin_lock_irq(&ide_lock);
1001 hwif->next = hwgroup->hwif->next;
1002 hwgroup->hwif->next = hwif;
1003 spin_unlock_irq(&ide_lock);
1004 } else {
Christoph Lameter94f60302007-07-17 04:03:29 -07001005 hwgroup = kmalloc_node(sizeof(ide_hwgroup_t),
1006 GFP_KERNEL | __GFP_ZERO,
Ravikiran G Thirumalai556e58f2005-08-04 12:53:26 -07001007 hwif_to_node(hwif->drives[0].hwif));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (!hwgroup)
1009 goto out_up;
1010
1011 hwif->hwgroup = hwgroup;
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 hwgroup->hwif = hwif->next = hwif;
1014 hwgroup->rq = NULL;
1015 hwgroup->handler = NULL;
1016 hwgroup->drive = NULL;
1017 hwgroup->busy = 0;
1018 init_timer(&hwgroup->timer);
1019 hwgroup->timer.function = &ide_timer_expiry;
1020 hwgroup->timer.data = (unsigned long) hwgroup;
1021 }
1022
1023 /*
1024 * Allocate the irq, if not already obtained for another hwif
1025 */
1026 if (!match || match->irq != hwif->irq) {
Bartlomiej Zolnierkiewicz7b5da4b2008-01-25 22:17:08 +01001027 int sa = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028#if defined(__mc68000__) || defined(CONFIG_APUS)
Thomas Gleixner362537b2006-07-01 19:29:34 -07001029 sa = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030#endif /* __mc68000__ || CONFIG_APUS */
1031
Bartlomiej Zolnierkiewicz7b5da4b2008-01-25 22:17:08 +01001032 if (IDE_CHIPSET_IS_PCI(hwif->chipset))
Thomas Gleixner362537b2006-07-01 19:29:34 -07001033 sa = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 if (hwif->io_ports[IDE_CONTROL_OFFSET])
1036 /* clear nIEN */
1037 hwif->OUTB(0x08, hwif->io_ports[IDE_CONTROL_OFFSET]);
1038
1039 if (request_irq(hwif->irq,&ide_intr,sa,hwif->name,hwgroup))
1040 goto out_unlink;
1041 }
1042
1043 /*
1044 * For any present drive:
1045 * - allocate the block device queue
1046 * - link drive into the hwgroup
1047 */
1048 for (index = 0; index < MAX_DRIVES; ++index) {
1049 ide_drive_t *drive = &hwif->drives[index];
1050 if (!drive->present)
1051 continue;
1052 if (ide_init_queue(drive)) {
1053 printk(KERN_ERR "ide: failed to init %s\n",drive->name);
1054 continue;
1055 }
1056 spin_lock_irq(&ide_lock);
1057 if (!hwgroup->drive) {
1058 /* first drive for hwgroup. */
1059 drive->next = drive;
1060 hwgroup->drive = drive;
1061 hwgroup->hwif = HWIF(hwgroup->drive);
1062 } else {
1063 drive->next = hwgroup->drive->next;
1064 hwgroup->drive->next = drive;
1065 }
1066 spin_unlock_irq(&ide_lock);
1067 }
1068
David S. Millerc6387a42006-06-20 01:21:29 -07001069#if !defined(__mc68000__) && !defined(CONFIG_APUS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 printk("%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
1071 hwif->io_ports[IDE_DATA_OFFSET],
1072 hwif->io_ports[IDE_DATA_OFFSET]+7,
1073 hwif->io_ports[IDE_CONTROL_OFFSET], hwif->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074#else
1075 printk("%s at 0x%08lx on irq %d", hwif->name,
1076 hwif->io_ports[IDE_DATA_OFFSET], hwif->irq);
1077#endif /* __mc68000__ && CONFIG_APUS */
1078 if (match)
1079 printk(" (%sed with %s)",
1080 hwif->sharing_irq ? "shar" : "serializ", match->name);
1081 printk("\n");
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001082 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return 0;
1084out_unlink:
1085 spin_lock_irq(&ide_lock);
1086 if (hwif->next == hwif) {
1087 BUG_ON(match);
1088 BUG_ON(hwgroup->hwif != hwif);
1089 kfree(hwgroup);
1090 } else {
1091 ide_hwif_t *g;
1092 g = hwgroup->hwif;
1093 while (g->next != hwif)
1094 g = g->next;
1095 g->next = hwif->next;
1096 if (hwgroup->hwif == hwif) {
1097 /* Impossible. */
1098 printk(KERN_ERR "Duh. Uninitialized hwif listed as active hwif.\n");
1099 hwgroup->hwif = g;
1100 }
1101 BUG_ON(hwgroup->hwif == hwif);
1102 }
1103 spin_unlock_irq(&ide_lock);
1104out_up:
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001105 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return 1;
1107}
1108
1109static int ata_lock(dev_t dev, void *data)
1110{
1111 /* FIXME: we want to pin hwif down */
1112 return 0;
1113}
1114
1115static struct kobject *ata_probe(dev_t dev, int *part, void *data)
1116{
1117 ide_hwif_t *hwif = data;
1118 int unit = *part >> PARTN_BITS;
1119 ide_drive_t *drive = &hwif->drives[unit];
1120 if (!drive->present)
1121 return NULL;
1122
1123 if (drive->media == ide_disk)
1124 request_module("ide-disk");
1125 if (drive->scsi)
1126 request_module("ide-scsi");
1127 if (drive->media == ide_cdrom || drive->media == ide_optical)
1128 request_module("ide-cd");
1129 if (drive->media == ide_tape)
1130 request_module("ide-tape");
1131 if (drive->media == ide_floppy)
1132 request_module("ide-floppy");
1133
1134 return NULL;
1135}
1136
1137static struct kobject *exact_match(dev_t dev, int *part, void *data)
1138{
1139 struct gendisk *p = data;
1140 *part &= (1 << PARTN_BITS) - 1;
Kay Sieversedfaa7c2007-05-21 22:08:01 +02001141 return &p->dev.kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142}
1143
1144static int exact_lock(dev_t dev, void *data)
1145{
1146 struct gendisk *p = data;
1147
1148 if (!get_disk(p))
1149 return -1;
1150 return 0;
1151}
1152
1153void ide_register_region(struct gendisk *disk)
1154{
1155 blk_register_region(MKDEV(disk->major, disk->first_minor),
1156 disk->minors, NULL, exact_match, exact_lock, disk);
1157}
1158
1159EXPORT_SYMBOL_GPL(ide_register_region);
1160
1161void ide_unregister_region(struct gendisk *disk)
1162{
1163 blk_unregister_region(MKDEV(disk->major, disk->first_minor),
1164 disk->minors);
1165}
1166
1167EXPORT_SYMBOL_GPL(ide_unregister_region);
1168
1169void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
1170{
1171 ide_hwif_t *hwif = drive->hwif;
1172 unsigned int unit = (drive->select.all >> 4) & 1;
1173
1174 disk->major = hwif->major;
1175 disk->first_minor = unit << PARTN_BITS;
1176 sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit);
1177 disk->queue = drive->queue;
1178}
1179
1180EXPORT_SYMBOL_GPL(ide_init_disk);
1181
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001182static void ide_remove_drive_from_hwgroup(ide_drive_t *drive)
1183{
1184 ide_hwgroup_t *hwgroup = drive->hwif->hwgroup;
1185
1186 if (drive == drive->next) {
1187 /* special case: last drive from hwgroup. */
1188 BUG_ON(hwgroup->drive != drive);
1189 hwgroup->drive = NULL;
1190 } else {
1191 ide_drive_t *walk;
1192
1193 walk = hwgroup->drive;
1194 while (walk->next != drive)
1195 walk = walk->next;
1196 walk->next = drive->next;
1197 if (hwgroup->drive == drive) {
1198 hwgroup->drive = drive->next;
1199 hwgroup->hwif = hwgroup->drive->hwif;
1200 }
1201 }
1202 BUG_ON(hwgroup->drive == drive);
1203}
1204
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205static void drive_release_dev (struct device *dev)
1206{
1207 ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
1208
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001209 spin_lock_irq(&ide_lock);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001210 ide_remove_drive_from_hwgroup(drive);
Jesper Juhl6044ec82005-11-07 01:01:32 -08001211 kfree(drive->id);
1212 drive->id = NULL;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001213 drive->present = 0;
1214 /* Messed up locking ... */
1215 spin_unlock_irq(&ide_lock);
1216 blk_cleanup_queue(drive->queue);
1217 spin_lock_irq(&ide_lock);
1218 drive->queue = NULL;
1219 spin_unlock_irq(&ide_lock);
1220
Aleksey Makarovf36d4022006-01-09 15:59:27 -08001221 complete(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224/*
1225 * init_gendisk() (as opposed to ide_geninit) is called for each major device,
1226 * after probing for drives, to allocate partition tables and other data
1227 * structures needed for the routines in genhd.c. ide_geninit() gets called
1228 * somewhat later, during the partition check.
1229 */
1230static void init_gendisk (ide_hwif_t *hwif)
1231{
1232 unsigned int unit;
1233
1234 for (unit = 0; unit < MAX_DRIVES; ++unit) {
1235 ide_drive_t * drive = &hwif->drives[unit];
1236 ide_add_generic_settings(drive);
1237 snprintf(drive->gendev.bus_id,BUS_ID_SIZE,"%u.%u",
1238 hwif->index,unit);
1239 drive->gendev.parent = &hwif->gendev;
1240 drive->gendev.bus = &ide_bus_type;
1241 drive->gendev.driver_data = drive;
1242 drive->gendev.release = drive_release_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244 blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
1245 THIS_MODULE, ata_probe, ata_lock, hwif);
1246}
1247
1248static int hwif_init(ide_hwif_t *hwif)
1249{
1250 int old_irq;
1251
1252 /* Return success if no device is connected */
1253 if (!hwif->present)
1254 return 1;
1255
1256 if (!hwif->irq) {
1257 if (!(hwif->irq = ide_default_irq(hwif->io_ports[IDE_DATA_OFFSET])))
1258 {
1259 printk("%s: DISABLED, NO IRQ\n", hwif->name);
1260 return (hwif->present = 0);
1261 }
1262 }
1263#ifdef CONFIG_BLK_DEV_HD
1264 if (hwif->irq == HD_IRQ && hwif->io_ports[IDE_DATA_OFFSET] != HD_DATA) {
1265 printk("%s: CANNOT SHARE IRQ WITH OLD "
1266 "HARDDISK DRIVER (hd.c)\n", hwif->name);
1267 return (hwif->present = 0);
1268 }
1269#endif /* CONFIG_BLK_DEV_HD */
1270
1271 /* we set it back to 1 if all is ok below */
1272 hwif->present = 0;
1273
1274 if (register_blkdev(hwif->major, hwif->name))
1275 return 0;
1276
1277 if (!hwif->sg_max_nents)
1278 hwif->sg_max_nents = PRD_ENTRIES;
1279
Jens Axboe45711f12007-10-22 21:19:53 +02001280 hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 GFP_KERNEL);
1282 if (!hwif->sg_table) {
1283 printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name);
1284 goto out;
1285 }
Jens Axboe45711f12007-10-22 21:19:53 +02001286
1287 sg_init_table(hwif->sg_table, hwif->sg_max_nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 if (init_irq(hwif) == 0)
1290 goto done;
1291
1292 old_irq = hwif->irq;
1293 /*
1294 * It failed to initialise. Find the default IRQ for
1295 * this port and try that.
1296 */
1297 if (!(hwif->irq = ide_default_irq(hwif->io_ports[IDE_DATA_OFFSET]))) {
1298 printk("%s: Disabled unable to get IRQ %d.\n",
1299 hwif->name, old_irq);
1300 goto out;
1301 }
1302 if (init_irq(hwif)) {
1303 printk("%s: probed IRQ %d and default IRQ %d failed.\n",
1304 hwif->name, old_irq, hwif->irq);
1305 goto out;
1306 }
1307 printk("%s: probed IRQ %d failed, using default.\n",
1308 hwif->name, hwif->irq);
1309
1310done:
1311 init_gendisk(hwif);
Hannes Reineckee3a59b42007-02-07 18:19:37 +01001312
1313 ide_acpi_init(hwif);
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 hwif->present = 1; /* success */
1316 return 1;
1317
1318out:
1319 unregister_blkdev(hwif->major, hwif->name);
1320 return 0;
1321}
1322
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001323static void hwif_register_devices(ide_hwif_t *hwif)
1324{
1325 unsigned int i;
1326
1327 for (i = 0; i < MAX_DRIVES; i++) {
1328 ide_drive_t *drive = &hwif->drives[i];
1329
1330 if (drive->present) {
1331 int ret = device_register(&drive->gendev);
1332
1333 if (ret < 0)
1334 printk(KERN_WARNING "IDE: %s: "
1335 "device_register error: %d\n",
1336 __FUNCTION__, ret);
1337 }
1338 }
1339}
1340
Olof Johanssonb0d5bc22008-01-26 20:13:05 +01001341int ide_device_add_all(u8 *idx)
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001342{
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001343 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001344 int i, rc = 0;
1345
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001346 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001347 if (idx[i] == 0xff)
1348 continue;
1349
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001350 probe_hwif(&ide_hwifs[idx[i]]);
1351 }
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001352
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001353 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001354 if (idx[i] == 0xff)
1355 continue;
1356
1357 hwif = &ide_hwifs[idx[i]];
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001358
1359 if (hwif_init(hwif) == 0) {
1360 printk(KERN_INFO "%s: failed to initialize IDE "
1361 "interface\n", hwif->name);
1362 rc = -1;
1363 continue;
1364 }
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001365 }
1366
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001367 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001368 if (idx[i] == 0xff)
1369 continue;
1370
1371 hwif = &ide_hwifs[idx[i]];
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001372
Bartlomiej Zolnierkiewicz71518342008-01-26 20:13:04 +01001373 if (hwif->present) {
1374 if (hwif->chipset == ide_unknown ||
1375 hwif->chipset == ide_forced)
1376 hwif->chipset = ide_generic;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001377 hwif_register_devices(hwif);
Bartlomiej Zolnierkiewicz71518342008-01-26 20:13:04 +01001378 }
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001379 }
1380
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001381 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001382 if (idx[i] != 0xff)
1383 ide_proc_register_port(&ide_hwifs[idx[i]]);
1384 }
1385
1386 return rc;
1387}
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001388EXPORT_SYMBOL_GPL(ide_device_add_all);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001389
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001390int ide_device_add(u8 idx[4])
1391{
1392 u8 idx_all[MAX_HWIFS];
1393 int i;
1394
1395 for (i = 0; i < MAX_HWIFS; i++)
1396 idx_all[i] = (i < 4) ? idx[i] : 0xff;
1397
1398 return ide_device_add_all(idx_all);
1399}
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001400EXPORT_SYMBOL_GPL(ide_device_add);