[U-Boot] (no subject)

2011-09-11 Thread Elo Petteri
Dear, My names are Aisha Ghadafi. The daughter of Colonel Ghadafi the Libyan leader.as a Libyan mediator and military official, former UN Goodwill Ambassador, philanthropist, humanitarian. I want you to take charge of some deposit fund. Reply for more details. E-mail: aishaghada...@w.cn Aisha

Re: [U-Boot] ORIGEN: fix needed for out-of-tree build

2011-09-11 Thread Chander Kashyap
Dear Wolfgang Denk, On 12 September 2011 01:31, Wolfgang Denk wrote: > Dear Chander, when building the "origen" board out-of-tree, it > poollutes the source directory with a file > board/samsung/origen/tools/mkorigenspl.exe > which then never gets cleaned up. > > Please fix your Makefile for out-

[U-Boot] Warning

2011-09-11 Thread Albert ARIBAUD
Sanjeev, Sandeep, I see a lot of this warning in many OMAP boards: - Configuring for omap4_sdp4430 board... gpio.c: In function 'omap_get_gpio_dataout': gpio.c:161: warning: assignment discards qualifiers from pointer target type - Commit 5c2684dbebe9df47e

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-11 Thread Albert ARIBAUD
Hi Mike, Le 12/09/2011 06:04, Mike Frysinger a écrit : > On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: >> This was done with the following command-line: >> >> for file in `find . | grep '\.[chS]$'`; >> do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; >> do

Re: [U-Boot] Please pull u-boot-ti/master -- breaks a lot of builds

2011-09-11 Thread Albert ARIBAUD
Hi Jason, Le 11/09/2011 23:58, Jason Kridner a écrit : > On Sun, Sep 11, 2011 at 5:50 PM, Albert ARIBAUD > wrote: >> Le 08/09/2011 17:16, s-paul...@ti.com a écrit : >> >>> Jason Kridner (1): >>>led: remove camel casing of led identifiers globally >> >> I just re-ran build tests, and this

