From: jayakumar ide <jayakumar.ide@gmail.com>
To: linux-ide@vger.kernel.org
Subject: eighty_ninty_three
Date: Thu, 22 Sep 2005 15:31:06 +0800 [thread overview]
Message-ID: <ed723e8205092200315d6d1f2a@mail.gmail.com> (raw)
quick question:
598 /*
599 * All hosts that use the 80c ribbon must use!
600 * The name is derived from upper byte of word 93 and the 80c ribbon.
601 */
602 u8 eighty_ninty_three (ide_drive_t *drive)
603 {
604 if(HWIF(drive)->udma_four == 0)
605 return 0;
606 if (!(drive->id->hw_config & 0x6000))
607 return 0;
608 #ifndef CONFIG_IDEDMA_IVB
609 if(!(drive->id->hw_config & 0x4000))
610 return 0;
611 #endif /* CONFIG_IDEDMA_IVB */
612 return 1;
613 }
does that mean that 893() will return 0 if the drive is not udma4
capable? what's the rest of the stuff about 0x6000 and 0x4000? i took
a quick look at a diamondmax spec and it says:
http://www.maxtor.com/_files/maxtor/en_us/documentation/manuals/diamondmax_plus_9_manual.pdf
Word 93 Hardware reset result. The contents of bits (12:0) of this
word shall change only
during the execution of a hardware reset
15: Shall be cleared to zero.
14: Shall be set to one.
13: 1 = device detected CBLID- above ViH. 0 = device detected CBLID- below
ViL
12-8: Device 1 hardware reset result. Device 0 shall clear these bits to zero.
Device shall set these bits as follows:
12: Reserved.
11: 0 = Device 1 did not assert PDIAG
So I'm not sure I understand what the 0x6000 and 0x4000 check does. I
was kind of hoping it would be some way to detect whether the cable
was 40 core or 80 core. The reason I'm asking is because I'm trying to
figure out the appropriate usage for eighty_ninty_three, ratemask and
ide_rate_filter. I think I should call eighty93 in ratemask() and then
use that to decide what the maximum mode should be. so if eighty93
returned 0, then I would set max mode to 3 if my device spec claimed
it was UDMA66 0-4 capable. Actually, I'm not sure about the UDMA66 0-4
stuff. I haven't yet understood the relationship between the
XFER_UDMA_n and the UDMA/33/66/100 0-4 modes. If anyone has advice,
I'm all ears.
Thanks,
jayakumar
next reply other threads:[~2005-09-22 7:31 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-22 7:31 jayakumar ide [this message]
2005-09-22 9:36 ` eighty_ninty_three Bartlomiej Zolnierkiewicz
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=ed723e8205092200315d6d1f2a@mail.gmail.com \
--to=jayakumar.ide@gmail.com \
--cc=linux-ide@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).