* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
@ 2007-11-30 21:38 Daniel Mack
2007-11-30 22:09 ` Jean-Christophe PLAGNIOL-VILLARD
0 siblings, 1 reply; 9+ messages in thread
From: Daniel Mack @ 2007-11-30 21:38 UTC (permalink / raw)
To: u-boot
Hi,
this patch adds basic support for Toradex PXA27x based Colibri module.
It cleanly applies on u-boot-1.1.6.
However, I didn't manage to get the flash to work at all, at boot time,
I always get the message "Flash: 0 kB". I'm new to the U-Boot
environment, so maybe I missed same essentials here.
Also, the DM9000 driver does not seem to be able to correctly read its
MAC address on this platform. I've read some mails about similar
behaviour. Is there any patch going upstream soon? For now, I helped
myself by hacking a fake MAC to bd->bi_enetaddr right before
initialization but that's of course not a solution.
Thanks and best regards,
Daniel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: uboot-116-colibri.diff
Type: text/x-diff
Size: 33709 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20071130/7dcca347/attachment.diff
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2007-11-30 21:38 [U-Boot-Users] [PATCH] add support for Toradex Colibri module Daniel Mack
@ 2007-11-30 22:09 ` Jean-Christophe PLAGNIOL-VILLARD
2007-11-30 23:13 ` Daniel Mack
0 siblings, 1 reply; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2007-11-30 22:09 UTC (permalink / raw)
To: u-boot
On 22:38 Fri 30 Nov , Daniel Mack wrote:
> Hi,
>
> this patch adds basic support for Toradex PXA27x based Colibri module.
> It cleanly applies on u-boot-1.1.6.
>
> However, I didn't manage to get the flash to work at all, at boot time,
> I always get the message "Flash: 0 kB". I'm new to the U-Boot
> environment, so maybe I missed same essentials here.
>
> Also, the DM9000 driver does not seem to be able to correctly read its
> MAC address on this platform. I've read some mails about similar
> behaviour. Is there any patch going upstream soon? For now, I helped
> myself by hacking a fake MAC to bd->bi_enetaddr right before
> initialization but that's of course not a solution.
>
> Thanks and best regards,
> Daniel
>
Please rebase your code on the last u-boot 1.3.0
Best regards,
J.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2007-11-30 22:09 ` Jean-Christophe PLAGNIOL-VILLARD
@ 2007-11-30 23:13 ` Daniel Mack
2008-01-12 8:27 ` Daniel Mack
2008-02-03 23:07 ` Wolfgang Denk
0 siblings, 2 replies; 9+ messages in thread
From: Daniel Mack @ 2007-11-30 23:13 UTC (permalink / raw)
To: u-boot
On Fri, Nov 30, 2007 at 11:09:57PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Please rebase your code on the last u-boot 1.3.0
Oops, I was trapped by the sourceforge cemetery, sorry.
Patch against 1.3.0 is attached.
Best regards,
Daniel
MAKEALL | 1
Makefile | 3
board/colibri/Makefile | 51 ++++
board/colibri/colibri.c | 61 +++++
board/colibri/config.mk | 1
board/colibri/lowlevel_init.S | 465 ++++++++++++++++++++++++++++++++++++++++++
board/colibri/pxavoltage.S | 178 ++++++++++++++++
board/colibri/u-boot.lds | 56 +++++
include/asm-arm/mach-types.h | 13 +
include/configs/colibri.h | 261 +++++++++++++++++++++++
10 files changed, 1090 insertions(+)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: uboot-130-colibri.diff
Type: text/x-diff
Size: 32945 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20071201/f34cc5d7/attachment.diff
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2007-11-30 23:13 ` Daniel Mack
@ 2008-01-12 8:27 ` Daniel Mack
2008-01-23 15:06 ` Daniel Mack
2008-02-03 23:07 ` Wolfgang Denk
1 sibling, 1 reply; 9+ messages in thread
From: Daniel Mack @ 2008-01-12 8:27 UTC (permalink / raw)
To: u-boot
On Sat, Dec 01, 2007 at 12:13:35AM +0100, Daniel Mack wrote:
> Patch against 1.3.0 is attached.
>
> Best regards,
> Daniel
>
>
> MAKEALL | 1
> Makefile | 3
> board/colibri/Makefile | 51 ++++
> board/colibri/colibri.c | 61 +++++
> board/colibri/config.mk | 1
> board/colibri/lowlevel_init.S | 465 ++++++++++++++++++++++++++++++++++++++++++
> board/colibri/pxavoltage.S | 178 ++++++++++++++++
> board/colibri/u-boot.lds | 56 +++++
> include/asm-arm/mach-types.h | 13 +
> include/configs/colibri.h | 261 +++++++++++++++++++++++
> 10 files changed, 1090 insertions(+)
Has this patch been taken?
Greets,
Daniel
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2008-01-12 8:27 ` Daniel Mack
@ 2008-01-23 15:06 ` Daniel Mack
2008-01-23 20:55 ` Wolfgang Denk
0 siblings, 1 reply; 9+ messages in thread
From: Daniel Mack @ 2008-01-23 15:06 UTC (permalink / raw)
To: u-boot
On Sat, Jan 12, 2008 at 09:27:35AM +0100, Daniel Mack wrote:
> On Sat, Dec 01, 2007 at 12:13:35AM +0100, Daniel Mack wrote:
> > Patch against 1.3.0 is attached.
>
> Has this patch been taken?
Is there anything the maintainers of U-Boot dislike about this patch?
Or what is the reason for all my messages being ignored completely? At
least some feedback would be pleasant.
Daniel
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2008-01-23 15:06 ` Daniel Mack
@ 2008-01-23 20:55 ` Wolfgang Denk
0 siblings, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2008-01-23 20:55 UTC (permalink / raw)
To: u-boot
Dear Daniel,
in message <20080123150644.GA3302@buzzloop.caiaq.de> you wrote:
> On Sat, Jan 12, 2008 at 09:27:35AM +0100, Daniel Mack wrote:
> > On Sat, Dec 01, 2007 at 12:13:35AM +0100, Daniel Mack wrote:
> > > Patch against 1.3.0 is attached.
> >
> > Has this patch been taken?
I did not receive a pull request from the ARM custodian whichincluded
this patch. In other words, no, so far not.
> Is there anything the maintainers of U-Boot dislike about this patch?
> Or what is the reason for all my messages being ignored completely? At
> least some feedback would be pleasant.
I agree, and I apologize. I'm not satisfied with the state of ARM
support myself.
Peter, could you please comment on this? Do you have any specific
plans for this and a list of other ARM patches?
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"The whole world is about three drinks behind." - Humphrey Bogart
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2007-11-30 23:13 ` Daniel Mack
2008-01-12 8:27 ` Daniel Mack
@ 2008-02-03 23:07 ` Wolfgang Denk
2008-02-13 12:46 ` Daniel Mack
1 sibling, 1 reply; 9+ messages in thread
From: Wolfgang Denk @ 2008-02-03 23:07 UTC (permalink / raw)
To: u-boot
Dear Daniel,
in message <20071130231335.GA10869@buzzloop.caiaq.de> you wrote:
>
> Patch against 1.3.0 is attached.
>
> Best regards,
> Daniel
>
>
> MAKEALL | 1
> Makefile | 3
> board/colibri/Makefile | 51 ++++
> board/colibri/colibri.c | 61 +++++
> board/colibri/config.mk | 1
> board/colibri/lowlevel_init.S | 465 ++++++++++++++++++++++++++++++++++++++++++
> board/colibri/pxavoltage.S | 178 ++++++++++++++++
> board/colibri/u-boot.lds | 56 +++++
> include/asm-arm/mach-types.h | 13 +
> include/configs/colibri.h | 261 +++++++++++++++++++++++
> 10 files changed, 1090 insertions(+)
There are coding style issues with your patch: trailing white space,
C++ comments, indentation not by multiples of 8 characters.
Please clean up and resubmit.
And while you are at it - please keep lists sorted (MAKEALL,
Makefile).
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
He had been eight years upon a project for extracting sunbeams out of
cucumbers, which were to be put in vials hermetically sealed, and let
out to warm the air in raw inclement summers. - Jonathan Swift
_Gulliver's Travels_ ``A Voyage to Laputa, etc.'' ch. 5
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2008-02-03 23:07 ` Wolfgang Denk
@ 2008-02-13 12:46 ` Daniel Mack
2008-04-13 22:01 ` Wolfgang Denk
0 siblings, 1 reply; 9+ messages in thread
From: Daniel Mack @ 2008-02-13 12:46 UTC (permalink / raw)
To: u-boot
Hi Wolfgang,
thanks for your response.
On Mon, 2008-02-04 at 00:07 +0100, Wolfgang Denk wrote:
> There are coding style issues with your patch: trailing white space,
> C++ comments, indentation not by multiples of 8 characters.
>
> Please clean up and resubmit.
>
> And while you are at it - please keep lists sorted (MAKEALL,
> Makefile).
Ok, done. New, refurbished patch is attached.
Thanks and best regards,
Daniel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: uboot-131-colibri.diff
Type: text/x-patch
Size: 27093 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20080213/b45e9743/attachment.bin
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] [PATCH] add support for Toradex Colibri module
2008-02-13 12:46 ` Daniel Mack
@ 2008-04-13 22:01 ` Wolfgang Denk
0 siblings, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2008-04-13 22:01 UTC (permalink / raw)
To: u-boot
In message <1202906813.6976.2.camel@omuntu> you wrote:
>
> Ok, done. New, refurbished patch is attached.
Please don't attach, but include inline. Ideally, use git-send-email
to send the patch.
Signed-off-by line missing. Please rebase and resubmit.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
The night sky over the planet Krikkit is the least interesting sight
in the entire Universe.
- Douglas Adams _Life, the Universe, and Everything_
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2008-04-13 22:01 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-30 21:38 [U-Boot-Users] [PATCH] add support for Toradex Colibri module Daniel Mack
2007-11-30 22:09 ` Jean-Christophe PLAGNIOL-VILLARD
2007-11-30 23:13 ` Daniel Mack
2008-01-12 8:27 ` Daniel Mack
2008-01-23 15:06 ` Daniel Mack
2008-01-23 20:55 ` Wolfgang Denk
2008-02-03 23:07 ` Wolfgang Denk
2008-02-13 12:46 ` Daniel Mack
2008-04-13 22:01 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox