Re: [U-Boot] [Samsung] [PATCH 4/6] EEYNOS: Add SMDK5250 board support

2011-12-22 Thread Sachin Kamat
Hi Chander, Subject line of patch: s/EEYNOS/EXYNOS On 23 December 2011 11:21, Chander Kashyap wrote: > Dear Minkyu Kang, > > On 23 December 2011 09:51, Minkyu Kang wrote: > > > > Dear Chander Kashyap, > > > > On 22 December 2011 19:52, Chander Kashyap > wrote: > > > SMDK5250 board is based on

Re: [U-Boot] [PATCH 1/6] Exynos: Add CONFIG_EXYNOS4 Macro to EXYNOS4 based boards

2011-12-22 Thread Chander Kashyap
Dear Minkyu Kang, On 23 December 2011 09:52, Minkyu Kang wrote: > Dear Chander Kashyap, > > On 22 December 2011 19:52, Chander Kashyap wrote: >> Exynos architecture has varients like exynos4 and exynos5. In order to >> identify the exynos4 architecture, add CONFIG_EXYNOS4 macro to exynos4 >> bas

Re: [U-Boot] [PATCH 6/6] SMDK5250: enable device tree support

2011-12-22 Thread Chander Kashyap
Dear Minkyu Kang, On 23 December 2011 09:52, Minkyu Kang wrote: > Dear Chander Kashyap, > > On 22 December 2011 19:52, Chander Kashyap wrote: >> Enable passing a flattened device tree to the kernel. >> >> Signed-off-by: Chander Kashyap >> --- >>  include/configs/smdk5250.h |    3 +++ >>  1 file

Re: [U-Boot] [PATCH 4/6] EEYNOS: Add SMDK5250 board support

2011-12-22 Thread Chander Kashyap
Dear Minkyu Kang, On 23 December 2011 09:51, Minkyu Kang wrote: > > Dear Chander Kashyap, > > On 22 December 2011 19:52, Chander Kashyap wrote: > > SMDK5250 board is based on Samsungs EXYNOS5250 SoC. > > > > Signed-off-by: Chander Kashyap > > --- > >  MAINTAINERS                                

Re: [U-Boot] [PATCH 6/6] SMDK5250: enable device tree support

2011-12-22 Thread Minkyu Kang
Dear Chander Kashyap, On 22 December 2011 19:52, Chander Kashyap wrote: > Enable passing a flattened device tree to the kernel. > > Signed-off-by: Chander Kashyap > --- >  include/configs/smdk5250.h |    3 +++ >  1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/include/configs/s

Re: [U-Boot] [PATCH 1/6] Exynos: Add CONFIG_EXYNOS4 Macro to EXYNOS4 based boards

2011-12-22 Thread Minkyu Kang
Dear Chander Kashyap, On 22 December 2011 19:52, Chander Kashyap wrote: > Exynos architecture has varients like exynos4 and exynos5. In order to > identify the exynos4 architecture, add CONFIG_EXYNOS4 macro to exynos4 > based boards i.e. Origen, smdkv310 and s5pc210_universal. > > Signed-off-by:

Re: [U-Boot] [PATCH 4/6] EEYNOS: Add SMDK5250 board support

2011-12-22 Thread Minkyu Kang
Dear Chander Kashyap, On 22 December 2011 19:52, Chander Kashyap wrote: > SMDK5250 board is based on Samsungs EXYNOS5250 SoC. > > Signed-off-by: Chander Kashyap > --- >  MAINTAINERS                                      |    1 + >  arch/arm/cpu/armv7/exynos/clock.c                |   24 +- >  arc

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Allen Martin
> > This seems incompatible with iomux, shouldn't these decisions be made > in the > > console driver? In my case, stdin is set to "serial,tegra-kbc,usbkbd" > so this > > strcmp won't match. > > Indeed, this code predates the iomux implementation, and nobody > noticed yet that it needs fixing. O

[U-Boot] CPU POST on MPC5200 fails with U-Boot built using GCC 4.6.1

2011-12-22 Thread Anatolij Gustschin
Hi, I noticed a problem while testing Wolfgang's patch PPC: fix "Warning: FOO uses hard float, BAR uses soft float". U-Boot built for TQM5200 using ELDK-5.1 powerpc toolchain seems to have issues in CPU POST test. I see similar problem both with and also without Wolfgang's patch applied: U-Boot

