linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* PQ2FADS Support
@ 2003-10-17 14:23 Kevin A. Sapp
  2003-10-18 21:03 ` Wolfgang Denk
  0 siblings, 1 reply; 6+ messages in thread
From: Kevin A. Sapp @ 2003-10-17 14:23 UTC (permalink / raw)
  To: linuxppc-embedded


Hello,

I am working with a Motorola PQ2FADS board.  I currently
have a "free" teaser distribution from a vendor that works for
the board.  The FADS board is not the ultimate target.

I tried to use the latest ATM driver for the PQ2, but have
lots of unresolves due to the vendor mods in the low level
stuff.

I would like to use the eldk, but, when I pulled down the
latest CVS version this morning and try to configure there
is not an option for PQ2FADS.

I would rather go with the ELDK since it is has a larger
tool set and support is through the community.

So, does anyone have a .config and associated support
for PQ2FADS-VR ?  (8275-VR 266/166/66)
Suggestions?

Thanks
Kevin


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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: PQ2FADS Support
  2003-10-17 14:23 PQ2FADS Support Kevin A. Sapp
@ 2003-10-18 21:03 ` Wolfgang Denk
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfgang Denk @ 2003-10-18 21:03 UTC (permalink / raw)
  To: Kevin A. Sapp; +Cc: linuxppc-embedded


In message <3F8FFB74.2030609@catapult.com> you wrote:
>
> I would like to use the eldk, but, when I pulled down the
> latest CVS version this morning and try to configure there
> is not an option for PQ2FADS.

I think this is a misunderstanding. The ELDK is a  _toolkit_,  not  a
kernel  distribution.  (Yes,  the  ELDK  does  contain a Linux kernel
source tree, too - the current version of the ELDK contains our 2.4.4
kernel tree).

But if you're looking at specific board support, you  can  use  _any_
kernel source tree in combination with the ELDK tools.


Best regards,

Wolfgang Denk

--
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-4596-87  Fax: (+49)-8142-4596-88  Email: wd@denx.de
1 1 was a race-horse, 2 2 was 1 2. When 1 1 1 1 race, 2 2 1 1 2.

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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* pq2fads support...
@ 2007-07-27 12:24 Alexandros Kostopoulos
  2007-07-27 16:35 ` Scott Wood
  0 siblings, 1 reply; 6+ messages in thread
From: Alexandros Kostopoulos @ 2007-07-27 12:24 UTC (permalink / raw)
  To: linuxppc-dev

Hello Scott and all,

In your patch for the pq2fads support, the device tree seems to be missing  
a memory node, for which dtc complains loudly. Is this board tested to  
boot with these patches (because I'm now using this as a template for my  
board - with your patchset applied to Paul's git)

thanks a lot

Alex

PS. What's about this new cpm-serial driver? is this supposed to be a  
replacement for cpm_uart?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: pq2fads support...
  2007-07-27 12:24 pq2fads support Alexandros Kostopoulos
@ 2007-07-27 16:35 ` Scott Wood
  2007-07-27 17:12   ` Alexandros Kostopoulos
  0 siblings, 1 reply; 6+ messages in thread
From: Scott Wood @ 2007-07-27 16:35 UTC (permalink / raw)
  To: Alexandros Kostopoulos; +Cc: linuxppc-dev

On Fri, Jul 27, 2007 at 03:24:08PM +0300, Alexandros Kostopoulos wrote:
> In your patch for the pq2fads support, the device tree seems to be missing  
> a memory node, for which dtc complains loudly. Is this board tested to  
> boot with these patches (because I'm now using this as a template for my  
> board - with your patchset applied to Paul's git)

Sorry about that -- dtc complains about a lot of silly things, falsely
assuming that the result is intended to be a complete tree ready for
passing to Linux (which is rarely true).  I'd been running with a patch
to remove some of those checks, but it got rejected, and I forgot to
stick the templates back into the dts.

The next patchset will have a dts that works with current dtc; in the
meantime, you can add the -f flag to dtc in arch/powerpc/boot/wrapper, or
add the missing nodes based on the mpc8272ads device tree (the actual
information will be filled in by the bootwrapper).

> PS. What's about this new cpm-serial driver? is this supposed to be a  
> replacement for cpm_uart?

No, it's a minimal driver for the bootwrapper.

-Scott

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: pq2fads support...
  2007-07-27 16:35 ` Scott Wood