Re: [U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-11 Thread Heiko Schocher
Hello Marek, Marek Vasut wrote: > Signed-off-by: Marek Vasut > Cc: Heiko Schocher > Cc: Stefano Babic > Cc: Wolfgang Denk > Cc: Detlev Zundel > --- > drivers/i2c/Makefile |1 + > drivers/i2c/mxs_i2c.c | 240 > + > 2 files changed, 241 in

[U-Boot] [PATCH v6] dreamplug: initial board support.

2011-09-11 Thread u-boot
From: Jason Cooper Copied wholeheartedly from board/Marvell/guruplug and modified to add support for SPI NOR flash. CONFIG_MACH_DREAMPLUG defined in include/configs/dreamplug.h until Linus's kernel.org tree adds it to mach-types.h. Once it trickles down, the definition can be removed from dream

Re: [U-Boot] [PATCH] net: turn name len check into an assert

2011-09-11 Thread Marek Vasut
On Monday, September 12, 2011 06:49:53 AM Mike Frysinger wrote: > The new sanity check introduces a printf warning for some systems: > eth.c:233: warning: format '%zu' expects type 'size_t', but argument 3 has > type 'int' > > Rather than tweak the format string, use the new assert() helper

[U-Boot] [PATCH] sf: fix debug format string warning

2011-09-11 Thread Mike Frysinger
From: Vadim Bendebury On some systems, we get a warning when %lu is used with size_t's, so use the correct format string. Signed-off-by: Vadim Bendebury Signed-off-by: Mike Frysinger --- drivers/mtd/spi/spi_flash.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/driv

[U-Boot] [PATCH] net: turn name len check into an assert

2011-09-11 Thread Mike Frysinger
The new sanity check introduces a printf warning for some systems: eth.c:233: warning: format '%zu' expects type 'size_t', but argument 3 has type 'int' Rather than tweak the format string, use the new assert() helper instead. Signed-off-by: Mike Frysinger --- net/eth.c |7 +--

[U-Boot] [PATCH] ignore soc asm-offsets.s

2011-09-11 Thread Mike Frysinger
Recent commit a4814a69d3bca6ee05f4bfc4 cleaned up generation of asm-offsets.s for SoC dirs, but missed adding it to the ignore list which makes it show up in `git status`. Signed-off-by: Mike Frysinger --- .gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitig

Re: [U-Boot] [PATCH] tegra2: fix warning: "assert" redefined

2011-09-11 Thread Simon Glass
Hi Wolfgang, On Sat, Sep 10, 2011 at 1:44 PM, Wolfgang Denk wrote: > Dear Wolfgang Denk, > > In message <1315664363-3979-1-git-send-email...@denx.de> you wrote: >> Commit 21726a7 "Add assert() for debug assertions" caused build >> warnings for all tegra2 based boards: >> >> clock.c:36:1: warning:

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

2011-09-11 Thread Simon Glass
Hi, On Thu, Sep 8, 2011 at 3:11 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. > [snip] > Note: These patches include a definition of assert() which I w

Re: [U-Boot] [PATCH 0/2] SPL improvements

2011-09-11 Thread Marek Vasut
On Monday, September 12, 2011 06:03:22 AM Marek Vasut wrote: > This series introduces a few modifications to the new SPL framework to make > it a bit more flexible. > > RESEND: Missing Cc-ed people in the patches. > > Marek Vasut (2): > SPL: Make path to start.S configurable > SPL: Allow user

Re: [U-Boot] [PATCH 0/2] SPL improvements

2011-09-11 Thread Marek Vasut
On Monday, September 12, 2011 05:56:18 AM Marek Vasut wrote: > This series introduces a few modifications to the new SPL framework to make > it a bit more flexible. > > Marek Vasut (2): > SPL: Make path to start.S configurable > SPL: Allow user to disable CPU support library > > spl/Makefile

[U-Boot] [PATCH 15/15] M28: Add doc/README.m28 documentation

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- doc/README.m28 | 223 1 files changed, 223 insertions(+), 0 deletions(-) create mode 100644 doc/README.m28 diff --git a/doc/README.m28 b/doc/README.m

[U-Boot] [PATCH 13/15] iMX28: Add support for DENX M28EVK board

2011-09-11 Thread Marek Vasut
This contains support for the following components: - DUART - MMC - Both FEC interfaces - NAND - I2C (RTC, EEPROM) - SPI (FLASH) Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- MAINTAINERS|1 + board/denx/m28evk/Makefile | 49

[U-Boot] [PATCH 12/15] iMX28: Add u-boot.sb target to Makefile

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- Makefile |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index ee05fb3..69dfe88 100644 --- a/Makefile +++ b/Makefile @@ -398,6 +398,10 @@ $(obj)u-boot.ubl:

[U-Boot] [PATCH 11/15] iMX28: Add image header generator tool

2011-09-11 Thread Marek Vasut
This tool can now generate proper image for "BootStream" files. NOTE: This tool now works only for NAND. Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- tools/Makefile |6 + tools/mxsboot.c | 687 +

[U-Boot] [PATCH 10/15] iMX28: Add driver for internal RTC

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/rtc/Makefile |1 + drivers/rtc/mxsrtc.c | 86 ++ 2 files changed, 87 insertions(+), 0 deletions(-) create mode 100644 drivers/rtc/mxsrtc.c diff -

[U-Boot] [PATCH 09/15] iMX28: Add GPMI NAND driver

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Scott Wood Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/mtd/nand/Makefile |1 + drivers/mtd/nand/mxs_nand.c | 1159 +++ 2 files changed, 1160 insertions(+), 0 deletions(-) create mode 100644 dri

[U-Boot] [PATCH 08/15] iMX28: Add APBH DMA driver

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- arch/arm/include/asm/arch-mx28/dma.h | 170 +++ arch/arm/include/asm/arch-mx28/imx-regs.h |1 + arch/arm/include/asm/arch-mx28/regs-apbh.h | 466 +++ drivers/dma/Makefile

[U-Boot] [PATCH 07/15] iMX28: Add SPI driver

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/spi/Makefile |1 + drivers/spi/mxs_spi.c | 172 + 2 files changed, 173 insertions(+), 0 deletions(-) create mode 100644 drivers/spi/mxs_spi.c dif

[U-Boot] [PATCH 05/15] iMX28: Add I2C bus driver

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Heiko Schocher Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/i2c/Makefile |1 + drivers/i2c/mxs_i2c.c | 240 + 2 files changed, 241 insertions(+), 0 deletions(-) create mode 100644 driver

[U-Boot] [PATCH 06/15] iMX28: Add GPIO control

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- arch/arm/cpu/arm926ejs/mx28/mx28.c|6 ++ arch/arm/include/asm/arch-mx28/gpio.h | 32 drivers/gpio/Makefile |1 + drivers/gpio/mxs_gpio.c | 136

[U-Boot] [PATCH 04/15] iMX28: Add PINMUX control

2011-09-11 Thread Marek Vasut
Taken from Linux kernel with minor modifications: commit bf985969e27b507f734435a99df8bf745a3dbb2b Author: Shawn Guo Date: Mon Dec 20 22:57:43 2010 +0800 ARM: mxs: Add iomux support Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- arch/arm/cpu/arm92

[U-Boot] [PATCH 03/15] FEC: Add support for iMX28 quirks

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c | 44 ++-- 1 files changed, 42 insertions(+), 2 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index cf

[U-Boot] [PATCH 02/15] iMX28: Add SSP MMC driver

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Andy Fleming Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- arch/arm/include/asm/arch-mx28/sys_proto.h |2 + drivers/mmc/Makefile |1 + drivers/mmc/mxsmmc.c | 351 3 fil

[U-Boot] [PATCH 00/15 V2] Support for the DENX M28 SoM

2011-09-11 Thread Marek Vasut
This series adds support for DENX M28 SoM and M28EVK kit. This series depends on previous series: * Support for both FEC interfaces on i.MX28 * Random NAND fixes and improvements * SPL modifications V2: * Convert to SPL framework * Squash patches together * Fix pointed out issues Marek V

[U-Boot] [PATCH 11/11] FEC: Move imx_get_mac_from_fuse() definition to fec_mxc.h

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- arch/arm/include/asm/arch-mx25/imx-regs.h |1 - arch/arm/include/asm/arch-mx27/imx-regs.h |1 - arch/arm/include/asm/arch-mx35/imx-regs.h |2 -- arch/arm/include/asm/arch-mx5/imx-re

[U-Boot] [PATCH 10/11] FEC: Squish "got MAC from fuse" message, make it debug()

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 6355640..cfe2176 100644 --- a/drivers/net/fec

[U-Boot] [PATCH 09/11] FEC: Add timeout for chip reset

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c | 25 + 1 files changed, 21 insertions(+), 4 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 3aaec37..6355640 1006

[U-Boot] [PATCH 08/11] FEC: Allow registering MII postconfiguration callback

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c | 14 +- drivers/net/fec_mxc.h |1 + include/netdev.h |5 + 3 files changed, 19 insertions(+), 1 deletions(-) diff --git a/drivers/net/fec_

[U-Boot] [PATCH 07/11] FEC: Allow multiple FECes

2011-09-11 Thread Marek Vasut
This patch allows user to register multiple FEC controllers. To preserve compatibility with older boards, the mxcfec_register() call is still in place. To use multiple controllers, new macro is in place, the mxcfec_register_multi(), which takes more arguments. The syntax is: mxcfec_register_multi(

[U-Boot] [PATCH 06/11] FEC: Abstract access to fec->eth in MII operations

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 61b80b2..d448496 100644 ---

[U-Boot] [PATCH 05/11] FEC: Allow selection of MII mode via CONFIG_FEC_XCV_TYPE

2011-09-11 Thread Marek Vasut
The default is MII100, which was hardcoded previously in the driver. Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/drivers/net/fec_mxc.c b

[U-Boot] [PATCH 04/11] FEC: Add RMII mode support

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c |2 ++ drivers/net/fec_mxc.h |4 +++- 2 files changed, 5 insertions(+), 1 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 9a99272..3

[U-Boot] [PATCH 03/11] FEC: Kill mode select FIXME's

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c | 26 ++ 1 files changed, 14 insertions(+), 12 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 8e0d30a..9a99272 10

[U-Boot] [PATCH 02/11] FEC: Use defined constant instead of magic number

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 82fe1e4..8e0d30a 100644 --- a/drivers/net/fec

[U-Boot] [PATCH 01/11] FEC: Use proper accessor to read register in debug call

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Ben Warren Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/net/fec_mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index ab90afa..82fe1e4 100644 --- a/drivers/net/fec

[U-Boot] [PATCH 00/11 V2] Support for both FEC interfaces on i.MX28

2011-09-11 Thread Marek Vasut
This patchset introduces support for both FEC ethernet interfaces on the i.MX28 CPU and clears most of the FIXME's the the driver. V2: Use PKTSIZE instead of plain 1518 value. Marek Vasut (11): FEC: Use proper accessor to read register in debug call FEC: Use defined constant instead of magic

Re: [U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-11 Thread Mike Frysinger
On Sunday, September 11, 2011 18:22:26 Jason Kridner wrote: > This was done with the following command-line: > > for file in `find . | grep '\.[chS]$'`; > do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; > done one line: find . -name '*.[chS]' -exec \ sed -ri 's

[U-Boot] [PATCH 5/5] NAND: Add scrub.quiet command option

2011-09-11 Thread Marek Vasut
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 --- common/cmd_nand.c |8 +++- 1 files changed, 7 insertions(+), 1 d

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

2011-09-11 Thread Marek Vasut
The "nand info" and "nand device" now set shell/environment variables: nand_writesize ... nand page size nand_oobsize . nand oob area size nand_erasesize ... nand erase block size The shell variables are only set if HUSH is enabled. Also, the "nand info" command now di

[U-Boot] [PATCH 3/5] NAND: Allow per-buffer allocation

2011-09-11 Thread Marek Vasut
Don't allocate NAND buffers as one block, but allocate them separately. This allows systems where DMA to buffers happen to allocate these buffers properly aligned. Signed-off-by: Marek Vasut Cc: Scott Wood Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel --- drivers/mtd/nand/nand_base.c

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

2011-09-11 Thread Marek Vasut
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 | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/common/cmd_na

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

2011-09-11 Thread Marek Vasut
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/mtd/mtd.h |1 + 3 files changed, 7 insertions(+), 18 deletions(-) dif

[U-Boot] [PATCH 0/5 V2] Random NAND fixes and improvements

2011-09-11 Thread Marek Vasut
This is a resend of the NAND fixes and improvements. These are squashed togethere here and sent as a batch. V2: Fix the scrub.quiet command Marek Vasut (5): NAND: Really ignore bad blocks when scrubbing NAND: Add nand read.raw and write.raw commands NAND: Allow per-buffer allocation NAND:

[U-Boot] [PATCH 2/2 RESEND] SPL: Allow user to disable CPU support library

2011-09-11 Thread Marek Vasut
Introduce CONFIG_SPL_NO_CPU_SUPPORT_CODE to avoid compiling the CPU support library. This can be useful on some setups. Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel Cc: Chander Kashyap --- spl/Makefile |7 ++- 1 files changed, 6 insertions(+), 1 de

[U-Boot] [PATCH 1/2 RESEND] SPL: Make path to start.S configurable

2011-09-11 Thread Marek Vasut
Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's not always fitting to use CPU's start.S . Signed-off-by: Marek Vasut Cc: Stefano Babic Cc: Wolfgang Denk Cc: Detlev Zundel Cc: Chander Kashyap --- spl/Makefile | 10 -- 1 files changed, 8 insertions(+), 2 del

[U-Boot] [PATCH 0/2] SPL improvements

2011-09-11 Thread Marek Vasut
This series introduces a few modifications to the new SPL framework to make it a bit more flexible. RESEND: Missing Cc-ed people in the patches. Marek Vasut (2): SPL: Make path to start.S configurable SPL: Allow user to disable CPU support library spl/Makefile | 17 ++--- 1 fi

[U-Boot] [PATCH 2/2] SPL: Allow user to disable CPU support library

2011-09-11 Thread Marek Vasut
Introduce CONFIG_SPL_NO_CPU_SUPPORT_CODE to avoid compiling the CPU support library. This can be useful on some setups. Signed-off-by: Marek Vasut --- spl/Makefile |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/spl/Makefile b/spl/Makefile index 56d8ea1..3967737 10

[U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-11 Thread Marek Vasut
Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's not always fitting to use CPU's start.S . Signed-off-by: Marek Vasut --- spl/Makefile | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/spl/Makefile b/spl/Makefile index 95ecce1..56d8ea1 100

[U-Boot] [PATCH 0/2] SPL improvements

2011-09-11 Thread Marek Vasut
This series introduces a few modifications to the new SPL framework to make it a bit more flexible. Marek Vasut (2): SPL: Make path to start.S configurable SPL: Allow user to disable CPU support library spl/Makefile | 17 ++--- 1 files changed, 14 insertions(+), 3 deletions(-)

[U-Boot] [PATCH] ARM: versatile: delete split_by_variant.sh

2011-09-11 Thread Linus Walleij
Since commit d388298a59ba375c76597b8f95b560afa971a0fb by Stefano Babic this file is no longer needed so delete it. Cc: Stefano Babic Cc: Loïc Minier Signed-off-by: Linus Walleij --- board/armltd/versatile/split_by_variant.sh | 42 1 files changed, 0 insertions(+)

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Andrew Murray
Hi Mike, On 11 September 2011 21:17, Mike Frysinger wrote: > > your change to the if statement is pointless ? You are right - I thought I was going crazy then realized I made this patch on an earlier version of the code which didn't have the load == image_start check in the first line (see http:

[U-Boot] [PATCH] led: remove camelcase in LED functions from assembly

2011-09-11 Thread Jason Kridner
This was done with the following command-line: for file in `find . | grep '\.[chS]$'`; do perl -i -pe 's/(green|yellow|red|blue)_LED_(on|off)/$1_led_$2/g' $file; done Signed-off-by: Jason Kridner --- arch/arm/cpu/arm1176/start.S|2 +- arch/arm/cpu/arm720t/start.S

Re: [U-Boot] Please pull u-boot-ti/master -- breaks a lot of builds

2011-09-11 Thread Jason Kridner
On Sun, Sep 11, 2011 at 5:50 PM, Albert ARIBAUD wrote: > Le 08/09/2011 17:16, s-paul...@ti.com a écrit : > >> Jason Kridner (1): >>       led: remove camel casing of led identifiers globally > > I just re-ran build tests, and this patch breaks a lot of boards because it > did not touch start.S fil

Re: [U-Boot] Please pull u-boot-ti/master -- breaks a lot of builds

2011-09-11 Thread Albert ARIBAUD
Le 08/09/2011 17:16, s-paul...@ti.com a écrit : > Jason Kridner (1): >led: remove camel casing of led identifiers globally I just re-ran build tests, and this patch breaks a lot of boards because it did not touch start.S files that refer to the LEDs. Since I've already pulled it in, Ja

Re: [U-Boot] omap3_beagle: build broken - fix or remove board?

2011-09-11 Thread Albert ARIBAUD
Le 11/09/2011 22:51, Paulraj, Sandeep a écrit : > > > >> Can we please have this issue fixed before the end of this week? >> I want to have a -rc2 then, and shortly after that the release. >> If we cannot fix this board now, then we will have to remove it >> (it can be re-added later when clean fix

Re: [U-Boot] omap3_beagle: build broken - fix or remove board?

2011-09-11 Thread Paulraj, Sandeep
>Can we please have this issue fixed before the end of this week? >I want to have a -rc2 then, and shortly after that the release. >If we cannot fix this board now, then we will have to remove it >(it can be re-added later when clean fixes become available). Hi Wolfgang, The patches to fix th

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Mike Frysinger
On Sunday, September 11, 2011 16:13:26 Andrew Murray wrote: > On 11 September 2011 20:22, Mike Frysinger wrote: > > On Saturday, September 10, 2011 10:57:47 Andrew Murray wrote: > > > --- a/common/cmd_bootm.c > > > +++ b/common/cmd_bootm.c > > > > > > if (load == blob_start || load

Re: [U-Boot] [STATUS] v2011.09-rc1 is out

2011-09-11 Thread Mike Frysinger
On Sunday, September 11, 2011 15:56:39 Wolfgang Denk wrote: > * U-Boot v2011.96-rc1 was released on Sun, Sep 11, 2011 2011.09-rc1 ;) > * Release "v2011.09" is scheduled in 11 days - on September 22, 2011. > > Please help testing, and check if all your relevant patches have been > included. all

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Andrew Murray
On 11 September 2011 20:22, Mike Frysinger wrote: > On Saturday, September 10, 2011 10:57:47 Andrew Murray wrote: > > --- a/common/cmd_bootm.c > > +++ b/common/cmd_bootm.c > > > > if (load == blob_start || load == image_start) { > > .. > > -

[U-Boot] omap3_beagle: build broken - fix or remove board?

2011-09-11 Thread Wolfgang Denk
Hi Dirk, despite of severalpatches that have been posted before, the omap3_beagle build is still broken: cmd_i2c.c:109: warning: missing braces around initializer cmd_i2c.c:109: warning: (near initialization for 'i2c_no_probes[0]') beagle.c:532: warning: initialization from incompatible pointer t

[U-Boot] smdkv310: fix needed for out-of-tree build

2011-09-11 Thread Wolfgang Denk
Dear Chander, when building the "smdkv310" board out-of-tree, it pollutes the source directory with the following files: mmc_spl/board/samsung/smdkv310/lowlevel_init.S mmc_spl/board/samsung/smdkv310/mem_setup.S mmc_spl/board/samsung/smdkv310/start.S which then never get c

Re: [U-Boot] [PATCH v2] BeagleBoard: Remove userbutton command and use gpio command instead

2011-09-11 Thread Jason Kridner
On Sun, Sep 11, 2011 at 2:41 PM, Joel A Fernandes wrote: > Remove userbutton command and do the detection in board config file using the > gpio command Can you split these into two or three patches? I'm not sure what is normal, but I suspect that this is one of those things where you should rem

[U-Boot] ORIGEN: fix needed for out-of-tree build

2011-09-11 Thread Wolfgang Denk
Dear Chander, when building the "origen" board out-of-tree, it poollutes the source directory with a file board/samsung/origen/tools/mkorigenspl.exe which then never gets cleaned up. Please fix your Makefile for out-of-tree building. Side-note: Why is this file called ".exe"? Is this some MSDO

[U-Boot] [STATUS] v2011.09-rc1 is out

2011-09-11 Thread Wolfgang Denk
Hello everybody: * U-Boot v2011.96-rc1 was released on Sun, Sep 11, 2011 * Release "v2011.09" is scheduled in 11 days - on September 22, 2011. Please help testing, and check if all your relevant patches have been included. Most of the ARM cleanup has now been completed, there are only a few re

Re: [U-Boot] [PATCH] Improve output of bootm command

2011-09-11 Thread Mike Frysinger
On Saturday, September 10, 2011 10:57:47 Andrew Murray wrote: > --- a/common/cmd_bootm.c > +++ b/common/cmd_bootm.c > > if (load == blob_start || load == image_start) { > .. > - } else { > + } else if (load != image_start) { sorr

Re: [U-Boot] [PATCH] KS8695: convert KS8695 eth driver to CONFIG_MULTI_ETH

2011-09-11 Thread Mike Frysinger
On Saturday, September 10, 2011 04:40:34 Greg Ungerer wrote: > --- a/include/netdev.h > +++ b/include/netdev.h > > +int ks8695_eth_initialize(bd_t *bis); so you say the func needs bd_t* ... > --- a/board/cm4008/cm4008.c > +++ b/board/cm4008/cm4008.c > --- a/board/cm41xx/cm41xx.c > +++ b/board/cm

[U-Boot] [PATCH v2] BeagleBoard: Remove userbutton command and use gpio command instead

2011-09-11 Thread Joel A Fernandes
Remove userbutton command and do the detection in board config file using the gpio command Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- This addresses the suggestions at: http://patchwork.ozlabs.org/patch/110123/ Also, with the removal of the userbutton command, all checkpat

[U-Boot] [PATCH] BeagleBoard: Remove userbutton command and use gpio command instead

2011-09-11 Thread Joel A Fernandes
Remove userbutton command and do the detection in board config file using the gpio command Signed-off-by: Joel A Fernandes Signed-off-by: Jason Kridner --- This addresses the suggestions at: http://patchwork.ozlabs.org/patch/110123/ Also, with the removal of the userbutton command, all checkpat

Re: [U-Boot] [PATCH] ARM: hawkboard: fix compilation of nand_spl

2011-09-11 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4e6cddc8.5040...@aribaud.net> you wrote: > > > I'd already applied this patch from Stefano to u-boot-arm/master. > > Correction: you, not I, had already applied a patch with the exact same > title and different content. Yes, there were several problems with this

Re: [U-Boot] [PATCH] ARM: hawkboard: fix compilation of nand_spl

2011-09-11 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4e6cdaeb.6050...@aribaud.net> you wrote: > > I'd already applied this patch from Stefano to u-boot-arm/master. This is no problem - git will sort it out automatically. Sorry for going ahead, I wanted to clean up the ARM build finally. Best regards, Wolfgang De

Re: [U-Boot] [PATCH 2/3] BeagleBoard: Added userbutton command

2011-09-11 Thread Joel A Fernandes
On Thu, Sep 8, 2011 at 3:05 AM, Wolfgang Denk wrote: > Dear Joel A Fernandes, > > In message <1313462214-3716-2-git-send-email-agnel.j...@gmail.com> you wrote: >> From: Jason Kridner >> >> Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072 >>     Author: Greg Turner >>     Date:   Tue May

Re: [U-Boot] [PATCH v2] OMAP3: Overo: Update GPMC timing for ethernet chip.

2011-09-11 Thread Philip Balister
I see I should have copied a maintainer on this patch. Which tree will this sort of path go upstream via? It seems like my choices are ARM of OMAP3. I've got a number of other patches that should go upstream that are Overo centric. In general, what route should they take upstream? Philip On 0

Re: [U-Boot] [PATCH V2] ARM: hawkboard_nand: fix compilation of nand_spl

2011-09-11 Thread Albert ARIBAUD
Le 10/09/2011 16:13, Wolfgang Denk a écrit : > Dear Stefano Babic, > > In message<1315573742-10128-1-git-send-email-sba...@denx.de> you wrote: >> get_ram_size() is called, but memsize.c is not compiled. >> >> Signed-off-by: Stefano Babic >> --- >> >> Changes since V1: >> - make list sorted (Wolfga

Re: [U-Boot] [PATCH] ARM: hawkboard: fix compilation of nand_spl

2011-09-11 Thread Albert ARIBAUD
Le 11/09/2011 17:59, Albert ARIBAUD a écrit : > Hi Wolfgang, > > Le 10/09/2011 22:46, Wolfgang Denk a écrit : >> Dear Wolfgang Denk, >> >> In message<1315686495-9133-1-git-send-email...@denx.de> you wrote: >>> Fix build problem: >>> >>> nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c: In fun

Re: [U-Boot] [PATCH] ARM: hawkboard: fix compilation of nand_spl

2011-09-11 Thread Albert ARIBAUD
Hi Wolfgang, Le 10/09/2011 22:46, Wolfgang Denk a écrit : > Dear Wolfgang Denk, > > In message<1315686495-9133-1-git-send-email...@denx.de> you wrote: >> Fix build problem: >> >> nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c: In function >> 'board_init_f': >> nand_spl/board/davinci/da8xxe

Re: [U-Boot] [PATCH 01/48] ARM: Update mach-types

2011-09-11 Thread Jason
On Sun, Sep 11, 2011 at 02:46:11PM +0200, Wolfgang Denk wrote: > Dear Jason, > > In message <20110911120755.gc15...@titan.lakedaemon.net> you wrote: > > > > > Feel free to add a temporary definition of the ID to your board config > > > file (to be removed later, when the offical mach-types file ha

Re: [U-Boot] [PATCH 01/48] ARM: Update mach-types

2011-09-11 Thread Wolfgang Denk
Dear Jason, In message <20110911120755.gc15...@titan.lakedaemon.net> you wrote: > > > Feel free to add a temporary definition of the ID to your board config > > file (to be removed later, when the offical mach-types file has the > > needed data. > > So I could do this for Dreamplug? What's the b

Re: [U-Boot] [PATCH 01/48] ARM: Update mach-types

2011-09-11 Thread Jason
On Sat, Sep 10, 2011 at 11:03:58PM +0200, Wolfgang Denk wrote: > In message <201109102249.13368.marek.va...@gmail.com> you wrote: > > Well we'll have to break this policy. M28EVK machine ID isn't there yet. On > > the > > other hand, it's here: > > > > http://www.arm.linux.org.uk/developer/machi