Re: [U-Boot] [PATCH 2/2] calimain: Generate random MAC address for factory tests

2013-01-09 Thread Christian Riesch
Hello Wolfgang, Thank you again for your comments. On 2013-01-08 18:39, Wolfgang Denk wrote: Dear Christian Riesch, In message <6cc4810c-1e2e-4ebf-912a-96936f035...@mary.at.omicron.at> you wrote: Signed-off-by: Christian Riesch --- board/omicron/calimain/calimain.c | 31 ++

Re: [U-Boot] [PATCH 1/2] net: Remove call of srand from eth_random_enetaddr()

2013-01-09 Thread Wolfgang Denk
Dear Christian Riesch, In message you wrote: > > > I don't like this change. What exactly is wrong with using the timer > > here? It is probably much more random that the (so-called) > > "un-initialized" memory you suggest to use instead. > > On the AM1808 SoC the counter is reset to zero on

Re: [U-Boot] [PATCH 2/2] calimain: Generate random MAC address for factory tests

2013-01-09 Thread Wolfgang Denk
Dear Christian Riesch, In message <50ed2b84.2080...@omicron.at> you wrote: > > > What exactly is your justification for such a change? Please > > elucidate... > > Actually I do not change anything ;-) Why do you need a patch then? :-P > > NAK! You are but duplicating the code already present

Re: [U-Boot] [PATCH V2] fs: fat: Fix mkcksum() function parameters

2013-01-09 Thread Marek Vasut
Dear Aaron Williams, > Hi Marek, > > This patch is broken. It breaks detecting duplicate filenames. The > problem is that you are using sizeof(name) and sizeof(ext). This does > not work since this just reports the size of the pointer in gcc 4.7, > which according to our compiler guy is the corre

[U-Boot] [PATCH V6 0/4] Add support for FIMD and DP on SMDK5250

2013-01-09 Thread Ajay Kumar
[PATCH V6 1/4] EXYNOS5: Change parent clock of FIMD to MPLL [PATCH V6 2/4] EXYNOS: Add dummy definition to fix compilation dependency on CONFIG_EXYNOS_MIPI_DSIM [PATCH V6 3/4] video: Modify exynos_fimd driver to support LCD console [PATCH V6 4/4] EXYNOS5: Add support for FIMD and DP a

[U-Boot] [PATCH V6 1/4] EXYNOS5: Change parent clock of FIMD to MPLL

2013-01-09 Thread Ajay Kumar
With VPLL as source clock to FIMD, Exynos DP Initializaton was failing sometimes with unstable clock. Changing FIMD source to MPLL resolves this issue. Signed-off-by: Ajay Kumar Acked-by: Simon Glass Acked-by: Donghwa Lee --- Changes in V2: -- Fix commit message. Had written VPLL instead of MP

[U-Boot] [PATCH V6 3/4] video: Modify exynos_fimd driver to support LCD console

2013-01-09 Thread Ajay Kumar
Currently, exynos FIMD driver is being used to support only TIZEN LOGOs. In order to get LCD console, we need to enable half word swap feature of FIMD and use 16 BPP. LCD console and proprietary Logo cannot be used simultaneously. We use "logo_on" field inside vidinfo_t structure to decide whether

[U-Boot] [PATCH 4/4] EXYNOS5: Add support for FIMD and DP

2013-01-09 Thread Ajay Kumar
Add panel_info structure required by LCD driver and DP panel platdata for SMDK5250. Add GPIO configuration for LCD. Enable FIMD and DP support on SMDK5250. DP Panel size: 2560x1600. We use 16BPP resolution to get LCD console. Signed-off-by: Ajay Kumar Acked-by: Simon Glass --- changes in V2: --

[U-Boot] [PATCH V6 2/4] EXYNOS: Add dummy definition to fix compilation dependency on CONFIG_EXYNOS_MIPI_DSIM

2013-01-09 Thread Ajay Kumar
When only DP is used, we need not enable CONFIG_EXYNOS_MIPI_DSIM. But if we do not select CONFIG_EXYNOS_MIPI_DSIM, exynos_fb.c throws error saying exynos_mipi_dsi_init() not defined. So, we add dummy definition for exynos_mipi_dsi_init when CONFIG_EXYNOS_MIPI_DSIM is not defined. Signed-off-by: Aj

[U-Boot] [U-Boot Web-Documentation misses command nand]

2013-01-09 Thread Christoph Petzold
Hi, why is it, that the documentation in http://www.denx.de/wiki/view/DULG/Manual misses the U-Boot "nand" command? For newbies like me the web manual is one of the first points to start when trying to understand how to accomplish a specific boot task with the help of U-Boot. The sources conta

[U-Boot] [PATCH v4 0/6] Improve default environment for easy use

2013-01-09 Thread Otavio Salvador
This patchset improves the default environment of machines currently supported in OpenEmbedded and Yocto to make it compatible with mainline and Freescale BSP Linux kernel. A new patch has been add to change the format in mx6qsabrelite in environment setting and already merged patches removed fro

[U-Boot] [PATCH v4 1/6] mx6qsabrelite: Use tabs to environment setting

2013-01-09 Thread Otavio Salvador
This rework the environment to use tabs for environment setting as done in other boards. Signed-off-by: Otavio Salvador --- Changes in v4: None Changes in v3: None Changes in v2: - New patch include/configs/mx6qsabrelite.h | 66 +++ 1 file changed, 33 inser

[U-Boot] [PATCH v4 2/6] mx28evk: We shouldn't hardcode a rootfs filesystem type

2013-01-09 Thread Otavio Salvador
For a generic environment, we shouldn't have a fixed rootfs filesystem so we drop it from env. Signed-off-by: Otavio Salvador --- Changes in v4: None Changes in v3: None Changes in v2: - reformat environment change to fit in 80 cols include/configs/mx28evk.h |8 +++- 1 file changed, 3

[U-Boot] [PATCH v4 3/6] mx28evk: Add support to dynamically choose between ftd use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Changes in v2: - Allow use of dynamic/static ip - Allow forc

[U-Boot] [PATCH v4 4/6] mx53loco: Add support to dynamically choose between ftd use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Changes in v2: - Allow use of dynamic/static ip - Allow forc

[U-Boot] [PATCH v4 5/6] mx6qsabrelite: Add support to dynamically choose between ftd use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Changes in v2: - Allow use of dynamic/static ip - Allow forc

[U-Boot] [PATCH v4 6/6] mx6qsabre{auto, sd}: Add support to dynamically choose between ftd use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Changes in v2: - Allow use of dynamic/static ip - Allow forc

Re: [U-Boot] uboot and Ethernet Controller issue

2013-01-09 Thread Wolfgang Denk
Dear Sandeep C R, In message you wrote: > > The porting was done long back and now linux (2.6.24) also was ported. The > observation is still there with the Linux also. Please let me know if it > has to do with some configuration of 82551. Sorry, I fail to understand why you are now porting Lin

Re: [U-Boot] [PATCH v4 3/6] mx28evk: Add support to dynamically choose between ftd use or not

2013-01-09 Thread Fabio Estevam
On Wed, Jan 9, 2013 at 8:20 AM, Otavio Salvador wrote: > Signed-off-by: Otavio Salvador > --- > Changes in v4: > - Use a warning, instead of error when failing to fetch fdt > - Drop exit use > - Fix netboot > - Use fdt instead of ftd Subject still uses 'ftd'. It is better to make it consistent.

Re: [U-Boot] [PATCH v4 3/6] mx28evk: Add support to dynamically choose between ftd use or not

2013-01-09 Thread Otavio Salvador
On Wed, Jan 9, 2013 at 9:29 AM, Fabio Estevam wrote: > On Wed, Jan 9, 2013 at 8:20 AM, Otavio Salvador > wrote: >> Signed-off-by: Otavio Salvador >> --- >> Changes in v4: >> - Use a warning, instead of error when failing to fetch fdt >> - Drop exit use >> - Fix netboot >> - Use fdt instead of f

[U-Boot] [PATCH v5 0/6] Improve default environment for easy use

2013-01-09 Thread Otavio Salvador
This patchset improves the default environment of machines currently supported in OpenEmbedded and Yocto to make it compatible with mainline and Freescale BSP Linux kernel. A new patch has been add to change the format in mx6qsabrelite in environment setting and already merged patches removed fro

[U-Boot] [PATCH v5 1/6] mx6qsabrelite: Use tabs to environment setting

2013-01-09 Thread Otavio Salvador
This rework the environment to use tabs for environment setting as done in other boards. Signed-off-by: Otavio Salvador --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: - New patch include/configs/mx6qsabrelite.h | 66 +++ 1 fi

[U-Boot] [PATCH v5 2/6] mx28evk: We shouldn't hardcode a rootfs filesystem type

2013-01-09 Thread Otavio Salvador
For a generic environment, we shouldn't have a fixed rootfs filesystem so we drop it from env. Signed-off-by: Otavio Salvador --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: - reformat environment change to fit in 80 cols include/configs/mx28evk.h |8 +++-

[U-Boot] [PATCH v5 3/6] mx28evk: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v5: - Change subject - Reword the warning Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Change

[U-Boot] [PATCH v5 5/6] mx6qsabrelite: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v5: - Change subject - Reword the warning Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Change

[U-Boot] [PATCH v5 6/6] mx6qsabre{auto, sd}: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v5: - Change subject - Reword the warning Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Change

[U-Boot] [PATCH v5 4/6] mx53loco: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Otavio Salvador
Signed-off-by: Otavio Salvador --- Changes in v5: - Change subject - Reword the warning Changes in v4: - Use a warning, instead of error when failing to fetch fdt - Drop exit use - Fix netboot - Use fdt instead of ftd Changes in v3: - Add loadfdt - Use loadfdt - Call exit to abort script Change

Re: [U-Boot] [PATCH v5 4/6] mx53loco: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Liu Hui-R64343
>-Original Message- >From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] >On Behalf Of Otavio Salvador >Sent: Wednesday, January 09, 2013 7:58 PM >To: U-Boot Mailing List >Cc: Estevam Fabio-R49496; Otavio Salvador >Subject: [U-Boot] [PATCH v5 4/6] mx53loco: Add support

Re: [U-Boot] [PATCH v5 1/6] mx6qsabrelite: Use tabs to environment setting

2013-01-09 Thread Liu Hui-R64343
>-Original Message- >From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] >On Behalf Of Otavio Salvador >Sent: Wednesday, January 09, 2013 7:58 PM >To: U-Boot Mailing List >Cc: Estevam Fabio-R49496; Otavio Salvador >Subject: [U-Boot] [PATCH v5 1/6] mx6qsabrelite: Use tab

Re: [U-Boot] [PATCH v5 6/6] mx6qsabre{auto, sd}: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Liu Hui-R64343
>-Original Message- >From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] >On Behalf Of Otavio Salvador >Sent: Wednesday, January 09, 2013 7:58 PM >To: U-Boot Mailing List >Cc: Estevam Fabio-R49496; Otavio Salvador >Subject: [U-Boot] [PATCH v5 6/6] mx6qsabre{auto, sd}: A

Re: [U-Boot] [PATCH v5 5/6] mx6qsabrelite: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Liu Hui-R64343
>-Original Message- >From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] >On Behalf Of Otavio Salvador >Sent: Wednesday, January 09, 2013 7:58 PM >To: U-Boot Mailing List >Cc: Estevam Fabio-R49496; Otavio Salvador >Subject: [U-Boot] [PATCH v5 5/6] mx6qsabrelite: Add sup

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Tom Rini
On Tue, Jan 08, 2013 at 11:57:20PM +0100, Albert ARIBAUD wrote: > Signed-off-by: Albert ARIBAUD > --- > drivers/mtd/nand/Makefile |4 > 1 file changed, 4 insertions(+) > > diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile > index 2c3812c..c77c0c4 100644 > --- a/drivers

Re: [U-Boot] [PATCH 2/2] pcm051: Add support for Phytec phyCORE-AM335x

2013-01-09 Thread Lars Poeschel
Hello Wolfgang, thank you for your fast review! On Tuesday 08 January 2013 at 19:58:37, Wolfgang Denk wrote: > > +/* DDR RAM defines */ > > +#define DDR_CLK_MHZ303 > > Is this really correct? 303 ?? I am quite sure, I read this in a datasheet, but I can not find it anymore. I

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

2013-01-09 Thread Albert ARIBAUD
Hello Tom, The following changes since commit 7528cf5f016b5b8b8b12b373f6f31a10bf89233d: Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-01-08 14:59:37 +0100) are available in the git repository at: git://git.denx.de/u-boot-arm.git master for you to fetch changes up to 61

[U-Boot] [PATCH] mx51evk: Let Add DVI output support

2013-01-09 Thread Fabio Estevam
Add DVI output support and make it the default video output. Currently the CLAA WVGA panel is supported, but this panel has to be purchased separately, so using the DVI output as the default would allow more people to try the splash screen feature on a mx51evk. If someone still wants to use the C

[U-Boot] [PATCH v2] mx51evk: Add DVI output support

2013-01-09 Thread Fabio Estevam
Add DVI output support and make it the default video output. Currently the CLAA WVGA panel is supported, but this panel has to be purchased separately, so using the DVI output as the default would allow more people to try the splash screen feature on a mx51evk. If someone still wants to use the C

[U-Boot] [PATCH v3] mx53loco: Add support for SEIKO 4.3'' WVGA panel

2013-01-09 Thread Fabio Estevam
Add support for the Seiko 4.3'' WVGA panel on mx53loco. By default, the CLAA WVGA panel is selected. In order to support the Seiko panel, the enviroment variable 'panel' must be set to 'seiko'. Signed-off-by: Fabio Estevam --- Changes since v2: - Simplify lcd detection logic Changes since v1: -

