[U-Boot] [PATCH] Kirkwood: declare mpp config static and const

2012-05-25 Thread Michael Walle
Change the prototype of kirkwood_mpp_conf() from void kirkwood_mpp_conf(u32 *mpp_list) to void kirkwood_mpp_conf(const u32 *mpp_list) Now we can declare the kwmpp_config static and const where possible. Signed-off-by: Michael Walle Cc: Prafulla Wadaskar Cc: Simon Guinot Cc: Jason Cooper C

[U-Boot] [PATCH v6 3/3] Kirkwood: add lschlv2 and lsxhl board support

2012-05-25 Thread Michael Walle
This patch adds support for both the Linkstation Live (LS-CHLv2) and Linkstation Pro (LS-XHL) by Buffalo. Signed-off-by: Michael Walle Cc: Prafulla Wadaskar --- MAINTAINERS |5 + board/buffalo/lsxl/Makefile | 44 + board/buffalo/lsxl/kwbimage-lschl.

[U-Boot] [PATCH v6 0/3] Kirkwood: add lschlv2 and lsxhl board support

2012-05-25 Thread Michael Walle
Changes: v6: - remove dead code in Makefile - use eth_{g,s}etenv_enetaddr() instead of eth_{g,s}etenv_enetaddr_by_index() since index is always 0 v5: - combine patchset again. the "net: *" patches should be individually acked by net custodian - make features configurable at compile time

[U-Boot] [PATCH v6 1/3] lib: add rand() function

2012-05-25 Thread Michael Walle
It's a PRNG using the simple and fast xorshift method. Signed-off-by: Michael Walle Cc: Wolfgang Denk --- include/common.h |6 ++ lib/Makefile |1 + lib/rand.c | 43 +++ 3 files changed, 50 insertions(+), 0 deletions(-) create mod

[U-Boot] [PATCH v6 2/3] net: add helper to generate random mac address

2012-05-25 Thread Michael Walle
Add new function eth_random_enetaddr() to generate a locally administered ethernet address. Signed-off-by: Michael Walle Acked-by: Joe Hershberger --- include/net.h | 17 + net/eth.c | 22 ++ 2 files changed, 39 insertions(+), 0 deletions(-) diff --g

Re: [U-Boot] [PATCH v5 5/5] Kirkwood: add lschlv2 and lsxhl board support

2012-05-25 Thread Michael Walle
Am Donnerstag 24 Mai 2012, 09:24:40 schrieb Prafulla Wadaskar: > > +/* > > + * Version number information > > + */ > > +#if defined(CONFIG_LSCHLV2) > > +#define CONFIG_IDENT_STRING " LS-CHLv2" > > +#define CONFIG_SYS_KWD_CONFIG $(SRCTREE)/$(CONFIG_BOARDDIR)/kwbimage- > > lschl.cfg > > +#define CONF

Re: [U-Boot] [PATCH v2] pxe: add support for parsing local syslinux files

2012-05-25 Thread Joe Hershberger
Hi Rob, On Fri, May 25, 2012 at 3:47 PM, Rob Herring wrote: > From: Rob Herring > > Add a new command "sysboot" which parses syslinux menu files and boots > using kernel and initrd specified by menu files. The operation is similar > to "pxe boot" except local files on ext2 or fat filesystem are

Re: [U-Boot] [PATCH v5 4/5] net: add eth_setenv_enetaddr_by_index()

2012-05-25 Thread Joe Hershberger
Hi Michael, On Fri, May 25, 2012 at 2:54 PM, Michael Walle wrote: > Am Freitag 25 Mai 2012, 20:50:09 schrieb Joe Hershberger: > [..snip..] >> That way you aren't adding a function that noone else uses and you >> don't need a silly guard around it. > > Hi Joe, > > thanks for the review. I think i'

[U-Boot] [PATCH v2] pxe: add support for parsing local syslinux files

2012-05-25 Thread Rob Herring
From: Rob Herring Add a new command "sysboot" which parses syslinux menu files and boots using kernel and initrd specified by menu files. The operation is similar to "pxe boot" except local files on ext2 or fat filesystem are parsed. Signed-off-by: Rob Herring --- v2: - rebase to current mainli

[U-Boot] [PATCH v2] pxe: support include files at top-level

2012-05-25 Thread Rob Herring
From: Rob Herring Include files outside of a menu were not getting included and parsed. Signed-off-by: Rob Herring --- v2: - ensure include file load address is aligned common/cmd_pxe.c |5 + 1 file changed, 5 insertions(+) diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index b3c1f

[U-Boot] [PATCH v4 3/3] sandbox: Add basic test for command execution

