linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-24 16:02 Michael Sokolov
  0 siblings, 0 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-24 16:02 UTC (permalink / raw)
  To: linux-galileo, linuxppc-dev


Troy Benjegerdes <hozer@drgw.net> wrote:

> when I start merging the _galileo tree code to _devel, I'm likely to blow
> your changes away because I can't test them.

If you do I'll scream very loud and make you fix your breakage.

> And PLEASE give me a different eth driver ;)
>
> The one in the tree right now works for single cpus, but
> a) is ugly
> b) blows up very nicely with SMP.

I'll discuss this in a bit.

> The _galileo tree was created to keep us from thrashing in _devel with a
> bunch of crappy (but working) code.
           ^^^^^^^^^^^^^^^^^^^^^^^^^

If you have crappy code, you have to be prepared for someone else having
sparkling beautiful code ready to go to Marcelo, and you have to accept it
being used over your crappy one. (Just check out my patch from my CVS to see
what I mean by sparkling beautiful code. Just compare the EV64260 and EV64260MS
ports.)

> FYI, I am about ready to merge Zuma's gt64260_mpsc driver to 2_4_devel
> since it seems to work reasonably well, and the code is mostly sane. If
> you have another mpsc driver, speak now or forever hold your peace.

I don't have another MPSC driver nor do I have plans to do any MPSC work right
now. At SBS I was planning on making a done-right MPSC driver for 2_4_devel
because their boards all used MPSC, but then I got fired from SBS and my
current paying client doesn't care about MPSC (he's got a UART on his board
just like on the EVB).

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27 20:09 Michael Sokolov
  0 siblings, 0 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27 20:09 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> Attempt #6:

Go for it!

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27 18:53 Michael Sokolov
  2002-03-27 19:37 ` benh
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27 18:53 UTC (permalink / raw)
  To: linuxppc-dev


benh@kernel.crashing.org wrote:

> The main problem I have with putting a "structure" inside one bi_rec like
> BI_GT64260_ETH_CFG is that it won't evolve. I mean, let's say today, you
> define it contains an HW ethernet address. Then, you figure out you have
> wired your PHY directly, it's not on the MII and you need your driver to
> know about it, how do you add that info ? Or you figure out that your
> driver would need some tunning (different LED wiring on the PHY), you
> change the structure layout to pass new parameters ?
> You create unnecessary compatibility hell.

OK, I accept that you are right, your flexible structure is better. Now are you
guys going to actually implement it or just talk about it?

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27 18:34 Michael Sokolov
  0 siblings, 0 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27 18:34 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> I messed up the size on the BI_LAST struct, should be 12.  Attempt #5:

BI_FIRST and BI_LAST are normally dataless (size 8), but the parser doesn't
care.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27 18:32 Michael Sokolov
  2002-03-27 18:46 ` benh
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27 18:32 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> Yeah, that's right, I messed up.  So what should be done for the nested ones?
> What is we use the BI_DEVICE as a quasi-BI_FIRST and then add a BI_LAST to each
> nested one?  This is what it would look like:

I think the whole idea of nested bi_recs is completely unnecessary complexity.
A simple BI_GT64260_ETH_CFG is better.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27 18:03 Michael Sokolov
  2002-03-27 16:16 ` Mark A. Greer
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27 18:03 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> Okay, this may be it, attempt #4:

Looks fine, except for:

> [6] 0x00000000                          (NULL Termination of whole list)

Currently the entire bi_recs list starts with BI_FIRST (that's how we detect a
bi_recs list) and ends with BI_LAST (that's the terminator). We must maintain
compatibility.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27 17:32 Michael Sokolov
  2002-03-27 15:46 ` Mark A. Greer
  2002-03-27 17:48 ` benh
  0 siblings, 2 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27 17:32 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> Forget the last one, here's attempt #3:

I can live with this.

But why is the MAC address in ASCII? Why not simply put the 6 bytes in there?
Why the extra burden of parsing the ASCII?

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27  2:37 Michael Sokolov
  2002-03-26 21:52 ` benh
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27  2:37 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> First, we need to see if this is going to fit with everything else in
> 2_4/2_4_devel and then it will get implemented.

