Re: [U-Boot] [RFC PATCH 01/19] Introduce generic global_data

2011-12-28 Thread Andreas Bießmann
Dear Simon, On 28.12.11 07:35, Simon Glass wrote: > We want to unify the global_data structure. Most fields are common across > architectures, but there are a fair number of SOC-specific additions. It > isn't clear how best to deal with these, but for now we just use #ifdef. I would like to see s

Re: [U-Boot] [PATCH v2 1/3] image: add support for Android's boot image format

2011-12-28 Thread Aneesh V
On Wednesday 19 October 2011 01:46 PM, Sebastian Andrzej Siewior wrote: * Sebastian Andrzej Siewior | 2011-09-20 16:02:01 [+0200]: This patch adds support for the Android boot-image format. The header file is from the Android project and got slightly alterted so the struct + its defines are not

Re: [U-Boot] [PATCH 2/7] tegra: fdt: Add extra I2C definitions for U-Boot

2011-12-28 Thread Simon Glass
Hi Stephen, On Dec 28, 2011 10:40 PM, "Stephen Warren" wrote: > > Simon Glass wrote at Monday, December 26, 2011 10:15 PM: > > On Mon, Dec 26, 2011 at 8:35 PM, Stephen Warren wrote: > > > Simon Glass wrote at Monday, December 26, 2011 11:12 AM: > > >> Add U-Boot's peripheral ID and pinmux select

Re: [U-Boot] [PATCH v3] i.mx: i.mx6q: add the initial support for i.mx6q Sabre Lite board

2011-12-28 Thread Dirk Behme
On 28.12.2011 13:32, Stefano Babic wrote: On 26/12/2011 08:34, Dirk Behme wrote: From: Jason Liu Add the initial support for Freescale i.MX6Q Sabre Lite board Hi Dirk, Index: freescale-u-boot-imx.git/MAINTAINERS === --- frees

Re: [U-Boot] [PATCH 2/7] tegra: fdt: Add extra I2C definitions for U-Boot

2011-12-28 Thread Stephen Warren
Simon Glass wrote at Monday, December 26, 2011 10:15 PM: > On Mon, Dec 26, 2011 at 8:35 PM, Stephen Warren wrote: > > Simon Glass wrote at Monday, December 26, 2011 11:12 AM: > >> Add U-Boot's peripheral ID and pinmux selection to the Tegra20 > >> device tree file. > > > >> diff --git a/arch/arm/d

Re: [U-Boot] [RFC 05/14] x86: Create weak init_cache() function

2011-12-28 Thread Simon Glass
Hi Graeme, On Fri, Dec 23, 2011 at 4:25 AM, Graeme Russ wrote: > --- >  arch/x86/cpu/cpu.c                |   16 +++- >  arch/x86/include/asm/u-boot-x86.h |    2 ++ >  arch/x86/lib/board.c              |    3 +++ >  3 files changed, 16 insertions(+), 5 deletions(-) > > diff --git a/ar

[U-Boot] Pull request: u-boot-nios/master

2011-12-28 Thread Thomas Chou
Dear Wolfgang, The following changes since commit bfcc40bb09b05c90cc3b1496abb270eb8aa72134: Merge branch 'next' of ../next (2011-12-23 20:53:58 +0100) are available in the git repository at: git://git.denx.de/u-boot-nios.git master Stefan Kristiansson (1): nios2: add flush_dcache_ran

[U-Boot] [PATCH] fw_env.c: use default env values if config file cannot be opened

2011-12-28 Thread Frans Meulenbroeks
If the config file cannot be opened currently one gets an error even though the build in names/sizes are probably ok. By setting the default values first and only exit if there is a read error and not when the config file can be opened the program will try the default settings. In order to detect

Re: [U-Boot] [RFC PATCH 0/19] Create generic board init and move ARM and x86 to it

2011-12-28 Thread Simon Glass
Hi Wolfgang, On Wed, Dec 28, 2011 at 9:30 AM, Wolfgang Denk wrote: > Dear Simon, > > In message <1325054160-24894-1-git-send-email-...@chromium.org> you wrote: >> This series creates a generic board.c implementation which contains >> the essential functions of the various arch/xxx/lib/board.c fil

Re: [U-Boot] Secure update of uboot devices?