Re: [U-Boot] [PATCH] arm: at91sam9x5: add dataflash boot support

2013-01-09 Thread Andreas Bießmann
Dear Bo Shen, Albert Aribaud agreed to apply this one to u-boot-arm/master for the upcoming release. On 07.12.2012 08:37, Bo Shen wrote: > Add dataflash boot support on at91sam9x5ek board > > Signed-off-by: Bo Shen Acked-by: Andreas Bießmann > --- > boards.cfg |1 + >

Re: [U-Boot] [PATCH V2] drivers/block/systemace - added missing "else" in "ace_writew"

2013-01-09 Thread Michal Simek
2013/1/3 Alexey Brodkin : > System ACE compact flash controller supports either 8-bit (default) or > 16-bit data transfers. And in corresponding driver we need to implement > read/write of 16-bit data words properly for both modes of operation. > > In existing code if width==8 both branches get exe

Re: [U-Boot] [PATCH] tegra30: fix UART2 pinmux table entry

2013-01-09 Thread Allen Martin
On Tue, Jan 08, 2013 at 07:46:03PM -0800, Stephen Warren wrote: > On 01/08/2013 06:23 PM, Allen Martin wrote: > > UART2_TXD and UART2_RXD mux 0 SFIO entries should be IRDA not UARTB. > > IRDA is just a needlessly different synonym for UARTB; there shouldn't > be any mention of IRDA in the pinmux c

[U-Boot] [PATCH] tegra30: cardhu: fix UART2 pinmux settings

2013-01-09 Thread Allen Martin
Use UARTB instead of IRDA synonym for cardhu pinmux settings to match tegra30 pinmux tables. Signed-off-by: Allen Martin --- board/nvidia/cardhu/pinmux-config-cardhu.h |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/nvidia/cardhu/pinmux-config-cardhu.h b/board/n

Re: [U-Boot] [PATCH v5 4/6] mx53loco: Add support to dynamically choose between fdt use or not

2013-01-09 Thread Stefano Babic
On 09/01/2013 12:57, Otavio Salvador wrote: > Signed-off-by: Otavio Salvador > --- Hi Otavio, > Changes in v5: > - Change subject > - Reword the warning > > Changes in v4: > - Use a warning, instead of error when failing to fetch fdt > - Drop exit use > - Fix netboot > - Use fdt instead of ftd

Re: [U-Boot] [PATCH v3] mx6: Add workaround for ARM errata

2013-01-09 Thread Stefano Babic
On 05/01/2013 03:07, Fabio Estevam wrote: > From: Fabio Estevam > > Add workaround for the following ARM errata: 743622 and 751472. > > The motivation for this change is the following kernel commit 62e4d357a > (ARM: 7609/1: disable errata work-arounds which access > secure registers), which rem

Re: [U-Boot] [PATCH v3] mx53loco: Add support for SEIKO 4.3'' WVGA panel

2013-01-09 Thread Stefano Babic
On 09/01/2013 16:10, Fabio Estevam wrote: > Add support for the Seiko 4.3'' WVGA panel on mx53loco. > > By default, the CLAA WVGA panel is selected. > > In order to support the Seiko panel, the enviroment variable 'panel' must be > set to 'seiko'. > > Signed-off-by: Fabio Estevam > --- Applied

Re: [U-Boot] [PATCH] tegra30: fix UART2 pinmux table entry

2013-01-09 Thread Stephen Warren
On 01/09/2013 10:58 AM, Allen Martin wrote: > On Tue, Jan 08, 2013 at 07:46:03PM -0800, Stephen Warren wrote: >> On 01/08/2013 06:23 PM, Allen Martin wrote: >>> UART2_TXD and UART2_RXD mux 0 SFIO entries should be IRDA not UARTB. >> >> IRDA is just a needlessly different synonym for UARTB; there sh

Re: [U-Boot] [PATCH] tegra30: cardhu: fix UART2 pinmux settings

2013-01-09 Thread Stephen Warren
On 01/09/2013 11:14 AM, Allen Martin wrote: > Use UARTB instead of IRDA synonym for cardhu pinmux settings to match > tegra30 pinmux tables. This seems fine as far as it goes, but I'd suggest deleting the IRDA value from the pinmux driver's enum too, so nobody can use it any more.

Re: [U-Boot] [PATCH] tegra30: cardhu: fix UART2 pinmux settings

2013-01-09 Thread Allen Martin
On Wed, Jan 09, 2013 at 10:49:10AM -0800, Stephen Warren wrote: > On 01/09/2013 11:14 AM, Allen Martin wrote: > > Use UARTB instead of IRDA synonym for cardhu pinmux settings to match > > tegra30 pinmux tables. > > This seems fine as far as it goes, but I'd suggest deleting the IRDA > value from t

Re: [U-Boot] [PULL] Please pull u-boot-atmel/master

2013-01-09 Thread Albert ARIBAUD
Hi Andreas, On Sun, 9 Dec 2012 22:54:09 +0100, Andreas Bießmann wrote: > Dear Albert Aribaud, > > please consider the following board related changes for u-boot-arm/master. > > The following changes since commit b8a7c467960ffb4d5a5e1eef5f7783fb6f594542: > > Merge branch 'u-boot-imx/master'

Re: [U-Boot] [PATCH 2/2] pcm051: Add support for Phytec phyCORE-AM335x

2013-01-09 Thread Tom Rini
On Tue, Jan 08, 2013 at 07:58:37PM +0100, Wolfgang Denk wrote: > Dear Lars, > > In message <1357663926-15937-2-git-send-email-la...@wh2.tu-dresden.de> you > wrote: > ... > > arch/arm/include/asm/arch-am33xx/ddr_defs.h | 18 ++ > > board/phytec/pcm051/Makefile| 46 > > bo

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

2013-01-09 Thread Tom Rini
On Wed, Jan 09, 2013 at 03:43:04PM +0100, Albert ARIBAUD wrote: > Hello Tom, > > The following changes since commit > 7528cf5f016b5b8b8b12b373f6f31a10bf89233d: > > Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-01-08 > 14:59:37 +0100) > > are available in the git repository

[U-Boot] Regarding M29W128GL Support in u-boot

2013-01-09 Thread Ramesh K Khokhani
Hi Friends. We have M5329EVB with JTAG. That board has LHF00L31 (2MB) Flash. And we have source code of u-boot, linux Kernel and rootfs with required patch (so called LTIB) which is available in freescale website. Now we have our custom board with same processor MCF5329 and M29W128GL NOR Flash

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Scott Wood
On 01/08/2013 04:57:20 PM, Albert ARIBAUD wrote: Signed-off-by: Albert ARIBAUD --- drivers/mtd/nand/Makefile |4 1 file changed, 4 insertions(+) diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile index 2c3812c..c77c0c4 100644 --- a/drivers/mtd/nand/Makefile +++ b/driv

Re: [U-Boot] [RFC] mmc:fix: Increase the timeout value for SDHCI_send_command()

2013-01-09 Thread Wolfgang Denk
Dear Lukasz Majewski, In message <1357665792-8141-1-git-send-email-l.majew...@samsung.com> you wrote: > I'd like to ask for your opinion about the following problem: I cannot comment on the problem - only a bit about the proposed patch ;-) > From a brief checking I can say that it happens when w

Re: [U-Boot] [PATCH] MPC8308: Fixup clocks in PCI Host configuration

2013-01-09 Thread Wolfgang Denk
Dear Barry Grussling, In message <1357669446-29334-1-git-send-email-ba...@grussling.com> you wrote: > While trying to bring up a custom MPC8308 based board I found > that the clocking was wrong. The comment in > include/configs/mpc8308_p1m.h led me to believe > setting HRCWH_PCI_HOST and HRCWH_PC

Re: [U-Boot] [U-Boot Web-Documentation misses command nand]

2013-01-09 Thread Wolfgang Denk
Dear Christoph Petzold, In message <50ed1d4e.4050...@gmx.de> you wrote: > > why is it, that the documentation in > http://www.denx.de/wiki/view/DULG/Manual > misses the U-Boot "nand" command? For newbies like me the web manual is > one of the first points to start when trying to understand how t

[U-Boot] [PATCH] tegra: remove IRDA pinmux synonym

2013-01-09 Thread Allen Martin
IRDA is a synonym for UARTB in tegra pinmux, remove all usage of this synonym and replace with UARTB to disambiguate. Signed-off-by: Allen Martin --- arch/arm/cpu/tegra-common/board.c |2 +- arch/arm/cpu/tegra20-common/funcmux.c |4 ++-- arch/arm/cpu/tegra20-common/pinmux

Re: [U-Boot] [PATCH] tegra: remove IRDA pinmux synonym

2013-01-09 Thread Stephen Warren
On 01/09/2013 01:52 PM, Allen Martin wrote: > IRDA is a synonym for UARTB in tegra pinmux, remove all usage of this > synonym and replace with UARTB to disambiguate. Reviewed-by: Stephen Warren ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.

Re: [U-Boot] [PATCH][v4] powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands

2013-01-09 Thread York Sun
On 01/07/2013 04:01 PM, james.y...@freescale.com wrote: > From: James Yang > > This patch adds the ability for the FSL DDR interactive debugger to > automatically run the sequence of commands stored in the ddr_interactive > environment variable. Commands are separated using ';'. > > ddr_interac

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Tom Rini
On Wed, Jan 09, 2013 at 01:53:21PM -0600, Scott Wood wrote: > On 01/08/2013 04:57:20 PM, Albert ARIBAUD wrote: > > > >Signed-off-by: Albert ARIBAUD > >--- > > drivers/mtd/nand/Makefile |4 > > 1 file changed, 4 insertions(+) > > > >diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/

Re: [U-Boot] [PATCH] Make patman usable outside of u-boot tree

2013-01-09 Thread Doug Anderson
Vadim, Thanks for the patch! Looks good in general, though please add the "patman" prefix to the first line of your commit message. On Wed, Jan 9, 2013 at 1:13 PM, Vadim Bendebury wrote: > To make it usable in git trees not providing a patch checker > implementation, add a command line option,

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Scott Wood
On 01/09/2013 03:38:22 PM, Tom Rini wrote: On Wed, Jan 09, 2013 at 01:53:21PM -0600, Scott Wood wrote: > On 01/08/2013 04:57:20 PM, Albert ARIBAUD wrote: > > > >Signed-off-by: Albert ARIBAUD > >--- > > drivers/mtd/nand/Makefile |4 > > 1 file changed, 4 insertions(+) > > > >diff --git a/

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Scott Wood
On 01/09/2013 03:38:22 PM, Tom Rini wrote: On Wed, Jan 09, 2013 at 01:53:21PM -0600, Scott Wood wrote: > On 01/08/2013 04:57:20 PM, Albert ARIBAUD wrote: > > > >Signed-off-by: Albert ARIBAUD > >--- > > drivers/mtd/nand/Makefile |4 > > 1 file changed, 4 insertions(+) > > > >diff --git a/

[U-Boot] [PATCH] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
To make it usable in git trees not providing a patch checker implementation, add a command line option, allowing to suppress patch check. While we are at it, sort debug options alphabetically. . unit test passes: $ ./patman -t . successfully used patman in the autotest tree to gene

[U-Boot] [PATCH] Make patman usable outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
To make it usable in git trees not providing a patch checker implementation, add a command line option, allowing to suippress patch check. While we are at it, sort debug options alphabetically. . unit test passes: $ ./patman -t . successfully used patman in the autotest tree to gen

Re: [U-Boot] [PATCH] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
On Wed, Jan 9, 2013 at 2:01 PM, Vadim Bendebury wrote: > To make it usable in git trees not providing a patch checker > implementation, add a command line option, allowing to suppress patch > check. While we are at it, sort debug options alphabetically. > >. unit test passes: > $ ./patman

Re: [U-Boot] [PATCH] Make patman usable outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
On Wed, Jan 9, 2013 at 2:13 PM, Simon Glass wrote: > Hi Vadim, > > Looks good! Please can you add a single character option? > Simon, I could not think of a good single letter option to pick, so I did not, but if you have a suggestion I implement it. > Can you also please add an option to skip t

Re: [U-Boot] [PATCH] Make patman usable outside of u-boot tree

2013-01-09 Thread Simon Glass
Hi Vadim, On Wed, Jan 9, 2013 at 2:16 PM, Vadim Bendebury wrote: > On Wed, Jan 9, 2013 at 2:13 PM, Simon Glass wrote: >> Hi Vadim, >> >> Looks good! Please can you add a single character option? >> > > Simon, I could not think of a good single letter option to pick, so I > did not, but if you ha

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/09/2013 05:06 PM, Scott Wood wrote: > On 01/09/2013 03:38:22 PM, Tom Rini wrote: >> On Wed, Jan 09, 2013 at 01:53:21PM -0600, Scott Wood wrote: >>> On 01/08/2013 04:57:20 PM, Albert ARIBAUD wrote: Signed-off-by: Albert ARIBAUD --

Re: [U-Boot] [PATCH] Make patman usable outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
On Wed, Jan 9, 2013 at 2:22 PM, Simon Glass wrote: > Hi Vadim, > > On Wed, Jan 9, 2013 at 2:16 PM, Vadim Bendebury wrote: >> On Wed, Jan 9, 2013 at 2:13 PM, Simon Glass wrote: >>> Hi Vadim, >>> >>> Looks good! Please can you add a single character option? >>> >> >> Simon, I could not think of a

Re: [U-Boot] [PATCH] Fix SPL build for non-ARM targets

2013-01-09 Thread Scott Wood
On 01/09/2013 04:25:46 PM, Tom Rini wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/09/2013 05:06 PM, Scott Wood wrote: > BTW, the conflicting patch was > 5846b11e8810f0ecc15e78b383b7709b9b785580 ("am33xx_spl_bch: simple > SPL nand loader for AM33XX"). It's a NAND patch, in > drivers