It would set a very bad example if it is implemented. In your proposal the
records containing the GT-64260 Ethernet information have no indication in them
whatsoever that they are for GT-64260 and not some other Ethernet. If you make
the gt64260_eth driver call a function to grab all bi_recs of this kind, the
next engineer who designs a board with other hard-wired Ethernet interfaces on
it besides the GT-64260 (like an MPC8260 + GT-64260 system) will be simply
stuck out of luck as the gt64260_eth driver will unceremoniously grab all
records for all Ethernets and there will be no way to tell which MAC address
belongs to each Ethernet.

Bad bad bad.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-27  1:35 Michael Sokolov
  2002-03-26 23:48 ` Mark A. Greer
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-27  1:35 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> [3] tag: BI_STRUCT                      (embedded enet cltr 0)
>     size: 76                            (12 + 3*12 + 25 + 3 == 76)
>     data: BI_DEVICE
>
>     [3.0] tag: BI_DEV_TYPE
>           size: 12
>           data: BI_DEV_EMBEDDED
>
>     [3.1] tag: BI_DEV_CLASS
>           size: 12
>           data: BI_CLASS_ENET
>
>     [3.2] tag: BI_DEV_ID
>           size: 12
>           data: 0                       (1st enet device)
>
>     [3.3] tag: BI_MAC_ADDR
>           size: 25
>           data: aa:bb:cc:dd:ee:ff       (ascii)
>     pad: 3

[Skipped identical structs for the other two ports]

I disagree. I think BI_GT64260_ETH_CFG as I implemented it is better.

Now if you actually implement your way in code and make it work, I'll accept it
even though I dislike it, but if your above proposal remains verbiage, my patch
must be pushed instead. Unimplemented verbiage must not take precedence over
working code.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-21  2:13 Michael Sokolov
  2002-03-21  6:39 ` Dan Malek
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-21  2:13 UTC (permalink / raw)
  To: linux-galileo, linuxppc-dev


Dan Malek <dan@embeddededge.com> wrote:

> The only reason _any_ Ethernet
> information had been passed between the bootloader and the kernel
> was for the processors with internal peripherals and a variety of
> methods that were used for retrieving the MAC address.

Yes, and this is how it should be.

Now not just for Ethernet, but for any peripherals built into the CPU, the
system controller, or the board custom logic we need bi_recs to tell the kernel
how it's wired. Like if some random peripheral chip (not PCI or somesuch, but
"system" type that we have to have hard knowledge of) has a pin that can be
tied high or low that affects its operation and the Linux driver needs to know
how it's tied, we need to have the board firmware pass this magic info via
bi_recs (now it's done either with a board #ifdef maze or .config options). I
don't think there should be .config options for things that are fixed hard in
PCB traces or in silicon, and board #ifdefs are ugly. bi_recs are the answer.
That's why I included is_rmii and phy_addr in BI_GT64260_ETH_CFG.

> There are
> already Linux methods for configuring network interfaces, we don't
> need to add another one.

Exactly. Things like 10 vs. 100 Mbps shouldn't be in bi_recs because they are
up to the user to decide and Linux already provides standard mechanisms for
them. bi_recs should be used only for stuff that's completely involuntary,
i.e., to describe how the board is wired. This way they can be completely
hidden from the user who can't override a PCB trace in software anyway.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
[parent not found: <dan@embeddededge.com>]
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-21  1:10 Michael Sokolov
  0 siblings, 0 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-21  1:10 UTC (permalink / raw)
  To: linux-galileo, linuxppc-dev


Wolfgang Denk <wd@denx.de> wrote:

> I don't  know  the  GT64260  that  well;  what  makes  it's  ethernet
> interface  so  much  different  from all other devices that it cannot
> share a common BI_ETH_CFG?

I tell you what Wolfgang, if you can make a patch counter to mine that does it
your way and that works on GT-64260 and does what's needed there, I'll gladly
accept your solution. But until you do that please let me push my patch through
the maintainers.

I only have bandwidth for GT-64260 right now, not for 8xx or 8260 or anything
else.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-21  0:57 Michael Sokolov
  2002-03-21  6:58 ` Dan Malek
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-21  0:57 UTC (permalink / raw)
  To: linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> I see three options:
>
> a) Do it the same was as we're going to do it in 2.5
>
> [...]
>
> b) Do a more advanced bi_rec scheme (like benh's proposal)
>
> c) Do mininimum necessary in 2.4; do it "right" in 2.5

I vote for doing 'c' now and keeping it unchanged for 2.5, 2.6, 2.10, 3.0, and
the eternity.

> Can we focus on this question so we can stop going in circles?  Besides if we
> reach a concensus in a "few days" we can take MS' $50.  :)

Then we have to agree on how many days is a few. And remember, the count
started yesterday at 16:53 PST. Also you have to have not only a consensus, but
a working patch counter to mine, otherwise you have to push mine and I keep my
$50.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-21  0:47 Michael Sokolov
  0 siblings, 0 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-21  0:47 UTC (permalink / raw)
  To: linux-galileo, linuxppc-dev


Tom Rini <trini@kernel.crashing.org> wrote:

> Because you enjoy our conversations? :)

Normally I do, but then we got on the subject of which patches should or
shouldn't be accepted, and I'm not going to discuss that with anyone except the
actual responsible maintainers.

> And then you'll have to go and improve the patch anyhow, if you're going
> to stick to your word. :)

Oh sure, I have a ton of improvements in mind, I just want to do them one step
at a time, i.e., not work on patch N+1 until N is in the tree.

> How is that a step backward?

The steps forward are linuxppc_2_4_devel -> linuxppc_2_4 -> Marcelo -> 2.4
tarballs on kernel.org -> Debian, Yellow Dog, etc. Sidetrack trees like
2_4_galileo are a step backward.

> All of the current galileo work is in that
> tree.

No, a better competing version of the GT-64260 work is in the 2_4_msokolov tree
on my machine.

> And a quick diff of the enet drivers in the two trees shows a
> good deal of differences, many of which aren't just cosmetic.  Isn't it
> more 'natural' to update the most up to date file?

The gt64260_eth driver in both trees is so busted that I plan to rewrite it
from scratch anyway like I already did with the rest of the GT-64260 code. (And
when I do I'll make it vastly superior to yours to convince Paulus/Marcelo to
use it over yours.)

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
[parent not found: <3C98B189.78A92DFE@mvista.com>]
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-20 17:11 Michael Sokolov
  2002-03-20 18:06 ` Wolfgang Denk
  0 siblings, 1 reply; 93+ messages in thread
From: Michael Sokolov @ 2002-03-20 17:11 UTC (permalink / raw)
  To: linux-galileo, linuxppc-dev


Wolfgang Denk <wd@denx.de> wrote:

> I'm getting a bit tired about this discussion.

I got tired a long time ago.

> We  start  with  siome
> nice  ideas,  then  some open issues pop up, and instead of trying to
> find a solution we drop everything again.
                  ^^^^^^^^^^^^^^^^^^^^^^^^^

No, we don't drop everything again, there is my patch, and Mark said he'll push
it if there is no consensus in the next few days, which I've already bet $50
on.

> For instance. Hey, but we are talking about a very, very special case
> here - when you have set of non-standard controllers which don't know
> their own addresses _and_ need to get a specific assignment _and_ you
> don't know the initialization sequence _and_ ...
>
> For 98% of all practical purposes it will be sufficient to  pass  the
> list of MAC addresses, and for 1.95% it will be sufficient to combine
> the  MAC  address  with  information about the driver type (GT, 82xx,
> ...).

But this is lousy logic, it's this kind of logic (it's OK for 98% of cases)
that has given us the crap we have right now.

Just what is wrong with my solution of BI_GT64260_ETH_CFG, BI_8260_ETH_CFG,
BI_8XX_ETH_CFG, etc?

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-20 17:04 Michael Sokolov
  2002-03-20 17:25 ` Tom Rini
  2002-03-21 20:36 ` Troy Benjegerdes
  0 siblings, 2 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-20 17:04 UTC (permalink / raw)
  To: trini; +Cc: linux-galileo, linuxppc-dev


Tom Rini <trini@kernel.crashing.org> wrote:

> Sure there is, for it to be accepted.

Wait a minute, why am I even talking to you? Mark said he is the responsible
maintainer and promised to push my patch in a few days if there is no consensus
by then, and I think I'll just wait a few days and then ask him to stick to his
word. (I'm willing to bet $50 that in the next few days there will be no
consensus nor will anyone else offer a counterpatch.)

> And would you please make it
> versus the _galileo tree

Sorry, no, that would be a step backward and we need to move forward.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
[parent not found: <20020320164025.31626@mailhost.mipsys.com>]
[parent not found: <20020320155551.GD3762@opus.bloom.county>]
[parent not found: <20020320150119.GB3762@opus.bloom.county>]
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-20  1:02 Michael Sokolov
  0 siblings, 0 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-20  1:02 UTC (permalink / raw)
  To: linux-galileo, linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> Man, can I ever turn a quiet email day into a hurricane!!  :)

