[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ide taskfile and cdrom hang



Hi,

On Friday 30 of January 2004 23:36, Mark Haverkamp wrote:
> We have some test machines here at OSDL that have a problem with the ide
> cdrom driver hanging when we cat the /proc/ide/hda/identify file. After
> 30 seconds the console displays: "hda: lost interrupt" which reoccurs
> every 30 seconds forever. We noticed it on 2.6.2-rc2-mm1 but It looks
> like this has been a problem for a while. Our test machines just changed
> their configuration to use make defconfig.  I found that if
> CONFIG_IDE_TASKFILE_IO is N then the hang doesn't occur.  Is this a
> common problem or are there just certain drives that won't work with
> taskfile i/o enabled?  I've included my .config, lspci as attachments.
> The cdrom model is CD-224E.

Does 'hdparm -I /dev/hda" work?  If so can you try this patch?
It reverts taskfile code to use old (non-taskfile) order of accessing
port registers for ATAPI identify command.  This is a good starting point.

If CONFIG_IDE_TASKFILE_IO is N code just ignores BUSY status of a drive
and reads some random data.  I would like to have this problem solved
at least instead of adding the same workaround to CONFIG_IDE_TASKFILE_IO.

Cheers,
--bart

 linux-2.6.2-rc2-root/drivers/ide/ide-taskfile.c |   14 ++++++++++++++
 1 files changed, 14 insertions(+)

diff -puN drivers/ide/ide-taskfile.c~ide_tf_identify_debug drivers/ide/ide-taskfile.c
--- linux-2.6.2-rc2/drivers/ide/ide-taskfile.c~ide_tf_identify_debug	2004-02-01 21:06:58.494873136 +0100
+++ linux-2.6.2-rc2-root/drivers/ide/ide-taskfile.c	2004-02-01 21:15:06.268720240 +0100
@@ -142,6 +142,20 @@ ide_startstop_t do_rw_taskfile (ide_driv
 	void debug_taskfile(drive, task);
 #endif /* CONFIG_IDE_TASK_IOCTL_DEBUG */
 
+	if (taskfile->command == WIN_PIDENTIFY) {
+		hwif->OUTB(taskfile->feature, IDE_FEATURE_REG);
+
+		if (IDE_CONTROL_REG)
+			hwif->OUTB(drive->ctl, IDE_CONTROL_REG);
+		SELECT_MASK(drive, 0);
+
+		hwif->OUTB(taskfile->sector_count, IDE_NSECTOR_REG);
+
+		ide_execute_command(drive, taskfile->command, task->handler,
+				    WAIT_WORSTCASE, NULL);
+		return ide_started;
+	}
+
 	/* ALL Command Block Executions SHALL clear nIEN, unless otherwise */
 	if (IDE_CONTROL_REG) {
 		/* clear nIEN */

_

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo _at_ vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


この情報があなたの探していたものかどうか選択してください。
yes/まさにこれだ!   no/違うなぁ   part/一部見つかった   try/これで試してみる

あなたが探していた情報はどのようなことか、ご自由に記入下さい。特に「まさにこれだ!」と言う場合は記入をお願いします。
例:「複数のマシンからCATV経由でipmasqueradeを利用してWebを参照したい場合の設定について」
Follow-Ups: References: