blob: be121ffcc1dcc9319944b6bbcd3644910f98064c [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 */
113
114static inline void do_identify (ide_drive_t *drive, u8 cmd)
115{
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];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 int bswap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 /* read 512 bytes of id info */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200122 hwif->tp_ops->input_data(drive, NULL, id, SECTOR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 drive->id_read = 1;
125 local_irq_enable();
Bartlomiej Zolnierkiewicz7b9f25b2008-02-01 23:09:28 +0100126#ifdef DEBUG
127 printk(KERN_INFO "%s: dumping identify data\n", drive->name);
128 ide_dump_identify((u8 *)id);
129#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 ide_fix_driveid(id);
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /*
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200133 * ATA_CMD_ID_ATA returns little-endian info,
134 * ATA_CMD_ID_ATAPI *usually* returns little-endian info.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200136 if (cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200137 if ((m[0] == 'N' && m[1] == 'E') || /* NEC */
138 (m[0] == 'F' && m[1] == 'X') || /* Mitsumi */
139 (m[0] == 'P' && m[1] == 'i')) /* Pioneer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* Vertos drives may still be weird */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200141 bswap ^= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200143
144 ide_fixstring(m, ATA_ID_PROD_LEN, bswap);
145 ide_fixstring((char *)&id[ATA_ID_FW_REV], ATA_ID_FW_REV_LEN, bswap);
146 ide_fixstring((char *)&id[ATA_ID_SERNO], ATA_ID_SERNO_LEN, bswap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Tejun Heo699b0522007-11-05 21:42:25 +0100148 /* we depend on this a lot! */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200149 m[ATA_ID_PROD_LEN - 1] = '\0';
Tejun Heo699b0522007-11-05 21:42:25 +0100150
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200151 if (strstr(m, "E X A B Y T E N E S T"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 goto err_misc;
153
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200154 printk(KERN_INFO "%s: %s, ", drive->name, m);
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 drive->present = 1;
157 drive->dead = 0;
158
159 /*
160 * Check for an ATAPI device
161 */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200162 if (cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200163 u8 type = (id[ATA_ID_CONFIG] >> 8) & 0x1f;
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200164
165 printk(KERN_CONT "ATAPI ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 switch (type) {
167 case ide_floppy:
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200168 if (!strstr(m, "CD-ROM")) {
169 if (!strstr(m, "oppy") &&
170 !strstr(m, "poyp") &&
171 !strstr(m, "ZIP"))
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200172 printk(KERN_CONT "cdrom or floppy?, assuming ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (drive->media != ide_cdrom) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200174 printk(KERN_CONT "FLOPPY");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 drive->removable = 1;
176 break;
177 }
178 }
179 /* Early cdrom models used zero */
180 type = ide_cdrom;
181 case ide_cdrom:
182 drive->removable = 1;
183#ifdef CONFIG_PPC
184 /* kludge for Apple PowerBook internal zip */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200185 if (!strstr(m, "CD-ROM") && strstr(m, "ZIP")) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200186 printk(KERN_CONT "FLOPPY");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 type = ide_floppy;
188 break;
189 }
190#endif
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200191 printk(KERN_CONT "CD/DVD-ROM");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 break;
193 case ide_tape:
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200194 printk(KERN_CONT "TAPE");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 break;
196 case ide_optical:
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200197 printk(KERN_CONT "OPTICAL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 drive->removable = 1;
199 break;
200 default:
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200201 printk(KERN_CONT "UNKNOWN (type %d)", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203 }
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200204 printk(KERN_CONT " drive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 drive->media = type;
206 /* an ATAPI device ignores DRDY */
207 drive->ready_stat = 0;
208 return;
209 }
210
211 /*
212 * Not an ATAPI device: looks like a "regular" hard disk
213 */
Richard Purdie98109332006-02-03 03:04:55 -0800214
215 /*
216 * 0x848a = CompactFlash device
217 * These are *not* removable in Linux definition of the term
218 */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200219 if (id[ATA_ID_CONFIG] != 0x848a && (id[ATA_ID_CONFIG] & (1 << 7)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 drive->removable = 1;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 drive->media = ide_disk;
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200223
224 printk(KERN_CONT "%s DISK drive\n",
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200225 (id[ATA_ID_CONFIG] == 0x848a) ? "CFA" : "ATA");
Bartlomiej Zolnierkiewiczcd3dbc92008-01-25 22:17:13 +0100226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return;
228
229err_misc:
230 kfree(id);
231 drive->present = 0;
232 return;
233}
234
235/**
236 * actual_try_to_identify - send ata/atapi identify
237 * @drive: drive to identify
238 * @cmd: command to use
239 *
240 * try_to_identify() sends an ATA(PI) IDENTIFY request to a drive
241 * and waits for a response. It also monitors irqs while this is
242 * happening, in hope of automatically determining which one is
243 * being used by the interface.
244 *
245 * Returns: 0 device was identified
246 * 1 device timed-out (no response to identify request)
247 * 2 device aborted the command (refused to identify itself)
248 */
249
250static int actual_try_to_identify (ide_drive_t *drive, u8 cmd)
251{
252 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200253 struct ide_io_ports *io_ports = &hwif->io_ports;
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200254 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100255 int use_altstatus = 0, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 unsigned long timeout;
257 u8 s = 0, a = 0;
258
259 /* take a deep breath */
260 msleep(50);
261
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200262 if (io_ports->ctl_addr) {
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200263 a = tp_ops->read_altstatus(hwif);
264 s = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200265 if ((a ^ s) & ~ATA_IDX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /* ancient Seagate drives, broken interfaces */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100267 printk(KERN_INFO "%s: probing with STATUS(0x%02x) "
268 "instead of ALTSTATUS(0x%02x)\n",
269 drive->name, s, a);
270 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 /* use non-intrusive polling */
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100272 use_altstatus = 1;
273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* set features register for atapi
276 * identify command to be sure of reply
277 */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200278 if (cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz4e658372008-07-23 19:55:53 +0200279 ide_task_t task;
280
281 memset(&task, 0, sizeof(task));
282 /* disable DMA & overlap */
283 task.tf_flags = IDE_TFLAG_OUT_FEATURE;
284
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200285 tp_ops->tf_load(drive, &task);
Bartlomiej Zolnierkiewicz4e658372008-07-23 19:55:53 +0200286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /* ask drive for ID */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200289 tp_ops->exec_command(hwif, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200291 timeout = ((cmd == ATA_CMD_ID_ATA) ? WAIT_WORSTCASE : WAIT_PIDENTIFY) / 2;
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200292
293 if (ide_busy_sleep(hwif, timeout, use_altstatus))
294 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200296 /* wait for IRQ and ATA_DRQ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 msleep(50);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200298 s = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100299
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200300 if (OK_STAT(s, ATA_DRQ, BAD_R_STAT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 unsigned long flags;
302
303 /* local CPU only; some systems need this */
304 local_irq_save(flags);
305 /* drive returned ID */
306 do_identify(drive, cmd);
307 /* drive responded with ID */
308 rc = 0;
309 /* clear drive IRQ */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200310 (void)tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 local_irq_restore(flags);
312 } else {
313 /* drive refused ID */
314 rc = 2;
315 }
316 return rc;
317}
318
319/**
320 * try_to_identify - try to identify a drive
321 * @drive: drive to probe
322 * @cmd: command to use
323 *
324 * Issue the identify command and then do IRQ probing to
325 * complete the identification when needed by finding the
326 * IRQ the drive is attached to
327 */
328
329static int try_to_identify (ide_drive_t *drive, u8 cmd)
330{
331 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200332 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 int retval;
334 int autoprobe = 0;
335 unsigned long cookie = 0;
336
337 /*
338 * Disable device irq unless we need to
339 * probe for it. Otherwise we'll get spurious
340 * interrupts during the identify-phase that
341 * the irq handler isn't expecting.
342 */
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200343 if (hwif->io_ports.ctl_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 if (!hwif->irq) {
345 autoprobe = 1;
346 cookie = probe_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200348 tp_ops->set_irq(hwif, autoprobe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 }
350
351 retval = actual_try_to_identify(drive, cmd);
352
353 if (autoprobe) {
354 int irq;
Bartlomiej Zolnierkiewicz81ca6912008-01-26 20:13:08 +0100355
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200356 tp_ops->set_irq(hwif, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* clear drive IRQ */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200358 (void)tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 udelay(5);
360 irq = probe_irq_off(cookie);
361 if (!hwif->irq) {
362 if (irq > 0) {
363 hwif->irq = irq;
364 } else {
365 /* Mmmm.. multiple IRQs..
366 * don't know which was ours
367 */
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200368 printk(KERN_ERR "%s: IRQ probe failed (0x%lx)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 drive->name, cookie);
370 }
371 }
372 }
373 return retval;
374}
375
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200376int ide_busy_sleep(ide_hwif_t *hwif, unsigned long timeout, int altstatus)
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100377{
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100378 u8 stat;
379
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200380 timeout += jiffies;
381
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100382 do {
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200383 msleep(50); /* give drive a breather */
384 stat = altstatus ? hwif->tp_ops->read_altstatus(hwif)
385 : hwif->tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200386 if ((stat & ATA_BUSY) == 0)
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100387 return 0;
388 } while (time_before(jiffies, timeout));
389
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200390 return 1; /* drive timed-out */
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100391}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Bartlomiej Zolnierkiewicz1f2efb82008-07-23 19:55:54 +0200393static u8 ide_read_device(ide_drive_t *drive)
394{
395 ide_task_t task;
396
397 memset(&task, 0, sizeof(task));
398 task.tf_flags = IDE_TFLAG_IN_DEVICE;
399
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200400 drive->hwif->tp_ops->tf_read(drive, &task);
Bartlomiej Zolnierkiewicz1f2efb82008-07-23 19:55:54 +0200401
402 return task.tf.device;
403}
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405/**
406 * do_probe - probe an IDE device
407 * @drive: drive to probe
408 * @cmd: command to use
409 *
410 * do_probe() has the difficult job of finding a drive if it exists,
411 * without getting hung up if it doesn't exist, without trampling on
412 * ethernet cards, and without leaving any IRQs dangling to haunt us later.
413 *
414 * If a drive is "known" to exist (from CMOS or kernel parameters),
415 * but does not respond right away, the probe will "hang in there"
416 * for the maximum wait time (about 30 seconds), otherwise it will
417 * exit much more quickly.
418 *
419 * Returns: 0 device was identified
420 * 1 device timed-out (no response to identify request)
421 * 2 device aborted the command (refused to identify itself)
422 * 3 bad status from device (possible for ATAPI drives)
423 * 4 probe was not attempted because failure was obvious
424 */
425
426static int do_probe (ide_drive_t *drive, u8 cmd)
427{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200429 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100430 int rc;
431 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 if (drive->present) {
434 /* avoid waiting for inappropriate probes */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200435 if (drive->media != ide_disk && cmd == ATA_CMD_ID_ATA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 4;
437 }
438#ifdef DEBUG
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200439 printk(KERN_INFO "probing for %s: present=%d, media=%d, probetype=%s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 drive->name, drive->present, drive->media,
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200441 (cmd == ATA_CMD_ID_ATA) ? "ATA" : "ATAPI");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442#endif
443
444 /* needed for some systems
445 * (e.g. crw9624 as drive0 with disk as slave)
446 */
447 msleep(50);
448 SELECT_DRIVE(drive);
449 msleep(50);
Bartlomiej Zolnierkiewicz1f2efb82008-07-23 19:55:54 +0200450
451 if (ide_read_device(drive) != drive->select.all && !drive->present) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (drive->select.b.unit != 0) {
453 /* exit with drive0 selected */
454 SELECT_DRIVE(&hwif->drives[0]);
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200455 /* allow ATA_BUSY to assert & clear */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 msleep(50);
457 }
458 /* no i/f present: mmm.. this should be a 4 -ml */
459 return 3;
460 }
461
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200462 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewiczc47137a2008-02-06 02:57:51 +0100463
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200464 if (OK_STAT(stat, ATA_DRDY, ATA_BUSY) ||
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200465 drive->present || cmd == ATA_CMD_ID_ATAPI) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /* send cmd and wait */
467 if ((rc = try_to_identify(drive, cmd))) {
468 /* failed: try again */
469 rc = try_to_identify(drive,cmd);
470 }
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100471
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200472 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100473
Bartlomiej Zolnierkiewicz3a7d2482008-10-10 22:39:21 +0200474 if (stat == (ATA_BUSY | ATA_DRDY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return 4;
476
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200477 if (rc == 1 && cmd == ATA_CMD_ID_ATAPI) {
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100478 printk(KERN_ERR "%s: no response (status = 0x%02x), "
479 "resetting drive\n", drive->name, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 msleep(50);
Bartlomiej Zolnierkiewicze81a3bd2008-07-15 21:21:48 +0200481 SELECT_DRIVE(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 msleep(50);
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200483 tp_ops->exec_command(hwif, ATA_CMD_DEV_RESET);
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200484 (void)ide_busy_sleep(hwif, WAIT_WORSTCASE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 rc = try_to_identify(drive, cmd);
486 }
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100487
488 /* ensure drive IRQ is clear */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200489 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (rc == 1)
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100492 printk(KERN_ERR "%s: no response (status = 0x%02x)\n",
493 drive->name, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
495 /* not present or maybe ATAPI */
496 rc = 3;
497 }
498 if (drive->select.b.unit != 0) {
499 /* exit with drive0 selected */
500 SELECT_DRIVE(&hwif->drives[0]);
501 msleep(50);
502 /* ensure drive irq is clear */
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200503 (void)tp_ops->read_status(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 return rc;
506}
507
508/*
509 *
510 */
511static void enable_nest (ide_drive_t *drive)
512{
513 ide_hwif_t *hwif = HWIF(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200514 const struct ide_tp_ops *tp_ops = hwif->tp_ops;
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100515 u8 stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200517 printk(KERN_INFO "%s: enabling %s -- ",
518 hwif->name, (char *)&drive->id[ATA_ID_PROD]);
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 SELECT_DRIVE(drive);
521 msleep(50);
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200522 tp_ops->exec_command(hwif, ATA_EXABYTE_ENABLE_NEST);
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100523
Bartlomiej Zolnierkiewiczb163f462008-10-10 22:39:23 +0200524 if (ide_busy_sleep(hwif, WAIT_WORSTCASE, 0)) {
Bartlomiej Zolnierkiewicz3a5015c2008-01-26 20:13:09 +0100525 printk(KERN_CONT "failed (timeout)\n");
526 return;
527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 msleep(50);
530
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200531 stat = tp_ops->read_status(hwif);
Bartlomiej Zolnierkiewicz57b55272008-02-02 19:56:45 +0100532
533 if (!OK_STAT(stat, 0, BAD_STAT))
534 printk(KERN_CONT "failed (status = 0x%02x)\n", stat);
535 else
536 printk(KERN_CONT "success\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
538
539/**
540 * probe_for_drives - upper level drive probe
541 * @drive: drive to probe for
542 *
543 * probe_for_drive() tests for existence of a given drive using do_probe()
544 * and presents things to the user as needed.
545 *
546 * Returns: 0 no device was found
547 * 1 device was found (note: drive->present might
548 * still be 0)
549 */
550
551static inline u8 probe_for_drive (ide_drive_t *drive)
552{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200553 char *m;
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /*
556 * In order to keep things simple we have an id
557 * block for all drives at all times. If the device
558 * is pre ATA or refuses ATA/ATAPI identify we
559 * will add faked data to this.
560 *
561 * Also note that 0 everywhere means "can't do X"
562 */
563
Bartlomiej Zolnierkiewicz151a6702008-10-10 22:39:28 +0200564 drive->id = kzalloc(SECTOR_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 drive->id_read = 0;
566 if(drive->id == NULL)
567 {
568 printk(KERN_ERR "ide: out of memory for id data.\n");
569 return 0;
570 }
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200571
572 m = (char *)&drive->id[ATA_ID_PROD];
573 strcpy(m, "UNKNOWN");
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /* skip probing? */
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200576 if (!drive->noprobe) {
577retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* if !(success||timed-out) */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200579 if (do_probe(drive, ATA_CMD_ID_ATA) >= 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* look for ATAPI device */
Bartlomiej Zolnierkiewiczaaaade32008-10-10 22:39:21 +0200581 (void)do_probe(drive, ATA_CMD_ID_ATAPI);
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (!drive->present)
584 /* drive not found */
585 return 0;
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200586
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200587 if (strstr(m, "E X A B Y T E N E S T")) {
Alan Cox78595572007-07-03 22:28:35 +0200588 enable_nest(drive);
Bartlomiej Zolnierkiewiczc36a7e92008-10-10 22:39:23 +0200589 goto retry;
590 }
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* identification failed? */
593 if (!drive->id_read) {
594 if (drive->media == ide_disk) {
595 printk(KERN_INFO "%s: non-IDE drive, CHS=%d/%d/%d\n",
596 drive->name, drive->cyl,
597 drive->head, drive->sect);
598 } else if (drive->media == ide_cdrom) {
599 printk(KERN_INFO "%s: ATAPI cdrom (?)\n", drive->name);
600 } else {
601 /* nuke it */
602 printk(KERN_WARNING "%s: Unknown device on bus refused identification. Ignoring.\n", drive->name);
603 drive->present = 0;
604 }
605 }
606 /* drive was found */
607 }
608 if(!drive->present)
609 return 0;
610 /* The drive wasn't being helpful. Add generic info only */
611 if (drive->id_read == 0) {
612 generic_id(drive);
613 return 1;
614 }
615
616 if (drive->media == ide_disk) {
617 ide_disk_init_chs(drive);
618 ide_disk_init_mult_count(drive);
619 }
620
621 return drive->present;
622}
623
Pavel Machekfc410692008-07-23 19:56:02 +0200624static void hwif_release_dev(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 ide_hwif_t *hwif = container_of(dev, ide_hwif_t, gendev);
627
Aleksey Makarovf36d4022006-01-09 15:59:27 -0800628 complete(&hwif->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200631static int ide_register_port(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Randy Dunlap349ae232006-10-03 01:14:23 -0700633 int ret;
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* register with global device tree */
636 strlcpy(hwif->gendev.bus_id,hwif->name,BUS_ID_SIZE);
637 hwif->gendev.driver_data = hwif;
638 if (hwif->gendev.parent == NULL) {
Bartlomiej Zolnierkiewicz36501652008-02-01 23:09:31 +0100639 if (hwif->dev)
640 hwif->gendev.parent = hwif->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 else
642 /* Would like to do = &device_legacy */
643 hwif->gendev.parent = NULL;
644 }
645 hwif->gendev.release = hwif_release_dev;
Randy Dunlap349ae232006-10-03 01:14:23 -0700646 ret = device_register(&hwif->gendev);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200647 if (ret < 0) {
Randy Dunlap349ae232006-10-03 01:14:23 -0700648 printk(KERN_WARNING "IDE: %s: device_register error: %d\n",
Harvey Harrisoneb639632008-04-26 22:25:20 +0200649 __func__, ret);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200650 goto out;
651 }
652
Greg Kroah-Hartman716ad872008-05-16 17:55:12 -0700653 hwif->portdev = device_create_drvdata(ide_port_class, &hwif->gendev,
654 MKDEV(0, 0), hwif, hwif->name);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200655 if (IS_ERR(hwif->portdev)) {
656 ret = PTR_ERR(hwif->portdev);
657 device_unregister(&hwif->gendev);
658 }
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +0200659out:
660 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Bartlomiej Zolnierkiewiczc860a8f2008-02-01 23:09:34 +0100663/**
664 * ide_port_wait_ready - wait for port to become ready
665 * @hwif: IDE port
666 *
667 * This is needed on some PPCs and a bunch of BIOS-less embedded
668 * platforms. Typical cases are:
669 *
670 * - The firmware hard reset the disk before booting the kernel,
671 * the drive is still doing it's poweron-reset sequence, that
672 * can take up to 30 seconds.
673 *
674 * - The firmware does nothing (or no firmware), the device is
675 * still in POST state (same as above actually).
676 *
677 * - Some CD/DVD/Writer combo drives tend to drive the bus during
678 * their reset sequence even when they are non-selected slave
679 * devices, thus preventing discovery of the main HD.
680 *
681 * Doing this wait-for-non-busy should not harm any existing
682 * configuration and fix some issues like the above.
683 *
684 * BenH.
685 *
686 * Returns 0 on success, error code (< 0) otherwise.
687 */
688
689static int ide_port_wait_ready(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
Jonas Stare82661052007-11-27 21:35:53 +0100691 int unit, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 printk(KERN_DEBUG "Probing IDE interface %s...\n", hwif->name);
694
695 /* Let HW settle down a bit from whatever init state we
696 * come from */
697 mdelay(2);
698
699 /* Wait for BSY bit to go away, spec timeout is 30 seconds,
700 * I know of at least one disk who takes 31 seconds, I use 35
701 * here to be safe
702 */
703 rc = ide_wait_not_busy(hwif, 35000);
704 if (rc)
705 return rc;
706
707 /* Now make sure both master & slave are ready */
Jonas Stare82661052007-11-27 21:35:53 +0100708 for (unit = 0; unit < MAX_DRIVES; unit++) {
709 ide_drive_t *drive = &hwif->drives[unit];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Jonas Stare82661052007-11-27 21:35:53 +0100711 /* Ignore disks that we will not probe for later. */
712 if (!drive->noprobe || drive->present) {
713 SELECT_DRIVE(drive);
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +0200714 hwif->tp_ops->set_irq(hwif, 1);
Jonas Stare82661052007-11-27 21:35:53 +0100715 mdelay(2);
716 rc = ide_wait_not_busy(hwif, 35000);
717 if (rc)
718 goto out;
719 } else
720 printk(KERN_DEBUG "%s: ide_wait_not_busy() skipped\n",
721 drive->name);
722 }
723out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /* Exit function with master reselected (let's be sane) */
Jonas Stare82661052007-11-27 21:35:53 +0100725 if (unit)
726 SELECT_DRIVE(&hwif->drives[0]);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return rc;
729}
730
731/**
732 * ide_undecoded_slave - look for bad CF adapters
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200733 * @dev1: slave device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 *
735 * Analyse the drives on the interface and attempt to decide if we
736 * have the same drive viewed twice. This occurs with crap CF adapters
737 * and PCMCIA sometimes.
738 */
739
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200740void ide_undecoded_slave(ide_drive_t *dev1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200742 ide_drive_t *dev0 = &dev1->hwif->drives[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200744 if ((dev1->dn & 1) == 0 || dev0->present == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return;
746
747 /* If the models don't match they are not the same product */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200748 if (strcmp((char *)&dev0->id[ATA_ID_PROD],
749 (char *)&dev1->id[ATA_ID_PROD]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return;
751
752 /* Serial numbers do not match */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200753 if (strncmp((char *)&dev0->id[ATA_ID_SERNO],
754 (char *)&dev1->id[ATA_ID_SERNO], ATA_ID_SERNO_LEN))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return;
756
757 /* No serial number, thankfully very rare for CF */
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200758 if (*(char *)&dev0->id[ATA_ID_SERNO] == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return;
760
761 /* Appears to be an IDE flash adapter with decode bugs */
762 printk(KERN_WARNING "ide-probe: ignoring undecoded slave\n");
763
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200764 dev1->present = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
767EXPORT_SYMBOL_GPL(ide_undecoded_slave);
768
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +0100769static int ide_probe_port(ide_hwif_t *hwif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 unsigned long flags;
772 unsigned int irqd;
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +0100773 int unit, rc = -ENODEV;
774
775 BUG_ON(hwif->present);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Bartlomiej Zolnierkiewicze53cd452008-04-26 22:25:16 +0200777 if (hwif->drives[0].noprobe && hwif->drives[1].noprobe)
Bartlomiej Zolnierkiewicz9d501522008-02-01 23:09:36 +0100778 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 /*
781 * We must always disable IRQ, as probe_for_drive will assert IRQ, but
782 * we'll install our IRQ driver much later...
783 */
784 irqd = hwif->irq;
785 if (irqd)
786 disable_irq(hwif->irq);
787
788 local_irq_set(flags);
789
Bartlomiej Zolnierkiewiczc860a8f2008-02-01 23:09:34 +0100790 if (ide_port_wait_ready(hwif) == -EBUSY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 printk(KERN_DEBUG "%s: Wait for ready failed before probe !\n", hwif->name);
792
793 /*
Bartlomiej Zolnierkiewiczf367bed2008-03-29 19:48:21 +0100794 * Second drive should only exist if first drive was found,
795 * but a lot of cdrom drives are configured as single slaves.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 */
Bartlomiej Zolnierkiewiczf367bed2008-03-29 19:48:21 +0100797 for (unit = 0; unit < MAX_DRIVES; ++unit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 ide_drive_t *drive = &hwif->drives[unit];
799 drive->dn = (hwif->channel ? 2 : 0) + unit;
800 (void) probe_for_drive(drive);
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +0100801 if (drive->present)
802 rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Bartlomiej Zolnierkiewicze460a592008-04-27 15:38:24 +0200804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 local_irq_restore(flags);
Bartlomiej Zolnierkiewicze460a592008-04-27 15:38:24 +0200806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /*
808 * Use cached IRQ number. It might be (and is...) changed by probe
809 * code above
810 */
811 if (irqd)
812 enable_irq(irqd);
813
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +0100814 return rc;
Bartlomiej Zolnierkiewicze84e7ea2008-02-01 23:09:36 +0100815}
816
817static void ide_port_tune_devices(ide_hwif_t *hwif)
818{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200819 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicze84e7ea2008-02-01 23:09:36 +0100820 int unit;
821
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100822 for (unit = 0; unit < MAX_DRIVES; unit++) {
823 ide_drive_t *drive = &hwif->drives[unit];
824
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +0200825 if (drive->present && port_ops && port_ops->quirkproc)
826 port_ops->quirkproc(drive);
Bartlomiej Zolnierkiewiczf01393e2008-01-26 20:13:03 +0100827 }
Bartlomiej Zolnierkiewicz0380dad2007-06-08 15:14:29 +0200828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 for (unit = 0; unit < MAX_DRIVES; ++unit) {
830 ide_drive_t *drive = &hwif->drives[unit];
831
832 if (drive->present) {
Bartlomiej Zolnierkiewicz207daea2008-04-27 15:38:29 +0200833 ide_set_max_pio(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 drive->nice1 = 1;
836
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +0200837 if (hwif->dma_ops)
Bartlomiej Zolnierkiewicz8c0697c2007-10-16 22:29:58 +0200838 ide_set_dma(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840 }
Kumar Gala208a08f2006-03-24 03:18:21 -0800841
842 for (unit = 0; unit < MAX_DRIVES; ++unit) {
843 ide_drive_t *drive = &hwif->drives[unit];
844
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +0100845 if (hwif->host_flags & IDE_HFLAG_NO_IO_32BIT)
Kumar Gala208a08f2006-03-24 03:18:21 -0800846 drive->no_io_32bit = 1;
847 else
Bartlomiej Zolnierkiewicz4dde4492008-10-10 22:39:19 +0200848 drive->no_io_32bit = drive->id[ATA_ID_DWORD_IO] ? 1 : 0;
Kumar Gala208a08f2006-03-24 03:18:21 -0800849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852#if MAX_HWIFS > 1
853/*
854 * save_match() is used to simplify logic in init_irq() below.
855 *
856 * A loophole here is that we may not know about a particular
857 * hwif's irq until after that hwif is actually probed/initialized..
858 * This could be a problem for the case where an hwif is on a
859 * dual interface that requires serialization (eg. cmd640) and another
860 * hwif using one of the same irqs is initialized beforehand.
861 *
862 * This routine detects and reports such situations, but does not fix them.
863 */
864static void save_match(ide_hwif_t *hwif, ide_hwif_t *new, ide_hwif_t **match)
865{
866 ide_hwif_t *m = *match;
867
868 if (m && m->hwgroup && m->hwgroup != new->hwgroup) {
869 if (!new->hwgroup)
870 return;
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +0200871 printk(KERN_WARNING "%s: potential IRQ problem with %s and %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 hwif->name, new->name, m->name);
873 }
874 if (!m || m->irq != hwif->irq) /* don't undo a prior perfect match */
875 *match = new;
876}
877#endif /* MAX_HWIFS > 1 */
878
879/*
880 * init request queue
881 */
882static int ide_init_queue(ide_drive_t *drive)
883{
Jens Axboe165125e2007-07-24 09:28:11 +0200884 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 ide_hwif_t *hwif = HWIF(drive);
886 int max_sectors = 256;
887 int max_sg_entries = PRD_ENTRIES;
888
889 /*
890 * Our default set up assumes the normal IDE case,
891 * that is 64K segmenting, standard PRD setup
892 * and LBA28. Some drivers then impose their own
893 * limits and LBA48 we could raise it but as yet
894 * do not.
895 */
Christoph Lameter19460892005-06-23 00:08:19 -0700896
Ravikiran G Thirumalai556e58f2005-08-04 12:53:26 -0700897 q = blk_init_queue_node(do_ide_request, &ide_lock, hwif_to_node(hwif));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (!q)
899 return 1;
900
901 q->queuedata = drive;
902 blk_queue_segment_boundary(q, 0xffff);
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (hwif->rqsize < max_sectors)
905 max_sectors = hwif->rqsize;
906 blk_queue_max_sectors(q, max_sectors);
907
908#ifdef CONFIG_PCI
909 /* When we have an IOMMU, we may have a problem where pci_map_sg()
910 * creates segments that don't completely match our boundary
911 * requirements and thus need to be broken up again. Because it
912 * doesn't align properly either, we may actually have to break up
913 * to more segments than what was we got in the first place, a max
914 * worst case is twice as many.
915 * This will be fixed once we teach pci_map_sg() about our boundary
916 * requirements, hopefully soon. *FIXME*
917 */
918 if (!PCI_DMA_BUS_IS_PHYS)
919 max_sg_entries >>= 1;
920#endif /* CONFIG_PCI */
921
922 blk_queue_max_hw_segments(q, max_sg_entries);
923 blk_queue_max_phys_segments(q, max_sg_entries);
924
925 /* assign drive queue */
926 drive->queue = q;
927
928 /* needs drive->queue to be set */
929 ide_toggle_bounce(drive, 1);
930
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 return 0;
932}
933
Bartlomiej Zolnierkiewicz0947e0d2008-02-02 19:56:41 +0100934static void ide_add_drive_to_hwgroup(ide_drive_t *drive)
935{
936 ide_hwgroup_t *hwgroup = drive->hwif->hwgroup;
937
938 spin_lock_irq(&ide_lock);
939 if (!hwgroup->drive) {
940 /* first drive for hwgroup. */
941 drive->next = drive;
942 hwgroup->drive = drive;
943 hwgroup->hwif = HWIF(hwgroup->drive);
944 } else {
945 drive->next = hwgroup->drive->next;
946 hwgroup->drive->next = drive;
947 }
948 spin_unlock_irq(&ide_lock);
949}
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/*
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100952 * For any present drive:
953 * - allocate the block device queue
954 * - link drive into the hwgroup
955 */
956static void ide_port_setup_devices(ide_hwif_t *hwif)
957{
958 int i;
959
Bartlomiej Zolnierkiewicz26042d02008-04-18 00:46:22 +0200960 mutex_lock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100961 for (i = 0; i < MAX_DRIVES; i++) {
962 ide_drive_t *drive = &hwif->drives[i];
963
964 if (!drive->present)
965 continue;
966
967 if (ide_init_queue(drive)) {
968 printk(KERN_ERR "ide: failed to init %s\n",
969 drive->name);
970 continue;
971 }
972
973 ide_add_drive_to_hwgroup(drive);
974 }
Bartlomiej Zolnierkiewicz26042d02008-04-18 00:46:22 +0200975 mutex_unlock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +0100976}
977
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +0200978static ide_hwif_t *ide_ports[MAX_HWIFS];
979
Bartlomiej Zolnierkiewicz60591432008-07-23 19:55:58 +0200980void ide_remove_port_from_hwgroup(ide_hwif_t *hwif)
981{
982 ide_hwgroup_t *hwgroup = hwif->hwgroup;
983
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +0200984 ide_ports[hwif->index] = NULL;
985
Bartlomiej Zolnierkiewicz60591432008-07-23 19:55:58 +0200986 spin_lock_irq(&ide_lock);
987 /*
988 * Remove us from the hwgroup, and free
989 * the hwgroup if we were the only member
990 */
991 if (hwif->next == hwif) {
992 BUG_ON(hwgroup->hwif != hwif);
993 kfree(hwgroup);
994 } else {
995 /* There is another interface in hwgroup.
996 * Unlink us, and set hwgroup->drive and ->hwif to
997 * something sane.
998 */
999 ide_hwif_t *g = hwgroup->hwif;
1000
1001 while (g->next != hwif)
1002 g = g->next;
1003 g->next = hwif->next;
1004 if (hwgroup->hwif == hwif) {
1005 /* Chose a random hwif for hwgroup->hwif.
1006 * It's guaranteed that there are no drives
1007 * left in the hwgroup.
1008 */
1009 BUG_ON(hwgroup->drive != NULL);
1010 hwgroup->hwif = g;
1011 }
1012 BUG_ON(hwgroup->hwif == hwif);
1013 }
1014 spin_unlock_irq(&ide_lock);
1015}
1016
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +01001017/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 * This routine sets up the irq for an ide interface, and creates a new
1019 * hwgroup for the irq/hwif if none was previously assigned.
1020 *
1021 * Much of the code is for correctly detecting/handling irq sharing
1022 * and irq serialization situations. This is somewhat complex because
1023 * it handles static as well as dynamic (PCMCIA) IDE interfaces.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 */
1025static int init_irq (ide_hwif_t *hwif)
1026{
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001027 struct ide_io_ports *io_ports = &hwif->io_ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 unsigned int index;
1029 ide_hwgroup_t *hwgroup;
1030 ide_hwif_t *match = NULL;
1031
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001032 mutex_lock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 hwif->hwgroup = NULL;
1034#if MAX_HWIFS > 1
1035 /*
1036 * Group up with any other hwifs that share our irq(s).
1037 */
1038 for (index = 0; index < MAX_HWIFS; index++) {
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +02001039 ide_hwif_t *h = ide_ports[index];
1040
1041 if (h && h->hwgroup) { /* scan only initialized ports */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (hwif->irq == h->irq) {
1043 hwif->sharing_irq = h->sharing_irq = 1;
1044 if (hwif->chipset != ide_pci ||
1045 h->chipset != ide_pci) {
1046 save_match(hwif, h, &match);
1047 }
1048 }
1049 if (hwif->serialized) {
1050 if (hwif->mate && hwif->mate->irq == h->irq)
1051 save_match(hwif, h, &match);
1052 }
1053 if (h->serialized) {
1054 if (h->mate && hwif->irq == h->mate->irq)
1055 save_match(hwif, h, &match);
1056 }
1057 }
1058 }
1059#endif /* MAX_HWIFS > 1 */
1060 /*
1061 * If we are still without a hwgroup, then form a new one
1062 */
1063 if (match) {
1064 hwgroup = match->hwgroup;
1065 hwif->hwgroup = hwgroup;
1066 /*
1067 * Link us into the hwgroup.
1068 * This must be done early, do ensure that unexpected_intr
1069 * can find the hwif and prevent irq storms.
1070 * No drives are attached to the new hwif, choose_drive
1071 * can't do anything stupid (yet).
1072 * Add ourself as the 2nd entry to the hwgroup->hwif
1073 * linked list, the first entry is the hwif that owns
1074 * hwgroup->handler - do not change that.
1075 */
1076 spin_lock_irq(&ide_lock);
1077 hwif->next = hwgroup->hwif->next;
1078 hwgroup->hwif->next = hwif;
Bartlomiej Zolnierkiewiczcae5c822008-02-01 23:09:36 +01001079 BUG_ON(hwif->next == hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 spin_unlock_irq(&ide_lock);
1081 } else {
Bartlomiej Zolnierkiewicz422278e2008-02-01 23:09:35 +01001082 hwgroup = kmalloc_node(sizeof(*hwgroup), GFP_KERNEL|__GFP_ZERO,
1083 hwif_to_node(hwif));
1084 if (hwgroup == NULL)
1085 goto out_up;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087 hwif->hwgroup = hwgroup;
Bartlomiej Zolnierkiewicz422278e2008-02-01 23:09:35 +01001088 hwgroup->hwif = hwif->next = hwif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 init_timer(&hwgroup->timer);
1091 hwgroup->timer.function = &ide_timer_expiry;
1092 hwgroup->timer.data = (unsigned long) hwgroup;
1093 }
1094
Bartlomiej Zolnierkiewiczaf1cbba2008-07-23 19:55:58 +02001095 ide_ports[hwif->index] = hwif;
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 /*
1098 * Allocate the irq, if not already obtained for another hwif
1099 */
1100 if (!match || match->irq != hwif->irq) {
Bartlomiej Zolnierkiewicz7b5da4b2008-01-25 22:17:08 +01001101 int sa = 0;
Adrian Bunk7b892802008-02-06 01:36:29 -08001102#if defined(__mc68000__)
Thomas Gleixner362537b2006-07-01 19:29:34 -07001103 sa = IRQF_SHARED;
Bartlomiej Zolnierkiewicze1771e22008-02-11 00:32:15 +01001104#endif /* __mc68000__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Bartlomiej Zolnierkiewicza2cdee52008-10-10 22:39:24 +02001106 if (hwif->chipset == ide_pci || hwif->chipset == ide_cmd646 ||
1107 hwif->chipset == ide_ali14xx)
Thomas Gleixner362537b2006-07-01 19:29:34 -07001108 sa = IRQF_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001110 if (io_ports->ctl_addr)
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001111 hwif->tp_ops->set_irq(hwif, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 if (request_irq(hwif->irq,&ide_intr,sa,hwif->name,hwgroup))
1114 goto out_unlink;
1115 }
1116
Bartlomiej Zolnierkiewicz8a0e7e12008-02-02 19:56:41 +01001117 if (!hwif->rqsize) {
1118 if ((hwif->host_flags & IDE_HFLAG_NO_LBA48) ||
1119 (hwif->host_flags & IDE_HFLAG_NO_LBA48_DMA))
1120 hwif->rqsize = 256;
1121 else
1122 hwif->rqsize = 65536;
1123 }
1124
Adrian Bunk7b892802008-02-06 01:36:29 -08001125#if !defined(__mc68000__)
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001126 printk(KERN_INFO "%s at 0x%03lx-0x%03lx,0x%03lx on irq %d", hwif->name,
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001127 io_ports->data_addr, io_ports->status_addr,
1128 io_ports->ctl_addr, hwif->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129#else
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001130 printk(KERN_INFO "%s at 0x%08lx on irq %d", hwif->name,
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001131 io_ports->data_addr, hwif->irq);
Adrian Bunk7b892802008-02-06 01:36:29 -08001132#endif /* __mc68000__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (match)
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001134 printk(KERN_CONT " (%sed with %s)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 hwif->sharing_irq ? "shar" : "serializ", match->name);
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001136 printk(KERN_CONT "\n");
Bartlomiej Zolnierkiewiczd5bc6592008-02-02 19:56:41 +01001137
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001138 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return 0;
1140out_unlink:
Bartlomiej Zolnierkiewiczfbd13082008-02-01 23:09:36 +01001141 ide_remove_port_from_hwgroup(hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142out_up:
Matthias Kaehlckeef298882007-07-09 23:17:55 +02001143 mutex_unlock(&ide_cfg_mtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return 1;
1145}
1146
1147static int ata_lock(dev_t dev, void *data)
1148{
1149 /* FIXME: we want to pin hwif down */
1150 return 0;
1151}
1152
1153static struct kobject *ata_probe(dev_t dev, int *part, void *data)
1154{
1155 ide_hwif_t *hwif = data;
1156 int unit = *part >> PARTN_BITS;
1157 ide_drive_t *drive = &hwif->drives[unit];
1158 if (!drive->present)
1159 return NULL;
1160
1161 if (drive->media == ide_disk)
1162 request_module("ide-disk");
1163 if (drive->scsi)
1164 request_module("ide-scsi");
1165 if (drive->media == ide_cdrom || drive->media == ide_optical)
1166 request_module("ide-cd");
1167 if (drive->media == ide_tape)
1168 request_module("ide-tape");
1169 if (drive->media == ide_floppy)
1170 request_module("ide-floppy");
1171
1172 return NULL;
1173}
1174
1175static struct kobject *exact_match(dev_t dev, int *part, void *data)
1176{
1177 struct gendisk *p = data;
1178 *part &= (1 << PARTN_BITS) - 1;
Tejun Heoed9e1982008-08-25 19:56:05 +09001179 return &disk_to_dev(p)->kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182static int exact_lock(dev_t dev, void *data)
1183{
1184 struct gendisk *p = data;
1185
1186 if (!get_disk(p))
1187 return -1;
1188 return 0;
1189}
1190
1191void ide_register_region(struct gendisk *disk)
1192{
1193 blk_register_region(MKDEV(disk->major, disk->first_minor),
1194 disk->minors, NULL, exact_match, exact_lock, disk);
1195}
1196
1197EXPORT_SYMBOL_GPL(ide_register_region);
1198
1199void ide_unregister_region(struct gendisk *disk)
1200{
1201 blk_unregister_region(MKDEV(disk->major, disk->first_minor),
1202 disk->minors);
1203}
1204
1205EXPORT_SYMBOL_GPL(ide_unregister_region);
1206
1207void ide_init_disk(struct gendisk *disk, ide_drive_t *drive)
1208{
1209 ide_hwif_t *hwif = drive->hwif;
1210 unsigned int unit = (drive->select.all >> 4) & 1;
1211
1212 disk->major = hwif->major;
1213 disk->first_minor = unit << PARTN_BITS;
1214 sprintf(disk->disk_name, "hd%c", 'a' + hwif->index * MAX_DRIVES + unit);
1215 disk->queue = drive->queue;
1216}
1217
1218EXPORT_SYMBOL_GPL(ide_init_disk);
1219
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001220static void ide_remove_drive_from_hwgroup(ide_drive_t *drive)
1221{
1222 ide_hwgroup_t *hwgroup = drive->hwif->hwgroup;
1223
1224 if (drive == drive->next) {
1225 /* special case: last drive from hwgroup. */
1226 BUG_ON(hwgroup->drive != drive);
1227 hwgroup->drive = NULL;
1228 } else {
1229 ide_drive_t *walk;
1230
1231 walk = hwgroup->drive;
1232 while (walk->next != drive)
1233 walk = walk->next;
1234 walk->next = drive->next;
1235 if (hwgroup->drive == drive) {
1236 hwgroup->drive = drive->next;
1237 hwgroup->hwif = hwgroup->drive->hwif;
1238 }
1239 }
1240 BUG_ON(hwgroup->drive == drive);
1241}
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243static void drive_release_dev (struct device *dev)
1244{
1245 ide_drive_t *drive = container_of(dev, ide_drive_t, gendev);
1246
Bartlomiej Zolnierkiewicz5b0c4b32008-04-18 00:46:22 +02001247 ide_proc_unregister_device(drive);
1248
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001249 spin_lock_irq(&ide_lock);
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001250 ide_remove_drive_from_hwgroup(drive);
Jesper Juhl6044ec82005-11-07 01:01:32 -08001251 kfree(drive->id);
1252 drive->id = NULL;
Bartlomiej Zolnierkiewicz8604aff2005-05-26 14:55:34 +02001253 drive->present = 0;
1254 /* Messed up locking ... */
1255 spin_unlock_irq(&ide_lock);
1256 blk_cleanup_queue(drive->queue);
1257 spin_lock_irq(&ide_lock);
1258 drive->queue = NULL;
1259 spin_unlock_irq(&ide_lock);
1260
Aleksey Makarovf36d4022006-01-09 15:59:27 -08001261 complete(&drive->gendev_rel_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264static int hwif_init(ide_hwif_t *hwif)
1265{
1266 int old_irq;
1267
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (!hwif->irq) {
Bartlomiej Zolnierkiewicza861beb2008-07-08 19:27:22 +02001269 hwif->irq = __ide_default_irq(hwif->io_ports.data_addr);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001270 if (!hwif->irq) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001271 printk(KERN_ERR "%s: disabled, no IRQ\n", hwif->name);
Bartlomiej Zolnierkiewicz48535652008-02-01 23:09:34 +01001272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
1274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 if (register_blkdev(hwif->major, hwif->name))
1277 return 0;
1278
1279 if (!hwif->sg_max_nents)
1280 hwif->sg_max_nents = PRD_ENTRIES;
1281
Jens Axboe45711f12007-10-22 21:19:53 +02001282 hwif->sg_table = kmalloc(sizeof(struct scatterlist)*hwif->sg_max_nents,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 GFP_KERNEL);
1284 if (!hwif->sg_table) {
1285 printk(KERN_ERR "%s: unable to allocate SG table.\n", hwif->name);
1286 goto out;
1287 }
Jens Axboe45711f12007-10-22 21:19:53 +02001288
1289 sg_init_table(hwif->sg_table, hwif->sg_max_nents);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 if (init_irq(hwif) == 0)
1292 goto done;
1293
1294 old_irq = hwif->irq;
1295 /*
1296 * It failed to initialise. Find the default IRQ for
1297 * this port and try that.
1298 */
Bartlomiej Zolnierkiewicza861beb2008-07-08 19:27:22 +02001299 hwif->irq = __ide_default_irq(hwif->io_ports.data_addr);
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +02001300 if (!hwif->irq) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001301 printk(KERN_ERR "%s: disabled, unable to get IRQ %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 hwif->name, old_irq);
1303 goto out;
1304 }
1305 if (init_irq(hwif)) {
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001306 printk(KERN_ERR "%s: probed IRQ %d and default IRQ %d failed\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 hwif->name, old_irq, hwif->irq);
1308 goto out;
1309 }
Bartlomiej Zolnierkiewicz1b8ebad2008-07-24 22:53:36 +02001310 printk(KERN_WARNING "%s: probed IRQ %d failed, using default\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 hwif->name, hwif->irq);
1312
1313done:
Bartlomiej Zolnierkiewicz3a4e7c92008-02-02 19:56:40 +01001314 blk_register_region(MKDEV(hwif->major, 0), MAX_DRIVES << PARTN_BITS,
1315 THIS_MODULE, ata_probe, ata_lock, hwif);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 return 1;
1317
1318out:
1319 unregister_blkdev(hwif->major, hwif->name);
1320 return 0;
1321}
1322
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001323static void hwif_register_devices(ide_hwif_t *hwif)
1324{
1325 unsigned int i;
1326
1327 for (i = 0; i < MAX_DRIVES; i++) {
1328 ide_drive_t *drive = &hwif->drives[i];
Bartlomiej Zolnierkiewiczc5d70cc2008-02-02 19:56:41 +01001329 struct device *dev = &drive->gendev;
1330 int ret;
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001331
Bartlomiej Zolnierkiewiczc5d70cc2008-02-02 19:56:41 +01001332 if (!drive->present)
1333 continue;
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001334
Bartlomiej Zolnierkiewiczc5d70cc2008-02-02 19:56:41 +01001335 snprintf(dev->bus_id, BUS_ID_SIZE, "%u.%u", hwif->index, i);
1336 dev->parent = &hwif->gendev;
1337 dev->bus = &ide_bus_type;
1338 dev->driver_data = drive;
1339 dev->release = drive_release_dev;
1340
1341 ret = device_register(dev);
1342 if (ret < 0)
1343 printk(KERN_WARNING "IDE: %s: device_register error: "
1344 "%d\n", __func__, ret);
Bartlomiej Zolnierkiewicz9601a602007-10-20 00:32:29 +02001345 }
1346}
1347
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001348static void ide_port_init_devices(ide_hwif_t *hwif)
1349{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001350 const struct ide_port_ops *port_ops = hwif->port_ops;
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001351 int i;
1352
1353 for (i = 0; i < MAX_DRIVES; i++) {
1354 ide_drive_t *drive = &hwif->drives[i];
1355
1356 if (hwif->host_flags & IDE_HFLAG_IO_32BIT)
1357 drive->io_32bit = 1;
1358 if (hwif->host_flags & IDE_HFLAG_UNMASK_IRQS)
1359 drive->unmask = 1;
Bartlomiej Zolnierkiewicz807b90d2008-02-02 19:56:40 +01001360 if (hwif->host_flags & IDE_HFLAG_NO_UNMASK_IRQS)
1361 drive->no_unmask = 1;
Bartlomiej Zolnierkiewicz1f2cf8b2008-02-02 19:56:40 +01001362
Bartlomiej Zolnierkiewicze6d95bd2008-07-16 20:33:42 +02001363 if (port_ops && port_ops->init_dev)
1364 port_ops->init_dev(drive);
1365 }
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001366}
1367
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001368static void ide_init_port(ide_hwif_t *hwif, unsigned int port,
1369 const struct ide_port_info *d)
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001370{
Adrian Bunkb7691642008-06-10 20:56:36 +02001371 hwif->channel = port;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001372
1373 if (d->chipset)
1374 hwif->chipset = d->chipset;
1375
1376 if (d->init_iops)
1377 d->init_iops(hwif);
1378
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001379 if ((!hwif->irq && (d->host_flags & IDE_HFLAG_LEGACY_IRQS)) ||
1380 (d->host_flags & IDE_HFLAG_FORCE_LEGACY_IRQS))
1381 hwif->irq = port ? 15 : 14;
1382
Bartlomiej Zolnierkiewicz23f8e4b2008-05-01 14:08:51 +02001383 /* ->host_flags may be set by ->init_iops (or even earlier...) */
1384 hwif->host_flags |= d->host_flags;
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001385 hwif->pio_mask = d->pio_mask;
1386
Bartlomiej Zolnierkiewicz374e0422008-07-23 19:55:56 +02001387 if (d->tp_ops)
1388 hwif->tp_ops = d->tp_ops;
1389
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001390 /* ->set_pio_mode for DTC2278 is currently limited to port 0 */
1391 if (hwif->chipset != ide_dtc2278 || hwif->channel == 0)
1392 hwif->port_ops = d->port_ops;
1393
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001394 hwif->swdma_mask = d->swdma_mask;
1395 hwif->mwdma_mask = d->mwdma_mask;
1396 hwif->ultra_mask = d->udma_mask;
1397
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +02001398 if ((d->host_flags & IDE_HFLAG_NO_DMA) == 0) {
1399 int rc;
1400
1401 if (d->init_dma)
1402 rc = d->init_dma(hwif, d);
1403 else
1404 rc = ide_hwif_setup_dma(hwif, d);
1405
1406 if (rc < 0) {
1407 printk(KERN_INFO "%s: DMA disabled\n", hwif->name);
Bartlomiej Zolnierkiewiczebb00fb2008-07-23 19:55:51 +02001408 hwif->dma_base = 0;
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +02001409 hwif->swdma_mask = 0;
1410 hwif->mwdma_mask = 0;
1411 hwif->ultra_mask = 0;
Bartlomiej Zolnierkiewicz5e37bdc2008-04-26 22:25:24 +02001412 } else if (d->dma_ops)
1413 hwif->dma_ops = d->dma_ops;
Bartlomiej Zolnierkiewiczb123f562008-04-26 22:25:22 +02001414 }
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001415
Bartlomiej Zolnierkiewicz1024c5f2008-05-04 17:03:41 +02001416 if ((d->host_flags & IDE_HFLAG_SERIALIZE) ||
1417 ((d->host_flags & IDE_HFLAG_SERIALIZE_DMA) && hwif->dma_base)) {
1418 if (hwif->mate)
1419 hwif->mate->serialized = hwif->serialized = 1;
1420 }
1421
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001422 if (d->host_flags & IDE_HFLAG_RQSIZE_256)
1423 hwif->rqsize = 256;
1424
1425 /* call chipset specific routine for each enabled port */
1426 if (d->init_hwif)
1427 d->init_hwif(hwif);
Bartlomiej Zolnierkiewiczc7f6f212008-04-18 00:46:22 +02001428}
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +01001429
Bartlomiej Zolnierkiewiczc7f6f212008-04-18 00:46:22 +02001430static void ide_port_cable_detect(ide_hwif_t *hwif)
1431{
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001432 const struct ide_port_ops *port_ops = hwif->port_ops;
1433
1434 if (port_ops && port_ops->cable_detect && (hwif->ultra_mask & 0x78)) {
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +01001435 if (hwif->cbl != ATA_CBL_PATA40_SHORT)
Bartlomiej Zolnierkiewiczac95bee2008-04-26 22:25:14 +02001436 hwif->cbl = port_ops->cable_detect(hwif);
Bartlomiej Zolnierkiewiczbfa14b42008-02-02 19:56:31 +01001437 }
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001438}
1439
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001440static ssize_t store_delete_devices(struct device *portdev,
1441 struct device_attribute *attr,
1442 const char *buf, size_t n)
1443{
1444 ide_hwif_t *hwif = dev_get_drvdata(portdev);
1445
1446 if (strncmp(buf, "1", n))
1447 return -EINVAL;
1448
1449 ide_port_unregister_devices(hwif);
1450
1451 return n;
1452};
1453
1454static DEVICE_ATTR(delete_devices, S_IWUSR, NULL, store_delete_devices);
1455
1456static ssize_t store_scan(struct device *portdev,
1457 struct device_attribute *attr,
1458 const char *buf, size_t n)
1459{
1460 ide_hwif_t *hwif = dev_get_drvdata(portdev);
1461
1462 if (strncmp(buf, "1", n))
1463 return -EINVAL;
1464
1465 ide_port_unregister_devices(hwif);
1466 ide_port_scan(hwif);
1467
1468 return n;
1469};
1470
1471static DEVICE_ATTR(scan, S_IWUSR, NULL, store_scan);
1472
1473static struct device_attribute *ide_port_attrs[] = {
1474 &dev_attr_delete_devices,
1475 &dev_attr_scan,
1476 NULL
1477};
1478
1479static int ide_sysfs_register_port(ide_hwif_t *hwif)
1480{
Bartlomiej Zolnierkiewiczca09a232008-10-05 18:23:28 +02001481 int i, uninitialized_var(rc);
Bartlomiej Zolnierkiewiczf74c9142008-04-18 00:46:23 +02001482
1483 for (i = 0; ide_port_attrs[i]; i++) {
1484 rc = device_create_file(hwif->portdev, ide_port_attrs[i]);
1485 if (rc)
1486 break;
1487 }
1488
1489 return rc;
1490}
1491
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001492static unsigned int ide_indexes;
1493
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001494/**
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001495 * ide_find_port_slot - find free port slot
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001496 * @d: IDE port info
1497 *
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001498 * Return the new port slot index or -ENOENT if we are out of free slots.
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001499 */
1500
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001501static int ide_find_port_slot(const struct ide_port_info *d)
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001502{
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001503 int idx = -ENOENT;
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001504 u8 bootable = (d && (d->host_flags & IDE_HFLAG_NON_BOOTABLE)) ? 0 : 1;
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001505 u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;;
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001506
1507 /*
1508 * Claim an unassigned slot.
1509 *
1510 * Give preference to claiming other slots before claiming ide0/ide1,
1511 * just in case there's another interface yet-to-be-scanned
1512 * which uses ports 0x1f0/0x170 (the ide0/ide1 defaults).
1513 *
1514 * Unless there is a bootable card that does not use the standard
1515 * ports 0x1f0/0x170 (the ide0/ide1 defaults).
1516 */
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001517 mutex_lock(&ide_cfg_mtx);
1518 if (MAX_HWIFS == 1) {
1519 if (ide_indexes == 0 && i == 0)
1520 idx = 1;
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001521 } else {
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001522 if (bootable) {
1523 if ((ide_indexes | i) != (1 << MAX_HWIFS) - 1)
1524 idx = ffz(ide_indexes | i);
1525 } else {
1526 if ((ide_indexes | 3) != (1 << MAX_HWIFS) - 1)
1527 idx = ffz(ide_indexes | 3);
1528 else if ((ide_indexes & 3) != 3)
1529 idx = ffz(ide_indexes);
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001530 }
1531 }
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001532 if (idx >= 0)
1533 ide_indexes |= (1 << idx);
1534 mutex_unlock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001535
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001536 return idx;
1537}
Bartlomiej Zolnierkiewiczeb3aff52008-07-16 20:33:42 +02001538
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001539static void ide_free_port_slot(int idx)
1540{
1541 mutex_lock(&ide_cfg_mtx);
1542 ide_indexes &= ~(1 << idx);
1543 mutex_unlock(&ide_cfg_mtx);
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001544}
Bartlomiej Zolnierkiewiczfe80b932008-04-26 17:36:36 +02001545
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001546struct ide_host *ide_host_alloc_all(const struct ide_port_info *d,
1547 hw_regs_t **hws)
1548{
1549 struct ide_host *host;
1550 int i;
1551
1552 host = kzalloc(sizeof(*host), GFP_KERNEL);
1553 if (host == NULL)
1554 return NULL;
1555
1556 for (i = 0; i < MAX_HWIFS; i++) {
1557 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001558 int idx;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001559
1560 if (hws[i] == NULL)
1561 continue;
1562
Bartlomiej Zolnierkiewicz18de1012008-07-23 19:55:58 +02001563 hwif = kzalloc(sizeof(*hwif), GFP_KERNEL);
1564 if (hwif == NULL)
1565 continue;
1566
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001567 idx = ide_find_port_slot(d);
1568 if (idx < 0) {
1569 printk(KERN_ERR "%s: no free slot for interface\n",
1570 d ? d->name : "ide");
Bartlomiej Zolnierkiewicz18de1012008-07-23 19:55:58 +02001571 kfree(hwif);
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001572 continue;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001573 }
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001574
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001575 ide_init_port_data(hwif, idx);
1576
Bartlomiej Zolnierkiewicz08da5912008-07-24 22:53:15 +02001577 hwif->host = host;
1578
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001579 host->ports[i] = hwif;
1580 host->n_ports++;
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001581 }
1582
1583 if (host->n_ports == 0) {
1584 kfree(host);
1585 return NULL;
1586 }
1587
Bartlomiej Zolnierkiewicz6cdf6eb2008-07-24 22:53:14 +02001588 if (hws[0])
1589 host->dev[0] = hws[0]->dev;
1590
Bartlomiej Zolnierkiewiczef0b0422008-07-24 22:53:19 +02001591 if (d)
1592 host->host_flags = d->host_flags;
1593
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001594 return host;
1595}
1596EXPORT_SYMBOL_GPL(ide_host_alloc_all);
1597
1598struct ide_host *ide_host_alloc(const struct ide_port_info *d, hw_regs_t **hws)
1599{
1600 hw_regs_t *hws_all[MAX_HWIFS];
1601 int i;
1602
1603 for (i = 0; i < MAX_HWIFS; i++)
1604 hws_all[i] = (i < 4) ? hws[i] : NULL;
1605
1606 return ide_host_alloc_all(d, hws_all);
1607}
1608EXPORT_SYMBOL_GPL(ide_host_alloc);
1609
1610int ide_host_register(struct ide_host *host, const struct ide_port_info *d,
1611 hw_regs_t **hws)
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001612{
1613 ide_hwif_t *hwif, *mate = NULL;
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001614 int i, j = 0;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001615
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001616 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001617 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001618
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001619 if (hwif == NULL) {
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001620 mate = NULL;
1621 continue;
1622 }
1623
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001624 ide_init_port_hw(hwif, hws[i]);
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001625 ide_port_apply_params(hwif);
1626
1627 if (d == NULL) {
1628 mate = NULL;
1629 continue;
1630 }
1631
Adrian Bunkb7691642008-06-10 20:56:36 +02001632 if ((i & 1) && mate) {
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001633 hwif->mate = mate;
1634 mate->mate = hwif;
1635 }
1636
1637 mate = (i & 1) ? NULL : hwif;
1638
1639 ide_init_port(hwif, i & 1, d);
Bartlomiej Zolnierkiewiczc7f6f212008-04-18 00:46:22 +02001640 ide_port_cable_detect(hwif);
Bartlomiej Zolnierkiewicz7704ca22008-02-02 19:56:39 +01001641 ide_port_init_devices(hwif);
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +01001642 }
1643
1644 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001645 hwif = host->ports[i];
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001646
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001647 if (hwif == NULL)
1648 continue;
Bartlomiej Zolnierkiewicz139ddfc2008-02-01 23:09:36 +01001649
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001650 if (ide_probe_port(hwif) == 0)
1651 hwif->present = 1;
Bartlomiej Zolnierkiewicza14dc572008-02-01 23:09:36 +01001652
1653 if (hwif->chipset != ide_4drives || !hwif->mate ||
1654 !hwif->mate->present)
1655 ide_register_port(hwif);
1656
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001657 if (hwif->present)
1658 ide_port_tune_devices(hwif);
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001659 }
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001660
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001661 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001662 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001663
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001664 if (hwif == NULL)
1665 continue;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001666
1667 if (hwif_init(hwif) == 0) {
1668 printk(KERN_INFO "%s: failed to initialize IDE "
1669 "interface\n", hwif->name);
Bartlomiej Zolnierkiewicz48535652008-02-01 23:09:34 +01001670 hwif->present = 0;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001671 continue;
1672 }
Bartlomiej Zolnierkiewiczdecdc3f2008-02-02 19:56:41 +01001673
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001674 j++;
1675
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001676 if (hwif->present)
1677 ide_port_setup_devices(hwif);
Bartlomiej Zolnierkiewicz26042d02008-04-18 00:46:22 +02001678
Bartlomiej Zolnierkiewiczdecdc3f2008-02-02 19:56:41 +01001679 ide_acpi_init(hwif);
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001680
1681 if (hwif->present)
1682 ide_acpi_port_init_devices(hwif);
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001683 }
1684
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001685 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001686 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz2e130932008-01-26 20:13:04 +01001687
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001688 if (hwif == NULL)
1689 continue;
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001690
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001691 if (hwif->chipset == ide_unknown)
1692 hwif->chipset = ide_generic;
1693
1694 if (hwif->present)
Bartlomiej Zolnierkiewiczba6560a2008-01-26 20:13:04 +01001695 hwif_register_devices(hwif);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001696 }
1697
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001698 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001699 hwif = host->ports[i];
Bartlomiej Zolnierkiewicz327617e2008-02-02 19:56:43 +01001700
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001701 if (hwif == NULL)
1702 continue;
Bartlomiej Zolnierkiewicz327617e2008-02-02 19:56:43 +01001703
Bartlomiej Zolnierkiewiczeb716be2008-04-26 22:25:17 +02001704 ide_sysfs_register_port(hwif);
1705 ide_proc_register_port(hwif);
1706
1707 if (hwif->present)
Bartlomiej Zolnierkiewiczd9270a32008-02-02 19:56:43 +01001708 ide_proc_port_register_devices(hwif);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001709 }
1710
Bartlomiej Zolnierkiewicze0d00202008-07-23 19:55:57 +02001711 return j ? 0 : -1;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001712}
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001713EXPORT_SYMBOL_GPL(ide_host_register);
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +02001714
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001715int ide_host_add(const struct ide_port_info *d, hw_regs_t **hws,
1716 struct ide_host **hostp)
1717{
1718 struct ide_host *host;
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001719 int rc;
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001720
1721 host = ide_host_alloc(d, hws);
1722 if (host == NULL)
1723 return -ENOMEM;
1724
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001725 rc = ide_host_register(host, d, hws);
1726 if (rc) {
1727 ide_host_free(host);
1728 return rc;
1729 }
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001730
1731 if (hostp)
1732 *hostp = host;
1733
1734 return 0;
1735}
1736EXPORT_SYMBOL_GPL(ide_host_add);
1737
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001738void ide_host_free(struct ide_host *host)
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001739{
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001740 ide_hwif_t *hwif;
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001741 int i;
1742
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001743 for (i = 0; i < MAX_HWIFS; i++) {
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001744 hwif = host->ports[i];
1745
1746 if (hwif == NULL)
1747 continue;
1748
Bartlomiej Zolnierkiewicz8cdf3102008-07-23 19:55:57 +02001749 ide_free_port_slot(hwif->index);
Bartlomiej Zolnierkiewicz18de1012008-07-23 19:55:58 +02001750 kfree(hwif);
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001751 }
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001752
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001753 kfree(host);
Bartlomiej Zolnierkiewicz151575e2008-01-26 20:13:05 +01001754}
Bartlomiej Zolnierkiewicz8a695802008-07-23 19:55:59 +02001755EXPORT_SYMBOL_GPL(ide_host_free);
1756
1757void ide_host_remove(struct ide_host *host)
1758{
1759 int i;
1760
1761 for (i = 0; i < MAX_HWIFS; i++) {
1762 if (host->ports[i])
1763 ide_unregister(host->ports[i]);
1764 }
1765
1766 ide_host_free(host);
1767}
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001768EXPORT_SYMBOL_GPL(ide_host_remove);
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +02001769
1770void ide_port_scan(ide_hwif_t *hwif)
1771{
Bartlomiej Zolnierkiewicz9fd91d92008-04-27 15:38:23 +02001772 ide_port_apply_params(hwif);
Bartlomiej Zolnierkiewicz2dde7862008-04-18 00:46:23 +02001773 ide_port_cable_detect(hwif);
1774 ide_port_init_devices(hwif);
1775
1776 if (ide_probe_port(hwif) < 0)
1777 return;
1778
1779 hwif->present = 1;
1780
1781 ide_port_tune_devices(hwif);
1782 ide_acpi_port_init_devices(hwif);
1783 ide_port_setup_devices(hwif);
1784 hwif_register_devices(hwif);
1785 ide_proc_port_register_devices(hwif);
1786}
1787EXPORT_SYMBOL_GPL(ide_port_scan);
Bartlomiej Zolnierkiewicz3b36f662008-04-26 22:25:16 +02001788
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001789static void ide_legacy_init_one(hw_regs_t **hws, hw_regs_t *hw,
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001790 u8 port_no, const struct ide_port_info *d,
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001791 unsigned long config)
1792{
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001793 unsigned long base, ctl;
1794 int irq;
1795
1796 if (port_no == 0) {
1797 base = 0x1f0;
1798 ctl = 0x3f6;
1799 irq = 14;
1800 } else {
1801 base = 0x170;
1802 ctl = 0x376;
1803 irq = 15;
1804 }
1805
Bartlomiej Zolnierkiewiczd92f1a22008-04-26 22:25:18 +02001806 if (!request_region(base, 8, d->name)) {
1807 printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
1808 d->name, base, base + 7);
1809 return;
1810 }
1811
1812 if (!request_region(ctl, 1, d->name)) {
1813 printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
1814 d->name, ctl);
1815 release_region(base, 8);
1816 return;
1817 }
1818
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001819 ide_std_init_ports(hw, base, ctl);
1820 hw->irq = irq;
Bartlomiej Zolnierkiewiczd427e832008-06-10 20:56:37 +02001821 hw->chipset = d->chipset;
Bartlomiej Zolnierkiewiczd6276b52008-07-23 19:55:56 +02001822 hw->config = config;
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001823
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001824 hws[port_no] = hw;
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001825}
1826
Bartlomiej Zolnierkiewicz0bfeee72008-04-26 22:25:16 +02001827int ide_legacy_device_add(const struct ide_port_info *d, unsigned long config)
Bartlomiej Zolnierkiewicz3b36f662008-04-26 22:25:16 +02001828{
Bartlomiej Zolnierkiewiczc97c6ac2008-07-23 19:55:50 +02001829 hw_regs_t hw[2], *hws[] = { NULL, NULL, NULL, NULL };
Bartlomiej Zolnierkiewicz3b36f662008-04-26 22:25:16 +02001830
1831 memset(&hw, 0, sizeof(hw));
1832
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001833 if ((d->host_flags & IDE_HFLAG_QD_2ND_PORT) == 0)
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001834 ide_legacy_init_one(hws, &hw[0], 0, d, config);
1835 ide_legacy_init_one(hws, &hw[1], 1, d, config);
Bartlomiej Zolnierkiewicz3b36f662008-04-26 22:25:16 +02001836
Bartlomiej Zolnierkiewicz48c3c102008-07-23 19:55:57 +02001837 if (hws[0] == NULL && hws[1] == NULL &&
Bartlomiej Zolnierkiewiczd9b819a2008-04-26 22:25:18 +02001838 (d->host_flags & IDE_HFLAG_SINGLE))
Bartlomiej Zolnierkiewicz0bfeee72008-04-26 22:25:16 +02001839 return -ENOENT;
1840
Bartlomiej Zolnierkiewicz6f904d02008-07-23 19:55:57 +02001841 return ide_host_add(d, hws, NULL);
Bartlomiej Zolnierkiewicz3b36f662008-04-26 22:25:16 +02001842}
1843EXPORT_SYMBOL_GPL(ide_legacy_device_add);