Re: [U-Boot] [PATCH][v4] powerpc/mpc8xxxx: FSL DDR debugger auto run of stored commands

2013-01-09 Thread York Sun
On 01/09/2013 01:03 PM, York Sun wrote: > On 01/07/2013 04:01 PM, james.y...@freescale.com wrote: >> From: James Yang >> >> This patch adds the ability for the FSL DDR interactive debugger to >> automatically run the sequence of commands stored in the ddr_interactive >> environment variable. Comm

Re: [U-Boot] [PATCH] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
On Wed, Jan 9, 2013 at 2:57 PM, Doug Anderson wrote: > Vadim, > > On Wed, Jan 9, 2013 at 2:07 PM, Vadim Bendebury wrote: +parser.add_option('--no-check', action='store_true', dest='no_check', + default=False, + help="Don't check for patch complianc

Re: [U-Boot] [PATCH] patman: Allow use outside of u-boot tree

2013-01-09 Thread Doug Anderson
Vadim, On Wed, Jan 9, 2013 at 2:07 PM, Vadim Bendebury wrote: >>> +parser.add_option('--no-check', action='store_true', dest='no_check', >>> + default=False, >>> + help="Don't check for patch compliance") >> >> IMHO It would be slightly better to use action='stor

[U-Boot] [PATCH] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
To make it usable in git trees not providing a patch checker implementation, add a command line option, allowing to suppress patch check. While we are at it, sort debug options alphabetically. Also, do not raise an exception if checkpatch.pl is not found - just print an error message suggesting to

[U-Boot] [PATCH v2] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
To make it usable in git trees not providing a patch checker implementation, add a command line option, allowing to suppress patch check. While we are at it, sort debug options alphabetically. Also, do not raise an exception if checkpatch.pl is not found - just print an error message suggesting to

Re: [U-Boot] [PATCH 0/3 V5] EXYNOS5: MAX77686 add FDT support

2013-01-09 Thread Minkyu Kang
On 09/01/13 16:03, Rajeshwari Shinde wrote: > Add FDT support to PMIC MAX77686 chip. > > Changes in V2: > - Changed chip address from 06 to 6. > - Corrected indentation errors. > Changes in V3: > - Rebased on top of the latest implementation > of PMIC > Changes in V

Re: [U-Boot] [PATCH V6 0/4] Add support for FIMD and DP on SMDK5250

2013-01-09 Thread Minkyu Kang
On 09/01/13 15:42, Ajay Kumar wrote: > [PATCH V6 1/4] EXYNOS5: Change parent clock of FIMD to MPLL > [PATCH V6 2/4] EXYNOS: Add dummy definition to fix compilation dependency on > CONFIG_EXYNOS_MIPI_DSIM > [PATCH V6 3/4] video: Modify exynos_fimd driver to support LCD console > [PATCH V

Re: [U-Boot] [PATCH v2] patman: Allow use outside of u-boot tree

2013-01-09 Thread Doug Anderson
Vadim, Looks great with one last nit... On Wed, Jan 9, 2013 at 4:23 PM, Vadim Bendebury wrote: > + > +print >> sys.stderr, ('Cannot find checkpatch.pl - please put it in your > ' + > +'~/bin directory or use --no_patch') > +sys.exit(1) s/no_patch/no-patch __

[U-Boot] [PATCH v3] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
To make it usable in git trees not providing a patch checker implementation, add a command line option, allowing to suppress patch check. While we are at it, sort debug options alphabetically. Also, do not raise an exception if checkpatch.pl is not found - just print an error message suggesting to

[U-Boot] [PATCH v4] patman: Allow use outside of u-boot tree

2013-01-09 Thread Vadim Bendebury
To make it usable in git trees not providing a patch checker implementation, add a command line option, allowing to suppress patch check. While we are at it, sort debug options alphabetically. Also, do not raise an exception if checkpatch.pl is not found - just print an error message suggesting to

[U-Boot] [RFC] Is anyone interested IPv6 support for u-boot

2013-01-09 Thread Chris Packham
Hi, Here at $dayjob we make embedded network devices (routers & switches). Because we have an interest in getting people to adopt IPv6 we've added code to our local u-boot repository to add basic IPv6 support on our boards. It's not a fully conformant IPv6 host implementation but it is enough to b

Re: [U-Boot] [PATCH] MPC8308: Fixup clocks in PCI Host configuration

2013-01-09 Thread Barry Grussling
>> This patch allows for proper clocks on the 8308 as a workaround >> for the lack of HRCWH_PCI_HOST support. > > You say this patchis working on "your newer version of the 8308". Can > you please be specific what "old" and "new" actually means here? Not exactly unfortunately. On the 8308s I cur

Re: [U-Boot] [RFC] mmc:fix: Increase the timeout value for SDHCI_send_command()

2013-01-09 Thread Jaehoon Chung
Hi All, I think this problem is produced when card is running write/erase operation. We used the mmc_send_status() into driver/mmc/mmc.c. When That command is sending, i found the inhibit released log. I think problem that SDHCI_DATA_INHIBIT is set at every command. if didn't have data and respon

Re: [U-Boot] [PATCH 0/3 V5] EXYNOS5: MAX77686 add FDT support

2013-01-09 Thread Rajeshwari Birje
Hi Minkyu Kang, Thank you for applying the patches. Regards, Rajeshwari Shinde On Thu, Jan 10, 2013 at 6:51 AM, Minkyu Kang wrote: > On 09/01/13 16:03, Rajeshwari Shinde wrote: >> Add FDT support to PMIC MAX77686 chip. >> >> Changes in V2: >> - Changed chip address from 06 to 6. >>

Re: [U-Boot] [PATCH 0/4 V2] SMDK5250: Convert lowlevel_init.S to .c and set PMIC values

2013-01-09 Thread Rajeshwari Birje
Hi All, Kindly please do let me if any comments on these patches. Regards, Rajeshwari Shinde. On Mon, Jan 7, 2013 at 6:38 PM, Rajeshwari Shinde wrote: > This patch converts lowlevel_init.S to lowlevel_init_c.c. > Add PMIC MAX77686 voltage settings for SMDK5250. > > Changes in V2: > - Ad

Re: [U-Boot] [PATCH v4] patman: Allow use outside of u-boot tree

2013-01-09 Thread Doug Anderson
On Wed, Jan 9, 2013 at 6:00 PM, Vadim Bendebury wrote: > To make it usable in git trees not providing a patch checker > implementation, add a command line option, allowing to suppress patch > check. While we are at it, sort debug options alphabetically. > > Also, do not raise an exception if check

[U-Boot] [PATCH 1/2] EXYNOS5: Make all display related code dependent on CONFIG_LCD

2013-01-09 Thread Ajay Kumar
u-boot compilation fails for smdk5250 when we deselect CONFIG_LCD from the main config file. This patch fixes it. Signed-off-by: Ajay Kumar --- board/samsung/smdk5250/smdk5250.c | 2 ++ include/configs/exynos5250-dt.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/board/samsung/smdk525

[U-Boot] [PATCH 2/2] EXYNOS5: Enable console multiplexing in u-boot when LCD support is enabled

2013-01-09 Thread Ajay Kumar
With this patch, stdout/stderr is assigned to serial and also to LCD. Initially, u-boot output console is observed via serial port. If you also have a DP panel connected onto your SMDK5250 board, you can switch to LCD console by typing "setenv stdout lcd". You can always switch back to serial using

Re: [U-Boot] [PATCH 2/2] pcm051: Add support for Phytec phyCORE-AM335x

2013-01-09 Thread Lars Poeschel
Hi Wolfgang, hi Tom, as I almost have the changes requested by Wolfgang in place, you two can choose, which version I should resubmit. ;) Am 09.01.2013 um 20:34 schrieb Tom Rini: >>> +static void rtc32k_enable(void) >>> +{ >>> + struct rtc_regs *rtc = (struct rtc_regs *)AM335X_RTC_BASE; >>> +

Re: [U-Boot] Regarding M29W128GL Support in u-boot

2013-01-09 Thread Stefan Roese
On 01/09/2013 04:42 PM, Ramesh K Khokhani wrote: > We have M5329EVB with JTAG. That board has LHF00L31 (2MB) Flash. > And we have source code of u-boot, linux Kernel and rootfs with > required patch (so called LTIB) which is available in freescale > website. > > Now we have our custom board with s

Re: [U-Boot] Pull request for u-boot-marvell.git

2013-01-09 Thread Albert ARIBAUD
Hi Prafulla, On Tue, 8 Jan 2013 09:21:40 -0800, Prafulla Wadaskar wrote: > Dear Albert > Please pull > > The following changes since commit 7528cf5f016b5b8b8b12b373f6f31a10bf89233d: > > Merge branch 'u-boot-imx/master' into 'u-boot-arm/master' (2013-01-08 > 14:59:37 +0100) > > are availabl

[U-Boot] NAND flash - bad blocks

2013-01-09 Thread Dimitar Penev
Hello, First of all sorry if this question was already answered here. We are sourcing some K9F8G08U0M-PIB0 NAND flash devices. On the first erase in uboot 2011.09 I got bunch of mostly consecutive bad blocks. According to the datasheet we should get not more then 80 bad blocks for our chip bu