Re: [U-Boot] Please pull u-boot-imx/next into arm/next

2011-09-27 Thread Albert ARIBAUD
Hi Stefano, On 26/09/2011 13:35, Stefano Babic wrote: > Hi Albert, > > please pull u-boot-imx/next (already rebased on u-boot-arm/next after > you merged u-boot-ti) into your u-boot-arm/next. > > Best regards, > Stefano > > The following changes since commit f3340eeaf574b3297e801a563089c90d23e84f8

Re: [U-Boot] [PATCH v2 8/8] arm, davinci: add support for am1808 based enbw_cmc board

2011-09-27 Thread Albert ARIBAUD
Hi all, On 26/09/2011 08:03, Paulraj, Sandeep wrote: > > > > >> Did you apllied all patches, as stated here?: >> >> http://permalink.gmane.org/gmane.comp.boot-loaders.u-boot/108514 >> >> How looks your compile error? > > ah, i did not see the entire list of dependencies. > I did not apply all the

Re: [U-Boot] TR: u-boot SquashFS

2011-09-27 Thread Albert ARIBAUD
Hi Jean-Michel, On 26/09/2011 17:23, Jean-Michel Hautbois wrote: > Hi List, > > >>> I am looking for a u-boot that handles SquashFS filesystem ? >>> Did it exist ? if not can I have some indication or recommendation >>> Because I want to try to upgrade u-boot such that it handles SquashFS >> >> Tu

Re: [U-Boot] [PATCH v2 0/6] tegra2: Add more clock/pinmux functionality

2011-09-27 Thread Albert ARIBAUD
Hi Simon, On 26/09/2011 19:06, Simon Glass wrote: > Hi Albert, > > On Wed, Sep 21, 2011 at 3:40 PM, Simon Glass wrote: >> This adds to the basic clock functionality already available. The concept >> of a peripheral ID is introduced, and all peripheral clock access is done >> using this ID. >> >>

Re: [U-Boot] [PATCH 6/8] arm, davinci, am1808: add lowlevel functions for booting from NOR

2011-09-27 Thread Heiko Schocher
Hello Christian, Christian Riesch wrote: > Hello Heiko, > Thank you for your reply. I have just noticed that the patches have > already been pulled into arm/next so I guess I am quite late with my > comments. I'd like to apologize for this; apparently I need another No problem. Thanks for your re

Re: [U-Boot] [PATCH 6/8] arm, davinci, am1808: add lowlevel functions for booting from NOR

2011-09-27 Thread Christian Riesch
Hello Heiko, >> Which brings me to my next point: AFAIK Texas Instruments's AM18xx >> SoCs, their OMAP-L138, and their DA850 based devices basically differ >> only in the DSP/PRU part of the device. If you are (like in u-boot) >> only interested in the ARM part of chip, they are basically the same

Re: [U-Boot] [PATCH 6/8] arm, davinci, am1808: add lowlevel functions for booting from NOR

2011-09-27 Thread Heiko Schocher
Hello Christian, Christian Riesch wrote: > Hello Heiko, > >>> Which brings me to my next point: AFAIK Texas Instruments's AM18xx >>> SoCs, their OMAP-L138, and their DA850 based devices basically differ >>> only in the DSP/PRU part of the device. If you are (like in u-boot) >>> only interested in

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Nick Thompson
On 26/09/11 19:48, Marek Vasut wrote: > The size of uboot binary grows by a few bytes, but the gain (better type > checking) is worth it. > > Signed-off-by: Marek Vasut > Cc: Wolfgang Denk > Cc: Nick Thompson > Cc: Simon Glass Do you want to cc: Albert ARIBAUD as well? > --- > arch/arm/incl

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Wolfgang Denk
Dear Marek Vasut, In message <1317062895-3847-1-git-send-email-marek.va...@gmail.com> you wrote: > The size of uboot binary grows by a few bytes, but the gain (better type > checking) is worth it. And what _exactly_ are "a few bytes" ? Best regards, Wolfgang Denk -- DENX Software Engineering

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Wolfgang Denk
Dear Marek Vasut, In message <1317062895-3847-1-git-send-email-marek.va...@gmail.com> you wrote: > The size of uboot binary grows by a few bytes, but the gain (better type > checking) is worth it. > > Signed-off-by: Marek Vasut > Cc: Wolfgang Denk > Cc: Nick Thompson > Cc: Simon Glass > --- >

[U-Boot] Problems with all boot-possibilties

2011-09-27 Thread David Pauli
Hey guys, I have a Freescale MPC8313E and want to boot with u.-boot 1.3.0 (there is no newer version avaiable, see also other thread). There are 3 possibilities documented, how to boot. Nothing works: 1. NFS file system: ** The first, easiest possibility to boot and test the i

Re: [U-Boot] [PATCH] powerpc/85xx: corenet_ds: increase console buffer size to 1024

