Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-20 Thread Albert ARIBAUD
Hi Jason, Sorry for chiming in so late, but... Just one question. What is this with the patch numbering, i.e. 1/1, 2/2, 3/3 ? I am having a hard time following what is what, especially considering the patch subjects are identical apart from version and part numbers. Amicalement, -- Albert. _

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-12 Thread Jason Hui
Hi, Stefano, On Thu, May 12, 2011 at 5:03 PM, Stefano Babic wrote: > On 05/12/2011 08:13 AM, Jason Liu wrote: >> Hi, Stefano, >> > > Hi Jason, >  u32 get_cpu_rev(void);  #define is_soc_rev(rev)      ((get_cpu_rev() & 0xFF) - rev)  void sdelay(unsigned long); +void pmic_reg_wri

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-12 Thread Stefano Babic
On 05/12/2011 08:13 AM, Jason Liu wrote: > Hi, Stefano, > Hi Jason, >>> u32 get_cpu_rev(void); >>> #define is_soc_rev(rev) ((get_cpu_rev() & 0xFF) - rev) >>> void sdelay(unsigned long); >>> +void pmic_reg_write(u32 reg, u32 value); >>> +u32 pmic_reg_read(u32 reg); >> >> The pmic_ prototy

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-11 Thread Jason Liu
Hi, Stefano, 2011/5/11 Stefano Babic : > On 05/11/2011 10:03 AM, Jason Liu wrote: >> This patch add initial support for freescale MX53LOCO board. >> Network(FEC),SD/MMC,UART have been supported by this patch >> >> The patch also config CPU:1GHZ,DDR:400MHZ for better peformance >> >> Signed-off-by:

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-11 Thread Jason Hui
Hi, Stefano, On Wed, May 11, 2011 at 8:37 PM, Stefano Babic wrote: > On 05/11/2011 10:03 AM, Jason Liu wrote: >> This patch add initial support for freescale MX53LOCO board. >> Network(FEC),SD/MMC,UART have been supported by this patch >> >> The patch also config CPU:1GHZ,DDR:400MHZ for better pe

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-11 Thread Jason Hui
Hi, Fabio, On Wed, May 11, 2011 at 8:03 PM, Fabio Estevam wrote: > Hi Jason, > > --- On Wed, 5/11/11, Jason Liu wrote: > ... >> diff --git a/arch/arm/cpu/armv7/mx5/soc.c >> b/arch/arm/cpu/armv7/mx5/soc.c >> index 6f4e8db..9c03474 100644 >> --- a/arch/arm/cpu/armv7/mx5/soc.c >> +++ b/arch/arm/cpu

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-11 Thread Stefano Babic
On 05/11/2011 10:03 AM, Jason Liu wrote: > This patch add initial support for freescale MX53LOCO board. > Network(FEC),SD/MMC,UART have been supported by this patch > > The patch also config CPU:1GHZ,DDR:400MHZ for better peformance > > Signed-off-by: Jason Liu Hi Jason, > diff --git a/arch/ar

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-11 Thread Fabio Estevam
Hi Jason, --- On Wed, 5/11/11, Jason Liu wrote: ... > diff --git a/arch/arm/cpu/armv7/mx5/soc.c > b/arch/arm/cpu/armv7/mx5/soc.c > index 6f4e8db..9c03474 100644 > --- a/arch/arm/cpu/armv7/mx5/soc.c > +++ b/arch/arm/cpu/armv7/mx5/soc.c ... This file is not MX53Loco specific, so it should be part

[U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-11 Thread Jason Liu
This patch add initial support for freescale MX53LOCO board. Network(FEC),SD/MMC,UART have been supported by this patch The patch also config CPU:1GHZ,DDR:400MHZ for better peformance Signed-off-by: Jason Liu --- Changes since v5: - merge the "Add power init support" patch changes since v4: - re