Ever heard the term filibuster? That's what I think happening here: lots of
talk, no work. Also note that so far I'm the only one who has posted a patch,
the rest is verbiage.

> Point well taken and you're right, perhaps the cmd_line is a better way to
> pass in hdx/fdx & speed, phy addr & is_rmii.

The PHY address and MII vs. RMII are things fixed by board circuitry and would
normally be hard-coded. The only reason I added them to BI_GT64260_ETH_CFG was
because I imagined the #ifdef maze that would otherwise eventually grow in the
gt64260_eth driver as people add ports to different boards with these things
wired differently.

As for speed, etc. no other driver I know of requires the bootloader to pass
this info. It's normally set by ethconfig, miitool, etc. Please don't add that
in there, I have no slightest idea what to put in those fields if they were in
the bi_rec.

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
* Re: EV-64260-BP & GT64260 bi_recs
@ 2002-03-20  0:43 Michael Sokolov
  2002-03-19 23:00 ` Mark A. Greer
  2002-03-20 13:19 ` benh
  0 siblings, 2 replies; 93+ messages in thread
From: Michael Sokolov @ 2002-03-20  0:43 UTC (permalink / raw)
  To: mgreer; +Cc: linux-galileo, linuxppc-dev


Mark A. Greer <mgreer@mvista.com> wrote:

> I like what Michael has done but want to add more and change the
> BI_GT64260_ETH_CFG to a more generic BI_ETH_CFG.

I disagree. I don't see how a generic BI_ETH_CFG is possible. See how I've
implemented BI_GT64260_ETH_CFG in arch/ppc/kernel/setup.c:parse_bootinfo: it
injects the information from this record directly into the gt64260_eth driver,
which is where this information is needed.

Next when someone wants to do the same for, say, 8260 Ethernet, they'll have to
add BI_8260_ETH_CFG or whatever. I don't see any other way: what if I built a
board with an 8260 CPU and a GT-64260 attached to the 60x bus coming out of the
8260 (such a board was in the works at SBS before I left) and both 8260 and GT
Ethernets are used? What will parse_bootinfo() do with a BI_ETH_CFG then? Is it
going to inject the MAC address into the 8260 Ethernet driver, into the GT
Ethernet driver, or where? How do you make sure that each Ethernet interface
gets the MAC address that belongs to it?

MS

** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/

^ permalink raw reply	[flat|nested] 93+ messages in thread
[parent not found: <20020320000500.GV3762@opus.bloom.county>]
[parent not found: <20020319235815.GU3762@opus.bloom.county>]
[parent not found: <20020319231628.GQ3762@opus.bloom.county>]
[parent not found: <3C97A9C1.EBA150B6@mvista.com>]
[parent not found: <20020319224420.GO3762@opus.bloom.county>]

end of thread, other threads:[~2002-04-03  0:21 UTC | newest]

Thread overview: 93+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-24 16:02 EV-64260-BP & GT64260 bi_recs Michael Sokolov
  -- strict thread matches above, loose matches on Subject: below --
2002-03-27 20:09 Michael Sokolov
2002-03-27 18:53 Michael Sokolov
2002-03-27 19:37 ` benh
2002-03-27 18:34 Michael Sokolov
2002-03-27 18:32 Michael Sokolov
2002-03-27 18:46 ` benh
2002-03-27 18:03 Michael Sokolov
2002-03-27 16:16 ` Mark A. Greer
2002-03-27 16:24   ` Mark A. Greer
2002-03-27 18:40   ` benh
2002-03-27 18:02     ` Mark A. Greer
2002-03-27 18:06       ` Mark A. Greer
2002-03-27 17:32 Michael Sokolov
2002-03-27 15:46 ` Mark A. Greer
2002-03-27 17:48 ` benh
2002-03-27 15:59   ` Mark A. Greer
2002-03-27  2:37 Michael Sokolov
2002-03-26 21:52 ` benh
2002-03-27 14:15   ` Matt Porter
2002-03-27 15:10     ` Mark A. Greer
2002-03-27 15:15       ` Mark A. Greer
2002-03-27 17:47         ` benh
2002-03-28  9:14       ` Geert Uytterhoeven
2002-03-27  1:35 Michael Sokolov
2002-03-26 23:48 ` Mark A. Greer
2002-03-21  2:13 Michael Sokolov
2002-03-21  6:39 ` Dan Malek
2002-03-31  8:32   ` Paul Mackerras
2002-04-01 18:39     ` Dan Malek
2002-04-02  5:32       ` Paul Mackerras
2002-04-02 16:33         ` Tom Rini
2002-04-02 17:29         ` Dan Malek
2002-04-02 14:42           ` Armin
2002-04-02 20:12           ` Tom Rini
2002-04-02 21:02             ` Dan Malek
2002-04-03  0:21               ` Tom Rini
     [not found] <dan@embeddededge.com>
     [not found] ` <3C98DA15.50302@embeddededge.com>