2011-09-27 Thread Wolfgang Denk
Dear Scott Wood, In message <4e80ea72.3090...@freescale.com> you wrote: > > > Do we? We have not had that feature for over a decade and nobody ever > > really suffered from it. Now we have "env -f reset" for almost a > > year, and guess how many percent of the users even know about this > > comman

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 11:32:38 AM Wolfgang Denk wrote: > Dear Marek Vasut, > > In message <1317062895-3847-1-git-send-email-marek.va...@gmail.com> you wrote: > > The size of uboot binary grows by a few bytes, but the gain (better type > > checking) is worth it. > > > > Signed-off-by: Mar

[U-Boot] [PATCH RFC 1/3] nand: Remove static modifier from common functions

2011-09-27 Thread Simon Schwarz
Removed static modifiers from functions that were often duplicated in SPL implementations. Signed-off-by: Simon Schwarz --- drivers/mtd/nand/nand_base.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index

[U-Boot] [PATCH RFC 2/3] nand: Add common functions to nand.h

2011-09-27 Thread Simon Schwarz
Functions often used in SPL are now part of nand.h. Signed-off-by: Simon Schwarz --- include/nand.h | 10 +++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/include/nand.h b/include/nand.h index b4140794..980408a 100644 --- a/include/nand.h +++ b/include/nand.h @@ -135,9

[U-Boot] [PATCH RFC 3/3] Fix regression in SMDK6400

2011-09-27 Thread Simon Schwarz
s3c64xx.c implemented its own nand_read_byte, nand_write_buf and nand_read_buf functions. This provoked a regression when these functions were made public by patch 55f429bb39614a16b1bacc9a8bea9ac01a60bfc8. This deletes these duplicated functions from s3c64xx.c and adds the generic implementations

Re: [U-Boot] [PATCH RFC] Add general nand functions

2011-09-27 Thread Simon Schwarz
On 09/27/2011 02:28 AM, Scott Wood wrote: > On 09/26/2011 03:27 AM, Simon Schwarz wrote: >> On 09/23/2011 07:22 PM, Scott Wood wrote: >>> On 09/23/2011 11:36 AM, Simon Schwarz wrote: Added a nand_base.h header that defines all prototypes of nand_base.c functions. >>> >>> Just add the new

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 11:31:15 AM Wolfgang Denk wrote: > Dear Marek Vasut, > > In message <1317062895-3847-1-git-send-email-marek.va...@gmail.com> you wrote: > > The size of uboot binary grows by a few bytes, but the gain (better type > > checking) is worth it. > > And what _exactly_ are

Re: [U-Boot] [PATCH 6/8] arm, davinci, am1808: add lowlevel functions for booting from NOR

2011-09-27 Thread Christian Riesch
Heiko, On Tue, Sep 27, 2011 at 10:50 AM, Heiko Schocher wrote: >> Did you also read the rest of my last email, the PSC part? > > Yep, and I sent a response here: > > http://lists.denx.de/pipermail/u-boot/2011-September/102340.html No, I meant the last part of the email I sent this morning, http:

[U-Boot] [PATCH v5 1/4] usb: Move ehci.h and ehci-core.h to include/usb directory

2011-09-27 Thread Jana Rapava
From: feste...@gmail.com (Fabio Estevam) Move ehci.h and ehci-core.h to include/usb directory. Cc: Remy Bohmer Cc: Marek Vasut Signed-off-by: Fabio Estevam --- Changes for v2: - changed to proper patch Changes for v3: - merged other USB patches from u-boot-pxa/efikasb - offse

Re: [U-Boot] Problems with all boot-possibilties

2011-09-27 Thread Andy Pont
David wrote... > I have a Freescale MPC8313E and want to boot with u.-boot 1.3.0 (there is no > newer version avaiable, see also other thread). Version 1.3.0 is only a month away from celebrating its 4th birthday and it is highly unlikely that anyone here has the inclination to support it. Ha

Re: [U-Boot] [PATCH v5 1/4] usb: Move ehci.h and ehci-core.h to include/usb directory

2011-09-27 Thread Fabio Estevam
On Tue, Sep 27, 2011 at 7:45 AM, Jana Rapava wrote: > From: feste...@gmail.com (Fabio Estevam) It should be: From: Fabio Estevam Regards, Fabio Estevam ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 4/4] Add USB support for Efika

2011-09-27 Thread Jana Rapava
> Actually I think this is the problem: > writel(ULPI_RWRUN | (u32)reg << ULPI_ADDR_SHIFT, > &ehci->ulpi_viewpoint); > > You cast the u8 * to u32, making the whole first argument of writel() an > u32. > Whereas in the other case, when passing u8, the first argument stays u8 and > the > result

[U-Boot] [PATCH v5 2/4] EHCI: add callback ehci_fixup

2011-09-27 Thread Jana Rapava
Add callback to ehci_fixup to prepare for solving the problem with VBUS reset on Efika. Signed-off-by: Jana Rapava Cc: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - changed to proper patch Changes for v3: - merged other USB patches from u-boot-pxa/efikasb -

[U-Boot] [PATCH v5 3/4] EHCI: adjust for mx5

2011-09-27 Thread Jana Rapava
Add macros and structures needed by Efika USB support code. Move shared offset and bits definitions into common header file. Signed-off-by: Jana Rapava Cc: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - changed to proper patch Changes for v3: - merged other USB p

