* [linux kernel 2.6.19] ethernet driver for Marvell bridge GT-64260
@ 2007-08-31 15:58 joachim.bader
2007-08-31 16:43 ` Dale Farnsworth
0 siblings, 1 reply; 4+ messages in thread
From: joachim.bader @ 2007-08-31 15:58 UTC (permalink / raw)
To: linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 1364 bytes --]
Hello,
I am porting linux kernel 2.6.19 on a platform based on PPC750FX together
with a Marvell GT64260.
I use a patched 643xx driver which is back ported to 64260 by Steven J.
Hill.
I have ethernet now up and running, but only if I switch debug on, which
generates a big bunch of screen messages.
As soon as I switch debug off, I get the message "Virtual device %s asks
to queue packet!" on every transmission request.
This happens on ping an other system.
Has anyone experience in such an event? Is there anything how I can speed
up performance with the 64260?
Is there a similar problem known with the 64360?
Thanks in advance.
Joachim
_______________________________________________________________________________________________________________________
Der Inhalt dieser E-Mail ist für den Absender rechtlich nicht verbindlich.
Informieren Sie uns bitte, wenn Sie diese E-Mail fälschlicherweise erhalten haben (Fax: +49-69-5805-1399). Bitte löschen Sie in diesem Fall die Nachricht. Jede Form der weiteren Benutzung ist untersagt.
The content of this e-mail is not legally binding upon the sender.
If this e-mail was transmitted to you by error, then please inform us accordingly (Fax: +49-69-5805-1399). In such case you are requested to erase the message. Any use of such e-mail message is strictly prohibited.
[-- Attachment #2: Type: text/html, Size: 2274 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [linux kernel 2.6.19] ethernet driver for Marvell bridge GT-64260
2007-08-31 15:58 [linux kernel 2.6.19] ethernet driver for Marvell bridge GT-64260 joachim.bader
@ 2007-08-31 16:43 ` Dale Farnsworth
0 siblings, 0 replies; 4+ messages in thread
From: Dale Farnsworth @ 2007-08-31 16:43 UTC (permalink / raw)
To: joachim.bader, Linuxppc-embedded
>
> I am porting linux kernel 2.6.19 on a platform based on PPC750FX together
> with a Marvell GT64260.
> I use a patched 643xx driver which is back ported to 64260 by Steven J.
> Hill.
> I have ethernet now up and running, but only if I switch debug on, which
> generates a big bunch of screen messages.
> As soon as I switch debug off, I get the message "Virtual device %s asks
> to queue packet!" on every transmission request.
>
> This happens on ping an other system.
>
> Has anyone experience in such an event? Is there anything how I can speed
> up performance with the 64260?
> Is there a similar problem known with the 64360?
No, this does not happen on the mv64360. As I recall, that message occurs
when something attempts to queue a packet to a driver that has called
netif_stop_queue() but hasn't yet called netif_wake_queue(). I would
guess that when you turn debug on, you are changing the driver logic
in addition to the timing.
-Dale
^ permalink raw reply [flat|nested] 4+ messages in thread
* [linux kernel 2.6.19] ethernet driver for Marvell bridge GT-64260
@ 2007-08-24 13:51 joachim.bader
2007-08-24 16:13 ` Dale Farnsworth
0 siblings, 1 reply; 4+ messages in thread
From: joachim.bader @ 2007-08-24 13:51 UTC (permalink / raw)
To: linuxppc-embedded
[-- Attachment #1: Type: text/plain, Size: 1475 bytes --]
Hello everybody,
I continue the work of ThomasB to get a linux kernel 2.6.19 up and running
on a PPC750FX based platform using a GT-64260.
From Thomas I got a patched mv643xx_eth driver which is ported to support
the 64260, too.
Now the driver is integrated and runs complete through initialisation
bringing up an eth0 device.
The initialisation seams to be ok (no error messages), the device is up
and routing information is setup.
Now I try to ping a remote station but I receive nothing and I get no
feedback from the remote compter.
As soon as I turn of the net interface (ifconfig eth0 down) I get the
message "Tx time out or no link?)
Is there anything else I can check? Any idea what may cause this problem?
Thanks a lot for your help
Joachim
_______________________________________________________________________________________________________________________
Der Inhalt dieser E-Mail ist für den Absender rechtlich nicht verbindlich.
Informieren Sie uns bitte, wenn Sie diese E-Mail fälschlicherweise erhalten haben (Fax: +49-69-5805-1399). Bitte löschen Sie in diesem Fall die Nachricht. Jede Form der weiteren Benutzung ist untersagt.
The content of this e-mail is not legally binding upon the sender.
If this e-mail was transmitted to you by error, then please inform us accordingly (Fax: +49-69-5805-1399). In such case you are requested to erase the message. Any use of such e-mail message is strictly prohibited.
[-- Attachment #2: Type: text/html, Size: 2375 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [linux kernel 2.6.19] ethernet driver for Marvell bridge GT-64260
2007-08-24 13:51 joachim.bader
@ 2007-08-24 16:13 ` Dale Farnsworth
0 siblings, 0 replies; 4+ messages in thread
From: Dale Farnsworth @ 2007-08-24 16:13 UTC (permalink / raw)
To: joachim.bader, linuxppc-embedded
> I continue the work of ThomasB to get a linux kernel 2.6.19 up and running
> on a PPC750FX based platform using a GT-64260.
> From Thomas I got a patched mv643xx_eth driver which is ported to support
> the 64260, too.
> Now the driver is integrated and runs complete through initialisation
> bringing up an eth0 device.
> The initialisation seams to be ok (no error messages), the device is up
> and routing information is setup.
> Now I try to ping a remote station but I receive nothing and I get no
> feedback from the remote compter.
> As soon as I turn of the net interface (ifconfig eth0 down) I get the
> message "Tx time out or no link?)
> Is there anything else I can check? Any idea what may cause this problem?
Steven Hill posted his patch series merging gt64260 ethernet support to
the netdev mailing list last month. You might look at:
http://lists.openwall.net/netdev/2007/07/19/22
and related patches.
The differences between 64260 and 64360 are so large that they are
unlikely to be merged into a single driver, but a separate driver
is a possibility if someone steps up to do the work.
-Dale
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-08-31 16:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-31 15:58 [linux kernel 2.6.19] ethernet driver for Marvell bridge GT-64260 joachim.bader
2007-08-31 16:43 ` Dale Farnsworth
-- strict thread matches above, loose matches on Subject: below --
2007-08-24 13:51 joachim.bader
2007-08-24 16:13 ` Dale Farnsworth
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).