All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jurriaan <thunder7@xs4all.nl>
To: linux-kernel@vger.kernel.org
Subject: Lite-On cdwriter detected as 12x instead of 40x
Date: Sat, 7 Sep 2002 19:57:35 +0200	[thread overview]
Message-ID: <20020907175735.GA884@middle.of.nowhere> (raw)

I have a LITE-ON LTR-40125W cdwriter, which can write at 40x.
The kernel sees it as 12x. This happens in 2.4.19ac4 up to
2.4.20pre4ac2, I didn't test later kernels due to the instable IDE
situation. It has the latest firmware (WS05) - I'm not sure if bothering
the manufacturer about this is worth it.

If I don't pass the drive on to ide-scsi, and patch 
drivers/ide/ide-cd.c with this small patch,

+	/* brain-dead LiteOn model reports itself as 12x */
+	if ((cap != NULL) && (strcmp (drive->id->model, "LITE-ON LTR-40125W") == 0))
+	  cap->maxspeed = htons(40 * 176);

all is well, and the kernel reports 40x.

But I can't find out where to put this for the ide-scsi part.
All the probing routines in drivers/scsi/ide-cd.c seem to access some
sort of atapi-buffer that already exists. I can tweak it to display 40x
in the bootup-messages by changing the idescsi_transform_pc? functions
in drivers/scsi/ide-cd.c:

+	                if (strcmp (drive->id->model, "LITE-ON LTR-40125W") == 0)
+			{
+				int n = scsi_buf[3] + 4;
+                   	        scsi_buf[n+8] = scsi_buf[n+14] = (u8) ((40 * 176) >> 8);
+                   	        scsi_buf[n+9] = scsi_buf[n+15] = (u8) ((40 * 176) & 0xff);
+				printk("ide-scsi.c: LITE-ON tweak activated\n");
+			}

but that doesn't fool cdrdao nor cdrecord - they still think the drive
is 12x.

Can anyone help me by pointing out where I should tweak the kernel to
get correct results when using ide-scsi with my drive?

Thanks,
Jurriaan
-- 
Remember, Unix on some machines is nUxi.
GNU/Linux 2.4.19-ac4 SMP/ReiserFS 2x1402 bogomips load av: 0.39 0.28 0.11

             reply	other threads:[~2002-09-07 17:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-07 17:57 Jurriaan [this message]
2002-09-07 18:32 ` Lite-On cdwriter detected as 12x instead of 40x Andre Hedrick

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20020907175735.GA884@middle.of.nowhere \
    --to=thunder7@xs4all.nl \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.