9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: miller@hamnavoe.demon.co.uk miller@hamnavoe.demon.co.uk
Subject: Installing & IP
Date: Mon,  7 Oct 1996 13:52:26 +0000	[thread overview]
Message-ID: <19961007135226.2Hsf42YUREWKmqZqznpR1WoV9nDUDFe6ZThrevBS5H4@z> (raw)

Jim McKie says:

> ... the 3C590 is a 10Mbps card only and should work

I found problems with the 3C590: particularly under the IL protocol,
transmission was very slow and often hung up completely.  Some
investigation showed that the TxAvailable interrupt (which signals
that the adapter's transmit FIFO has space for the next packet) wasn't
being received.  (Presumably only the IL protocol is efficient enough
to overrun the adapter's transmission speed and allow the FIFO to
fill up ...)

I believe the problem is that the TxAvailable threshold needs to be
set in units of longwords rather than bytes (could someone with
access to hardware documentation for the 3C590 please confirm this?).
If this is right, in ether509.c the line

	COMMAND(port, SetTxAvailable, len);

ought to be

	COMMAND(port, SetTxAvailable, len>>2);

After this change on my system, TxAvailable interrupts occur as 
expected and IL transmission runs without a problem.

-- Richard Miller




             reply	other threads:[~1996-10-07 13:52 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-10-07 13:52 miller [this message]
  -- strict thread matches above, loose matches on Subject: below --
1996-10-07 13:30 jmk
1996-10-06  3:28 jmk

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=19961007135226.2Hsf42YUREWKmqZqznpR1WoV9nDUDFe6ZThrevBS5H4@z \
    --to=miller@hamnavoe.demon.co.uk \
    /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).