2012-05-25 Thread Simon Glass
Since run_command() and run_command_list() are important and a little confusing, add some basic tests to check that the behaviour is correct. Note: I am not sure that this should be committed, nor where it should go in the source tree. Comments welcome. To run the unit tests use the ut_cmd comman

[U-Boot] [PATCH v4 1/3] Add run_command_list() to run a list of commands

2012-05-25 Thread Simon Glass
This new function runs a list of commands separated by semicolon or newline. We move this out of cmd_source so that it can be used by other code. The PXE code also uses the new function. Suggested-by: Michael Walle Signed-off-by: Simon Glass --- Changes in v3: - Added a few more comments on the

[U-Boot] [PATCH v4 2/3] Allow newlines within command environment vars

2012-05-25 Thread Simon Glass
Any environment variable can hold commands to be executed by the 'run' command. The environment variables preboot, bootcmd and menucmd have special code for triggering execution in certain circumstances. We adjust these calls to use run_command_list() instead of run_command(). This change permits

Re: [U-Boot] [PATCH v5 4/5] net: add eth_setenv_enetaddr_by_index()

2012-05-25 Thread Michael Walle
Am Freitag 25 Mai 2012, 20:50:09 schrieb Joe Hershberger: [..snip..] > That way you aren't adding a function that noone else uses and you > don't need a silly guard around it. Hi Joe, thanks for the review. I think i'll drop the dynamic "ethernet variable name" support entirely. Two reasons: -

Re: [U-Boot] [PATCH v2 5/7] tegra: Implement gpio_early_init() on Tamonten

2012-05-25 Thread Kai Poggensee
Hi Thierry, On 25.05.2012 19:40, Thierry Reding wrote: > * Stephen Warren wrote: >> On 05/25/2012 07:46 AM, Thierry Reding wrote: >> > The PI4 GPIO is used on Tamonten to reset carrier board peripherals. >> > Power sequencing hardware on the carrier pulls the reset low before >> > powering up the

Re: [U-Boot] [PATCH 7/7] pxe: add support for parsing local syslinux files

2012-05-25 Thread Joe Hershberger
Hi Rob, On Wed, May 23, 2012 at 6:02 PM, Joe Hershberger wrote: > Hi Rob, > > On Wed, May 23, 2012 at 5:57 PM, Rob Herring wrote: >> On 05/23/2012 05:11 PM, Joe Hershberger wrote: >>> Hi Rob, >>> >>> On Wed, Mar 28, 2012 at 10:51 AM, Rob Herring wrote: From: Rob Herring Add a ne

Re: [U-Boot] [PATCH v5 4/5] net: add eth_setenv_enetaddr_by_index()

2012-05-25 Thread Joe Hershberger
Hi Michael, On Thu, May 17, 2012 at 3:43 PM, Michael Walle wrote: > > Hi Joe, > > Am Mittwoch 16 Mai 2012, 02:56:39 schrieb Joe Hershberger: >> Hi Michael, >> >> On Fri, May 11, 2012 at 5:50 PM, Michael Walle wrote: >> > Signed-off-by: Michael Walle >> > Cc: Joe Hershberger >> > >> > diff

Re: [U-Boot] [PATCH v2 4/7] tegra: Allow boards to perform early GPIO setup

2012-05-25 Thread Thierry Reding
* Thierry Reding wrote: > Furthermore I'll need to rebase the patches onto the Tegra branch due to the > major restructuring of the configuration files. This isn't true. But I'll still have to respin because of the MAINTAINERS entry and the other points that you brought up, so let me know if I sho

Re: [U-Boot] [PATCH v5 2/5] net: add helper to generate random mac address

2012-05-25 Thread Joe Hershberger
On Fri, May 11, 2012 at 5:50 PM, Michael Walle wrote: > Add new function eth_random_enetaddr() to generate a locally administered > ethernet address. > > Signed-off-by: Michael Walle > Cc: Joe Hershberger Acked-by: Joe Hershberger ___ U-Boot mailing

Re: [U-Boot] [PATCH v2 5/7] tegra: Implement gpio_early_init() on Tamonten

2012-05-25 Thread Thierry Reding
* Stephen Warren wrote: > On 05/25/2012 07:46 AM, Thierry Reding wrote: > > The PI4 GPIO is used on Tamonten to reset carrier board peripherals. > > Power sequencing hardware on the carrier pulls the reset low before > > powering up the Tegra, and the CPU is supposed to signal readiness, > > and th

Re: [U-Boot] [PATCH v2 4/7] tegra: Allow boards to perform early GPIO setup

2012-05-25 Thread Thierry Reding
* Stephen Warren wrote: > On 05/25/2012 07:46 AM, Thierry Reding wrote: > > The new gpio_early_init() function, which does nothing by default, can > > be overridden by boards to configure GPIOs at an early stage. > > > diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c > > >

