Re: [U-Boot] usb ethernet working on panda?

2012-02-28 Thread Govindraj
On Wed, Feb 29, 2012 at 4:47 AM, Kumar Gala wrote: > Does anyone have usb ethernet working on top of git tree on a panda board? > yes. > If so any gotcha's or details on how you have it working. I use following commands: setenv usbethaddr 0:0:1:2:3:4;usb start; After Ethernet enumerates, from

Re: [U-Boot] [PATCH] ARM: Define change_bit routine

2012-02-28 Thread Amit Virdi
Hello Albert, On 2/29/2012 4:49 AM, Albert ARIBAUD wrote: Hi Amit, Le 27/02/2012 10:33, Amit Virdi a écrit : From: Vipin KUMAR change_bit routine is left implementation dependent until now. This routine is now defined for arm platforms in asm-arm/bitops.h The Flexible Static memory controlle

Re: [U-Boot] [PATCH] ARM: dreamplug: Enable FDT support

2012-02-28 Thread Prafulla Wadaskar
> -Original Message- > From: Ian Campbell [mailto:i...@hellion.org.uk] > Sent: 28 February 2012 20:06 > To: Jason > Cc: u-boot@lists.denx.de; Prafulla Wadaskar > Subject: Re: [U-Boot] [PATCH] ARM: dreamplug: Enable FDT support > > On Tue, 2012-02-28 at 09:29 -0500, Jason wrote: > > Ian,

Re: [U-Boot] [PATCH v2] Ethernut 5: fix build error

2012-02-28 Thread Albert ARIBAUD
Hi Prabhakar, Le 23/02/2012 12:53, Prabhakar Lad a écrit : Fix build error for ethernut5 board due to prototype change for function board_mmc_getcd(). ethernut5.c:238: error: conflicting types for 'board_mmc_getcd' u-boot/include/mmc.h:318: note: previous declaration of 'board_mmc_getcd' was her

Re: [U-Boot] [PATCH 4/5] Add support for mmc read and writes

2012-02-28 Thread Albert ARIBAUD
Hi Mohamed, Le 16/02/2012 03:59, mohamed.han...@lntinfotech.com a écrit : From: Mohamed Haneef *Support for msm7x30 mmc read and writes The patch title is misleading. MMC reads and writes are already supported in U-Boot; what you add is support for the qc_mc MMC controller. Amical

Re: [U-Boot] ARM: Update mach-types

2012-02-28 Thread stefano babic
Am 28/02/2012 04:51, schrieb Marek Vasut: >> On 2/27/2012 3:56 PM, Marek Vasut wrote: |ARM: Update mach-types | |This commit updates the mach-types based on the latest in Linus's head | |Signed-off-by: Marek Vasut Hi Marek, Can I get you to do this

Re: [U-Boot] [PATCH 3/5] msm7x30: Add support for Qualcomm msm7630 soc

2012-02-28 Thread Albert ARIBAUD
Hi Mohamed, Le 16/02/2012 03:59, mohamed.han...@lntinfotech.com a écrit : +#define BIT(n) (1<< (n)) +#define VREG_CONFIG(BIT(7) | BIT(6)) BIT() is not used elsewhere. It would be simpler not to define it and to define VREG_CONFIG as (3 << 6). Besides, isn't that rather a VREG_

