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