Re: [U-Boot] dfu in master?

2012-05-25 Thread David Lanzendörfer
Hi Thanks for the answer! > I can "only" say, that it is under development. It will be available > as a part of a composite USB gadget. Wonderfull! It's a nice coincidence that you are writing from a Samsung address. Because the platform I'm trying to get u-boot working on is the GT-9100G. (part o

Re: [U-Boot] [PATCH V5 0/2] *** Add ext4 filesystem support in uboot ***

2012-05-25 Thread Rob Herring
On 05/25/2012 10:48 AM, Uma Shankar wrote: > *** > This patch series adds support for ext4 ls,load and write features in uboot > Journaling is supported for write feature. > > To Enable ext2 ls and load commands, modify the board specific config file > with > #define CONFIG_CMD_EXT2 > > To Enabl

Re: [U-Boot] [PATCH v2 7/7] tegra: Add Tamonten Evaluation Carrier support

2012-05-25 Thread Stephen Warren
On 05/25/2012 07:46 AM, Thierry Reding wrote: > The Tamonten Evaluation Carrier is an evaluation board for the Tamonten > processor board. More information is available here: > diff --git a/include/configs/tec.h b/include/configs/tec.h > +#define TEGRA2_SYSMEM"mem=384M@0M

Re: [U-Boot] [PATCH v2 5/7] tegra: Implement gpio_early_init() on Tamonten

2012-05-25 Thread Stephen Warren
On 05/25/2012 07:46 AM, Thierry Reding wrote: > The PI4 GPIO is used on Tamonten to reset carrier board peripherals. > Power sequencing hardware on the carrier pulls the reset low before > powering up the Tegra, and the CPU is supposed to signal readiness, > and therefore bring peripherals out of r

Re: [U-Boot] [PATCH v2 4/7] tegra: Allow boards to perform early GPIO setup

2012-05-25 Thread Stephen Warren
On 05/25/2012 07:46 AM, Thierry Reding wrote: > The new gpio_early_init() function, which does nothing by default, can > be overridden by boards to configure GPIOs at an early stage. > diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c > int board_early_init_f(void) > { >

Re: [U-Boot] [PATCH V2] MPC8xxx: Define cache ops for USB

2012-05-25 Thread Marek Vasut
Dear Joakim Tjernlund, > > Hello Marek, > > > > On 5/25/2012 7:44 PM, Marek Vasut wrote: > > > This patch conditionally defines flush_dcache_range() and > > > invalidate_dcache_range() on MPC8xxx, to avoid EHCI complaining, > > > > > resulting in the following output: > > > > > > > + > > > +vo

Re: [U-Boot] [PATCH v5 0/5] Kirkwood: add lschlv2 and lsxhl board support

2012-05-25 Thread Joe Hershberger
Hi Prafulla, On Fri, May 25, 2012 at 9:13 AM, Prafulla Wadaskar wrote: >> -Original Message- >> From: Michael Walle [mailto:mich...@walle.cc] >> Sent: 12 May 2012 04:21 >> To: u-boot@lists.denx.de >> Cc: Prafulla Wadaskar; Wolfgang Denk; Mike Frysinger; Joe Hershberger; >> Michael Walle >

[U-Boot] [PATCH V5 0/2] *** Add ext4 filesystem support in uboot ***

2012-05-25 Thread Uma Shankar
*** This patch series adds support for ext4 ls,load and write features in uboot Journaling is supported for write feature. To Enable ext2 ls and load commands, modify the board specific config file with #define CONFIG_CMD_EXT2 To Enable ext4 ls and load commands, modify the board specific config

[U-Boot] Add ext4 write support

2012-05-25 Thread Uma Shankar
Hi All, We have resolved the review comments received for uboot ext4 feature. Ext4 code is based on existing ext2 implementation in uboot, and is capable to ls, load ext2 partitions as well. Hence we have removed the ext2 folder from fs folder and will maintain one ext4 directory. Since ext4 is

Re: [U-Boot] [PATCH 0/4] cm-t35 updates and non-critical fixes

2012-05-25 Thread Tom Rini
On Thu, May 24, 2012 at 05:01:20PM +0300, Igor Grinberg wrote: > This patch set fixes various board revsion related issues, > adds the PCB revision information printing and reduces the > environment size. > > Igor Grinberg (1): > cm-t35: reduce the environment size > > Nikita Kiryanov (3): >

Re: [U-Boot] [PATCH 0/7] OMAP5: Add support for OMAP5432 SOC

2012-05-25 Thread Tom Rini
On Tue, May 22, 2012 at 03:33:20PM +0530, Lokesh Vutla wrote: > This patch series support OMAP5432 in Mainline U-boot. > The major difference from OMAP5430 is that it supports DDR3 memory. > Things to be done for supporting DDR3: > 1) ioconfig for ddr3 > 2) Initialization sequence and ddr3 levelin

