Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-30 Thread Stefano Babic
On 08/30/2011 11:36 AM, Wolfgang Denk wrote: > Actually the file header contains precise instructions how to sort the > file: > > # To keep the list sorted, use something like > # :.,$! sort -bdf -k2,2 -k3,3 -k6,6 -k5,5 -k1,1 Ok, it seems that most people, as me, have never read

Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-30 Thread Wolfgang Denk
Dear Stefano Babic, In message <4e5c928f.4070...@denx.de> you wrote: > > Targets are sorted based on SOC in boards.cfg. Move your entry before > the zmx25 board. Actually the file header contains precise instructions how to sort the file: # To keep the list sorted, use something like

Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-30 Thread Stefano Babic
On 08/29/2011 10:30 PM, Fabio Estevam wrote: > Add the initial support for MX25PDK booting from SD card via internal boot. > Hi Fabio, > diff --git a/boards.cfg b/boards.cfg > index c31114d..b68d6c8 100644 > --- a/boards.cfg > +++ b/boards.cfg > @@ -165,6 +165,7 @@ jadecpu a

Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-29 Thread Wolfgang Denk
Dear Fabio Estevam, In message you wrote: > On Tue, Aug 30, 2011 at 12:16 AM, Jason Liu wrote: > ... > >> +/* Memory Test */ > >> +#define CONFIG_SYS_MEMTEST_START       PHYS_SDRAM_1 > >> +#define CONFIG_SYS_MEMTEST_END         (PHYS_SDRAM_1 + > >> PHYS_SDRAM_1_SIZE) > > > > Can we test

Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-29 Thread Wolfgang Denk
Dear Jason Liu, In message you wrote: > > > +#define CONFIG_SYS_MEMTEST_STARTPHYS_SDRAM_1 > > +#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + PHYS_SDRA> M_1_SIZE) > > Can we test the full DDR memory size? Not without crashing the system. Best regards, Wolfgang Denk -- DENX Software

Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-29 Thread Fabio Estevam
On Tue, Aug 30, 2011 at 12:16 AM, Jason Liu wrote: ... >> +/* Memory Test */ >> +#define CONFIG_SYS_MEMTEST_START       PHYS_SDRAM_1 >> +#define CONFIG_SYS_MEMTEST_END         (PHYS_SDRAM_1 + PHYS_SDRAM_1_SIZE) > > Can we test the full DDR memory size? There is a total amount of 64MB of DDR on MX

Re: [U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-29 Thread Jason Liu
2011/8/30 Fabio Estevam : > Add the initial support for MX25PDK booting from SD card via internal boot. > > Signed-off-by: Fabio Estevam > --- [...] > --- /dev/null > +++ b/include/configs/mx25pdk.h > @@ -0,0 +1,109 @@ > +/* > + * (C) Copyright 2011 Freescale Semiconductor, Inc. > + * > + * This p

[U-Boot] [PATCH 2/2] MX25: Add initial support for MX25PDK

2011-08-29 Thread Fabio Estevam
Add the initial support for MX25PDK booting from SD card via internal boot. Signed-off-by: Fabio Estevam --- MAINTAINERS |1 + board/freescale/mx25pdk/Makefile| 49 ++ board/freescale/mx25pdk/imximage.cfg| 73 + boar