Re: [U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Tom Warren
Alright, I hope I've gotten it right this time. I had already done a git fetch of the u-boot-arm master (see my very first sentence below), but regardless, I followed your 'always use commands' and I believe I've gotten a valid repo. It's pushed as both 'master' and 'next' to u-boot-tegra.git.

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Wolfgang Denk
Dear Allen Martin, In message <3c7a7aca8617d24290826ec008b5cd083e5dcda...@hqmail03.nvidia.com> you wrote: > > I don't fully grok how console/stdin gets assigned, but is this possibly > the problem? (from drv_usb_kbd_init()): > > /* Check if this is the standard input device. */

Re: [U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Albert ARIBAUD
Le 22/12/2011 22:51, Tom Warren a écrit : I did a 'git fetch git://git.denx.de/u-boot-arm.git', then rebased on that, as per the Workflow for Custodian git Repos wiki page. But that gave me a large number of changes in my pull request (most of which weren't my recent ones). So I did (on Simon'

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Allen Martin
> > > > The point is to be able to use USB keyboard to stop autoboot on > > > > systems where USB keyboard is the primary (or only) input device. > > > > This needs to happen before BOOTCOMMAND gets parsed. > > > > > > I think the "preboot" environment variable already *is* run before > > > startin

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Allen Martin
> > This allows systems to pause autoboot with USB keyboard. Tested on > > tegra2 seaboard. > > > > Signed-off-by: Allen Martin > > --- > > README |5 + > > arch/arm/lib/board.c |9 + > > 2 files changed, 14 insertions(+), 0 deletions(-) > > This modification i

Re: [U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren > Sent: Thursday, December 22, 2011 2:08 PM > To: Tom Warren; Albert ARIBAUD > Cc: u-boot@lists.denx.de > Subject: RE: Pull request: u-boot-tegra/next > > Tom Warren wrote at Thursday, December 22, 2011 2:00 PM: > > Please pull u-boot-t

Re: [U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Tom Warren
I did a 'git fetch git://git.denx.de/u-boot-arm.git', then rebased on that, as per the Workflow for Custodian git Repos wiki page. But that gave me a large number of changes in my pull request (most of which weren't my recent ones). So I did (on Simon's advice): git checkout -b next-try u-boot-

Re: [U-Boot] [PATCH] lib/string: added strndup

2011-12-22 Thread Grant Erickson
On Dec 22, 2011, at 1:08 PM, Wolfgang Denk wrote: > In message <1324577816-26198-1-git-send-email-maratho...@gmail.com> you wrote: >> This patch adds optional support for strndup. >> >> Signed-off-by: Grant Erickson >> --- >> include/linux/string.h |3 +++ >> lib/string.c | 21

Re: [U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Stephen Warren
Tom Warren wrote at Thursday, December 22, 2011 2:00 PM: > Please pull u-boot-tegra/next. Thanks. Happy holidays! > > The following changes since commit 953209bf5ef0889a1baa02aa0ed5324f53ff8fda: > > arm: add __aeabi_unwind_cpp_pr1() function to avoid linker complaints > (2011-12-11 13:56:57 +0

Re: [U-Boot] [PATCH] lib/string: added strndup

2011-12-22 Thread Wolfgang Denk
Dear Grant Erickson, In message <1324577816-26198-1-git-send-email-maratho...@gmail.com> you wrote: > This patch adds optional support for strndup. > > Signed-off-by: Grant Erickson > --- > include/linux/string.h |3 +++ > lib/string.c | 21 + > 2 files chang

Re: [U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Albert ARIBAUD
Le 22/12/2011 21:59, Tom Warren a écrit : Albert, Please pull u-boot-tegra/next. Thanks. Happy holidays! When I get such a request to 'pull .../next', I am never completely sure which branch of u-boot-arm I should be pulling into: is this supposed to be pulled into next or master? It *looks*

Re: [U-Boot] [PATCH v6] net: ll_temac: Add LL TEMAC driver to u-boot

2011-12-22 Thread Wolfgang Denk
Dear Ricardo Ribalda Delgado, In message you wrote: > > I have tried the code on a Propietary Virtex5 fx board (ppc440) and it > works Thanks for your work. Can you please send a formal "Acked-by:" message then? [These get picked up by patchwork, so we don;t have to manually edit the comm

[U-Boot] Pull request: u-boot-tegra/next

2011-12-22 Thread Tom Warren
Albert, Please pull u-boot-tegra/next. Thanks. Happy holidays! The following changes since commit 953209bf5ef0889a1baa02aa0ed5324f53ff8fda: arm: add __aeabi_unwind_cpp_pr1() function to avoid linker complaints (2011-12-11 13:56:57 +0100) are available in the git repository at: git://git.de

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Allen Martin
> > >> Can't you just add "usb reset" to preboot env? > > > > > > The point is to be able to use USB keyboard to stop autoboot on > > > systems where USB keyboard is the primary (or only) input device. > > > This needs to happen before BOOTCOMMAND gets parsed. > > > > I think the "preboot" environm

[U-Boot] [PATCH] MX28: Fix MXSBOOT segfault if no params specified

2011-12-22 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Wolfgang Denk Cc: Stefano Babic --- tools/mxsboot.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/tools/mxsboot.c b/tools/mxsboot.c index 176753d..8246831 100644 --- a/tools/mxsboot.c +++ b/tools/mxsboot.c @@ -606,6 +606,9 @@ int parse

[U-Boot] [PATCH] arm/omap3: limit chip select iteration based on board config

2011-12-22 Thread Grant Erickson
Only attempt to configure and add DRAM at chip select 1 if the board has configured more than one bank of DRAM. This prevents boards that have CONFIG_NR_DRAM_BANKS set to 1 from getting an incorrect DRAM size. Signed-off-by: Grant Erickson Cc: Tom Rini --- arch/arm/cpu/armv7/omap3/sdrc.c |

[U-Boot] [PATCH] tools/env: allow overwrite of ethaddr on default

2011-12-22 Thread Grant Erickson
This patch allows the U-Boot user space companion utility, fw_setenv, to overwrite the 'ethaddr' key/value pair if the current value is set to a per-board-configured default. This change allows 'fw_setenv' to match the behavior of 'setenv' / 'env set' on the U-Boot command line. Signed-off-by: Gr

[U-Boot] [PATCH] tools/env: fix cross-compilation

2011-12-22 Thread Grant Erickson
This patch fixes the make infrastructure for the fw_printenv tool such that it is built, by default, as a cross-compilation for the target board when so requested with TOOLSUBDIRS on the U-Boot make command line. Signed-off-by: Grant Erickson --- tools/env/Makefile | 18 +- too

[U-Boot] [PATCH] lib/string: added strndup

2011-12-22 Thread Grant Erickson
This patch adds optional support for strndup. Signed-off-by: Grant Erickson --- include/linux/string.h |3 +++ lib/string.c | 21 + 2 files changed, 24 insertions(+), 0 deletions(-) diff --git a/include/linux/string.h b/include/linux/string.h index 6239039..5

Re: [U-Boot] [PATCH v6] net: ll_temac: Add LL TEMAC driver to u-boot

2011-12-22 Thread Stephan Linz
Am Donnerstag, den 22.12.2011, 19:58 +0100 schrieb Ricardo Ribalda Delgado: > Hello Stephan Hello Recardo, > > I just checked it, and I am using v7 :) from: > http://patchwork.ozlabs.org/bundle/rexut/net-ll_temac/ OK, fine. > Once it is > applied I will post the patches for xilinx-ppc440-gen

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Marek Vasut
> -- > Curious about my work on the Debian powerpcspe port? > I'm keeping a blog here: http://pureperl.blogspot.com/ > > >>> This allows systems to pause autoboot with USB keyboard. Tested on > >>> tegra2 seaboard. > >>> > >>> Signed-off-by: Allen Martin > >> > >> Can't you just add "usb reset

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Moffett, Kyle D
-- Curious about my work on the Debian powerpcspe port? I'm keeping a blog here: http://pureperl.blogspot.com/ >>> This allows systems to pause autoboot with USB keyboard. Tested on >>> tegra2 seaboard. >>> >>> Signed-off-by: Allen Martin >> >> Can't you just add "usb reset" to preboot env? >

Re: [U-Boot] [PATCH v6] net: ll_temac: Add LL TEMAC driver to u-boot

2011-12-22 Thread Ricardo Ribalda Delgado
Hello Stephan I just checked it, and I am using v7 :) from: http://patchwork.ozlabs.org/bundle/rexut/net-ll_temac/ Once it is applied I will post the patches for xilinx-ppc440-generic (mainly instantiate it in the config...) I have tried to download an image with the dhcp command over 100 and 100

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Allen Martin
> > This allows systems to pause autoboot with USB keyboard. Tested on > > tegra2 seaboard. > > > > Signed-off-by: Allen Martin > > Can't you just add "usb reset" to preboot env? The point is to be able to use USB keyboard to stop autoboot on systems where USB keyboard is the primary (or only)

Re: [U-Boot] [PATCH v6] net: ll_temac: Add LL TEMAC driver to u-boot

2011-12-22 Thread Stephan Linz
Hello Recardo, Am Donnerstag, den 22.12.2011, 17:06 +0100 schrieb Ricardo Ribalda Delgado: > Hello Stefan, > Hello Wolfgang, > Hello Michal, > > I have tried the code on a Propietary Virtex5 fx board (ppc440) and it > works Thanks for your work. OK, thanks for your efforts. Would it be poss

Re: [U-Boot] Where I'm going with x86 board.c

2011-12-22 Thread Simon Glass
Hi Albert, On Thu, Dec 22, 2011 at 10:01 AM, Albert ARIBAUD wrote: > Hi Simon, > > Le 22/12/2011 16:49, Simon Glass a écrit : > >> Hi Graeme, >> >> On Thu, Dec 22, 2011 at 3:27 AM, Graeme Russ >>  wrote: >>> >>> Hi Simon, >>> >>> On 22/12/11 17:44, Simon Glass wrote: Hi Graeme, >>>

Re: [U-Boot] Boot Count Support for MPC8377E

2011-12-22 Thread Scott Wood
On 12/21/2011 05:16 AM, Sridhar Addagada wrote: > Freescale folks! no suggestions:( > > > > From: Sridhar Addagada > To: "u-boot@lists.denx.de" > Sent: Tuesday, December 20, 2011 8:59 AM > Subject: Boot Count Support for MPC8377E > > > It's been almost a mo

Re: [U-Boot] Where I'm going with x86 board.c

2011-12-22 Thread Albert ARIBAUD
Hi Simon, Le 22/12/2011 16:49, Simon Glass a écrit : Hi Graeme, On Thu, Dec 22, 2011 at 3:27 AM, Graeme Russ wrote: Hi Simon, On 22/12/11 17:44, Simon Glass wrote: Hi Graeme, On Tue, Dec 20, 2011 at 4:06 AM, Graeme Russ wrote: With Simon's work on generic relocation support, I thought I

Re: [U-Boot] [PATCH v6] net: ll_temac: Add LL TEMAC driver to u-boot

2011-12-22 Thread Ricardo Ribalda Delgado
Hello Stefan, Hello Wolfgang, Hello Michal, I have tried the code on a Propietary Virtex5 fx board (ppc440) and it works Thanks for your work. Regards! -- Ricardo Ribalda ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/l

Re: [U-Boot] [PATCH] PPC: fix "Warning: FOO uses hard float, BAR uses soft float".

2011-12-22 Thread Stefan Roese
Hi Wolfgang, On Thursday 22 December 2011 15:29:41 Wolfgang Denk wrote: > It appears that with recent versions of GCC the explicit > "-mhard-float" command line option takes precedence over the > ``asm(".gnu_attribute 4, 2");'' in the source file, so this no longer > helps to avoid the warnings we

Re: [U-Boot] Where I'm going with x86 board.c

2011-12-22 Thread Simon Glass
Hi Graeme, On Thu, Dec 22, 2011 at 3:27 AM, Graeme Russ wrote: > Hi Simon, > > On 22/12/11 17:44, Simon Glass wrote: >> Hi Graeme, >> >> On Tue, Dec 20, 2011 at 4:06 AM, Graeme Russ wrote: >>> With Simon's work on generic relocation support, I thought I would throw in >>> what I am planning for

[U-Boot] [PATCH] PPC: fix "Warning: FOO uses hard float, BAR uses soft float".

2011-12-22 Thread Wolfgang Denk
It appears that with recent versions of GCC the explicit "-mhard-float" command line option takes precedence over the ``asm(".gnu_attribute 4, 2");'' in the source file, so this no longer helps to avoid the warnings we get when linking code that uses FP instructions with other code that was built u

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Ilya Yanok
Hi Govindraj, On 22.12.2011 10:55, Govindraj wrote: >> >> Signed-off-by: Ilya Yanok >> --- >> Changes from V3: >> - None >> Changes from V2: >> - None >> Changes from V1: >> - CONFIG_OMAP_EHCI_PHYx_RESET changed to CONFIG_OMAP_EHCI_PHYx_RESET_GPIO >> - phy reset moved to separate function >>

Re: [U-Boot] about flashing the u-boot

2011-12-22 Thread Érico Porto
(bin) 1 % config cc usb (bin) 2 % ::jtag::get_pin 4 USB open failure ok, give up. On 12/22/11, Érico Porto wrote: > thank you, found the ccs interactive shell, it is located in > > /usr/local/Freescale/CodeWarrior_PA_10.1.1/PA/ccs/bin/ccs > > I has many commands, has help commands in it, and als

[U-Boot] [PATCH 4/4] board/mpl/pati: use the CFI driver for the PATI board

2011-12-22 Thread David Müller
Signed-off-by: David Mueller --- board/mpl/pati/Makefile |4 ++-- include/configs/PATI.h | 13 + 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/board/mpl/pati/Makefile b/board/mpl/pati/Makefile index dae381d..0fe508c 100644 --- a/board/mpl/pati/Makefile +++ b/

[U-Boot] [PATCH 3/4] board/mpl/mip405: use the CFI driver for the MIP405/MIP405T board

2011-12-22 Thread David Müller
Signed-off-by: David Mueller --- board/mpl/mip405/Makefile |6 -- board/mpl/mip405/mip405.c | 22 +- include/configs/MIP405.h | 15 +++ 3 files changed, 36 insertions(+), 7 deletions(-) diff --git a/board/mpl/mip405/Makefile b/board/mpl/mip405/Makefi

[U-Boot] [PATCH 2/4] board/mpl/pip405: use the CFI driver for the PIP405 board

2011-12-22 Thread David Müller
Signed-off-by: David Mueller --- board/mpl/pip405/Makefile | 11 ++- board/mpl/pip405/pip405.c | 23 --- include/configs/PIP405.h | 16 3 files changed, 38 insertions(+), 12 deletions(-) diff --git a/board/mpl/pip405/Makefile b/board/mpl/pip40

[U-Boot] [PATCH 1/4] board/mpl/common: remove the old legacy flash

2011-12-22 Thread David Müller
Signed-off-by: David Mueller --- board/mpl/common/common_util.c | 202 -- board/mpl/common/common_util.h |4 + board/mpl/common/flash.c | 872 3 files changed, 182 insertions(+), 896 deletions(-) delete mode 100644 board/mpl/common/fl

[U-Boot] [PATCH 0/4] use CFI driver for all MPL boards

2011-12-22 Thread David Müller
This patch set converts all MPL boards to make use the generic CFI driver by doing the following: - remove the old legacy flash driver and adjust the common code shared by all MPL boards - adjust each board specfic configuration --- board/mpl/common/common_util.c | 202 -- boar

Re: [U-Boot] Building uImage with multiple load addresses

2011-12-22 Thread Fabio Estevam
Hi Wolfgang, On Thu, Dec 22, 2011 at 10:04 AM, Wolfgang Denk wrote: > I'm aware of this.  But this was what Fabio quoted from the Linux > messages: > >> >  Kernel: arch/arm/boot/Image is ready >> >  Kernel: arch/arm/boot/zImage is ready >> > multiple load addresses: 0x80008000 0x80008000 0x10008

Re: [U-Boot] about flashing the u-boot

2011-12-22 Thread Érico Porto
thank you, found the ccs interactive shell, it is located in /usr/local/Freescale/CodeWarrior_PA_10.1.1/PA/ccs/bin/ccs I has many commands, has help commands in it, and also have autocomplete feature with tab. Just trying to find a command that let me connect to my usb tap. Thank you! On 12/20

Re: [U-Boot] Building uImage with multiple load addresses

2011-12-22 Thread Wolfgang Denk
Dear Stefano Babic, In message <4ef2f5dc.8010...@denx.de> you wrote: > > >>> make uImage LOADADDR=0x70008000 > >> > >> Exactly, I do the same. > > > > Before, you wrote you were using 0x80008000 ... > > No, I don't: I wrote that I am using 0x80008000 for MX3. Fabio wrote the > example for MX53,

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Govindraj
On Thu, Dec 22, 2011 at 4:48 PM, Igor Grinberg wrote: > On 12/22/11 12:49, Govindraj wrote: >> On Thu, Dec 22, 2011 at 3:29 PM, Igor Grinberg >> wrote: >>> On 12/22/11 11:26, Govindraj wrote: Hi Igor, >> >> [...] >> probably the right method to do is as we did for panda,

Re: [U-Boot] [PATCH v2 3/9] openrisc: Add cpu files

2011-12-22 Thread Stefan Kristiansson
On Thu, Dec 22, 2011 at 10:09:30AM +0100, Michal Simek wrote: > Stefan Kristiansson wrote: > >+ > >+void dcache_enable(void) > >+{ > >+mtspr(SPR_SR, mfspr(SPR_SR) | SPR_SR_DCE); > >+asm volatile("l.nop"); > >+asm volatile("l.nop"); > >+asm volatile("l.nop"); > >+asm volatile("l.

Re: [U-Boot] Where I'm going with x86 board.c

2011-12-22 Thread Graeme Russ
Hi Simon, On 22/12/11 17:44, Simon Glass wrote: > Hi Graeme, > > On Tue, Dec 20, 2011 at 4:06 AM, Graeme Russ wrote: >> With Simon's work on generic relocation support, I thought I would throw in >> what I am planning for arch/x86/lib/board.c >> >> Now this is not a patch, it is a work-in-progre

[U-Boot] [PATCH] ARM: activate DISPLAY_CPUINFO for VCMA9 + SMDK2410 board

2011-12-22 Thread David Müller
Signed-off-by: David Mueller --- include/configs/VCMA9.h|3 +-- include/configs/smdk2410.h |3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h index a370c15..fa00a04 100644 --- a/include/configs/VCMA9.h +++ b/includ

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Igor Grinberg
On 12/22/11 12:49, Govindraj wrote: > On Thu, Dec 22, 2011 at 3:29 PM, Igor Grinberg > wrote: >> On 12/22/11 11:26, Govindraj wrote: >>> Hi Igor, >>> > > [...] > >>> >>> probably the right method to do is as we did for panda, >>> >>> Add to armv7/omap3/clock.c (soc specific code) to enable usb-

[U-Boot] [PATCH V3] ARM: fix s3c2410 timer code

2011-12-22 Thread David Müller
This patch fixes the s3c24x0 timer code to work with the ARM relocation feature. Signed-off-by: David Mueller --- arch/arm/cpu/arm920t/s3c24x0/timer.c | 64 ++--- 1 files changed, 20 insertions(+), 44 deletions(-) Changes for V2: - rebase to master Changes for V

Re: [U-Boot] [PATCH v2 0/6] overo: add SPL support

2011-12-22 Thread Andreas Müller
I manually sent this series to Steve as suggested in review by Tom Andreas ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] u-boot jumps to some location

2011-12-22 Thread Hebbar, Gururaja
Siddharth, On Thu, Dec 22, 2011 at 15:46:21, siddharth baisane wrote: > Hi, > so I am now trying to load u-boot-spl.bin using teraterm as per process > given in following link > "http://processors.wiki.ti.com/index.php/AM335x_U-Boot_User%27s_Guide#UART"; > *1)I kept uart mode and throug teraterm

[U-Boot] [PATCH 6/6] SMDK5250: enable device tree support

2011-12-22 Thread Chander Kashyap
Enable passing a flattened device tree to the kernel. Signed-off-by: Chander Kashyap --- include/configs/smdk5250.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index d99dfd0..31f56fd 100644 --- a/include/confi

[U-Boot] [PATCH 5/6] EXYNOS: SMDK5250: Add MMC SPL support

2011-12-22 Thread Chander Kashyap
This patch adds support for mmc spl booting. Signed-off-by: Chander Kashyap --- board/samsung/smdk5250/Makefile | 16 board/samsung/smdk5250/mmc_boot.c | 58 board/samsung/smdk5250/tools/mkexynos_image.c | 117 + include/co

[U-Boot] [PATCH 3/6] Exynos: Clock.c: Replace exynos4 prefix with exynos

2011-12-22 Thread Chander Kashyap
Replace exynos4 prefix with exynos in arch/arm/cpu/armv7/exynos/clock.c as clock.c is common for exynos architecture. By doing so automatic selection of appropriate clock structure can be done. As per above reason replace exynos4_clock to exynos_clock in clock.h header file. Signed-off-by: Chande

[U-Boot] [PATCH 2/6] Exynos: Clock.c: Use CONFIG_SYS_CLK_FREQ macro

2011-12-22 Thread Chander Kashyap
CONFIG_SYS_CLK_FREQ_C210 macro giving notion of S5PC2XX (EXYNOS4) architecture. Replace CONFIG_SYS_CLK_FREQ_C210 with CONFIG_SYS_CLK_FREQ to make it generic for exynos architecture. Signed-off-by: Chander Kashyap --- arch/arm/cpu/armv7/exynos/clock.c |6 +- include/configs/s5pc210_univ

[U-Boot] [PATCH 1/6] Exynos: Add CONFIG_EXYNOS4 Macro to EXYNOS4 based boards

2011-12-22 Thread Chander Kashyap
Exynos architecture has varients like exynos4 and exynos5. In order to identify the exynos4 architecture, add CONFIG_EXYNOS4 macro to exynos4 based boards i.e. Origen, smdkv310 and s5pc210_universal. Signed-off-by: Chander Kashyap --- include/configs/origen.h|1 + include/configs

[U-Boot] [PATCH 0/6] Add SMDK5250 board support

2011-12-22 Thread Chander Kashyap
This patchset add support for Samsung's SMDK5250 board based on EXYNOS5250 based SoC. It also adds support for MMC SPL booting. The porting is done by Samsung engineers at HQ in System LSI Team. I am contributing in upstreaming the code for the board. These patches are made on top of on the follo

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Govindraj
On Thu, Dec 22, 2011 at 3:29 PM, Igor Grinberg wrote: > On 12/22/11 11:26, Govindraj wrote: >> Hi Igor, >> [...] >> >> probably the right method to do is as we did for panda, >> >> Add to armv7/omap3/clock.c (soc specific code) to enable usb-host clocks. >> >> as done in below patch for omap4 so

[U-Boot] [PATCH v2 6/6] overo: add SPL support / CONFIG_SYS_TEXT_BASE changed to 0x80100000

2011-12-22 Thread Andreas Müller
* implementation based on ti beagleboard/omap3evm * timing data and i2c workaround for revision 0 boards taken from x-loader * run-tested with overo revision 0 and 1 / boot from NAND and SDcard Signed-off-by: Andreas Müller --- arch/arm/cpu/armv7/omap-common/spl.c |4 ++ arch/arm/include/as

[U-Boot] [PATCH v2 4/6] drivers/i2c/omap24xx_i2c.c: move all local variables to SRAM

2011-12-22 Thread Andreas Müller
At old overo boards TWL4030 RTC irq is connected to gpio112. Unfortunately this pin is also used for revision detection. Therefore we need to send shut-up to TWL4030 to avoid reading wrong revision. In SPL this must be done before SDRAM is set up because the type of SDRAM is revision dependent. By

[U-Boot] [PATCH v2 5/6] OMAP SPL: call timer_init in s_init to make udelay work earlier

2011-12-22 Thread Andreas Müller
Signed-off-by: Andreas Müller --- arch/arm/cpu/armv7/omap-common/spl.c |2 -- arch/arm/cpu/armv7/omap3/board.c |2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/omap-common/spl.c b/arch/arm/cpu/armv7/omap-common/spl.c index 9c35a09..74fea4f 1006

[U-Boot] [PATCH v2 2/6] board/overo/overo.c: replace printf with one argument by puts

2011-12-22 Thread Andreas Müller
Signed-off-by: Andreas Müller --- board/overo/overo.c | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/board/overo/overo.c b/board/overo/overo.c index 3c60b06..4a20c7f 100644 --- a/board/overo/overo.c +++ b/board/overo/overo.c @@ -119,7 +119,7 @@ int get_board

[U-Boot] [PATCH v2 3/6] include/configs/omap3_overo.h: several cleanups

2011-12-22 Thread Andreas Müller
* remove unused macros * remove unused macro values * align tabs * remove Free Software Foundation address Signed-off-by: Andreas Müller --- include/configs/omap3_overo.h | 69 ++-- 1 files changed, 31 insertions(+), 38 deletions(-) diff --git a/include/con

[U-Boot] [PATCH v2 0/6] overo: add SPL support

2011-12-22 Thread Andreas Müller
V1 -> V2 * cleanups: replace printf with one argument by puts [1-2] * cleanups: remove unused macros and macro values / tabbing / remove FSF address [3] * i2c: move all local variables to SRAM [4] * OMAP SPL: call timer_init in s_init to make udelay work earlier [5] * hint CONFIG_SYS_TEXT_BASE cha

[U-Boot] [PATCH v2 1/6] drivers/i2c/omap24xx_i2c.c: replace printf with one argument by puts

2011-12-22 Thread Andreas Müller
Signed-off-by: Andreas Müller --- drivers/i2c/omap24xx_i2c.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/i2c/omap24xx_i2c.c b/drivers/i2c/omap24xx_i2c.c index 4ae237a..271ed60 100644 --- a/drivers/i2c/omap24xx_i2c.c +++ b/drivers/i2c/omap24xx_i2c.c

[U-Boot] u-boot jumps to some location

2011-12-22 Thread siddharth baisane
Hi, so I am now trying to load u-boot-spl.bin using teraterm as per process given in following link "http://processors.wiki.ti.com/index.php/AM335x_U-Boot_User%27s_Guide#UART"; *1)I kept uart mode and throug teraterm transfered u-boot-spl.bin.*2)As per document "After image is successfully download

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Igor Grinberg
On 12/22/11 11:26, Govindraj wrote: > Hi Igor, > > On Thu, Dec 22, 2011 at 1:44 PM, Igor Grinberg > wrote: >> Hi Govindraj, >> >> On 12/22/11 08:55, Govindraj wrote: >>> Hi IIya Yanok, [...] >>> On Tue, Dec 13, 2011 at 4:45 AM, Ilya Yanok wrote: Taken from Beagle code. Tested on mcx boar

[U-Boot] [PATCH] OMAP MMC: Add delay before waiting for status

2011-12-22 Thread Andreas Müller
Loading kernel from MMC created the following error message reproducable: | reading uImage | mmc_send_cmd: timedout waiting for stat! | | 2860468 bytes read Tested on overo with OMAP3530: * OMAP3530-GP ES3.1, CPU-OPP2, L3-165MHz, Max CPU Clock 720 mHz Die ID #470e0004040398d31402100c *

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Govindraj
Hi Igor, On Thu, Dec 22, 2011 at 1:44 PM, Igor Grinberg wrote: > Hi Govindraj, > > On 12/22/11 08:55, Govindraj wrote: >> Hi IIya Yanok, >> >> Sorry for late comments. > > Better late than never... > >> >> On Tue, Dec 13, 2011 at 4:45 AM, Ilya Yanok wrote: >>> Taken from Beagle code. Tested on m

[U-Boot] [PATCH] tegra2: Optimize out-of-tree build for Ventana.

2011-12-22 Thread Thierry Reding
As proposed by Mike Frysinger, mkdir can take more than one argument. Instead of spawning two processes, create both the common and seaboard directories in one go. Signed-off-by: Thierry Reding --- I realize how trivial this is, and I feel a little embarrassed. board/nvidia/ventana/Makefile |

Re: [U-Boot] Building uImage with multiple load addresses

2011-12-22 Thread Stefano Babic
On 22/12/2011 10:02, Wolfgang Denk wrote: > Dear Stefano Babic, > > In message <4ef2eff1.1030...@denx.de> you wrote: >> >>> make uImage LOADADDR=0x70008000 >> >> Exactly, I do the same. > > Before, you wrote you were using 0x80008000 ... No, I don't: I wrote that I am using 0x80008000 for MX3. F

Re: [U-Boot] [PATCH] tegra2: Fix out-of-tree build for Ventana.

2011-12-22 Thread Wolfgang Denk
Dear Thierry Reding, In message <20111222090337.ga...@avionic-0098.mockup.avionic-design.de> you wrote: > > I actually have an updated version applied locally with the change proposed > by Mike, but I completely forgot to send it to the list. Can you then please submit an incremental patch (aga

Re: [U-Boot] [PATCH v2 3/9] openrisc: Add cpu files

2011-12-22 Thread Michal Simek
Stefan Kristiansson wrote: Signed-off-by: Stefan Kristiansson --- Changes in v2: - Fix missing newline - Bugfix for cache line size reading - Make l.nop asm statements volatile - Fix include order (asm after non-asm) - Add static to functions only called locally - Make unhandled exception

Re: [U-Boot] [PATCH] tegra2: Fix out-of-tree build for Ventana.

2011-12-22 Thread Thierry Reding
* Wolfgang Denk wrote: > Dear Thierry Reding, > > In message > <1321523302-4761-1-git-send-email-thierry.red...@avionic-design.de> you wrote: > > Since Ventana is derived from Seaboard and requires seaboard.c to build, > > make sure board/nvidia/seaboard is created in the build tree. > > > > Sig

Re: [U-Boot] Building uImage with multiple load addresses

2011-12-22 Thread Wolfgang Denk
Dear Stefano Babic, In message <4ef2eff1.1030...@denx.de> you wrote: > > > make uImage LOADADDR=0x70008000 > > Exactly, I do the same. Before, you wrote you were using 0x80008000 ... Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165

Re: [U-Boot] [PATCH v7] net: ll_temac: Add LL TEMAC driver to u-boot

2011-12-22 Thread Michal Simek
Wolfgang Denk wrote: Dear Stephan Linz, In message <1322771978-22008-2-git-send-email-l...@li-pro.net> you wrote: Xilinx LocalLink Tri-Mode Ether MAC driver can be used by Xilinx Microblaze or Xilinx ppc405/440 in SDMA and FIFO mode. DCR or XPS bus can be used. The driver uses and requires MII

Re: [U-Boot] Building uImage with multiple load addresses

2011-12-22 Thread Stefano Babic
On 21/12/2011 23:20, Fabio Estevam wrote: > Ok, this is the method I can think of: > > Let's say I want build a kernel for mx53: > > make > (This will produce a zImage) > > make uImage LOADADDR=0x70008000 Exactly, I do the same. > > The LOADADDR can be retrieved from: > arch/arm/mach-imx/Mak

Re: [U-Boot] Building uImage with multiple load addresses

2011-12-22 Thread Stefano Babic
On 21/12/2011 22:24, Fabio Estevam wrote: > Hi, > > When trying to build imx_v4_v5_defconfig, or mx3_defconfig, or > mx5_defconfig on a 3.2-rc6 kernel I get: > > Kernel: arch/arm/boot/Image is ready > Kernel: arch/arm/boot/zImage is ready > multiple load addresses: 0x80008000 0x80008000 0x100

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Igor Grinberg
Hi Wolfgang, On 12/22/11 10:06, Wolfgang Denk wrote: > Dear Allen Martin, > > In message <1324515956-1642-1-git-send-email-amar...@nvidia.com> you wrote: >> This allows systems to pause autoboot with USB keyboard. Tested on >> tegra2 seaboard. >> >> Signed-off-by: Allen Martin >> --- >> README

[U-Boot] [RFC] [PATCH] DaVinci/i2c: allow multiple buses

2011-12-22 Thread Jérôme Carretero
Hi Tom, I'm requesting comments on the following (untested) patch. It adds support for multiple i2c buses on davinci_i2c, without altering one line of code. What I don't like is that I'm doing a bit of macro black magic to transform constants into variables. But I don't know whether refactoring

Re: [U-Boot] [PATCH V4 1/2] ehci-omap: driver for EHCI host on OMAP3

2011-12-22 Thread Igor Grinberg
Hi Govindraj, On 12/22/11 08:55, Govindraj wrote: > Hi IIya Yanok, > > Sorry for late comments. Better late than never... > > On Tue, Dec 13, 2011 at 4:45 AM, Ilya Yanok wrote: >> Taken from Beagle code. Tested on mcx board (AM3517-based). >> >> Signed-off-by: Ilya Yanok >> --- >> Changes fr

Re: [U-Boot] [PATCH, v3] Print program basename instead of whole path in usage()

2011-12-22 Thread Wolfgang Denk
Dear Horst Kronstorfer, In message <1324499979-4978-1-git-send-email-hkron...@frequentis.com> you wrote: > Signed-off-by: Horst Kronstorfer > --- > Changes for v2: >- Use the GNU version of basename(). >- Rebase against branch 'next.' > Changes for v3: >- Rebase against branch 'master

Re: [U-Boot] [PATCH] USB: add CONFIG_USB_INIT to autoinitialize USB before main_loop

2011-12-22 Thread Wolfgang Denk
Dear Allen Martin, In message <1324515956-1642-1-git-send-email-amar...@nvidia.com> you wrote: > This allows systems to pause autoboot with USB keyboard. Tested on > tegra2 seaboard. > > Signed-off-by: Allen Martin > --- > README |5 + > arch/arm/lib/board.c |9 ++