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 albert.u.b...@aribaud.net 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

[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 j...@ti.com --- arch/arm/cpu/arm1176/start.S|2 +-

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 vap...@gentoo.org 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

[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 sba...@denx.de Cc: Loïc Minier loic.min...@linaro.org Signed-off-by: Linus Walleij linus.wall...@linaro.org --- board/armltd/versatile/split_by_variant.sh | 42

[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 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 marek.va...@gmail.com --- spl/Makefile | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/spl/Makefile b/spl/Makefile

[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 marek.va...@gmail.com --- spl/Makefile |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/spl/Makefile b/spl/Makefile

[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 marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de Cc: Chander Kashyap

[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

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Scott Wood scottw...@freescale.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nand_util.c | 22 +-

[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 marek.va...@gmail.com Cc: Scott Wood scottw...@freescale.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- common/cmd_nand.c | 14

[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 marek.va...@gmail.com Cc: Scott Wood scottw...@freescale.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang

[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

[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 marek.va...@gmail.com Cc: Scott Wood scottw...@freescale.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel

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

[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

[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 marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c | 26 ++ 1 files changed, 14 insertions(+), 12 deletions(-)

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c |2 ++ drivers/net/fec_mxc.h |4 +++- 2 files changed, 5 insertions(+), 1

[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 marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c |6 +- 1

[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 marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c | 18 ++ 1 files changed, 10 insertions(+), 8 deletions(-) diff

[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:

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c | 14 +- drivers/net/fec_mxc.h |1 + include/netdev.h |5

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c | 25 + 1 files changed, 21 insertions(+), 4 deletions(-)

[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 marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git

[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 marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- arch/arm/include/asm/arch-mx25/imx-regs.h |1 - arch/arm/include/asm/arch-mx27/imx-regs.h |1 -

[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

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Andy Fleming aflem...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- arch/arm/include/asm/arch-mx28/sys_proto.h |2 + drivers/mmc/Makefile |1 +

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Ben Warren biggerbadder...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/net/fec_mxc.c | 44 ++-- 1 files changed, 42

[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 shawn@freescale.com Date: Mon Dec 20 22:57:43 2010 +0800 ARM: mxs: Add iomux support Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- arch/arm/cpu/arm926ejs/mx28/mx28.c|6 ++ arch/arm/include/asm/arch-mx28/gpio.h | 32 drivers/gpio/Makefile |1

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Heiko Schocher h...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/i2c/Makefile |1 + drivers/i2c/mxs_i2c.c | 240 + 2

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/spi/Makefile |1 + drivers/spi/mxs_spi.c | 172 + 2 files changed, 173 insertions(+), 0

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- arch/arm/include/asm/arch-mx28/dma.h | 170 +++ arch/arm/include/asm/arch-mx28/imx-regs.h |1 +

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Scott Wood scottw...@freescale.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/mtd/nand/Makefile |1 + drivers/mtd/nand/mxs_nand.c | 1159

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/rtc/Makefile |1 + drivers/rtc/mxsrtc.c | 86 ++ 2 files changed, 87 insertions(+), 0

[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 marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- tools/Makefile |6 + tools/mxsboot.c |

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- Makefile |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index ee05fb3..69dfe88 100644 ---

[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 marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- MAINTAINERS

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

2011-09-11 Thread Marek Vasut
Signed-off-by: Marek Vasut marek.va...@gmail.com Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- doc/README.m28 | 223 1 files changed, 223 insertions(+), 0 deletions(-) create mode

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 | 17

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 to

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 s...@chromium.org 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

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 w...@denx.de 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:

[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 vap...@gentoo.org --- .gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-)

[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 vap...@gentoo.org ---

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

2011-09-11 Thread Mike Frysinger
From: Vadim Bendebury vben...@chromium.org 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 vben...@chromium.org Signed-off-by: Mike Frysinger vap...@gentoo.org --- drivers/mtd/spi/spi_flash.c |2 +- 1 files

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 v6] dreamplug: initial board support.

2011-09-11 Thread u-boot
From: Jason Cooper u-b...@lakedaemon.net 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

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 marek.va...@gmail.com Cc: Heiko Schocher h...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Detlev Zundel d...@denx.de --- drivers/i2c/Makefile |1 + drivers/i2c/mxs_i2c.c | 240

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 albert.u.b...@aribaud.net 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

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; done one

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/machines/

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 best way to

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 has the

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 message1315686495-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':

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 message1315686495-9133-1-git-send-email...@denx.de you wrote: Fix build problem: nand_spl/board/davinci/da8xxevm/hawkboard_nand_spl.c: In function

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 message1315573742-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 Babicsba...@denx.de --- Changes since V1: - make list sorted (Wolfgang

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

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 w...@denx.de wrote: Dear Joel A Fernandes, In message 1313462214-3716-2-git-send-email-agnel.j...@gmail.com you wrote: From: Jason Kridner jkrid...@beagleboard.org Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072     Author: Greg Turner

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 Denk

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 board

[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 agnel.j...@gmail.com Signed-off-by: Jason Kridner jkrid...@beagleboard.org --- This addresses the suggestions at: http://patchwork.ozlabs.org/patch/110123/ Also, with the

[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 agnel.j...@gmail.com Signed-off-by: Jason Kridner jkrid...@beagleboard.org --- This addresses the suggestions at: http://patchwork.ozlabs.org/patch/110123/ Also, with the

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 +++

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) { sorry, but

[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

[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 MSDOS

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 agnel.j...@gmail.com 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

[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

[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

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

2011-09-11 Thread Andrew Murray
On 11 September 2011 20:22, Mike Frysinger vap...@gentoo.org 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) { .. -

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 the

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 vap...@gentoo.org 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 ||

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 this

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 fixes become

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,