Re: [U-Boot] [PATCH] ARM: OMAP4: Correct the lpddr2 io settings register value.

2012-05-25 Thread Tom Rini
On Thu, May 24, 2012 at 04:00:25PM +0530, R Sricharan wrote: > To meet certain timing requirements on the lpddr2 cmd and data phy > interfaces ,lpddr iopads have to be configured as differential buffers > and a Vref has to be internally generated and provided to these buffers. > > Correcting the

Re: [U-Boot] [PATCH 0/4] ARM: OMAP4+: Miscellaneous fixes

2012-05-25 Thread Tom Rini
On Thu, May 17, 2012 at 03:42:05PM +0530, R Sricharan wrote: > This series has been tested on > OMAP4430 sdp > OMAP4 panda > OMAP5 evm > > MAKEALL has been tested for all armv7 boards to ensure > no build breakage. > > R Sricharan (4): > ARM: OMAP4+: dmm: Take care of overlapping dmm and tr

[U-Boot] Please pull u-boot-ti/master

2012-05-25 Thread Tom Rini
Hello, The following changes since commit 2ca4a209a5b961ad1be8782c68dabe326d77dfaf: OMAP4/5: Change omap4_sdp, omap4_panda, omap5_evm maintainer (2012-05-15 08:31:41 +0200) are available in the git repository at: git://git.denx.de/u-boot-ti.git master for you to fetch changes up to aa54ec

Re: [U-Boot] [PATCH 5/6] ARM: add support for Network Space v2 Lite and Mini

2012-05-25 Thread Simon Guinot
On Thu, May 24, 2012 at 01:03:07AM -0700, Prafulla Wadaskar wrote: > > > > -Original Message- > > From: Simon Guinot [mailto:simon.gui...@sequanux.org] > > Sent: 16 May 2012 19:51 > > To: Prafulla Wadaskar > > Cc: Albert ARIBAUD; u-boot@lists.denx.de; Simon Guinot > > Subject: [PATCH 5/6]

Re: [U-Boot] [PATCH v2 2/2] omap3_dss: cosmetic changes

2012-05-25 Thread Tom Rini
On Fri, May 25, 2012 at 03:54:43PM +0200, Anatolij Gustschin wrote: > Hi, > > On Fri, 18 May 2012 12:51:01 +0200 > Jeroen Hofstee wrote: > > > From: Jeroen Hofstee > > > > Remove unnecessary brackets. > > Unwrap lines which are below 80 chars. > > Single line comment as single line (as the res

Re: [U-Boot] [PATCH V2] MPC8xxx: Define cache ops for USB

2012-05-25 Thread Joakim Tjernlund
> > Hello Marek, > > On 5/25/2012 7:44 PM, Marek Vasut wrote: > > This patch conditionally defines flush_dcache_range() and > > invalidate_dcache_range() on MPC8xxx, to avoid EHCI complaining, > > resulting in the following output: > > > + > > +void invalidate_dcache_range(unsigned long start, uns

Re: [U-Boot] [PATCH V2] MPC8xxx: Define cache ops for USB

2012-05-25 Thread Vikram Narayanan
Hello Marek, On 5/25/2012 7:44 PM, Marek Vasut wrote: This patch conditionally defines flush_dcache_range() and invalidate_dcache_range() on MPC8xxx, to avoid EHCI complaining, resulting in the following output: + +void invalidate_dcache_range(unsigned long start, unsigned long stop) +{ +} +

Re: [U-Boot] [PATCH 0/9] arm/km: bugfixes and small corrections

2012-05-25 Thread Prafulla Wadaskar
> -Original Message- > From: Holger Brunck [mailto:holger.bru...@keymile.com] > Sent: 25 May 2012 17:27 > To: u-boot@lists.denx.de > Cc: Holger Brunck; Prafulla Wadaskar; Valentin Longchamp > Subject: [PATCH 0/9] arm/km: bugfixes and small corrections > > This patchseris extracts the bug

[U-Boot] [PATCH V2] MPC8xxx: Define cache ops for USB

2012-05-25 Thread Marek Vasut
This patch conditionally defines flush_dcache_range() and invalidate_dcache_range() on MPC8xxx, to avoid EHCI complaining, resulting in the following output: $ ARCH=powerpc CROSS_COMPILE=powerpc-linux-gnu- ./MAKEALL MPC8572DS Configuring for MPC8572DS board... make: *** [u-boot] Error 1 powerpc-li

Re: [U-Boot] [PATCH v5 0/5] Kirkwood: add lschlv2 and lsxhl board support

2012-05-25 Thread Prafulla Wadaskar
> -Original Message- > From: Michael Walle [mailto:mich...@walle.cc] > Sent: 12 May 2012 04:21 > To: u-boot@lists.denx.de > Cc: Prafulla Wadaskar; Wolfgang Denk; Mike Frysinger; Joe Hershberger; > Michael Walle > Subject: [PATCH v5 0/5] Kirkwood: add lschlv2 and lsxhl board support > > Cha

Re: [U-Boot] [PATCH v2 2/2] omap3_dss: cosmetic changes

2012-05-25 Thread Anatolij Gustschin
Hi, On Fri, 18 May 2012 12:51:01 +0200 Jeroen Hofstee wrote: > From: Jeroen Hofstee > > Remove unnecessary brackets. > Unwrap lines which are below 80 chars. > Single line comment as single line (as the rest). > Moved init values to the source code. > > cc: s-paul...@ti.com > cc: kha...@ti.co

Re: [U-Boot] [PATCH v2 1/2] omap3_dss: add optional framebuffer

2012-05-25 Thread Anatolij Gustschin
Hi, On Fri, 18 May 2012 12:51:00 +0200 Jeroen Hofstee wrote: > From: Jeroen Hofstee > > The beagle board uses the background color to show an orange screen during > startup. This patch adds the ability to add a frame buffer, with the > intention not to break the beagle board use case (I don't

[U-Boot] [PATCH v2 1/7] tegra: Rework Tamonten support

2012-05-25 Thread Thierry Reding
This commit uses the common Tegra board implementation instead of duplicating a lot of the code. In addition, the Plutux and Medcom specific board files can be removed as the MMC/SD setup is common among all Tamonten-based boards. Signed-off-by: Thierry Reding --- Changes in v2: - new patch boa

[U-Boot] [PATCH v2 5/7] tegra: Implement gpio_early_init() on Tamonten

2012-05-25 Thread Thierry Reding
The PI4 GPIO is used on Tamonten to reset carrier board peripherals. Power sequencing hardware on the carrier pulls the reset low before powering up the Tegra, and the CPU is supposed to signal readiness, and therefore bring peripherals out of reset by pulling PI4 high. Signed-off-by: Thierry Redi

[U-Boot] [PATCH v2 7/7] tegra: Add Tamonten Evaluation Carrier support

2012-05-25 Thread Thierry Reding
The Tamonten Evaluation Carrier is an evaluation board for the Tamonten processor board. More information is available here: http://www.avionic-design.de/en/products/nvidia-tegra-tamonten-system-en/nvidia-tegra-tamonten-evboard-en.html Signed-off-by: Thierry Reding --- Changes in v2: -

[U-Boot] [PATCH v2 3/7] tegra: plutux: Add device tree support

2012-05-25 Thread Thierry Reding
Device tree support is required for working USB host support, which in turn enables ethernet support. Signed-off-by: Thierry Reding --- Changes in v2: - drop chosen and sdhci@c8000600 nodes from DTS - drop CONFIG_USB_ETHER_ASIX from configuration board/avionic-design/dts/tegra2-plutux.dts | 5

[U-Boot] [PATCH v2 6/7] tegra: Use SD write-protect GPIO on Tamonten

2012-05-25 Thread Thierry Reding
GPIO PI6 can be used to obtain the write-protect status of an SD card inserted into the SD slot. Signed-off-by: Thierry Reding --- Changes in v2: - new patch board/avionic-design/common/tamonten.c |4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/board/avionic-design/com

[U-Boot] [PATCH v2 4/7] tegra: Allow boards to perform early GPIO setup

2012-05-25 Thread Thierry Reding
The new gpio_early_init() function, which does nothing by default, can be overridden by boards to configure GPIOs at an early stage. Signed-off-by: Thierry Reding --- Changes in v2: - new patch required for TEC support board/nvidia/common/board.c |7 +++ board/nvidia/common/board.h |

[U-Boot] [PATCH v2 2/7] tegra: medcom: Add device tree support

2012-05-25 Thread Thierry Reding
Device tree support is required for working USB host support, which in turn enables ethernet support. Signed-off-by: Thierry Reding --- Changes in v2: - drop chosen and sdhci@c8000600 nodes from DTS - drop CONFIG_USB_ETHER_ASIX from configuration board/avionic-design/dts/tegra2-medcom.dts | 5

[U-Boot] [PATCH] MPC8xxx: Define cache ops for USB

2012-05-25 Thread Marek Vasut
This patch conditionally defines flush_dcache_range() and invalidate_dcache_range() on MPC8xxx, to avoid EHCI complaining, resulting in the following output: $ ARCH=powerpc CROSS_COMPILE=powerpc-linux-gnu- ./MAKEALL MPC8572DS Configuring for MPC8572DS board... make: *** [u-boot] Error 1 powerpc-li

[U-Boot] [PATCH 9/9] km_arm: use filesize for erase in update command

2012-05-25 Thread Holger Brunck
From: Valentin Longchamp We used to have an arbitrary value, which can be a problem if we have a u-boot image that is bigger than this value. This patch is dependant on the whole km/arm series and will be included in the v3 of the series if there is one. Signed-off-by: Valentin Longchamp cc: H

[U-Boot] [PATCH 3/9] arm/km: rename CONFIG option CONFIG_KM_DEF_ENV_UPDATE

2012-05-25 Thread Holger Brunck
This config option sounds like the it is responsible for the update of the environment, but it is the u-boot update handling. Therefore we adapt it to a more apropriate naming. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Gerlando Falauto cc: Prafulla Wadaskar --- inclu

[U-Boot] [PATCH 7/9] arm/km: remove CONFIG_RESET_PHY_R

2012-05-25 Thread Holger Brunck
This is already defined in the generic kirkwood header. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Gerlando Falauto cc: Prafulla Wadaskar --- include/configs/km/km_arm.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/configs/km/km_arm.

[U-Boot] [PATCH 4/9] arm/km: use ARRAY_SIZE macro

2012-05-25 Thread Holger Brunck
Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Gerlando Falauto cc: Prafulla Wadaskar --- board/keymile/km_arm/km_arm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/keymile/km_arm/km_arm.c b/board/keymile/km_arm/km_arm.c index 9e9940c..c6c

[U-Boot] [PATCH 8/9] arm/km: enable mii cmd

2012-05-25 Thread Holger Brunck
From: Valentin Longchamp This is useful to debug the switch initialization Signed-off-by: Valentin Longchamp Signed-off-by: Holger Brunck cc: Gerlando Falauto cc: Prafulla Wadaskar --- include/configs/km/km_arm.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/inclu

[U-Boot] [PATCH 6/9] arm/km: change maintainer for mgcoge3un

2012-05-25 Thread Holger Brunck
Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp Acked-By: Heiko Schocher cc: Prafulla Wadaskar cc: Gerlando Falauto --- MAINTAINERS |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index f796872..0445539 100644 --- a/MAINTAINER

[U-Boot] [PATCH 5/9] arm/km: fix wrong comment in SDRAM config for mgcoge3un

2012-05-25 Thread Holger Brunck
Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Gerlando Falauto cc: Prafulla Wadaskar --- board/keymile/km_arm/kwbimage-memphis.cfg |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/keymile/km_arm/kwbimage-memphis.cfg b/board/keymile/km_arm/kw

[U-Boot] [PATCH 0/9] arm/km: bugfixes and small corrections

2012-05-25 Thread Holger Brunck
This patchseris extracts the bugfixes and minor adaptions of the already posted patchserie http://lists.denx.de/pipermail/u-boot/2012-May/124413.html as requested. There are now changes in the patches compared to the previous serie. cc: Prafulla Wadaskar cc: Holger Brunck cc: Valentin Longchamp

[U-Boot] [PATCH 2/9] arm/km: add piggy mac adress offset for mgcoge3un

2012-05-25 Thread Holger Brunck
On mgcoge3un the piggy mac adress is at offset 3. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Gerlando Falauto cc: Prafulla Wadaskar --- include/configs/mgcoge3un.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/mgcoge3un.h b/in

[U-Boot] [PATCH 1/9] arm/km: add board type to boards.cfg

2012-05-25 Thread Holger Brunck
Some other kirkwood boards from keymile will follow. They will have some small differences, but we want to use the km_kirkwood.h for all to distinguish them. This patch a preparation for this. Signed-off-by: Holger Brunck Signed-off-by: Valentin Longchamp cc: Gerlando Falauto cc: Prafulla Wadas

[U-Boot] [PATCH 4/4] EXYNOS5: Enable support for MSHCI

2012-05-25 Thread Rajeshwari Shinde
This patchs enables MSHCI driver for EXYNOS5. Signed-off-by: Terry Lambert Signed-off-by: Rajeshwari Shinde --- This patch is based on: "PMIC: SMDK5250: Enable MAX77686 pmic chip" board/samsung/smdk5250/smdk5250.c |3 +++ include/configs/smdk5250.h|1 + 2 files changed,

[U-Boot] [PATCH 3/4] EXYNOS: Add base address for MSHCI

2012-05-25 Thread Rajeshwari Shinde
This patch adds the base address of MSHCI for EXYNOS4 and EXYNOS5. Signed-off-by: Terry Lambert Signed-off-by: Rajeshwari Shinde --- This patch is based on: "EXYNOS: Add I2C base address" arch/arm/include/asm/arch-exynos/cpu.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)

[U-Boot] [PATCH 2/4] EXYNOS5: PINMUX: Add pinmux for SDMMC4

2012-05-25 Thread Rajeshwari Shinde
Add pinmux support for SDMMC4 on EXYNOS5. Signed-off-by: Terry Lambert Signed-off-by: Rajeshwari Shinde --- This patch is based on: "EXYNOS5: PINMUX: Added default pinumx settings" arch/arm/cpu/armv7/exynos/pinmux.c | 24 +--- 1 files changed, 17 insertions(+), 7 d

[U-Boot] [PATCH 1/4] EXYNOS: MSHCI: Add clock for EXYNOS5

2012-05-25 Thread Rajeshwari Shinde
Add apis to set and get divider clock ratio for FSYS_BLK on EXYNOS5. Signed-off-by: Terry Lambert Signed-off-by: Alim Akhtar Signed-off-by: Rajeshwari Shinde --- arch/arm/cpu/armv7/exynos/clock.c | 96 arch/arm/include/asm/arch-exynos/clk.h |4 + 2 f

[U-Boot] [PATCH 0/4] EXYNOS: Add support for MSHCI driver

2012-05-25 Thread Rajeshwari Shinde
This patch enables the MSHCI driver support for EXYNOS5. Rajeshwari Shinde (4): EXYNOS: MSHCI: Add clock for EXYNOS5 EXYNOS5: PINMUX: Add pinmux for SDMMC4 EXYNOS: Add base address for MSHCI EXYNOS5: Enable support for MSHCI This patchset is based on following patches: "EXYNOS5: P

[U-Boot] [PATCH] MMC: MSHCI: Add MSHCI driver

2012-05-25 Thread Rajeshwari Shinde
Add MSHCI driver support and resgister description for same. Signed-off-by: Alim Akhtar Signed-off-by: Terry Lambert Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/mshc.h | 174 ++ drivers/mmc/Makefile|1 + drivers/mmc/exynos_mshc.c

Re: [U-Boot] [PATCH v2] video: atmel/lcd: add LCD driver for Atmel new SoC

2012-05-25 Thread Anatolij Gustschin
Hi, On Tue, 22 May 2012 16:47:29 +0800 Bo Shen wrote: ... > diff --git a/drivers/video/atmel_hlcdfb.c b/drivers/video/atmel_hlcdfb.c > new file mode 100644 > index 000..0fd7800 > --- /dev/null > +++ b/drivers/video/atmel_hlcdfb.c ... > +#define lcdc_readl(mmio, reg)__raw_readl

[U-Boot] [PATCH v3] video: atmel/lcd: add LCD driver for new Atmel SoC

2012-05-25 Thread Anatolij Gustschin
From: Bo Shen The new Atmel SoC (at91sam9x5 series and at91sam9n12) add a totally different LCD controller. Add this new driver to support it. Using CONFIG_ATMEL_HLCD (distinguish with CONFIG_ATMEL_LCD) to enable this in board configuration file. Signed-off-by: Bo Shen Signed-off-by: Anatolij

Re: [U-Boot] [PATCH v4 25/27] arm/km: implement weak function board_spi_clam_bus/release

2012-05-25 Thread Prafulla Wadaskar
> -Original Message- > From: Holger Brunck [mailto:holger.bru...@keymile.com] > Sent: 24 May 2012 21:24 > To: Prafulla Wadaskar > Cc: Valentin Longchamp; u-boot@lists.denx.de; Gerlando Falauto > Subject: Re: [PATCH v4 25/27] arm/km: implement weak function > board_spi_clam_bus/release >

[U-Boot] [PATCH 2/2] avr32:board.c: fix compile warning

2012-05-25 Thread Andreas Bießmann
This patch fixes following warning: ---8<--- board.c: In function 'board_init_r': board.c:257: warning: unused variable 's' --->8--- Patch de30122bb58fee7b0f94bcfabab595b6ad757336 missed to remove this variable too. Signed-off-by: Andreas Bießmann --- arch/avr32/lib/board.c |1 - 1 file ch

[U-Boot] [PATCH 1/2] avr32:grasshopper: fix PHY initialisation

2012-05-25 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann --- board/in-circuit/grasshopper/grasshopper.c |7 +++ 1 file changed, 7 insertions(+) diff --git a/board/in-circuit/grasshopper/grasshopper.c b/board/in-circuit/grasshopper/grasshopper.c index 475a759..222fe43 100644 --- a/board/in-circuit/grasshopper/gr

Re: [U-Boot] [PATCH V5 RESEND 1/3] mtd/NAND: Add FSMC driver support

2012-05-25 Thread Amit Virdi
Scott, On 5/24/2012 10:04 PM, Vikram Narayanan wrote: +/* + * (C) Copyright 2010 + * Vipin Kumar, ST Micoelectronics, vipin.ku...@st.com. + * + * (C) Copyright 2012 + * Amit Virdi, ST Micoelectronics, amit.vi...@st.com. Fix the typo please. In all the copyright headers. If you're fine with

Re: [U-Boot] [PATCH 3/3] mx53loco: Add LCD support

2012-05-25 Thread Anatolij Gustschin
Hi, On Thu, 10 May 2012 22:07:35 -0300 Fabio Estevam wrote: > From: Fabio Estevam > > Add support for CLAA07LC0ACW LCD that connects to the mx53loco board. > > Configure the board to show the Linux logo on the LCD. > > Also increase the size of CONFIG_SYS_MALLOC_LEN variable to take into acc

Re: [U-Boot] [PATCH 2/3] mx5: Rename mx51_fb_init()

2012-05-25 Thread Anatolij Gustschin
Hi, On Thu, 10 May 2012 22:07:34 -0300 Fabio Estevam wrote: > From: Fabio Estevam > > The ipuv3 driver is currently only used on mx51, but it can be extended to > work > on mx53 and mx6 as well. > > Rename mx51_fb_init(), so that it can be used by other SoCs. > > Signed-off-by: Fabio Estev

Re: [U-Boot] [PATCH v2 1/3] mx53: Allow IPUv3 driver to also work on mx53

2012-05-25 Thread Anatolij Gustschin
Hi, On Tue, 15 May 2012 15:01:16 -0300 Fabio Estevam wrote: > Adjust the IPU base registers so that ipuv3 driver can work on both mx51 and > mx53 SoCs. > > Signed-off-by: Fabio Estevam > --- > Changes since v1: > - Properly implement the IPU offset scheme. > > arch/arm/include/asm/arch-mx5/

Re: [U-Boot] [PATCH] mx51evk: Add LCD support

2012-05-25 Thread Anatolij Gustschin
Hi, On Wed, 9 May 2012 13:39:41 -0300 Fabio Estevam wrote: > Add support for CLAA07LC0ACW LCD that connects to the mx51evk board. > > Configure the board to show the Linux logo on the LCD. > > Also increase the size of CONFIG_SYS_MALLOC_LEN variable to take into account > the framebuffer usag

Re: [U-Boot] [PATCH v6 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-05-25 Thread Anatolij Gustschin
On Fri, 25 May 2012 01:00:40 +0200 Anatolij Gustschin wrote: > From: Donghwa Lee > > This patch supports drawing 32bpp bitmap TIZEN logo in exynos fb. > "tizen_hd_logo.h" data is compressed from trats_logo.bmp to > trats_logo.bmp.gz by gzip and converted to tizen_hd_logo.h header file > format

Re: [U-Boot] dfu in master?

2012-05-25 Thread Lukasz Majewski
Hi David, > Hi Folks > I just wanted to know if there is any change that DFU-support will > ever make it into master. I can "only" say, that it is under development. It will be available as a part of a composite USB gadget. > > Thanks in advance > -lev -- Best regards, Lukasz Majewski Sams

Re: [U-Boot] [PATCH 2/2 V2] PMIC: SMDK5250: Enable MAX77686 pmic chip

2012-05-25 Thread Lukasz Majewski
Hi Rajeshwari, > ccing Lukasz Majewski. > > On Wed, May 23, 2012 at 2:27 PM, Rajeshwari Shinde > wrote: > > This patch enables MAX77686 pmic chip for SMDK5250. > > > > Signed-off-by: Rajeshwari Shinde > > --- > > This patch is based on: > >        "EXYNOS: SMDK5250: Enable the pinmux setup" and

Re: [U-Boot] [PATCH 1/2 V2] PMIC: MAX77686: Add support for MAX77686

2012-05-25 Thread Lukasz Majewski
Hi Rajeshwari, > ccing Lukasz Majewski. > > On Wed, May 23, 2012 at 2:27 PM, Rajeshwari Shinde > wrote: > > This patch adds driver and register definitions for PMIC chip > > MAX77686. > > > > Signed-off-by: Rajeshwari Shinde > > --- > > changes for V2: > >        - using the generic PMIC framew