Re: [U-Boot] [PATCH v6 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Simon Glass
Hi Stephen, On Tue, Feb 28, 2012 at 10:51 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 11:44 AM: >> On Tue, Feb 28, 2012 at 10:37 AM, Stephen Warren wrote: >> > Simon Glass wrote at Tuesday, February 28, 2012 10:46 AM: >> >> On Mon, Feb 27, 2012 at 3:41 PM, Stephen

Re: [U-Boot] [PATCH 2/5] msm7x30: Add support for interprocessor communication

2012-02-28 Thread Albert ARIBAUD
Hi Mohamed, Le 16/02/2012 03:59, mohamed.han...@lntinfotech.com a écrit : From: Mohamed Haneef *Support for msm7x30 interprocessor communication Is this used at some point in the patch set? If not, remove it and introduce it back within a patchset that uses it. Amicalement, -- Alb

Re: [U-Boot] [PATCH 1/5] msm7x30: Add support for low speed uart on msm7x30

2012-02-28 Thread Albert ARIBAUD
Hi Mohamed, Le 16/02/2012 03:59, mohamed.han...@lntinfotech.com a écrit : +#define UART_CR_TX_DISABLE (1<< 3) +#define UART_CR_TX_ENABLE (1<< 3) I doubt the same bit value can mean both enable and disable. +#define UART_CR_RX_DISABLE (1<< 3) +#define UART_CR_RX_E

Re: [U-Boot] Nand dump and nand bad block disagree

2012-02-28 Thread Scott Wood
On 02/28/2012 08:34 AM, jean-philippe francois wrote: > Hi, > > I have an omap3 based board with a micron 4Gbit large page nand attached. > when using software ecc, everything is fine. > > When using hardware ecc, ecc is ok (ie u-boot and ROM bootloader agree), > but bad block detection is broken

Re: [U-Boot] memory corruption on nios2 due to overlap of gbl data and malloc

2012-02-28 Thread Graeme Russ
Hi Albert, On Wed, Feb 29, 2012 at 10:24 AM, Albert ARIBAUD wrote: > Le 29/02/2012 00:20, Graeme Russ a écrit : > >> Hi Albert, >> >> No - GENERATED_GBL_DATA_SIZE should be sizeof(gd_t) >> >> The space reserved between U-Boot and the heap needs to be sizeof(gd_t) + >> sizeof(bd-t) (on the delica

[U-Boot] usb ethernet working on panda?

2012-02-28 Thread Kumar Gala
Does anyone have usb ethernet working on top of git tree on a panda board? If so any gotcha's or details on how you have it working. thanks - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] memory corruption on nios2 due to overlap of gbl data and malloc

2012-02-28 Thread Albert ARIBAUD
Le 29/02/2012 00:20, Graeme Russ a écrit : Hi Albert, On Wed, Feb 29, 2012 at 9:55 AM, Albert ARIBAUD wrote: Hi Graeme, Le 28/02/2012 23:39, Graeme Russ a écrit : Hi Albert, On Wed, Feb 29, 2012 at 9:29 AM, Albert ARIBAUD wrote: Hi Alex, Le 21/02/2012 00:24, Alex Hornung a écrit :

Re: [U-Boot] memory corruption on nios2 due to overlap of gbl data and malloc

2012-02-28 Thread Graeme Russ
Hi Albert, On Wed, Feb 29, 2012 at 9:55 AM, Albert ARIBAUD wrote: > Hi Graeme, > > Le 28/02/2012 23:39, Graeme Russ a écrit : > >> Hi Albert, >> >> On Wed, Feb 29, 2012 at 9:29 AM, Albert ARIBAUD >>  wrote: >>> >>> Hi Alex, >>> >>> Le 21/02/2012 00:24, Alex Hornung a écrit : Hi, >

Re: [U-Boot] [PATCH] ARM: Define change_bit routine

2012-02-28 Thread Albert ARIBAUD
Hi Amit, Le 27/02/2012 10:33, Amit Virdi a écrit : From: Vipin KUMAR change_bit routine is left implementation dependent until now. This routine is now defined for arm platforms in asm-arm/bitops.h The Flexible Static memory controller driver, placed in mtd/nand/fsmc_nand.c needs this routine.

[U-Boot] [PATCH] Avoid using GNU basename

2012-02-28 Thread Keith Mok
There is no GNU basename support in MacOS. Use generic POSIX basename defined in libgen.h instead. Signed-off-by: Keith Mok --- tools/mkenvimage.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/mkenvimage.c b/tools/mkenvimage.c index f781731..8b49723 100644

[U-Boot] Nand dump and nand bad block disagree

2012-02-28 Thread jean-philippe francois
Hi, I have an omap3 based board with a micron 4Gbit large page nand attached. when using software ecc, everything is fine. When using hardware ecc, ecc is ok (ie u-boot and ROM bootloader agree), but bad block detection is broken. Here is an OOB dump OOB: ff 44 bb 1e ba 45 87 f7

Re: [U-Boot] [PATCH v3] AT91SAM9*: Change kernel address in dataflash to match u-boot's size

2012-02-28 Thread Alexandre Belloni
On Mon, Feb 27, 2012 at 04:25:02PM +0100, Ulf Samuelsson wrote : > On 2012-02-20 17:40, Alexandre Belloni wrote: > >On at91sam platforms, u-boot grew larger than the allocated size in > >dataflash, the layout was: > >bootstrap 0x > >ubootenv 0x4200 > >uboot 0x8400 > >kernel

Re: [U-Boot] memory corruption on nios2 due to overlap of gbl data and malloc

2012-02-28 Thread Albert ARIBAUD
Hi Graeme, Le 28/02/2012 23:39, Graeme Russ a écrit : Hi Albert, On Wed, Feb 29, 2012 at 9:29 AM, Albert ARIBAUD wrote: Hi Alex, Le 21/02/2012 00:24, Alex Hornung a écrit : Hi, I've run into some memory corruption due to an error in the logic used to allocate the bd (and gd) during board

Re: [U-Boot] [PATCH 0/2] Highbank fixes for 2012.03

2012-02-28 Thread Albert ARIBAUD
Hi Rob, Le 21/02/2012 23:52, Rob Herring a écrit : From: Rob Herring This is a couple of fixes for a build error and warning. Rob Rob Herring (2): ARM: highbank: fix warning for calxedaxgmac_initialize ARM: highbank: add missing get_tbclk arch/arm/cpu/armv7/highbank/timer.c |5 ++

Re: [U-Boot] memory corruption on nios2 due to overlap of gbl data and malloc

2012-02-28 Thread Graeme Russ
Hi Albert, On Wed, Feb 29, 2012 at 9:29 AM, Albert ARIBAUD wrote: > Hi Alex, > > Le 21/02/2012 00:24, Alex Hornung a écrit : >> >> Hi, >> >> I've run into some memory corruption due to an error in the logic used >> to allocate the bd (and gd) during board_init of the nios2. >> >> >> #define CONFI

Re: [U-Boot] memory corruption on nios2 due to overlap of gbl data and malloc

2012-02-28 Thread Albert ARIBAUD
Hi Alex, Le 21/02/2012 00:24, Alex Hornung a écrit : Hi, I've run into some memory corruption due to an error in the logic used to allocate the bd (and gd) during board_init of the nios2. #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_MALLOC_BASE - \

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Albert ARIBAUD
Le 28/02/2012 19:46, Simon Glass a écrit : Hi Stephen, On Tue, Feb 28, 2012 at 10:41 AM, Stephen Warren wrote: Simon Glass wrote at Tuesday, February 28, 2012 11:37 AM: On Tue, Feb 28, 2012 at 10:31 AM, Stephen Warren wrote: Simon Glass wrote at Tuesday, February 28, 2012 10:38 AM: ... I a

Re: [U-Boot] [PATCH] ARM: Add .data/.rodata/.bss section starts to gd_t

2012-02-28 Thread Albert ARIBAUD
Hi Peter, Le 27/02/2012 23:00, Peter Barada a écrit : When debugging u-boot, after relocation its tedious to calculate positions of the various sections (.data, .rodata, .bss). To make it easier, add the structure "sections" to gd_t that contains the relocated start of those sections. Then the

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-28 Thread Scott Wood
On 02/28/2012 03:55 PM, Albert ARIBAUD wrote: > Le 27/02/2012 13:02, Sughosh Ganu a écrit : > >>> When I asked Heiko Schocher a few month ago why he defined putc and >>> puts in arch/arm/cpu/arm926ejs/davinci/spl.c he replied that he could >>> not use LIBCOMMON due to size limitations for the SPL.

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-28 Thread Albert ARIBAUD
Le 27/02/2012 13:02, Sughosh Ganu a écrit : When I asked Heiko Schocher a few month ago why he defined putc and puts in arch/arm/cpu/arm926ejs/davinci/spl.c he replied that he could not use LIBCOMMON due to size limitations for the SPL. So I guess that this board will not be able to use the gene

Re: [U-Boot] [PULL] u-boot-pxa / fix

2012-02-28 Thread Albert ARIBAUD
Hi Marek, Le 27/02/2012 21:53, Marek Vasut a écrit : Hi Marek, Le 27/02/2012 14:03, Marek Vasut a écrit : The following changes since commit 417c2c787e32784b5de975065a7d1dd5b3cc8ecd: at91: modified NAND flash timing on otc570 board (2012-02-20 09:00:13 +0100) are available in the git

[U-Boot] Pull request: nand flash

2012-02-28 Thread Scott Wood
The following changes since commit 54e96680cb96fb7a4b8f43fd949c62054004d3e5: Merge branch 'master' of git://git.denx.de/u-boot-microblaze (2012-02-26 22:17:40 +0100) are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git master Prabhakar Kushwaha (2): mtd/nan

Re: [U-Boot] [PATCH] cmd_nand.c: Fix 'nand dump' after latest MTD resync

2012-02-28 Thread Scott Wood
On 02/23/2012 04:47 PM, Tom Rini wrote: > With 2a8e0fc nand_do_read_ops changed in behavior slightly (keeping in sync > with the kernel which did this change in b64d39d8) such that the OOB data is > always copied into oobbuf and never appended to datbuf. Within U-Boot only > the nand_dump function

Re: [U-Boot] [PATCH v6 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 11:44 AM: > On Tue, Feb 28, 2012 at 10:37 AM, Stephen Warren wrote: > > Simon Glass wrote at Tuesday, February 28, 2012 10:46 AM: > >> On Mon, Feb 27, 2012 at 3:41 PM, Stephen Warren wrote: > >> > On 02/27/2012 01:52 PM, Simon Glass wrote: > >> >> A

Re: [U-Boot] [PATCH v7 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Simon Glass
Hi Stephen, On Tue, Feb 28, 2012 at 10:47 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 11:08 AM: >> Add the definition of the oscillator clock frequency and the 32KHz clock. >> The latter is provided by a PMIC on I2C which we don't actually use at >> present, but we

Re: [U-Boot] [PATCH v7 09/20] tegra: fdt: Add additional USB binding

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 11:49 AM: > On Tue, Feb 28, 2012 at 10:42 AM, Stephen Warren wrote: > > Simon Glass wrote at Tuesday, February 28, 2012 11:08 AM: > >> This adds a property to indicate a port which can switch between host and > >> device > >> mode. > >> > >> Signed-

Re: [U-Boot] [PATCH v7 09/20] tegra: fdt: Add additional USB binding

2012-02-28 Thread Simon Glass
Hi, On Tue, Feb 28, 2012 at 10:42 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 11:08 AM: >> This adds a property to indicate a port which can switch between host and >> device >> mode. >> >> Signed-off-by: Simon Glass > > Acked-by: Stephen Warren > > (I can't rec

Re: [U-Boot] [PATCH v7 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 11:08 AM: > A common requirement is to find the clock ID for a peripheral. This is the > second cell of the 'clocks' property (the first being the phandle itself). > > Signed-off-by: Simon Glass Acked-by: Stephen Warren -- nvpublic

Re: [U-Boot] [PATCH v7 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 11:08 AM: > Add the definition of the oscillator clock frequency and the 32KHz clock. > The latter is provided by a PMIC on I2C which we don't actually use at > present, but we expect this definition to be used in the kernel and want > to keep our .dt

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Simon Glass
Hi Stephen, On Tue, Feb 28, 2012 at 10:41 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 11:37 AM: >> On Tue, Feb 28, 2012 at 10:31 AM, Stephen Warren wrote: >> > Simon Glass wrote at Tuesday, February 28, 2012 10:38 AM: >> > ... >> >> I am going to add your binding,

Re: [U-Boot] [PATCH v6 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Simon Glass
Hi Stephen, On Tue, Feb 28, 2012 at 10:37 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 10:46 AM: >> On Mon, Feb 27, 2012 at 3:41 PM, Stephen Warren wrote: >> > On 02/27/2012 01:52 PM, Simon Glass wrote: >> >> A common requirement is to find the clock ID for a perip

Re: [U-Boot] [PATCH v7 09/20] tegra: fdt: Add additional USB binding

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 11:08 AM: > This adds a property to indicate a port which can switch between host and > device > mode. > > Signed-off-by: Simon Glass Acked-by: Stephen Warren (I can't recall; did this patch make it into the kernel too?) -- nvpublic _

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 11:37 AM: > On Tue, Feb 28, 2012 at 10:31 AM, Stephen Warren wrote: > > Simon Glass wrote at Tuesday, February 28, 2012 10:38 AM: > > ... > >> I am going to add your binding, less the #clock-cells which U-Boot > >> currently can't support because it

Re: [U-Boot] [PATCH v6 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 10:46 AM: > On Mon, Feb 27, 2012 at 3:41 PM, Stephen Warren wrote: > > On 02/27/2012 01:52 PM, Simon Glass wrote: > >> A common requirement is to find the clock ID for a peripheral. This is the > >> second cell of the 'clocks' property (the first bei

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Simon Glass
Hi Stephen, On Tue, Feb 28, 2012 at 10:31 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 10:38 AM: > ... >> I am going to add your binding, less the #clock-cells which U-Boot >> currently can't support because it conflicts with the C preprocessor >> (at some point I m

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 10:38 AM: ... > I am going to add your binding, less the #clock-cells which U-Boot > currently can't support because it conflicts with the C preprocessor > (at some point I may look at a patch to use sed or some other means of > avoiding this). Out o

Re: [U-Boot] [PATCH v6 0/20] tegra: Add fdt definitions and USB driver

2012-02-28 Thread Simon Glass
Hi, On Mon, Feb 27, 2012 at 3:42 PM, Stephen Warren wrote: > On 02/27/2012 01:52 PM, Simon Glass wrote: >> This series brings in the Linux kernel fdt file and provides a working >> USB driver for Tegra2 Seaboard. > > Aside from the issues I just pointed out, this series looks fine. I > didn't rev

[U-Boot] [PATCH v7 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Simon Glass
A common requirement is to find the clock ID for a peripheral. This is the second cell of the 'clocks' property (the first being the phandle itself). Signed-off-by: Simon Glass --- Changes in v4: - Add fdtdec function to return peripheral ID Changes in v6: - Move peripheral decode function into

[U-Boot] [PATCH v7 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Simon Glass
Add the definition of the oscillator clock frequency and the 32KHz clock. The latter is provided by a PMIC on I2C which we don't actually use at present, but we expect this definition to be used in the kernel and want to keep our .dts the same. Signed-off-by: Simon Glass --- Changes in v6: - Add

[U-Boot] [PATCH v7 09/20] tegra: fdt: Add additional USB binding

2012-02-28 Thread Simon Glass
This adds a property to indicate a port which can switch between host and device mode. Signed-off-by: Simon Glass --- Changes in v5: - Add dr_mode property to control host/device/otg mode - Add nvidia,has-legacy-mode property per review comments Changes in v7: - Fix space indent nit doc/device

Re: [U-Boot] [PATCH v6 15/20] tegra: fdt: Add function to return peripheral/clock ID

2012-02-28 Thread Simon Glass
Hi Stephen, On Mon, Feb 27, 2012 at 3:41 PM, Stephen Warren wrote: > On 02/27/2012 01:52 PM, Simon Glass wrote: >> A common requirement is to find the clock ID for a peripheral. This is the >> second cell of the 'clocks' property (the first being the phandle itself). > >> +int clock_decode_periph

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Simon Glass
Hi Stephen, On Tue, Feb 28, 2012 at 9:32 AM, Stephen Warren wrote: > Simon Glass wrote at Tuesday, February 28, 2012 10:21 AM: >> On Mon, Feb 27, 2012 at 3:29 PM, Stephen Warren wrote: >> > On 02/27/2012 01:52 PM, Simon Glass wrote: >> >> Add the definition of the oscillator clock frequency. >>

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Stephen Warren
Simon Glass wrote at Tuesday, February 28, 2012 10:21 AM: > On Mon, Feb 27, 2012 at 3:29 PM, Stephen Warren wrote: > > On 02/27/2012 01:52 PM, Simon Glass wrote: > >> Add the definition of the oscillator clock frequency. > > > >> diff --git a/board/nvidia/dts/tegra2-seaboard.dts > >> b/board/nvid

Re: [U-Boot] [PATCH v6 11/20] tegra: fdt: Add clock bindings for Tegra2 Seaboard

2012-02-28 Thread Simon Glass
Hi Stephen, On Mon, Feb 27, 2012 at 3:29 PM, Stephen Warren wrote: > On 02/27/2012 01:52 PM, Simon Glass wrote: >> Add the definition of the oscillator clock frequency. > >> diff --git a/board/nvidia/dts/tegra2-seaboard.dts >> b/board/nvidia/dts/tegra2-seaboard.dts > >> +     clock@60006000 { >>

Re: [U-Boot] [PATCH 01/14] arm, omap3: Define save_boot_params in lowlevel_init.S for SPL only

2012-02-28 Thread Tom Rini
On Tue, Feb 28, 2012 at 9:25 AM, Pali Rohár wrote: > On Tuesday 24 January 2012 15:27:58 Pali Rohár wrote: >> * Hide function save_boot_params if CONFIG_SPL_BUILD is not defined >> (function do nothing) >> >> * Same behaviour as in file arch/arm/cpu/armv7/omap4/lowlevel_init.S >> * This allow to i

Re: [U-Boot] [PATCH 01/14] arm, omap3: Define save_boot_params in lowlevel_init.S for SPL only

2012-02-28 Thread Pali Rohár
On Tuesday 24 January 2012 15:27:58 Pali Rohár wrote: > * Hide function save_boot_params if CONFIG_SPL_BUILD is not defined > (function do nothing) > > * Same behaviour as in file arch/arm/cpu/armv7/omap4/lowlevel_init.S > * This allow to implement board specified function save_boot_params in board

Re: [U-Boot] [PATCH] ARM: dreamplug: Enable FDT support

2012-02-28 Thread Jason
Ian, I added Prafulla to the email cc: On Tue, Feb 28, 2012 at 07:19:02AM +, Ian Campbell wrote: > I have tested booting both FDT and non-FDT based Linux kernels (based on > http://marc.info/?l=linux-arm-kernel&m=133002679716986 and > http://marc.info/?l=linux-arm-kernel&m=132328894303581 res

Re: [U-Boot] [PATCH] ARM: dreamplug: Enable FDT support

2012-02-28 Thread Ian Campbell
On Tue, 2012-02-28 at 09:29 -0500, Jason wrote: > Ian, > > I added Prafulla to the email cc: He should have already been there automatically due to git send-email picking up the CC in the S-o-b area. I think this happened correctly -- he was CC'd in my own copy at least. How odd. > On Tue, Feb

Re: [U-Boot] ARM: Update mach-types

2012-02-28 Thread Eric Nelson
On 02/28/2012 02:28 AM, Fabio Estevam wrote: On Tue, Feb 28, 2012 at 3:50 AM, Dirk Behme wrote: Just out of curiosity: Why do you need that? It was my understanding that with recent U-Boot and Kernel on SabreLite DeviceTree is the way to go? And this doesn't need the mach-types any more? Ma

Re: [U-Boot] [PATCH v2 1/2] usb: align buffers at cacheline

2012-02-28 Thread puneets
Hi Marek, IMO, Simon has already mentioned the reason of using ALLOC_CACHE_ALIGN_BUFFER, Please find below my explanation about other doubts. On Monday 27 February 2012 10:19 PM, Marek Vasut wrote: As DMA expects the buffers to be equal and larger then cache lines, This aligns buffers at cachel

Re: [U-Boot] ARM: Update mach-types

2012-02-28 Thread Fabio Estevam
On Tue, Feb 28, 2012 at 3:50 AM, Dirk Behme wrote: > Just out of curiosity: Why do you need that? > > It was my understanding that with recent U-Boot and Kernel on SabreLite > DeviceTree is the way to go? And this doesn't need the mach-types any more? Maybe Troy wants to also allow U-boot to loa

Re: [U-Boot] Craneboard with Uboot and xloader

2012-02-28 Thread Mohamed HAMZAOUI
Hi, Indeed, the problem is caused by selecting the ttyS0, just change it to ttyO0 (OMAP) in the buildroot configuration and in the console env vars of card. Best regards Mohamed On Sun, Feb 26, 2012 at 1:26 AM, Mohamed HAMZAOUI wrote: > After trying to correct this issue, i have a difficult pro

Re: [U-Boot] ARM: Update mach-types

2012-02-28 Thread Marek Vasut
> On 2/27/2012 3:56 PM, Marek Vasut wrote: > > > |ARM: Update mach-types > > > | > > > |This commit updates the mach-types based on the latest in Linus's > > > head | > > > |Signed-off-by: Marek Vasut > > > > > > Hi Marek, > > > > > > > > > Can I get you to do this again? I'd the symbol for > >