@ 2007-07-27 17:12   ` Alexandros Kostopoulos
  2007-07-27 17:45     ` Scott Wood
  0 siblings, 1 reply; 6+ messages in thread
From: Alexandros Kostopoulos @ 2007-07-27 17:12 UTC (permalink / raw)
  To: Scott Wood; +Cc: linuxppc-dev

Thanks for your reply, Scott,

one question though: I am NOT using the bootwrapper, I'm instead feeding  
dtb and uImage directly to u-boot. This probably means that I should fill  
in lots of stuff manually into dts, right? But, (and please forgive my  
ignorance) who does actually fill in stuff (like e.g. clock-frequency or  
bus-frequency), except, of course, from the trivial modifications u-boot  
does to dtb? The wrapper script seems to do nothing more that simply  
running dtc on dts.

Thanks again

Alex

On Fri, 27 Jul 2007 19:35:29 +0300, Scott Wood <scottwood@freescale.com>  
wrote:

> On Fri, Jul 27, 2007 at 03:24:08PM +0300, Alexandros Kostopoulos wrote:
>> In your patch for the pq2fads support, the device tree seems to be  
>> missing
>> a memory node, for which dtc complains loudly. Is this board tested to
>> boot with these patches (because I'm now using this as a template for my
>> board - with your patchset applied to Paul's git)
>
> Sorry about that -- dtc complains about a lot of silly things, falsely
> assuming that the result is intended to be a complete tree ready for
> passing to Linux (which is rarely true).  I'd been running with a patch
> to remove some of those checks, but it got rejected, and I forgot to
> stick the templates back into the dts.
>
> The next patchset will have a dts that works with current dtc; in the
> meantime, you can add the -f flag to dtc in arch/powerpc/boot/wrapper, or
> add the missing nodes based on the mpc8272ads device tree (the actual
> information will be filled in by the bootwrapper).
>
>> PS. What's about this new cpm-serial driver? is this supposed to be a
>> replacement for cpm_uart?
>
> No, it's a minimal driver for the bootwrapper.
>
> -Scott

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: pq2fads support...
  2007-07-27 17:12   ` Alexandros Kostopoulos
@ 2007-07-27 17:45     ` Scott Wood
  0 siblings, 0 replies; 6+ messages in thread
From: Scott Wood @ 2007-07-27 17:45 UTC (permalink / raw)
  To: Alexandros Kostopoulos; +Cc: linuxppc-dev

Alexandros Kostopoulos wrote:
> Thanks for your reply, Scott,
> 
> one question though: I am NOT using the bootwrapper, I'm instead 
> feeding  dtb and uImage directly to u-boot. This probably means that
> I should fill  in lots of stuff manually into dts, right?

No, u-boot should fill in the same stuff.  It may require the empty
fields to be there, though (it definitely requires it if you're using
the old, non-libfdt code -- if you are, you should also remove the 
/chosen node, or else you'll get two of them).

> But, (and please forgive my  ignorance) who does actually fill in
> stuff (like e.g. clock-frequency or  bus-frequency), except, of
> course, from the trivial modifications u-boot  does to dtb? The
> wrapper script seems to do nothing more that simply  running dtc on
> dts.

In the bootwrapper case, it's the code in cuboot-pq2.c and devtree.c. 
In the no-bootwrapper case, it's u-boot.

-Scott

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-07-27 17:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-27 12:24 pq2fads support Alexandros Kostopoulos
2007-07-27 16:35 ` Scott Wood
2007-07-27 17:12   ` Alexandros Kostopoulos
2007-07-27 17:45     ` Scott Wood
  -- strict thread matches above, loose matches on Subject: below --
2003-10-17 14:23 PQ2FADS Support Kevin A. Sapp
2003-10-18 21:03 ` Wolfgang Denk

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