* Anyone got eepro100 working on Walnut?
@ 2002-04-17 1:08 Wright, David
2002-04-17 15:36 ` Matt Porter
2002-04-17 15:42 ` Armin
0 siblings, 2 replies; 4+ messages in thread
From: Wright, David @ 2002-04-17 1:08 UTC (permalink / raw)
To: linuxppc-embedded
I've been trying to get an Intel eepro100 card working on a
Walnut board. I've tried both the 1.09 and 1.19 versions of
the driver (eepro100.c). Initially, both failed the self-
test step. I was able to get past that one by invalidating
the dcache after issuing the self-test directive. However,
I now find that the card is neither transmitting nor receiving
reliably. I get messages like:
eth1: Unknown receiver error, status=0x5048. [lots of these]
and
eth1: Transmit timed out: status 0050 0000 at 2/8 commands 00a00300 00a003000.
eth1: Restarting the chip...
eth1: Command unit failed to mark command 00030000 as complete at 6.
Any suggestions (other than junking this card, which is not an option
for me) most welcome.
-- David Wright, InfiniSwitch Corp.
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Anyone got eepro100 working on Walnut?
2002-04-17 1:08 Anyone got eepro100 working on Walnut? Wright, David
@ 2002-04-17 15:36 ` Matt Porter
2002-04-17 15:42 ` Armin
1 sibling, 0 replies; 4+ messages in thread
From: Matt Porter @ 2002-04-17 15:36 UTC (permalink / raw)
To: Wright, David; +Cc: linuxppc-embedded
On Tue, Apr 16, 2002 at 09:08:41PM -0400, Wright, David wrote:
>
> I've been trying to get an Intel eepro100 card working on a
> Walnut board. I've tried both the 1.09 and 1.19 versions of
> the driver (eepro100.c). Initially, both failed the self-
> test step. I was able to get past that one by invalidating
> the dcache after issuing the self-test directive. However,
> I now find that the card is neither transmitting nor receiving
> reliably. I get messages like:
>
> eth1: Unknown receiver error, status=0x5048. [lots of these]
>
> and
>
> eth1: Transmit timed out: status 0050 0000 at 2/8 commands 00a00300 00a003000.
> eth1: Restarting the chip...
> eth1: Command unit failed to mark command 00030000 as complete at 6.
>
>
> Any suggestions (other than junking this card, which is not an option
> for me) most welcome.
Sounds like you have a buggy kernel since it looks like cache
coherency problems. By the revision of the eepro100 driver you
are using, it sounds ancient too.
Try running the 2_4_devel kernel. The current eepro100 driver
works fine for me on a 440 so you shouldn't have a problem
assuming that the walnut port is working.
Regards,
--
Matt Porter
MontaVista Software, Inc.
mporter@mvista.com
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Anyone got eepro100 working on Walnut?
2002-04-17 1:08 Anyone got eepro100 working on Walnut? Wright, David
2002-04-17 15:36 ` Matt Porter
@ 2002-04-17 15:42 ` Armin
1 sibling, 0 replies; 4+ messages in thread
From: Armin @ 2002-04-17 15:42 UTC (permalink / raw)
To: Wright, David; +Cc: linuxppc-embedded
Wright, David wrote:
> I've been trying to get an Intel eepro100 card working on a
> Walnut board. I've tried both the 1.09 and 1.19 versions of
> the driver (eepro100.c). Initially, both failed the self-
> test step. I was able to get past that one by invalidating
> the dcache after issuing the self-test directive. However,
> I now find that the card is neither transmitting nor receiving
> reliably. I get messages like:
>
> eth1: Unknown receiver error, status=0x5048. [lots of these]
>
> and
>
> eth1: Transmit timed out: status 0050 0000 at 2/8 commands 00a00300 00a003000.
> eth1: Restarting the chip...
> eth1: Command unit failed to mark command 00030000 as complete at 6.
>
>
> Any suggestions (other than junking this card, which is not an option
> for me) most welcome.
>
> -- David Wright, InfiniSwitch Corp.
>
>
>
>
Yes,
What kernel version are you using? and what is the openbios version ?
armin
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: Anyone got eepro100 working on Walnut?
@ 2002-04-17 19:22 Wright, David
0 siblings, 0 replies; 4+ messages in thread
From: Wright, David @ 2002-04-17 19:22 UTC (permalink / raw)
To: Matt Porter; +Cc: linuxppc-embedded
Greetings, all,
As it turned out, the age of my kernel (2.4.14-pre3) was the
source of the problem; I had the older pci allocation functions
that don't allocate non-cacheable memory. When I updated the
kernel to use a more recent pci-dma.c, the eepro100.c driver
I'd been using worked fine. (It's not identical to the one in
the latest distribution, but it's not far off.)
Thanks,
-- David Wright, InfiniSwitch Corp.
> -----Original Message-----
> On Tue, Apr 16, 2002 at 09:08:41PM -0400, Wright, David wrote:
> >
> > I've been trying to get an Intel eepro100 card working on a
> > Walnut board. I've tried both the 1.09 and 1.19 versions of
> > the driver (eepro100.c). Initially, both failed the self-
> > test step. I was able to get past that one by invalidating
> > the dcache after issuing the self-test directive. However,
> > I now find that the card is neither transmitting nor receiving
> > reliably. I get messages like:
> >
> > eth1: Unknown receiver error, status=0x5048. [lots of these]
> >
> > and
> >
> > eth1: Transmit timed out: status 0050 0000 at 2/8 commands
> 00a00300 00a003000.
> > eth1: Restarting the chip...
> > eth1: Command unit failed to mark command 00030000 as complete at 6.
> >
> >
> > Any suggestions (other than junking this card, which is not
> > an option for me) most welcome.
>
> Sounds like you have a buggy kernel since it looks like cache
> coherency problems. By the revision of the eepro100 driver you
> are using, it sounds ancient too.
>
> Try running the 2_4_devel kernel. The current eepro100 driver
> works fine for me on a 440 so you shouldn't have a problem
> assuming that the walnut port is working.
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2002-04-17 19:22 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-04-17 1:08 Anyone got eepro100 working on Walnut? Wright, David
2002-04-17 15:36 ` Matt Porter
2002-04-17 15:42 ` Armin
-- strict thread matches above, loose matches on Subject: below --
2002-04-17 19:22 Wright, David
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).