[U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-27 Thread Jana Rapava
This commit adds USB support for EfikaMX and EfikaSB. Signed-off-by: Jana Rapava Signed-off-by: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - changed to proper patch Changes for v3: - merged other USB patches from u-boot-pxa/efikasb - offset-based access ch

[U-Boot] [PATCH v5 1/4] usb: Move ehci.h and ehci-core.h to include/usb directory

2011-09-27 Thread Fabio Estevam
From: feste...@gmail.com (Fabio Estevam) Move ehci.h and ehci-core.h to include/usb directory. Cc: Remy Bohmer Cc: Marek Vasut Signed-off-by: Fabio Estevam --- Changes for v2: - changed to proper patch Changes for v3: - merged other USB patches from u-boot-pxa/efikasb - offse

Re: [U-Boot] [PATCH v5 1/4] usb: Move ehci.h and ehci-core.h to include/usb directory

2011-09-27 Thread Fabio Estevam
Jana, On Tue, Sep 27, 2011 at 8:07 AM, Fabio Estevam wrote: This is even worse: you sent an email with my name. ferma...@gmail.com is your email address, not mine. You should not change your From field of your gitconfig. > From: feste...@gmail.com (Fabio Estevam) The only required change is h

[U-Boot] [PATCH v2] net: emaclite: Use dynamic allocation

2011-09-27 Thread Michal Simek
Every emaclite instance use own setting. Signed-off-by: Michal Simek --- v2: Free allocated space when private data allocation failed Based on git://git.denx.de/u-boot-microblaze.git emaclite branch --- drivers/net/xilinx_emaclite.c | 41 + 1 files ch

Re: [U-Boot] [PATCH 6/8] arm, davinci, am1808: add lowlevel functions for booting from NOR

2011-09-27 Thread Heiko Schocher
Hello Christian, Sorry didn't realized that there was more at the end of your EMail! Christian Riesch wrote: > Hello Heiko, > Thank you for your reply. I have just noticed that the patches have > already been pulled into arm/next so I guess I am quite late with my > comments. I'd like to apologiz

[U-Boot] [PATCH] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Sanjeev Premi
In absence of this argument, Linux kernel doesn't boot. Default value has been set to 128M to ensure that Linux kernel boots on older EVMs as well. Signed-off-by: Sanjeev Premi Cc: Sandeep Paulraj --- This patch has been created against u-boot-ti/next. include/configs/omap3_evm.h |3 +++

Re: [U-Boot] [PATCH V4] console: Implement pre-console buffer

2011-09-27 Thread Graeme Russ
Hi Vadim, On 27/09/11 08:50, Vadim Bendebury wrote: > On Wed, Aug 31, 2011 at 5:58 AM, Graeme Russ wrote: >> Allow redirection of console output prior to console initialisation to a >> temporary buffer. >> >> To enable this functionality, the board configuration file must define: >> - CONFIG_PRE

Re: [U-Boot] [PATCH v5 2/4] EHCI: add callback ehci_fixup

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 01:01:34 PM Jana Rapava wrote: > Add callback to ehci_fixup to prepare > for solving the problem with VBUS reset on Efika. > > Signed-off-by: Jana Rapava > Cc: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes for v2: > - changed to proper pa

Re: [U-Boot] [PATCH v5 1/4] usb: Move ehci.h and ehci-core.h to include/usb directory

2011-09-27 Thread Jana Rapava
2011/9/27 Fabio Estevam > Jana, > > On Tue, Sep 27, 2011 at 8:07 AM, Fabio Estevam wrote: > > This is even worse: you sent an email with my name. ferma...@gmail.com > is your email address, not mine. > Now I really don't understand where it went wrong. My git send-email log says "From: Fabio Es

[U-Boot] [PATCH] NAND: davinci: choose correct 1-bit h/w ECC reg

2011-09-27 Thread Laurence Withers
In nand_davinci_readecc(), select the correct NANDFECC register based on CONFIG_SYS_NAND_CS rather than hardcoding the choice of NANDF1ECC. This allows 1-bit hardware ECC to work with chip select other than CS2. Note this now matches the usage in nand_davinci_enable_hwecc(), which already had the

Re: [U-Boot] [PATCH v5 2/4] EHCI: add callback ehci_fixup

2011-09-27 Thread Jana Rapava
> what's the _EXACT_ change in this patch since the last revision? I see > you're > adding the changes for whole patchset, not for each single patch, that's > wrong. > > In this changelog are only changes, which touches this single patch and reordering all patches in this patchset is one of them. W

[U-Boot] [PATCH 0/2] SPL: omap4: Fix boot crash in HS devices.

2011-09-27 Thread sricharan
The maximum size of the SPL is curerntly set to 38k bytes. But the maximum SRAM available is 32K in case of HS devieces. So SPL with size greater than 32K bytes does not boot on HS devices. So 1) Reduce the default SPL size by using ddr pre-calculated tables. 2) Restrict the SPL maximum size to 32

[U-Boot] [PATCH 1/2] U-Boot/SPL: omap4: Make ddr pre-calculated timings as default.

2011-09-27 Thread sricharan
All ddr configurations(geometry/timings) are done automatically by detecting the device connected at run time. Though this is a useful feature, making this as a default setting increases the code size by about 2K bytes. This is quite big, especially in the case of SPL which runs from a smaller SRAM

