blob: a64ec259f3d13a50c01468c98669a9712f33d9f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Bartlomiej Zolnierkiewicz59bca8c2008-02-01 23:09:33 +01002 * Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
3 * Copyright (C) 2005, 2007 Bartlomiej Zolnierkiewicz
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6/*
7 * Mostly written by Mark Lord <mlord@pobox.com>
8 * and Gadi Oxman <gadio@netvision.net.il>
9 * and Andre Hedrick <andre@linux-ide.org>
10 *
11 * See linux/MAINTAINERS for address of current maintainer.
12 *
13 * This is the IDE probe module, as evolved from hd.c and ide.c.
14 *
Bartlomiej Zolnierkiewiczbbe4d6d2007-12-12 23:32:00 +010015 * -- increase WAIT_PIDENTIFY to avoid CD-ROM locking at boot
16 * by Andrea Arcangeli
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/types.h>
21#include <linux/string.h>
22#include <linux/kernel.h>
23#include <linux/timer.h>
24#include <linux/mm.h>
25#include <linux/interrupt.h>
26#include <linux/major.h>
27#include <linux/errno.h>
28#include <linux/genhd.h>
29#include <linux/slab.h>
30#include <linux/delay.h>
31#include <linux/ide.h>
32#include <linux/spinlock.h>
33#include <linux/kmod.h>
34#include <linux/pci.h>
FUJITA Tomonoridc817852007-10-23 09:29:58 +020035#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include <asm/byteorder.h>
38#include <asm/irq.h>
39#include <asm/uaccess.h>
40#include <asm/io.h>
41
42/**
43 * generic_id - add a generic drive id
44 * @drive: drive to make an ID block for
45 *
46 * Add a fake id field to the drive we are passed. This allows
47 * use to skip a ton of NULL checks (which people always miss)
48 * and make drive properties unconditional outside of this file
49 */
50
51static void generic_id(ide_drive_t *drive)
52{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020053 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 Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60static void ide_disk_init_chs(ide_drive_t *drive)
61{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020062 u16 *id = drive->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 /* Extract geometry if we did not already have one for the drive */
65 if (!drive->cyl || !drive->head || !drive->sect) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020066 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 Torvalds1da177e2005-04-16 15:20:36 -070069 }
70
71 /* Handle logical geometry translation by the drive */
Bartlomiej Zolnierkiewiczdd8f46f2008-10-10 22:39:19 +020072 if (ata_id_current_chs_valid(id)) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020073 drive->cyl = id[ATA_ID_CUR_CYLS];
74 drive->head = id[ATA_ID_CUR_HEADS];
75 drive->sect = id[ATA_ID_CUR_SECTORS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 }
77
78 /* Use physical geometry if what we have still makes no sense */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +020079 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 Torvalds1da177e2005-04-16 15:20:36 -070083 }
84}
85
86static void ide_disk_init_mult_count(ide_drive_t *drive)
87{
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +020088 u16 *id = drive->id;
89 u8 max_multsect = id[ATA_ID_MAX_MULTSECT] & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +020091 if (max_multsect) {
Bartlomiej Zolnierkiewicz48fb2682008-10-10 22:39:19 +020092 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 Zolnierkiewicz7c51c172008-10-10 22:39:26 +020098
99 if (drive->mult_req)
Bartlomiej Zolnierkiewiczdf1f8372008-10-10 22:39:18 +0200100 drive->special.b.set_multmode = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 }
102}
103
104/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * 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 Zolnierkiewicz047140a2008-12-29 20:27:36 +0100113
114static void do_identify(ide_drive_t *drive, u8 cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200117 u16 *id = drive->id;
118 char *m = (char *)&id[ATA_ID_PROD];
Bartlomiej Zolnierkiewicz94b9efd2008-12-29 20:27:38 +0100119 unsigned long flags;
Bartlomiej Zolnierkiewicz718c72e2008-10-10 22:39:31 +0200120 int bswap = 1, is_cfa;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Bartlomiej Zolnierkiewicz94b9efd2008-12-29 20:27:38 +0100122 /* local CPU only; some systems need this */
123 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* read 512 bytes of id info */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200125 hwif->tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
Bartlomiej Zolnierkiewicz94b9efd2008-12-29 20:27:38 +0100126 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200128 drive->dev_flags |= IDE_DFLAG_ID_READ;
Bartlomiej Zolnierkiewicz7b9f25b2008-02-01 23:09:28 +0100129#ifdef DEBUG
130 printk(KERN_INFO "%s: dumping identify data\n", drive->name);
131 ide_dump_identify((u8 *)id);
132#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 ide_fix_driveid(id);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 /*
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200136 * ATA_CMD_ID_ATA returns little-endian info,
137 * ATA_CMD_ID_ATAPI *usually* returns little-endian info.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200139 if (cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200140 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 Torvalds1da177e2005-04-16 15:20:36 -0700143 /* Vertos drives may still be weird */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200144 bswap ^= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200146
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 Torvalds1da177e2005-04-16 15:20:36 -0700150
Tejun Heo699b0522007-11-05 21:42:25 +0100151 /* we depend on this a lot! */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200152 m[ATA_ID_PROD_LEN - 1] = '\0';
Tejun Heo699b0522007-11-05 21:42:25 +0100153
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200154 if (strstr(m, "E X A B Y T E N E S T"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 goto err_misc;
156
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200157 printk(KERN_INFO "%s: %s, ", drive->name, m);
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200158
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200159 drive->dev_flags |= IDE_DFLAG_PRESENT;
160 drive->dev_flags &= ~IDE_DFLAG_DEAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /*
163 * Check for an ATAPI device
164 */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200165 if (cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200166 u8 type = (id[ATA_ID_CONFIG] >> 8) & 0x1f;
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200167
168 printk(KERN_CONT "ATAPI ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 switch (type) {
170 case ide_floppy:
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200171 if (!strstr(m, "CD-ROM")) {
172 if (!strstr(m, "oppy") &&
173 !strstr(m, "poyp") &&
174 !strstr(m, "ZIP"))
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200175 printk(KERN_CONT "cdrom or floppy?, assuming ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (drive->media != ide_cdrom) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200177 printk(KERN_CONT "FLOPPY");
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200178 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 break;
180 }
181 }
182 /* Early cdrom models used zero */
183 type = ide_cdrom;
184 case ide_cdrom:
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200185 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#ifdef CONFIG_PPC
187 /* kludge for Apple PowerBook internal zip */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200188 if (!strstr(m, "CD-ROM") && strstr(m, "ZIP")) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200189 printk(KERN_CONT "FLOPPY");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 type = ide_floppy;
191 break;
192 }
193#endif
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200194 printk(KERN_CONT "CD/DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 break;
196 case ide_tape:
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200197 printk(KERN_CONT "TAPE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 break;
199 case ide_optical:
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200200 printk(KERN_CONT "OPTICAL");
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200201 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203 default:
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200204 printk(KERN_CONT "UNKNOWN (type %d)", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 break;
206 }
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200207 printk(KERN_CONT " drive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 drive->media = type;
209 /* an ATAPI device ignores DRDY */
210 drive->ready_stat = 0;
Bartlomiej Zolnierkiewicz4ab3d502008-10-13 21:39:43 +0200211 if (ata_id_cdb_intr(id))
212 drive->atapi_flags |= IDE_AFLAG_DRQ_INTERRUPT;
Bartlomiej Zolnierkiewicz42619d32008-10-17 18:09:11 +0200213 drive->dev_flags |= IDE_DFLAG_DOORLOCKING;
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200214 /* we don't do head unloading on ATAPI devices */
215 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return;
217 }
218
219 /*
220 * Not an ATAPI device: looks like a "regular" hard disk
221 */
Richard Purdie98109332006-02-03 03:04:55 -0800222
Bartlomiej Zolnierkiewicz718c72e2008-10-10 22:39:31 +0200223 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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200227 drive->dev_flags |= IDE_DFLAG_REMOVABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200230
Elias Oltmanns4abdc6e2008-10-13 21:39:50 +0200231 if (!ata_id_has_unload(drive->id))
232 drive->dev_flags |= IDE_DFLAG_NO_UNLOAD;
233
Bartlomiej Zolnierkiewicz718c72e2008-10-10 22:39:31 +0200234 printk(KERN_CONT "%s DISK drive\n", is_cfa ? "CFA" : "ATA");
Bartlomiej Zolnierkiewiczcd3dbc92008-01-25 22:17:13 +0100235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return;
237
238err_misc:
239 kfree(id);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200240 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 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
259static int actual_try_to_identify (ide_drive_t *drive, u8 cmd)
260{
261 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200262 struct ide_io_ports *io_ports = &hwif->io_ports;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200263 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100264 int use_altstatus = 0, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 unsigned long timeout;
266 u8 s = 0, a = 0;
267
268 /* take a deep breath */
269 msleep(50);
270
Bartlomiej Zolnierkiewicz66364872008-12-02 20:40:03 +0100271 if (io_ports->ctl_addr &&
272 (hwif->host_flags & IDE_HFLAG_BROKEN_ALTSTATUS) == 0) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200273 a = tp_ops->read_altstatus(hwif);
274 s = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200275 if ((a ^ s) & ~ATA_IDX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* ancient Seagate drives, broken interfaces */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100277 printk(KERN_INFO "%s: probing with STATUS(0x%02x) "
278 "instead of ALTSTATUS(0x%02x)\n",
279 drive->name, s, a);
280 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* use non-intrusive polling */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100282 use_altstatus = 1;
283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 /* set features register for atapi
286 * identify command to be sure of reply
287 */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200288 if (cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz4e658372008-07-23 19:55:53 +0200289 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 Zolnierkiewicz374e0422008-07-23 19:55:56 +0200295 tp_ops->tf_load(drive, &task);
Bartlomiej Zolnierkiewicz4e658372008-07-23 19:55:53 +0200296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 /* ask drive for ID */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200299 tp_ops->exec_command(hwif, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200301 timeout = ((cmd == ATA_CMD_ID_ATA) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200302
303 if (ide_busy_sleep(hwif, timeout, use_altstatus))
304 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200306 /* wait for IRQ and ATA_DRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 msleep(50);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200308 s = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100309
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200310 if (OK_STAT(s, ATA_DRQ, BAD_R_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* drive returned ID */
312 do_identify(drive, cmd);
313 /* drive responded with ID */
314 rc = 0;
315 /* clear drive IRQ */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200316 (void)tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 } 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
334static int try_to_identify (ide_drive_t *drive, u8 cmd)
335{
336 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200337 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 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 Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200348 if (hwif->io_ports.ctl_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (!hwif->irq) {
350 autoprobe = 1;
351 cookie = probe_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200353 tp_ops->set_irq(hwif, autoprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355
356 retval = actual_try_to_identify(drive, cmd);
357
358 if (autoprobe) {
359 int irq;
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100360
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200361 tp_ops->set_irq(hwif, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /* clear drive IRQ */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200363 (void)tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 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 Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200373 printk(KERN_ERR "%s: IRQ probe failed (0x%lx)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 drive->name, cookie);
375 }
376 }
377 }
378 return retval;
379}
380
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200381int ide_busy_sleep(ide_hwif_t *hwif, unsigned long timeout, int altstatus)
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100382{
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100383 u8 stat;
384
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200385 timeout += jiffies;
386
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100387 do {
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200388 msleep(50); /* give drive a breather */
389 stat = altstatus ? hwif->tp_ops->read_altstatus(hwif)
390 : hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200391 if ((stat & ATA_BUSY) == 0)
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100392 return 0;
393 } while (time_before(jiffies, timeout));
394
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200395 return 1; /* drive timed-out */
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100396}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Bartlomiej Zolnierkiewicz1f2efb82008-07-23 19:55:54 +0200398static 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 Zolnierkiewicz374e0422008-07-23 19:55:56 +0200405 drive->hwif->tp_ops->tf_read(drive, &task);
Bartlomiej Zolnierkiewicz1f2efb82008-07-23 19:55:54 +0200406
407 return task.tf.device;
408}
409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/**
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
431static int do_probe (ide_drive_t *drive, u8 cmd)
432{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200434 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100435 int rc;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200436 u8 present = !!(drive->dev_flags & IDE_DFLAG_PRESENT), stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200438 /* avoid waiting for inappropriate probes */
439 if (present && drive->media != ide_disk && cmd == ATA_CMD_ID_ATA)
440 return 4;
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#ifdef DEBUG
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200443 printk(KERN_INFO "probing for %s: present=%d, media=%d, probetype=%s\n",
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200444 drive->name, present, drive->media,
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200445 (cmd == ATA_CMD_ID_ATA) ? "ATA" : "ATAPI");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446#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 Zolnierkiewicz1f2efb82008-07-23 19:55:54 +0200454
Bartlomiej Zolnierkiewicz7f612f22008-10-13 21:39:40 +0200455 if (ide_read_device(drive) != drive->select && present == 0) {
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200456 if (drive->dn & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* exit with drive0 selected */
458 SELECT_DRIVE(&hwif->drives[0]);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200459 /* allow ATA_BUSY to assert & clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 msleep(50);
461 }
462 /* no i/f present: mmm.. this should be a 4 -ml */
463 return 3;
464 }
465
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200466 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100467
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200468 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY) ||
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200469 present || cmd == ATA_CMD_ID_ATAPI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 /* 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 Zolnierkiewicz57b55272008-02-02 19:56:45 +0100475
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200476 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100477
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200478 if (stat == (ATA_BUSY | ATA_DRDY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 4;
480
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200481 if (rc == 1 && cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100482 printk(KERN_ERR "%s: no response (status = 0x%02x), "
483 "resetting drive\n", drive->name, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 msleep(50);
Bartlomiej Zolnierkiewicze81a3bd2008-07-15 21:21:48 +0200485 SELECT_DRIVE(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 msleep(50);
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200487 tp_ops->exec_command(hwif, ATA_CMD_DEV_RESET);
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200488 (void)ide_busy_sleep(hwif, WAIT_WORSTCASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 rc = try_to_identify(drive, cmd);
490 }
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100491
492 /* ensure drive IRQ is clear */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200493 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (rc == 1)
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100496 printk(KERN_ERR "%s: no response (status = 0x%02x)\n",
497 drive->name, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 } else {
499 /* not present or maybe ATAPI */
500 rc = 3;
501 }
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200502 if (drive->dn & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /* exit with drive0 selected */
504 SELECT_DRIVE(&hwif->drives[0]);
505 msleep(50);
506 /* ensure drive irq is clear */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200507 (void)tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 return rc;
510}
511
512/*
513 *
514 */
515static void enable_nest (ide_drive_t *drive)
516{
517 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200518 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100519 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200521 printk(KERN_INFO "%s: enabling %s -- ",
522 hwif->name, (char *)&drive->id[ATA_ID_PROD]);
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 SELECT_DRIVE(drive);
525 msleep(50);
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200526 tp_ops->exec_command(hwif, ATA_EXABYTE_ENABLE_NEST);
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100527
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200528 if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 0)) {
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100529 printk(KERN_CONT "failed (timeout)\n");
530 return;
531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 msleep(50);
534
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200535 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100536
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 Torvalds1da177e2005-04-16 15:20:36 -0700541}
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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200551 * 1 device was found
552 * (note: IDE_DFLAG_PRESENT might still be not set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Bartlomiej Zolnierkiewicz047140a2008-12-29 20:27:36 +0100554
555static u8 probe_for_drive(ide_drive_t *drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200557 char *m;
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /*
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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200568 drive->dev_flags &= ~IDE_DFLAG_ID_READ;
569
Bartlomiej Zolnierkiewicz151a6702008-10-10 22:39:28 +0200570 drive->id = kzalloc(SECTOR_SIZE, GFP_KERNEL);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200571 if (drive->id == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 printk(KERN_ERR "ide: out of memory for id data.\n");
573 return 0;
574 }
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200575
576 m = (char *)&drive->id[ATA_ID_PROD];
577 strcpy(m, "UNKNOWN");
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 /* skip probing? */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200580 if ((drive->dev_flags & IDE_DFLAG_NOPROBE) == 0) {
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200581retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* if !(success||timed-out) */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200583 if (do_probe(drive, ATA_CMD_ID_ATA) >= 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* look for ATAPI device */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200585 (void)do_probe(drive, ATA_CMD_ID_ATAPI);
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200586
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200587 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* drive not found */
589 return 0;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200590
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200591 if (strstr(m, "E X A B Y T E N E S T")) {
Alan Cox78595572007-07-03 22:28:35 +0200592 enable_nest(drive);
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200593 goto retry;
594 }
595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 /* identification failed? */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200597 if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200607 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 }
610 /* drive was found */
611 }
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200612
613 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return 0;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 /* The drive wasn't being helpful. Add generic info only */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200617 if ((drive->dev_flags & IDE_DFLAG_ID_READ) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200627 return !!(drive->dev_flags & IDE_DFLAG_PRESENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628}
629
Pavel Machekfc410692008-07-23 19:56:02 +0200630static void hwif_release_dev(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
633
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800634 complete(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200637static int ide_register_port(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Randy Dunlap349ae232006-10-03 01:14:23 -0700639 int ret;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* register with global device tree */
Kay Sieversdc09c782008-12-29 20:27:36 +0100642 dev_set_name(&hwif->gendev, hwif->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 hwif->gendev.driver_data = hwif;
644 if (hwif->gendev.parent == NULL) {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100645 if (hwif->dev)
646 hwif->gendev.parent = hwif->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 else
648 /* Would like to do = &device_legacy */
649 hwif->gendev.parent = NULL;
650 }
651 hwif->gendev.release = hwif_release_dev;
Randy Dunlap349ae232006-10-03 01:14:23 -0700652 ret = device_register(&hwif->gendev);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200653 if (ret < 0) {
Randy Dunlap349ae232006-10-03 01:14:23 -0700654 printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200655 __func__, ret);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200656 goto out;
657 }
658
Greg Kroah-Hartman3ee074b2008-07-21 20:03:34 -0700659 hwif->portdev = device_create(ide_port_class, &hwif->gendev,
660 MKDEV(0, 0), hwif, hwif->name);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200661 if (IS_ERR(hwif->portdev)) {
662 ret = PTR_ERR(hwif->portdev);
663 device_unregister(&hwif->gendev);
664 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200665out:
666 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Bartlomiej Zolnierkiewiczc860a8f2008-02-01 23:09:34 +0100669/**
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
695static int ide_port_wait_ready(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Jonas Stare82661052007-11-27 21:35:53 +0100697 int unit, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
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 Stare82661052007-11-27 21:35:53 +0100714 for (unit = 0; unit < MAX_DRIVES; unit++) {
715 ide_drive_t *drive = &hwif->drives[unit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Jonas Stare82661052007-11-27 21:35:53 +0100717 /* Ignore disks that we will not probe for later. */
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200718 if ((drive->dev_flags & IDE_DFLAG_NOPROBE) == 0 ||
719 (drive->dev_flags & IDE_DFLAG_PRESENT)) {
Jonas Stare82661052007-11-27 21:35:53 +0100720 SELECT_DRIVE(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200721 hwif->tp_ops->set_irq(hwif, 1);
Jonas Stare82661052007-11-27 21:35:53 +0100722 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 }
730out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /* Exit function with master reselected (let's be sane) */
Jonas Stare82661052007-11-27 21:35:53 +0100732 if (unit)
733 SELECT_DRIVE(&hwif->drives[0]);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return rc;
736}
737
738/**
739 * ide_undecoded_slave - look for bad CF adapters
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200740 * @dev1: slave device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 *
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 Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200747void ide_undecoded_slave(ide_drive_t *dev1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200749 ide_drive_t *dev0 = &dev1->hwif->drives[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200751 if ((dev1->dn & 1) == 0 || (dev0->dev_flags & IDE_DFLAG_PRESENT) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 return;
753
754 /* If the models don't match they are not the same product */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200755 if (strcmp((char *)&dev0->id[ATA_ID_PROD],
756 (char *)&dev1->id[ATA_ID_PROD]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 return;
758
759 /* Serial numbers do not match */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200760 if (strncmp((char *)&dev0->id[ATA_ID_SERNO],
761 (char *)&dev1->id[ATA_ID_SERNO], ATA_ID_SERNO_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return;
763
764 /* No serial number, thankfully very rare for CF */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200765 if (*(char *)&dev0->id[ATA_ID_SERNO] == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200771 dev1->dev_flags &= ~IDE_DFLAG_PRESENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772}
773
774EXPORT_SYMBOL_GPL(ide_undecoded_slave);
775
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +0100776static int ide_probe_port(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 unsigned long flags;
779 unsigned int irqd;
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +0100780 int unit, rc = -ENODEV;
781
782 BUG_ON(hwif->present);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200784 if ((hwif->drives[0].dev_flags & IDE_DFLAG_NOPROBE) &&
785 (hwif->drives[1].dev_flags & IDE_DFLAG_NOPROBE))
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +0100786 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 /*
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 Zolnierkiewiczc860a8f2008-02-01 23:09:34 +0100798 if (ide_port_wait_ready(hwif) == -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
800
801 /*
Bartlomiej Zolnierkiewiczf367bed2008-03-29 19:48:21 +0100802 * Second drive should only exist if first drive was found,
803 * but a lot of cdrom drives are configured as single slaves.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 */
Bartlomiej Zolnierkiewiczf367bed2008-03-29 19:48:21 +0100805 for (unit = 0; unit < MAX_DRIVES; ++unit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 ide_drive_t *drive = &hwif->drives[unit];
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +0200807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 (void) probe_for_drive(drive);
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200809 if (drive->dev_flags & IDE_DFLAG_PRESENT)
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +0100810 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
Bartlomiej Zolnierkiewicze460a592008-04-27 15:38:24 +0200812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 local_irq_restore(flags);
Bartlomiej Zolnierkiewicze460a592008-04-27 15:38:24 +0200814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 /*
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 Zolnierkiewicza14dc572008-02-01 23:09:36 +0100822 return rc;
Bartlomiej Zolnierkiewicze84e7ea2008-02-01 23:09:36 +0100823}
824
825static void ide_port_tune_devices(ide_hwif_t *hwif)
826{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200827 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicze84e7ea2008-02-01 23:09:36 +0100828 int unit;
829
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100830 for (unit = 0; unit < MAX_DRIVES; unit++) {
831 ide_drive_t *drive = &hwif->drives[unit];
832
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200833 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
834 if (port_ops && port_ops->quirkproc)
835 port_ops->quirkproc(drive);
836 }
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100837 }
Bartlomiej Zolnierkiewicz0380dad2007-06-08 15:14:29 +0200838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 for (unit = 0; unit < MAX_DRIVES; ++unit) {
840 ide_drive_t *drive = &hwif->drives[unit];
841
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200842 if (drive->dev_flags & IDE_DFLAG_PRESENT) {
Bartlomiej Zolnierkiewicz207daea2008-04-27 15:38:29 +0200843 ide_set_max_pio(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200845 drive->dev_flags |= IDE_DFLAG_NICE1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200847 if (hwif->dma_ops)
Bartlomiej Zolnierkiewicz8c0697c2007-10-16 22:29:58 +0200848 ide_set_dma(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850 }
Kumar Gala208a08f2006-03-24 03:18:21 -0800851
852 for (unit = 0; unit < MAX_DRIVES; ++unit) {
853 ide_drive_t *drive = &hwif->drives[unit];
854
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200855 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 Gala208a08f2006-03-24 03:18:21 -0800858 else
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200859 drive->dev_flags &= ~IDE_DFLAG_NO_IO_32BIT;
Kumar Gala208a08f2006-03-24 03:18:21 -0800860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 * init request queue
865 */
866static int ide_init_queue(ide_drive_t *drive)
867{
Jens Axboe165125e2007-07-24 09:28:11 +0200868 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 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 Lameter19460892005-06-23 00:08:19 -0700880
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100881 q = blk_init_queue_node(do_ide_request, &hwif->hwgroup->lock,
882 hwif_to_node(hwif));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (!q)
884 return 1;
885
886 q->queuedata = drive;
887 blk_queue_segment_boundary(q, 0xffff);
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 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 Torvalds1da177e2005-04-16 15:20:36 -0700916 return 0;
917}
918
Bartlomiej Zolnierkiewicz0947e0d2008-02-02 19:56:41 +0100919static void ide_add_drive_to_hwgroup(ide_drive_t *drive)
920{
921 ide_hwgroup_t *hwgroup = drive->hwif->hwgroup;
922
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100923 spin_lock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz0947e0d2008-02-02 19:56:41 +0100924 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 Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100933 spin_unlock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz0947e0d2008-02-02 19:56:41 +0100934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/*
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100937 * For any present drive:
938 * - allocate the block device queue
939 * - link drive into the hwgroup
940 */
Elias Oltmannse415e492008-10-13 21:39:45 +0200941static int ide_port_setup_devices(ide_hwif_t *hwif)
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100942{
Elias Oltmannse415e492008-10-13 21:39:45 +0200943 int i, j = 0;
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100944
Bartlomiej Zolnierkiewicz26042d02008-04-18 00:46:22 +0200945 mutex_lock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100946 for (i = 0; i < MAX_DRIVES; i++) {
947 ide_drive_t *drive = &hwif->drives[i];
948
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +0200949 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100950 continue;
951
952 if (ide_init_queue(drive)) {
953 printk(KERN_ERR "ide: failed to init %s\n",
954 drive->name);
Elias Oltmannse415e492008-10-13 21:39:45 +0200955 kfree(drive->id);
956 drive->id = NULL;
957 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100958 continue;
959 }
960
Elias Oltmannse415e492008-10-13 21:39:45 +0200961 j++;
962
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100963 ide_add_drive_to_hwgroup(drive);
964 }
Bartlomiej Zolnierkiewicz26042d02008-04-18 00:46:22 +0200965 mutex_unlock(&ide_cfg_mtx);
Elias Oltmannse415e492008-10-13 21:39:45 +0200966
967 return j;
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100968}
969
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +0200970static ide_hwif_t *ide_ports[MAX_HWIFS];
971
Bartlomiej Zolnierkiewicz60591432008-07-23 19:55:58 +0200972void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
973{
974 ide_hwgroup_t *hwgroup = hwif->hwgroup;
975
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +0200976 ide_ports[hwif->index] = NULL;
977
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +0100978 spin_lock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz60591432008-07-23 19:55:58 +0200979 /*
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 Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001006 spin_unlock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz60591432008-07-23 19:55:58 +02001007}
1008
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +01001009/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 * 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 Torvalds1da177e2005-04-16 15:20:36 -07001016 */
1017static int init_irq (ide_hwif_t *hwif)
1018{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001019 struct ide_io_ports *io_ports = &hwif->io_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 unsigned int index;
1021 ide_hwgroup_t *hwgroup;
1022 ide_hwif_t *match = NULL;
1023
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001024 mutex_lock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 hwif->hwgroup = NULL;
Bartlomiej Zolnierkiewicz75d21ff2008-10-13 21:39:33 +02001026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 for (index = 0; index < MAX_HWIFS; index++) {
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +02001028 ide_hwif_t *h = ide_ports[index];
1029
1030 if (h && h->hwgroup) { /* scan only initialized ports */
Bartlomiej Zolnierkiewicz702c0262008-12-29 20:27:36 +01001031 if (hwif->host->host_flags & IDE_HFLAG_SERIALIZE) {
1032 if (hwif->host == h->host)
1033 match = h;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 }
1036 }
Bartlomiej Zolnierkiewicz75d21ff2008-10-13 21:39:33 +02001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /*
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 Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001054 spin_lock_irq(&hwgroup->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 hwif->next = hwgroup->hwif->next;
1056 hwgroup->hwif->next = hwif;
Bartlomiej Zolnierkiewiczcae5c822008-02-01 23:09:36 +01001057 BUG_ON(hwif->next == hwif);
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001058 spin_unlock_irq(&hwgroup->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 } else {
Bartlomiej Zolnierkiewicz422278e2008-02-01 23:09:35 +01001060 hwgroup = kmalloc_node(sizeof(*hwgroup), GFP_KERNEL|__GFP_ZERO,
1061 hwif_to_node(hwif));
1062 if (hwgroup == NULL)
1063 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001065 spin_lock_init(&hwgroup->lock);
1066
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 hwif->hwgroup = hwgroup;
Bartlomiej Zolnierkiewicz422278e2008-02-01 23:09:35 +01001068 hwgroup->hwif = hwif->next = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 init_timer(&hwgroup->timer);
1071 hwgroup->timer.function = &ide_timer_expiry;
1072 hwgroup->timer.data = (unsigned long) hwgroup;
1073 }
1074
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +02001075 ide_ports[hwif->index] = hwif;
1076
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /*
1078 * Allocate the irq, if not already obtained for another hwif
1079 */
1080 if (!match || match->irq != hwif->irq) {
Bartlomiej Zolnierkiewicz7b5da4b2008-01-25 22:17:08 +01001081 int sa = 0;
Adrian Bunk7b892802008-02-06 01:36:29 -08001082#if defined(__mc68000__)
Thomas Gleixner362537b2006-07-01 19:29:34 -07001083 sa = IRQF_SHARED;
Bartlomiej Zolnierkiewicze1771e22008-02-11 00:32:15 +01001084#endif /* __mc68000__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Bartlomiej Zolnierkiewicz6b5cde32008-12-29 20:27:32 +01001086 if (hwif->chipset == ide_pci)
Thomas Gleixner362537b2006-07-01 19:29:34 -07001087 sa = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001089 if (io_ports->ctl_addr)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001090 hwif->tp_ops->set_irq(hwif, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 if (request_irq(hwif->irq,&ide_intr,sa,hwif->name,hwgroup))
1093 goto out_unlink;
1094 }
1095
Bartlomiej Zolnierkiewicz8a0e7e12008-02-02 19:56:41 +01001096 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 Bunk7b892802008-02-06 01:36:29 -08001104#if !defined(__mc68000__)
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001105 printk(KERN_INFO "%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001106 io_ports->data_addr, io_ports->status_addr,
1107 io_ports->ctl_addr, hwif->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108#else
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001109 printk(KERN_INFO "%s at 0x%08lx on irq %d", hwif->name,
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001110 io_ports->data_addr, hwif->irq);
Adrian Bunk7b892802008-02-06 01:36:29 -08001111#endif /* __mc68000__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (match)
Bartlomiej Zolnierkiewiczf58c1ab2008-12-29 20:27:33 +01001113 printk(KERN_CONT " (serialized with %s)", match->name);
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001114 printk(KERN_CONT "\n");
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +01001115
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001116 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return 0;
1118out_unlink:
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +01001119 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120out_up:
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001121 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return 1;
1123}
1124
1125static int ata_lock(dev_t dev, void *data)
1126{
1127 /* FIXME: we want to pin hwif down */
1128 return 0;
1129}
1130
1131static 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 Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001136
1137 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 return NULL;
1139
1140 if (drive->media == ide_disk)
1141 request_module("ide-disk");
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001142 if (drive->dev_flags & IDE_DFLAG_SCSI)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 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
1154static struct kobject *exact_match(dev_t dev, int *part, void *data)
1155{
1156 struct gendisk *p = data;
1157 *part &= (1 << PARTN_BITS) - 1;
Tejun Heoed9e1982008-08-25 19:56:05 +09001158 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
1161static 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
1170void 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
1176EXPORT_SYMBOL_GPL(ide_register_region);
1177
1178void ide_unregister_region(struct gendisk *disk)
1179{
1180 blk_unregister_region(MKDEV(disk->major, disk->first_minor),
1181 disk->minors);
1182}
1183
1184EXPORT_SYMBOL_GPL(ide_unregister_region);
1185
1186void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
1187{
1188 ide_hwif_t *hwif = drive->hwif;
Bartlomiej Zolnierkiewicz7f612f22008-10-13 21:39:40 +02001189 unsigned int unit = drive->dn & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
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
1197EXPORT_SYMBOL_GPL(ide_init_disk);
1198
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001199static 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 Torvalds1da177e2005-04-16 15:20:36 -07001222static void drive_release_dev (struct device *dev)
1223{
1224 ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001225 ide_hwgroup_t *hwgroup = drive->hwif->hwgroup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Bartlomiej Zolnierkiewicz5b0c4b32008-04-18 00:46:22 +02001227 ide_proc_unregister_device(drive);
1228
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001229 spin_lock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001230 ide_remove_drive_from_hwgroup(drive);
Jesper Juhl6044ec82005-11-07 01:01:32 -08001231 kfree(drive->id);
1232 drive->id = NULL;
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001233 drive->dev_flags &= ~IDE_DFLAG_PRESENT;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001234 /* Messed up locking ... */
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001235 spin_unlock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001236 blk_cleanup_queue(drive->queue);
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001237 spin_lock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001238 drive->queue = NULL;
Bartlomiej Zolnierkiewicz2a2ca6a2008-12-29 20:27:31 +01001239 spin_unlock_irq(&hwgroup->lock);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001240
Aleksey Makarovf36d4022006-01-09 15:59:27 -08001241 complete(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244static int hwif_init(ide_hwif_t *hwif)
1245{
1246 int old_irq;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (!hwif->irq) {
Bartlomiej Zolnierkiewicza861beb2008-07-08 19:27:22 +02001249 hwif->irq = __ide_default_irq(hwif->io_ports.data_addr);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001250 if (!hwif->irq) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001251 printk(KERN_ERR "%s: disabled, no IRQ\n", hwif->name);
Bartlomiej Zolnierkiewicz48535652008-02-01 23:09:34 +01001252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 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 Axboe45711f12007-10-22 21:19:53 +02001262 hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 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 Axboe45711f12007-10-22 21:19:53 +02001268
1269 sg_init_table(hwif->sg_table, hwif->sg_max_nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
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 Zolnierkiewicza861beb2008-07-08 19:27:22 +02001279 hwif->irq = __ide_default_irq(hwif->io_ports.data_addr);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001280 if (!hwif->irq) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001281 printk(KERN_ERR "%s: disabled, unable to get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 hwif->name, old_irq);
1283 goto out;
1284 }
1285 if (init_irq(hwif)) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001286 printk(KERN_ERR "%s: probed IRQ %d and default IRQ %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 hwif->name, old_irq, hwif->irq);
1288 goto out;
1289 }
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001290 printk(KERN_WARNING "%s: probed IRQ %d failed, using default\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 hwif->name, hwif->irq);
1292
1293done:
Bartlomiej Zolnierkiewicz3a4e7c92008-02-02 19:56:40 +01001294 blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
1295 THIS_MODULE, ata_probe, ata_lock, hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return 1;
1297
1298out:
1299 unregister_blkdev(hwif->major, hwif->name);
1300 return 0;
1301}
1302
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001303static 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 Zolnierkiewiczc5d70cc2008-02-02 19:56:41 +01001309 struct device *dev = &drive->gendev;
1310 int ret;
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001311
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001312 if ((drive->dev_flags & IDE_DFLAG_PRESENT) == 0)
Bartlomiej Zolnierkiewiczc5d70cc2008-02-02 19:56:41 +01001313 continue;
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001314
Kay Sieversdc09c782008-12-29 20:27:36 +01001315 dev_set_name(dev, "%u.%u", hwif->index, i);
Bartlomiej Zolnierkiewiczc5d70cc2008-02-02 19:56:41 +01001316 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 Zolnierkiewicz9601a602007-10-20 00:32:29 +02001325 }
1326}
1327
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001328static void ide_port_init_devices(ide_hwif_t *hwif)
1329{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001330 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001331 int i;
1332
1333 for (i = 0; i < MAX_DRIVES; i++) {
1334 ide_drive_t *drive = &hwif->drives[i];
1335
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +02001336 drive->dn = i + hwif->channel * 2;
1337
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001338 if (hwif->host_flags & IDE_HFLAG_IO_32BIT)
1339 drive->io_32bit = 1;
1340 if (hwif->host_flags & IDE_HFLAG_UNMASK_IRQS)
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001341 drive->dev_flags |= IDE_DFLAG_UNMASK;
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +01001342 if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS)
Bartlomiej Zolnierkiewicz97100fc2008-10-13 21:39:36 +02001343 drive->dev_flags |= IDE_DFLAG_NO_UNMASK;
Bartlomiej Zolnierkiewicz1f2cf8b2008-02-02 19:56:40 +01001344
Bartlomiej Zolnierkiewicze6d95bd2008-07-16 20:33:42 +02001345 if (port_ops && port_ops->init_dev)
1346 port_ops->init_dev(drive);
1347 }
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001348}
1349
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001350static void ide_init_port(ide_hwif_t *hwif, unsigned int port,
1351 const struct ide_port_info *d)
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001352{
Adrian Bunkb7691642008-06-10 20:56:36 +02001353 hwif->channel = port;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001354
1355 if (d->chipset)
1356 hwif->chipset = d->chipset;
1357
1358 if (d->init_iops)
1359 d->init_iops(hwif);
1360
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001361 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 Zolnierkiewicz23f8e4b2008-05-01 14:08:51 +02001365 /* ->host_flags may be set by ->init_iops (or even earlier...) */
1366 hwif->host_flags |= d->host_flags;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001367 hwif->pio_mask = d->pio_mask;
1368
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001369 if (d->tp_ops)
1370 hwif->tp_ops = d->tp_ops;
1371
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001372 /* ->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 Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001376 hwif->swdma_mask = d->swdma_mask;
1377 hwif->mwdma_mask = d->mwdma_mask;
1378 hwif->ultra_mask = d->udma_mask;
1379
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +02001380 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 Zolnierkiewiczebb00fb2008-07-23 19:55:51 +02001390 hwif->dma_base = 0;
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +02001391 hwif->swdma_mask = 0;
1392 hwif->mwdma_mask = 0;
1393 hwif->ultra_mask = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001394 } else if (d->dma_ops)
1395 hwif->dma_ops = d->dma_ops;
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +02001396 }
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001397
Bartlomiej Zolnierkiewicz1024c5f2008-05-04 17:03:41 +02001398 if ((d->host_flags & IDE_HFLAG_SERIALIZE) ||
Bartlomiej Zolnierkiewicz702c0262008-12-29 20:27:36 +01001399 ((d->host_flags & IDE_HFLAG_SERIALIZE_DMA) && hwif->dma_base))
1400 hwif->host->host_flags |= IDE_HFLAG_SERIALIZE;
Bartlomiej Zolnierkiewicz1024c5f2008-05-04 17:03:41 +02001401
Bartlomiej Zolnierkiewicz6b492492008-12-29 20:27:34 +01001402 if (d->max_sectors)
1403 hwif->rqsize = d->max_sectors;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001404
1405 /* call chipset specific routine for each enabled port */
1406 if (d->init_hwif)
1407 d->init_hwif(hwif);
Bartlomiej Zolnierkiewiczc7f6f212008-04-18 00:46:22 +02001408}
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +01001409
Bartlomiej Zolnierkiewiczc7f6f212008-04-18 00:46:22 +02001410static void ide_port_cable_detect(ide_hwif_t *hwif)
1411{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001412 const struct ide_port_ops *port_ops = hwif->port_ops;
1413
1414 if (port_ops && port_ops->cable_detect && (hwif->ultra_mask & 0x78)) {
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +01001415 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001416 hwif->cbl = port_ops->cable_detect(hwif);
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +01001417 }
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001418}
1419
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001420static 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
1434static DEVICE_ATTR(delete_devices, S_IWUSR, NULL, store_delete_devices);
1435
1436static 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
1451static DEVICE_ATTR(scan, S_IWUSR, NULL, store_scan);
1452
1453static struct device_attribute *ide_port_attrs[] = {
1454 &dev_attr_delete_devices,
1455 &dev_attr_scan,
1456 NULL
1457};
1458
1459static int ide_sysfs_register_port(ide_hwif_t *hwif)
1460{
Bartlomiej Zolnierkiewiczca09a232008-10-05 18:23:28 +02001461 int i, uninitialized_var(rc);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001462
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 Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001472static unsigned int ide_indexes;
1473
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001474/**
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001475 * ide_find_port_slot - find free port slot
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001476 * @d: IDE port info
1477 *
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001478 * Return the new port slot index or -ENOENT if we are out of free slots.
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001479 */
1480
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001481static int ide_find_port_slot(const struct ide_port_info *d)
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001482{
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001483 int idx = -ENOENT;
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001484 u8 bootable = (d && (d->host_flags & IDE_HFLAG_NON_BOOTABLE)) ? 0 : 1;
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001485 u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;;
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001486
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 Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001497 mutex_lock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewicz75d21ff2008-10-13 21:39:33 +02001498 if (bootable) {
1499 if ((ide_indexes | i) != (1 << MAX_HWIFS) - 1)
1500 idx = ffz(ide_indexes | i);
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001501 } else {
Bartlomiej Zolnierkiewicz75d21ff2008-10-13 21:39:33 +02001502 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 Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001506 }
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001507 if (idx >= 0)
1508 ide_indexes |= (1 << idx);
1509 mutex_unlock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001510
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001511 return idx;
1512}
Bartlomiej Zolnierkiewiczeb3aff52008-07-16 20:33:42 +02001513
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001514static 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 Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001519}
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001520
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001521struct ide_host *ide_host_alloc(const struct ide_port_info *d, hw_regs_t **hws)
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001522{
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 Zolnierkiewicza36223b2008-10-13 21:39:43 +02001530 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001531 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001532 int idx;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001533
1534 if (hws[i] == NULL)
1535 continue;
1536
Bartlomiej Zolnierkiewicz18de1012008-07-23 19:55:58 +02001537 hwif = kzalloc(sizeof(*hwif), GFP_KERNEL);
1538 if (hwif == NULL)
1539 continue;
1540
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001541 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 Zolnierkiewicz18de1012008-07-23 19:55:58 +02001545 kfree(hwif);
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001546 continue;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001547 }
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001548
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001549 ide_init_port_data(hwif, idx);
1550
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +02001551 hwif->host = host;
1552
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001553 host->ports[i] = hwif;
1554 host->n_ports++;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001555 }
1556
1557 if (host->n_ports == 0) {
1558 kfree(host);
1559 return NULL;
1560 }
1561
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +02001562 if (hws[0])
1563 host->dev[0] = hws[0]->dev;
1564
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +02001565 if (d) {
1566 host->init_chipset = d->init_chipset;
Bartlomiej Zolnierkiewiczef0b0422008-07-24 22:53:19 +02001567 host->host_flags = d->host_flags;
Bartlomiej Zolnierkiewiczfeb22b72008-10-10 22:39:32 +02001568 }
Bartlomiej Zolnierkiewiczef0b0422008-07-24 22:53:19 +02001569
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001570 return host;
1571}
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001572EXPORT_SYMBOL_GPL(ide_host_alloc);
1573
1574int ide_host_register(struct ide_host *host, const struct ide_port_info *d,
1575 hw_regs_t **hws)
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001576{
1577 ide_hwif_t *hwif, *mate = NULL;
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001578 int i, j = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001579
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001580 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001581 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001582
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001583 if (hwif == NULL) {
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001584 mate = NULL;
1585 continue;
1586 }
1587
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001588 ide_init_port_hw(hwif, hws[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001589 ide_port_apply_params(hwif);
1590
1591 if (d == NULL) {
1592 mate = NULL;
Bartlomiej Zolnierkiewicz123995b2008-10-13 21:39:40 +02001593 } 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 Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001603 }
1604
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001605 ide_port_init_devices(hwif);
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001606 }
1607
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001608 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001609 hwif = host->ports[i];
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001610
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001611 if (hwif == NULL)
1612 continue;
Bartlomiej Zolnierkiewicz139ddfc2008-02-01 23:09:36 +01001613
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001614 if (ide_probe_port(hwif) == 0)
1615 hwif->present = 1;
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +01001616
1617 if (hwif->chipset != ide_4drives || !hwif->mate ||
1618 !hwif->mate->present)
1619 ide_register_port(hwif);
1620
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001621 if (hwif->present)
1622 ide_port_tune_devices(hwif);
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001623 }
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001624
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001625 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001626 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001627
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001628 if (hwif == NULL)
1629 continue;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001630
1631 if (hwif_init(hwif) == 0) {
1632 printk(KERN_INFO "%s: failed to initialize IDE "
1633 "interface\n", hwif->name);
Bartlomiej Zolnierkiewicz48535652008-02-01 23:09:34 +01001634 hwif->present = 0;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001635 continue;
1636 }
Bartlomiej Zolnierkiewiczdecdc3f2008-02-02 19:56:41 +01001637
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001638 if (hwif->present)
Elias Oltmannse415e492008-10-13 21:39:45 +02001639 if (ide_port_setup_devices(hwif) == 0) {
1640 hwif->present = 0;
1641 continue;
1642 }
1643
1644 j++;
Bartlomiej Zolnierkiewicz26042d02008-04-18 00:46:22 +02001645
Bartlomiej Zolnierkiewiczdecdc3f2008-02-02 19:56:41 +01001646 ide_acpi_init(hwif);
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001647
1648 if (hwif->present)
1649 ide_acpi_port_init_devices(hwif);
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001650 }
1651
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001652 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001653 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001654
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001655 if (hwif == NULL)
1656 continue;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001657
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001658 if (hwif->chipset == ide_unknown)
1659 hwif->chipset = ide_generic;
1660
1661 if (hwif->present)
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001662 hwif_register_devices(hwif);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001663 }
1664
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001665 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001666 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz327617e2008-02-02 19:56:43 +01001667
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001668 if (hwif == NULL)
1669 continue;
Bartlomiej Zolnierkiewicz327617e2008-02-02 19:56:43 +01001670
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001671 ide_sysfs_register_port(hwif);
1672 ide_proc_register_port(hwif);
1673
1674 if (hwif->present)
Bartlomiej Zolnierkiewiczd9270a32008-02-02 19:56:43 +01001675 ide_proc_port_register_devices(hwif);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001676 }
1677
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001678 return j ? 0 : -1;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001679}
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001680EXPORT_SYMBOL_GPL(ide_host_register);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001681
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001682int 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 Zolnierkiewicz8a695802008-07-23 19:55:59 +02001686 int rc;
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001687
1688 host = ide_host_alloc(d, hws);
1689 if (host == NULL)
1690 return -ENOMEM;
1691
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001692 rc = ide_host_register(host, d, hws);
1693 if (rc) {
1694 ide_host_free(host);
1695 return rc;
1696 }
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001697
1698 if (hostp)
1699 *hostp = host;
1700
1701 return 0;
1702}
1703EXPORT_SYMBOL_GPL(ide_host_add);
1704
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001705void ide_host_free(struct ide_host *host)
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001706{
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001707 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001708 int i;
1709
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001710 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001711 hwif = host->ports[i];
1712
1713 if (hwif == NULL)
1714 continue;
1715
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001716 ide_free_port_slot(hwif->index);
Bartlomiej Zolnierkiewicz18de1012008-07-23 19:55:58 +02001717 kfree(hwif);
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001718 }
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001719
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001720 kfree(host);
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001721}
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001722EXPORT_SYMBOL_GPL(ide_host_free);
1723
1724void ide_host_remove(struct ide_host *host)
1725{
1726 int i;
1727
Bartlomiej Zolnierkiewicza36223b2008-10-13 21:39:43 +02001728 for (i = 0; i < MAX_HOST_PORTS; i++) {
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001729 if (host->ports[i])
1730 ide_unregister(host->ports[i]);
1731 }
1732
1733 ide_host_free(host);
1734}
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001735EXPORT_SYMBOL_GPL(ide_host_remove);
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +02001736
1737void ide_port_scan(ide_hwif_t *hwif)
1738{
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001739 ide_port_apply_params(hwif);
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +02001740 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}
1754EXPORT_SYMBOL_GPL(ide_port_scan);