2002-03-21  1:11   ` Murray Jensen
2002-03-21  6:50     ` Dan Malek
2002-03-21 11:05       ` Murray Jensen
2002-03-21  1:10 Michael Sokolov
2002-03-21  0:57 Michael Sokolov
2002-03-21  6:58 ` Dan Malek
2002-03-21  0:47 Michael Sokolov
     [not found] <3C98B189.78A92DFE@mvista.com>
2002-03-20 18:12 ` Wolfgang Denk
     [not found]   ` <3C98DB49.2C3A2F79@mvista.com>
2002-03-23  3:49     ` Val Henson
2002-03-20 17:11 Michael Sokolov
2002-03-20 18:06 ` Wolfgang Denk
2002-03-20 17:04 Michael Sokolov
2002-03-20 17:25 ` Tom Rini
2002-03-21 20:36 ` Troy Benjegerdes
2002-03-21 19:17   ` Mark A. Greer
2002-03-21 21:36     ` Jim Potter
     [not found] <20020320164025.31626@mailhost.mipsys.com>
2002-03-20 16:59 ` Wolfgang Denk
     [not found] <20020320155551.GD3762@opus.bloom.county>
2002-03-20 16:18 ` Wolfgang Denk
     [not found] <20020320150119.GB3762@opus.bloom.county>
2002-03-20 15:43 ` Wolfgang Denk
2002-03-20  1:02 Michael Sokolov
2002-03-20  0:43 Michael Sokolov
2002-03-19 23:00 ` Mark A. Greer
2002-03-20  7:55   ` Wolfgang Denk
2002-03-20 13:19 ` benh
2002-03-20 15:30   ` Michael Sokolov
2002-03-20 16:19     ` Tom Rini
2002-03-20 16:58       ` benh
2002-03-23  4:01         ` Val Henson
2002-03-23 13:07           ` Murray Jensen
2002-03-24 12:22             ` Benjamin Herrenschmidt
2002-03-24 12:20           ` Benjamin Herrenschmidt
2002-03-24 19:09             ` Val Henson
2002-03-24 16:46               ` Benjamin Herrenschmidt
2002-03-25  8:51                 ` Geert Uytterhoeven
2002-03-24 18:16                   ` Benjamin Herrenschmidt
2002-03-26  2:16                 ` Val Henson
2002-03-26 10:05                   ` Benjamin Herrenschmidt
2002-03-24 19:38               ` Geert Uytterhoeven
2002-03-24 16:55                 ` Benjamin Herrenschmidt
2002-03-24 17:18                   ` Benjamin Herrenschmidt
2002-03-25  0:44               ` Murray Jensen
2002-03-25 22:05                 ` Val Henson
2002-03-26  3:21             ` Val Henson
2002-03-26  4:14               ` Murray Jensen
2002-03-26 10:14               ` benh
2002-03-26 12:05                 ` Gabriel Paubert
2002-03-26 12:18                   ` benh
2002-03-26 23:24             ` Mark A. Greer
2002-03-26 21:40               ` benh
2002-03-27 15:13                 ` Mark A. Greer
     [not found] <20020320000500.GV3762@opus.bloom.county>
2002-03-20  0:28 ` Wolfgang Denk
     [not found] <20020319235815.GU3762@opus.bloom.county>
2002-03-20  0:24 ` Wolfgang Denk
     [not found] <20020319231628.GQ3762@opus.bloom.county>
2002-03-19 23:46 ` Wolfgang Denk
     [not found] <3C97A9C1.EBA150B6@mvista.com>
2002-03-19 23:36 ` Wolfgang Denk
     [not found] <20020319224420.GO3762@opus.bloom.county>
2002-03-19 23:00 ` Wolfgang Denk
2002-03-20  0:03 ` Gabriel Paubert

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).