[U-Boot] [PATCH 2/2] SPL: omap4: Reduce the maximum size of SPL to 32K bytes.

2011-09-27 Thread sricharan
The maximum size of SPL is set to 38K bytes. But the maximum size of SPL cannot exceed 32k bytes in case of HS devices. So restrict the size to 32k bytes for compatability with both HS/GP devices. Signed-off-by: sricharan --- include/configs/omap4_common.h |2 +- 1 files changed, 1 insertion

Re: [U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 01:01:36 PM Jana Rapava wrote: > This commit adds USB support for EfikaMX and EfikaSB. > > Signed-off-by: Jana Rapava > Signed-off-by: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- [...] > + > +#ifdef CONFIG_MACH_EFIKASB Please update to mainli

Re: [U-Boot] mkenvimage not working for me.

2011-09-27 Thread David Wagner
Hi, (CCing u-boot mailing list and Mike Frysinger) stdlib.h is indeed missing. EXIT_FAILURE and EXIT_SUCCESS are defined within stdlib.h, so that explains it. How old are you u-boot sources ? compiler.h has been introduced by: commit 37566090766d61beef70c62986b90749920255d8 Author: Mike Frysinger

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Nick Thompson
On 27/09/11 11:21, Marek Vasut wrote: > On Tuesday, September 27, 2011 11:31:15 AM Wolfgang Denk wrote: >> Dear Marek Vasut, >> >> In message <1317062895-3847-1-git-send-email-marek.va...@gmail.com> you >> wrote: >>> The size of uboot binary grows by a few bytes, but the gain (better type >>> chec

Re: [U-Boot] [PATCH] ARM: Convert {in, out}s[bwl] to inline functions

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 01:57:52 PM Nick Thompson wrote: > On 27/09/11 11:21, Marek Vasut wrote: > > On Tuesday, September 27, 2011 11:31:15 AM Wolfgang Denk wrote: > >> Dear Marek Vasut, > >> > >> In message <1317062895-3847-1-git-send-email-marek.va...@gmail.com> you wrote: > >>> The siz

Re: [U-Boot] [PATCH] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Igor Grinberg
On 09/27/11 14:21, Sanjeev Premi wrote: > In absence of this argument, Linux kernel doesn't boot. > > Default value has been set to 128M to ensure that > Linux kernel boots on older EVMs as well. This change affects all EVMs, unless they explicitly change/remove the memsize variable or change the

[U-Boot] [PATCH] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic --- drivers/video/mxc_ipuv3_fb.c | 14 -- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c index a66981c..c4443e8 100644 --- a/drivers/video/mxc_ipuv3_fb.c +++ b/

Re: [U-Boot] [PATCH] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Fabio Estevam
Hi Marek, On Tue, Sep 27, 2011 at 9:09 AM, Marek Vasut wrote: > Signed-off-by: Marek Vasut > Cc: Stefano Babic > --- >  drivers/video/mxc_ipuv3_fb.c |   14 -- >  1 files changed, 12 insertions(+), 2 deletions(-) > > diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3

[U-Boot] ucdragon.com

2011-09-27 Thread Alex
Preferred Domain Availability Notice: ucdragon.com will be listed for auction in a few days. This domain might be useful for you, since you own a domain similar to this domain. To express interest in owning this domain, fill out the simple form here: ucdragon.com Sincerely,Alexander 15500

Re: [U-Boot] [PATCH] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Stefano Babic
On 09/27/2011 02:09 PM, Marek Vasut wrote: > Signed-off-by: Marek Vasut > Cc: Stefano Babic > --- > drivers/video/mxc_ipuv3_fb.c | 14 -- > 1 files changed, 12 insertions(+), 2 deletions(-) > > diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c > index a66981

[U-Boot] [PATCH] spi/eon: add support for new EON spi flash EN25Q32B

2011-09-27 Thread Shaohui Xie
Signed-off-by: Shaohui Xie --- drivers/mtd/spi/eon.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/spi/eon.c b/drivers/mtd/spi/eon.c index 806b44e..4c64494 100644 --- a/drivers/mtd/spi/eon.c +++ b/drivers/mtd/spi/eon.c @@ -41,6 +41,14 @@ static const

Re: [U-Boot] [PATCH] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 02:22:18 PM Fabio Estevam wrote: > Hi Marek, > > On Tue, Sep 27, 2011 at 9:09 AM, Marek Vasut wrote: > > Signed-off-by: Marek Vasut > > Cc: Stefano Babic > > --- > > drivers/video/mxc_ipuv3_fb.c | 14 -- > > 1 files changed, 12 insertions(+), 2 dele

[U-Boot] [PATCH V2] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic --- board/ttcontrol/vision2/vision2.c |6 -- drivers/video/mxc_ipuv3_fb.c |9 + 2 files changed, 9 insertions(+), 6 deletions(-) V2: Configure the LCD via mx51_fb_init diff --git a/board/ttcontrol/vision2/vision2.c b/board/

Re: [U-Boot] [PATCH V2] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Stefano Babic
On 09/27/2011 02:43 PM, Marek Vasut wrote: > Signed-off-by: Marek Vasut > Cc: Stefano Babic > --- > board/ttcontrol/vision2/vision2.c |6 -- > drivers/video/mxc_ipuv3_fb.c |9 + > 2 files changed, 9 insertions(+), 6 deletions(-) > > V2: Configure the LCD via mx51_fb_ini

[U-Boot] [PATCH 1/2] arm/km: add variable waitforne to mgcoge3un

2011-09-27 Thread Holger Brunck
Add this board specific variable to the default environment of this board. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Prafulla Wadaskar --- include/configs/mgcoge3un.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/mgcoge3un.h

[U-Boot] [PATCH 2/2] arm/km/mgcoge3un: enhance "waitforne" feature

2011-09-27 Thread Holger Brunck
The mgcoge3un waits to be released from mgcoge3ne at startup. This patch enhances this feature with the possibility to interrupt this wait if a key is pressed. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Prafulla Wadaskar --- board/keymile/km_arm/km_arm.c | 11

Re: [U-Boot] [PATCH V2] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 02:50:19 PM Stefano Babic wrote: > On 09/27/2011 02:43 PM, Marek Vasut wrote: > > Signed-off-by: Marek Vasut > > Cc: Stefano Babic > > --- > > > > board/ttcontrol/vision2/vision2.c |6 -- > > drivers/video/mxc_ipuv3_fb.c |9 + > > 2 files

Re: [U-Boot] mkenvimage not working for me.

2011-09-27 Thread Nick Thomas
Hi David, Thanks for your prompt reply. The U-Boot I am using comes from the ST Microelectronics. Their STLinux distribution for embedded devices. UBoot appears to be at version 1.3.1 - but I'm not sure if that is an ST version number or not. I suspect that the problems I am having are probably

Re: [U-Boot] [PATCH V2] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Stefano Babic
On 09/27/2011 02:58 PM, Marek Vasut wrote: >> >> Agree with your changes- only they can conflict with the patch I >> submitted recently to switch to CONFIG_VIDEO, see > > Can you possibly put this patch prior to your change and then rebase on top > of > it ? > I can do it Best regards, Stefan

Re: [U-Boot] [PATCH V2] MX5: Make IPU display output and pixel format configurable

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 03:07:12 PM Stefano Babic wrote: > On 09/27/2011 02:58 PM, Marek Vasut wrote: > >> Agree with your changes- only they can conflict with the patch I > >> submitted recently to switch to CONFIG_VIDEO, see > > > > Can you possibly put this patch prior to your change and

Re: [U-Boot] U-Boot build break for m501sk board from Artila

2011-09-27 Thread Jamie Risk
On 27 September 2011 01:27, Wolfgang Denk wrote: > Dear Jamie, > > In message you wrote: > > > > > Not anymore. Because no one fixed this board in the last two years, the > > > board was removed from U-Boot mainline. It is not supported. > ... > > That's too bad. I've been developing for the bo

Re: [U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-27 Thread Jana Rapava
2011/9/27 Marek Vasut > > > /* > > + * EHCI USB > > + */ > > +#ifdef CONFIG_CMD_USB > > +void setup_iomux_usb(void); > > +#else > > +static inline void setup_iomux_usb(void) { } > > +#endif > > + > > Can you introduce efika.h header and move this to the header please. > Should I move all

[U-Boot] [PATCH v3 1/3] ids8313: add support for IDS8313 boards

2011-09-27 Thread Sergej.Stepanov
The patch adds support for IDS8313 boards based on MPC8313 It contains the following components: - both of TSEC's, NOR- and NAND flash, I2C, SPI Signed-off-by: Sergej Stepanov Signed-off-by: Rolf Riehle Signed-off-by: Heiko Schocher Cc: Kim Phillips --- Changes to v2: format issues are

Re: [U-Boot] MPC512x FEC/MII

2011-09-27 Thread Detlev Zundel
Hi Bernhard, > we also get broken output from mii_cmd when the commit which you show > below is applied, reverting it helps. > > Hardware: Our own MPC5121ADS-based board and the MPC5121ADS development > board. > > The commit is titled: > > mpc512x_fec: Move PHY initialization from probe into ini

[U-Boot] [PATCH v3 2/3] ids8313: add related support for IDS8313 boards

2011-09-27 Thread Sergej.Stepanov
The patch adds add related support for IDS8313 boards Signed-off-by: Sergej Stepanov Signed-off-by: Rolf Riehle Signed-off-by: Heiko Schocher Cc: Kim Phillips --- Changes to v2: format issues are fixed split into the patchset using of I/O accessors Changes to v3:

[U-Boot] [PATCH v3 3/3] ids8313: add configuration for IDS8313 boards

2011-09-27 Thread Sergej.Stepanov
The patch adds configuration for IDS8313 boards Signed-off-by: Sergej Stepanov Signed-off-by: Rolf Riehle Signed-off-by: Heiko Schocher Cc: Kim Phillips --- Changes to v2: format issues are fixed split into the patchset Changes to v3: tuning of DDR2 timing include/con

Re: [U-Boot] altbootcmd and failbootcmd

2011-09-27 Thread Detlev Zundel
Hi Thomas, > I already have configured and built and have running u-boot and booting > Linux on my custom MPC8313 based board, all ok so far. Excellent. > I am now trying to enable the altbootcmd and failbootcmd features so in > the event of a image failure or non linux boot I can reboot to a kn

Re: [U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 04:12:18 PM Jana Rapava wrote: > 2011/9/27 Marek Vasut > > > > /* > > > > > > + * EHCI USB > > > + */ > > > +#ifdef CONFIG_CMD_USB > > > +void setup_iomux_usb(void); > > > +#else > > > +static inline void setup_iomux_usb(void) { } > > > +#endif > > > + > >

Re: [U-Boot] [PATCH V4] console: Implement pre-console buffer

2011-09-27 Thread Vadim Bendebury
On Tue, Sep 27, 2011 at 4:22 AM, Graeme Russ wrote: > Hi Vadim, > > On 27/09/11 08:50, Vadim Bendebury wrote: >> On Wed, Aug 31, 2011 at 5:58 AM, Graeme Russ wrote: >>> Allow redirection of console output prior to console initialisation to a >>> temporary buffer. >>> >>> To enable this functional

Re: [U-Boot] mkenvimage not working for me.

2011-09-27 Thread Mike Frysinger
On Tuesday, September 27, 2011 09:02:50 Nick Thomas wrote: > Hi David, please don't top post > The U-Boot I am using comes from the ST Microelectronics. Their STLinux > distribution for embedded devices. > UBoot appears to be at version 1.3.1 - but I'm not sure if that is an ST > version number o

[U-Boot] [PATCHv2] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Sanjeev Premi
In absence of this argument, Linux kernel doesn't boot. Even though many newer boards support 256M, default value has been set to 128M to ensure that default build can boot older EVM variants. Signed-off-by: Sanjeev Premi --- Changes since v1: Removed the string terminators "\0" from defini

Re: [U-Boot] MPC512x FEC/MII

2011-09-27 Thread Schneider, Kolja
Hi Detlev, > -Ursprüngliche Nachricht- > Von: Detlev Zundel [mailto:d...@denx.de] > Gesendet: Dienstag, 27. September 2011 16:28 > An: Bernhard Kaindl > Cc: Schneider, Kolja; u-boot@lists.denx.de > Betreff: Re: [U-Boot] MPC512x FEC/MII > > Hi Bernhard, > > > we also get broken output fro

Re: [U-Boot] [PATCH v2] net: emaclite: Use dynamic allocation

2011-09-27 Thread Mike Frysinger
Acked-by: Mike Frysinger -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] MPC512x FEC/MII

2011-09-27 Thread Detlev Zundel
Hi Kolja, [...] >> > The PHY is only initialized while a network command (such as dhcp, tftp, >> > ...) is being executed. >> >> Well, this is actually in line with the U-Boot design principles of >> initializing a device only if its needed[1]. This principle was >> disregarded regularly in the

Re: [U-Boot] [PATCHv2] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Tom Rini
On Tue, Sep 27, 2011 at 8:00 AM, Sanjeev Premi wrote: > In absence of this argument, Linux kernel doesn't boot. > > Even though many newer boards support 256M, default > value has been set to 128M to ensure that default > build can boot older EVM variants. > > Signed-off-by: Sanjeev Premi But yo

Re: [U-Boot] [PATCH v2 0/6] tegra2: Add more clock/pinmux functionality

2011-09-27 Thread Simon Glass
Hi Albert, On Tue, Sep 27, 2011 at 12:21 AM, Albert ARIBAUD wrote: > Hi Simon, > > On 26/09/2011 19:06, Simon Glass wrote: >> >> Hi Albert, >> >> On Wed, Sep 21, 2011 at 3:40 PM, Simon Glass  wrote: >>> >>> This adds to the basic clock functionality already available. The concept >>> of a periphe

Re: [U-Boot] Including stdlib.h / ldiv_t

2011-09-27 Thread Simon Glass
Hi Mike, On Mon, Sep 26, 2011 at 3:05 PM, Mike Frysinger wrote: > On Monday, September 26, 2011 16:23:01 Simon Glass wrote: >> At the moment including stdlib and including common.h are mutually >> exclusive. This probably makes some sense (why would anyone include >> stdlib.h in U-Boot except wit

[U-Boot] [PATCH] I2C: Add i2c_get/set_bus_speed() to mxc_i2c.c

2011-09-27 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Heiko Schocher --- drivers/i2c/mxc_i2c.c | 32 1 files changed, 24 insertions(+), 8 deletions(-) diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index a805bf6..e12a08a 100644 --- a/drivers/i2c/mxc_i2

Re: [U-Boot] Question: Information regarding MII and PHY

2011-09-27 Thread Andy Fleming
On Thu, Sep 22, 2011 at 7:17 PM, Graeme Russ wrote: > Hi Andy > > On Fri, Sep 23, 2011 at 9:36 AM, Andy Fleming wrote: >> On Thu, Sep 22, 2011 at 6:27 PM, Graeme Russ wrote: > > [snip] > >>> Is there any documentation on how I should build a new MAC and PHY driver >>> from scratch (i.e. what is

[U-Boot] [PATCH V2] I2C: Add i2c_get/set_speed() to mxc_i2c.c

2011-09-27 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Heiko Schocher --- drivers/i2c/mxc_i2c.c | 31 +++ 1 files changed, 23 insertions(+), 8 deletions(-) V2: Drop redundant newline diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index a805bf6..2869d7c 1006

Re: [U-Boot] [PATCHv2] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Premi, Sanjeev
> -Original Message- > From: Tom Rini [mailto:tom.r...@gmail.com] > Sent: Tuesday, September 27, 2011 9:29 PM > To: Premi, Sanjeev > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCHv2] omap3evm: Pass 'mem' argument > to linux kernel > > On Tue, Sep 27, 2011 at 8:00 AM, Sanjeev Pre

[U-Boot] mmc timeouts on omap3evm

2011-09-27 Thread Premi, Sanjeev
Hi, I am currently building u-boot using u-boot-ti/next at f3340ee : arm, davinci, da8xx: add cpuinfo Reading kernel image from MMC leads to these timeout messages. reading uImage mmc_send_cmd: timedout waiting for stat! mmc_send_cmd: timedout waiting for stat! mmc_send_cmd: ti

Re: [U-Boot] [PATCH] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Premi, Sanjeev
> -Original Message- > From: Igor Grinberg [mailto:grinb...@compulab.co.il] > Sent: Tuesday, September 27, 2011 5:35 PM > To: Premi, Sanjeev > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH] omap3evm: Pass 'mem' argument > to linux kernel Sorry missed this mail earlier... > >

Re: [U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-27 Thread Jana Rapava
> > + > > +#ifdef CONFIG_MACH_EFIKASB Please update to mainline, use if (machine_is_efikasb()) { ... } . > To get macro machine_is_efikasb() working, I have to get into mainline these two of your patches in u-boot-marex: 430eacfcf35b1f54b0a1ead989aefe63e2996846 EfikaMX: Add imximage confi

Re: [U-Boot] [PATCH v5 4/4] Add USB support for Efika

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 08:17:27 PM Jana Rapava wrote: > > > + > > > +#ifdef CONFIG_MACH_EFIKASB > > Please update to mainline, use if (machine_is_efikasb()) { ... } . > > > To get macro machine_is_efikasb() working, I have to get into mainline > these two of your patches in u-boot-

Re: [U-Boot] [PATCH] powerpc/85xx: corenet_ds: increase console buffer size to 1024

2011-09-27 Thread Scott Wood
On 09/27/2011 04:45 AM, Wolfgang Denk wrote: > Dear Scott Wood, > > In message <4e80ea72.3090...@freescale.com> you wrote: >> >>> Do we? We have not had that feature for over a decade and nobody ever >>> really suffered from it. Now we have "env -f reset" for almost a >>> year, and guess how many

[U-Boot] [PATCH v6 1/4] usb: Move ehci.h and ehci-core.h to include/usb directory

2011-09-27 Thread Jana Rapava
From: Fabio Estevam Move ehci.h and ehci-core.h to include/usb directory. Signed-off-by: Fabio Estevam Cc: Remy Bohmer Cc: Marek Vasut --- Changes for v5: - reorder patches in patchset - use patch from Fabio Estevam Changes for v6: - fix From field drivers/usb/host/e

Re: [U-Boot] [PATCH 1/5] NAND: Really ignore bad blocks when scrubbing

2011-09-27 Thread Scott Wood
On Mon, Sep 12, 2011 at 06:04:06AM +0200, Marek Vasut wrote: > Signed-off-by: Marek Vasut > Cc: Scott Wood > Cc: Stefano Babic > Cc: Wolfgang Denk > Cc: Detlev Zundel > --- > drivers/mtd/nand/nand_base.c |2 +- > drivers/mtd/nand/nand_util.c | 22 +- > include/linux/

Re: [U-Boot] [PATCH 2/5 V4] NAND: Add nand read.raw and write.raw commands

2011-09-27 Thread Scott Wood
On Fri, Sep 23, 2011 at 03:43:10PM +0200, Marek Vasut wrote: > These commands should work around various "hardware" ECC and BCH methods. > > Signed-off-by: Marek Vasut > Cc: Scott Wood > Cc: Stefano Babic > Cc: Wolfgang Denk > Cc: Detlev Zundel > --- > common/cmd_nand.c | 19 ++

Re: [U-Boot] [PATCH 4/5 V2] NAND: Make page, erase, oob size available via cmd_nand

2011-09-27 Thread Scott Wood
On Thu, Sep 22, 2011 at 03:57:26AM +0200, Marek Vasut wrote: > diff --git a/common/cmd_nand.c b/common/cmd_nand.c > index 72d418c..2f8723f 100644 > --- a/common/cmd_nand.c > +++ b/common/cmd_nand.c > @@ -362,15 +362,34 @@ usage: > > #endif > > -static void nand_print_info(int idx) > +static vo

Re: [U-Boot] [PATCH 5/5] NAND: Add -y option to nand scrub command

2011-09-27 Thread Scott Wood
On Wed, Sep 14, 2011 at 12:20:35AM +0200, Marek Vasut wrote: > This allows the scrub command to scrub without asking the user if he really > wants to scrub the area. Useful in scripts. > > Signed-off-by: Marek Vasut > Cc: Scott Wood > Cc: Stefano Babic > Cc: Wolfgang Denk > Cc: Detlev Zundel

Re: [U-Boot] [U-Boot, v2] mtd: eLBC NAND: remove elbc_fcm_ctrl->oob_poi

2011-09-27 Thread Scott Wood
On Mon, Jul 11, 2011 at 12:29:43PM -, Mike Hench wrote: > From: mhench > > The eLBC NAND driver currently follows up each program/write operation with a > read-back of the page, in order to [ostensibly] fill in ECC data for the > caller. However, the page address used for this read is always

[U-Boot] [PATCH v6 2/4] EHCI: add callback ehci_fixup

2011-09-27 Thread Jana Rapava
Add callback to ehci_fixup to prepare for solving the problem with VBUS reset on Efika. Signed-off-by: Jana Rapava Cc: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v4: - split into patchset - add callback ehci_fixup Changes for v5: - make this the second patch

[U-Boot] [PATCH v6 3/4] EHCI: adjust for mx5

2011-09-27 Thread Jana Rapava
Add macros and structures needed by Efika USB support code. Move shared offset and bits definitions into common header file. Signed-off-by: Jana Rapava Cc: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v4: - split into patchset Changes for v5: - make this the third

[U-Boot] [PATCH v6 4/4] Add USB support for Efika

2011-09-27 Thread Jana Rapava
This commit adds USB support for EfikaMX and EfikaSB. Signed-off-by: Jana Rapava Signed-off-by: Marek Vasut Cc: Remy Bohmer Cc: Stefano Babic --- Changes for v2: - changed to proper patch Changes for v3: - merged other USB patches from u-boot-pxa/efikasb - offset-based access chang

Re: [U-Boot] [PATCHv2] omap3evm: Pass 'mem' argument to linux kernel

2011-09-27 Thread Tom Rini
On Tue, Sep 27, 2011 at 9:43 AM, Premi, Sanjeev wrote: >> -Original Message- >> From: Tom Rini [mailto:tom.r...@gmail.com] >> Sent: Tuesday, September 27, 2011 9:29 PM >> To: Premi, Sanjeev >> Cc: u-boot@lists.denx.de >> Subject: Re: [U-Boot] [PATCHv2] omap3evm: Pass 'mem' argument >> to l

Re: [U-Boot] U-Boot build break for m501sk board from Artila

2011-09-27 Thread Jamie Risk
On 27 September 2011 01:27, Wolfgang Denk wrote: > > > #if defined(CONFIG_AT91RM9200) > > -# include > > +# include > > #elif defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9G20) || \ > > defined(CONFIG_AT91SAM9XE) > > -# include > > +# include > > #elif defined(CONFIG_AT91SAM

Re: [U-Boot] [PATCH 4/5 V2] NAND: Make page, erase, oob size available via cmd_nand

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 09:01:53 PM Scott Wood wrote: > On Thu, Sep 22, 2011 at 03:57:26AM +0200, Marek Vasut wrote: > > diff --git a/common/cmd_nand.c b/common/cmd_nand.c > > index 72d418c..2f8723f 100644 > > --- a/common/cmd_nand.c > > +++ b/common/cmd_nand.c > > > > @@ -362,15 +362,34 @@

Re: [U-Boot] [PATCH v6 2/4] EHCI: add callback ehci_fixup

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 09:24:15 PM Jana Rapava wrote: > Add callback to ehci_fixup to prepare > for solving the problem with VBUS reset on Efika. > > Signed-off-by: Jana Rapava > Cc: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes for v4: > - split into patchset

Re: [U-Boot] [PATCH v6 3/4] EHCI: adjust for mx5

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 09:24:16 PM Jana Rapava wrote: > Add macros and structures needed by Efika USB support code. > Move shared offset and bits definitions into common header file. > > Signed-off-by: Jana Rapava > Cc: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes

Re: [U-Boot] [PATCH v6 4/4] Add USB support for Efika

2011-09-27 Thread Marek Vasut
On Tuesday, September 27, 2011 09:24:17 PM Jana Rapava wrote: > This commit adds USB support for EfikaMX and EfikaSB. > > Signed-off-by: Jana Rapava > Signed-off-by: Marek Vasut > Cc: Remy Bohmer > Cc: Stefano Babic > --- > Changes for v2: > - changed to proper patch > Changes for v3: >

Re: [U-Boot] [PATCH 4/5 V2] NAND: Make page, erase, oob size available via cmd_nand

2011-09-27 Thread Scott Wood
On 09/27/2011 02:38 PM, Marek Vasut wrote: > On Tuesday, September 27, 2011 09:01:53 PM Scott Wood wrote: >> On Thu, Sep 22, 2011 at 03:57:26AM +0200, Marek Vasut wrote: >>> + /* Set geometry info */ >>> + memset(buf, 0, bufsz); >>> + sprintf(buf, "%x", nand->writesize); >>> + setenv("nand_

  1   2   >