2011-12-28 Thread Marek Vasut
> With the new threats like Stuxnet and Duqu one need to improve on how new > updates to software is distrubuted to devcies so one can > be sure that it's not a hacked or modified software that runs in the > device. We use uboot + usb stick to update the software in our devices. > Have anyone been

Re: [U-Boot] [RFC PATCH 0/19] Create generic board init and move ARM and x86 to it

2011-12-28 Thread Wolfgang Denk
Dear Simon, In message <1325054160-24894-1-git-send-email-...@chromium.org> you wrote: > This series creates a generic board.c implementation which contains > the essential functions of the various arch/xxx/lib/board.c files. I'll be loking into this deeper when I'm back at work (i. e. starting w

[U-Boot] [PATCH 4/4] ARM: omap3: Added Teejet mt_ventoux

2011-12-28 Thread Stefano Babic
The mt_ventoux board is a custom board using the Technexion TAM3517 module. Signed-off-by: Stefano Babic --- MAINTAINERS |1 + board/teejet/mt_ventoux/Makefile | 44 board/teejet/mt_ventoux/mt_ventoux.c | 235 +++ board/teejet/mt_ventoux/m

[U-Boot] [PATCH 3/4] fpga: Spartan-3: let print the progress if configured

2011-12-28 Thread Stefano Babic
CONFIG_SYS_FPGA_PROG_FEEDBACK was already introduced to print the current status of FPGA loading - an undef in the code made this CONFIG_ useless. Signed-off-by: Stefano Babic --- drivers/fpga/spartan3.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/fpga/sparta

[U-Boot] [PATCH 1/4] fpga: add definition for Xilinx Spartan-6 XC6SLX4

2011-12-28 Thread Stefano Babic
Signed-off-by: Stefano Babic --- include/spartan3.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/spartan3.h b/include/spartan3.h index 67ede4b..89f1156 100644 --- a/include/spartan3.h +++ b/include/spartan3.h @@ -80,6 +80,12 @@ typedef struct { #define

[U-Boot] [PATCH 2/4] FPGA: use debug() instead of module debug printf

2011-12-28 Thread Stefano Babic
Replace also __FUNCTION__ with standard __func__ Signed-off-by: Stefano Babic --- common/cmd_fpga.c | 59 +--- 1 files changed, 28 insertions(+), 31 deletions(-) diff --git a/common/cmd_fpga.c b/common/cmd_fpga.c index 8946345..915a5c0 100644 --

[U-Boot] Secure update of uboot devices?

2011-12-28 Thread Andreas Bäck
With the new threats like Stuxnet and Duqu one need to improve on how new updates to software is distrubuted to devcies so one can be sure that it's not a hacked or modified software that runs in the device. We use uboot + usb stick to update the software in our devices. Have anyone been trying out

Re: [U-Boot] [PATCH 1/2] mtd/nand:Fix wrong address read in is_blank()

2011-12-28 Thread Kushwaha Prabhakar-B32579
> > IFC NAND Machine calculates ECC on 512byte sector. Same is taken care > > in > > fsl_ifc_run_command() while ECC status verification. Here buffer > > number is calculated assuming 512byte sector and same is passed to > is_blank. > > However in is_blank() buffer address is calculated using > > m

Re: [U-Boot] [PATCH 2/2] mtd/nand: Fix IFC driver to support 2K NAND page

2011-12-28 Thread Kushwaha Prabhakar-B32579
Thanks Marek for the comments. Please find my response in-lined.. > -Original Message- > From: Marek Vasut [mailto:marek.va...@gmail.com] > Sent: Wednesday, December 28, 2011 12:17 PM > To: u-boot@lists.denx.de > Cc: Kushwaha Prabhakar-B32579; Aggrwal Poonam-B10812 > Subject: Re: [U-Boot]

Re: [U-Boot] [PATCH v7 2/4] mx28: Let imx_get_mac_from_fuse be common for mx28

2011-12-28 Thread Stefano Babic
On 20/12/2011 16:46, Fabio Estevam wrote: > Let imx_get_mac_from_fuse function be a common function, so that other > mx28 boards can reuse it. > > Signed-off-by: Fabio Estevam > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v7 1/4] net: imx: Add multi-FEC support for imx_get_mac_from_fuse

2011-12-28 Thread Stefano Babic
On 20/12/2011 16:46, Fabio Estevam wrote: > Add multi-FEC support for imx_get_mac_from_fuse by passing dev_id as a > parameter. > > This feature is important on mx28 SoC for example that has two FEC ports. > > Cc: Ben Warren > Signed-off-by: Fabio Estevam > --- Applied to u-boot-imx, thanks.

Re: [U-Boot] [PATCH v8 2/4] mx28: Let imx_get_mac_from_fuse be common for mx28

2011-12-28 Thread Stefano Babic
On 20/12/2011 17:42, Fabio Estevam wrote: > Let imx_get_mac_from_fuse function be a common function, so that other > mx28 boards can reuse it. > > Signed-off-by: Fabio Estevam > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- =

Re: [U-Boot] [PATCH v7 3/4] mx28: Let dram_init be common for mx28

2011-12-28 Thread Stefano Babic
On 20/12/2011 16:46, Fabio Estevam wrote: > Let dram_init function be a common function, so that other mx28 boards > can reuse it. > > Signed-off-by: Fabio Estevam > Acked-by: Marek Vasut > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Stefano Babic
On 28/12/2011 13:46, Fabio Estevam wrote: > Hi Stefano, > > On Wed, Dec 28, 2011 at 10:36 AM, Stefano Babic wrote: >> Hi Fabio, >> >> there are still open answers from me and Marek for the first patch: >> >> mx28: Let imx_get_mac_from_fuse be common for mx28 >> >> My main concern is that I disli

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Fabio Estevam
Hi Stefano, On Wed, Dec 28, 2011 at 10:46 AM, Fabio Estevam wrote: > I thought that v8 took care of your concern: > http://marc.info/?l=u-boot&m=132440146104071&w=2 > > Please let me know if you still would like me to rework this patch. Here is the latest series: 1/4: http://patchwork.ozlabs.

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Fabio Estevam
Hi Stefano, On Wed, Dec 28, 2011 at 10:36 AM, Stefano Babic wrote: > Hi Fabio, > > there are still open answers from me and Marek for the first patch: > >  mx28: Let imx_get_mac_from_fuse be common for mx28 > > My main concern is that I dislike to have a new function name only for > the MX.28, an

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Stefano Babic
On 20/12/2011 14:53, Fabio Estevam wrote: > Add initial support for Freescale MX28EVK board. > > Tested boot via SD card and by loading a kernel via TFTP through > the FEC interface. > > Signed-off-by: Fabio Estevam > --- Acked-by: Stefano Babic Best regards, Stefano Babic -- ==

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Stefano Babic
On 28/12/2011 13:20, Fabio Estevam wrote: > Hi Stefano, > > On Tue, Dec 20, 2011 at 11:58 AM, Marek Vasut wrote: >>> Add initial support for Freescale MX28EVK board. >>> >>> Tested boot via SD card and by loading a kernel via TFTP through >>> the FEC interface. >>> >>> Signed-off-by: Fabio Esteva

Re: [U-Boot] [PATCH v3] i.mx: i.mx6q: add the initial support for i.mx6q Sabre Lite board

2011-12-28 Thread Stefano Babic
On 26/12/2011 08:34, Dirk Behme wrote: > From: Jason Liu > > Add the initial support for Freescale i.MX6Q Sabre Lite board > Hi Dirk, > > Index: freescale-u-boot-imx.git/MAINTAINERS > === > --- freescale-u-boot-imx.git.orig/MAINT

Re: [U-Boot] [PATCH v6 4/4] mx28evk: Add initial support for MX28EVK board

2011-12-28 Thread Fabio Estevam
Hi Stefano, On Tue, Dec 20, 2011 at 11:58 AM, Marek Vasut wrote: >> Add initial support for Freescale MX28EVK board. >> >> Tested boot via SD card and by loading a kernel via TFTP through >> the FEC interface. >> >> Signed-off-by: Fabio Estevam ... > Acked-by: Marek Vasut Does the mx28evk patc

Re: [U-Boot] [PATCH] i.mx6q: mx6qarm2: Enable the usboh3 clock

2011-12-28 Thread Stefano Babic
On 26/12/2011 08:00, Dirk Behme wrote: > From: Eric Nelson > > Bits 0 and 1 of CCM_CCGR7 are the usboh3 clock enable bits. Enabling this > clock is necessary for the USB download. > > Signed-off-by: Eric Nelson > CC: Jason Hui > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic