Re: [U-Boot] pull request for u-boot-tegra/master

2012-08-07 Thread Albert ARIBAUD
Hi Allen, On Mon, 6 Aug 2012 15:46:22 -0700, Allen Martin amar...@nvidia.com wrote: -Original Message- From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] Sent: Sunday, August 05, 2012 1:01 PM To: Albert ARIBAUD Cc: Tom Warren; si...@theia.denx.de; u-boot@lists.denx.de;

Re: [U-Boot] [PATCH] mkconfig: fix failure on boards that don't define soc

2012-08-07 Thread Albert ARIBAUD
Hi Allen, On Mon, 6 Aug 2012 17:07:25 -0700, Allen Martin amar...@nvidia.com wrote: On Mon, Aug 06, 2012 at 05:04:28PM -0700, Allen Martin wrote: Fix a configure failure on boards that don't define soc. The exit status of the subshell was propogating up and causing mkconfig to fail. Add

Re: [U-Boot] [PATCH 1/6] powerpc/corenet_ds: Update README.srio-boot-corenet

2012-08-07 Thread Liu Gang
Hi Andy, It's so long time those patches resided in open source, and there are no any comments. http://patchwork.ozlabs.org/patch/163499/ So could you please help to apply them? Following are some descriptions for this set of patches excerpt from the e-mail sent to you at June 1. .. Now

Re: [U-Boot] [PATCH v4] at91: Add support for taskit AT91SAM9G20 boards.

2012-08-07 Thread Andreas Bießmann
Dear Markus Hubig, On 06.08.2012 18:49, Markus Hubig wrote: On Mon, Aug 06, 2012 at 03:01:40PM +0200, Andreas Bießmann wrote: On 06.08.2012 11:11, Markus Hubig wrote: +static unsigned int saved_state[3] = {STATUS_LED_OFF, + STATUS_LED_OFF, STATUS_LED_OFF}; + +void coloured_LED_init(void)

Re: [U-Boot] [PATCH 1/4] MX28: Fix up the MMC driver DMA mode

2012-08-07 Thread Stefano Babic
On 06/08/2012 23:23, Marek Vasut wrote: Dear Marek Vasut, The DMA mode didn't properly configure the DMA_ENABLE bit in CTRL1. Also, it was using SSP0 DMA channel for all SSP devices. Signed-off-by: Marek Vasut ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de

[U-Boot] [PATCH v5 4/5] OMAP: networking support for SPL

2012-08-07 Thread Ilya Yanok
This patch adds support for networking in SPL. Some devices are capable of loading SPL via network so it makes sense to load the main U-Boot binary via network too. This patch tries to use existing network code as much as possible. Unfortunately, it depends on environment which in turn depends on

Re: [U-Boot] [PATCH v4 2/5] spl: don't mark __u_boot_cmd* as undefined

2012-08-07 Thread Ilya Yanok
Hi Tom, On Tue, Aug 7, 2012 at 1:11 AM, Ilya Yanok ilya.ya...@cogentembedded.comwrote: Yes. What I meant was that not all of the stuff that is guarded today is garbage collected so the resulting image is larger than it must be. Yep. And that's actually goes beyond the subject of this

[U-Boot] [PATCH 08/16] Blackfin: add more print info for Bf60x

2012-08-07 Thread Bob Liu
Add system0, system1, dclk and cgu print info for Bf60x. Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/lib/board.c |6 ++ arch/blackfin/lib/clocks.c| 10 +- common/cmd_reginfo.c | 17 + include/configs/bf609-ezkit.h |1 + 4

[U-Boot] [PATCH 03/16] Blackfin: Bf60x: support big cplb page

2012-08-07 Thread Bob Liu
Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for them. So that bf609-ezkit can use it's 128M memory. Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/include/asm/cplb.h | 13 +- arch/blackfin/include/asm/mach-common/bits/mpu.h |6

[U-Boot] [PATCH 06/16] Blackfin: Bf609-ezkit: implement soft switch

2012-08-07 Thread Bob Liu
From: Sonic Zhang sonic.zh...@analog.com Set up soft switch pins properly in board init code. Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- board/bf609-ezkit/Makefile |1 + board/bf609-ezkit/bf609-ezkit.c | 22 +++--

[U-Boot] [PATCH 02/16] Blackfin: bf609-ezkit: new board port

2012-08-07 Thread Bob Liu
From: Mike Frysinger vap...@gentoo.org Add basic support for new board bf609-ezkit. Signed-off-by: Mike Frysinger vap...@gentoo.org Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/initcode.c | 96

[U-Boot] [PATCH 12/16] Blackfin: Bf60x: initcode: set up uart baud properly

2012-08-07 Thread Bob Liu
From: Sonic Zhang sonic.zh...@analog.com Set up uart baud properly for booting u-boot over UART Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/initcode.c |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff

[U-Boot] [PATCH 11/16] Blackfin: Bf60x: support clock init

2012-08-07 Thread Bob Liu
Add a way to set clock to values getting from config file bf609-ezkit.h Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/initcode.c | 221 +- arch/blackfin/include/asm/mach-common/bits/cgu.h |2 + include/configs/bf609-ezkit.h

[U-Boot] [PATCH 13/16] Blackfin: Bf60x: add hw watchdog support

2012-08-07 Thread Bob Liu
Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/initcode.c | 14 ++ arch/blackfin/cpu/start.S |2 ++ include/configs/bf609-ezkit.h |1 + 3 files changed, 17 insertions(+) diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu/initcode.c index

[U-Boot] [PATCH 09/16] Blackfin: Bf60x: add reset support

2012-08-07 Thread Bob Liu
Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/reset.c |4 1 file changed, 4 insertions(+) diff --git a/arch/blackfin/cpu/reset.c b/arch/blackfin/cpu/reset.c index 33df0fc..b6718d3 100644 --- a/arch/blackfin/cpu/reset.c +++ b/arch/blackfin/cpu/reset.c @@ -70,8 +70,12 @@

[U-Boot] [PATCH 04/16] Blackfin: Rsi: add support for bf609-ezkit

2012-08-07 Thread Bob Liu
From: Sonic Zhang sonic.zh...@analog.com Add support for bf609-ezkit to board file and mmc driver. Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/include/asm/config-pre.h |4 ++

[U-Boot] [PATCH 05/16] Blackfin: Paraflash: add support for bf609-ezkit

2012-08-07 Thread Bob Liu
Add paraflash support for bf609-ezkit to board file. Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/include/asm/mach-bf609/portmux.h |1 + board/bf609-ezkit/bf609-ezkit.c|8 +++--- include/configs/bf609-ezkit.h | 35 +++-

[U-Boot] [PATCH 10/16] Blackfin: Bf60x: Check card ready for each RSI command

2012-08-07 Thread Bob Liu
From: Sonic Zhang sonic.zh...@analog.com Set up RSI data before sending RSI command if data is applicable. Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- drivers/mmc/bfin_sdh.c | 23 --- 1 file changed, 20 insertions(+), 3

[U-Boot] [PATCH 07/16] Blackfin: Spi: add bf6xx spi driver

2012-08-07 Thread Bob Liu
From: Scott Jiang scott.jiang.li...@gmail.com Spi driver for bf60x is different from old one, so implement a new driver for it. Signed-off-by: Scott Jiang scott.jiang.li...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com ---

[U-Boot] [PATCH 16/16] Blackfin: update license to Clear BSD license.

2012-08-07 Thread Bob Liu
From: Sonic Zhang sonic.zh...@analog.com Per the request from ADI Legal. Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/Clear_BSD.txt| 33 arch/blackfin/cpu/bootcount.c

[U-Boot] [PATCH 14/16] Blackfin: setup SMC if user desires it

2012-08-07 Thread Bob Liu
From: Mike Frysinger vap...@gentoo.org The static memory controller is how people connect flashes to newer Blackfin processors, so add knobs for people to program settings if they so desire. Signed-off-by: Mike Frysinger vap...@gentoo.org Signed-off-by: Sonic Zhang sonic.zh...@analog.com

[U-Boot] [PATCH 15/16] Blackfin: Bf60x: add resume from hibernate

2012-08-07 Thread Bob Liu
From: Steven Miao real...@gmail.com Add Bf60x resume from hibernate support Signed-off-by: Steven Miao real...@gmail.com Signed-off-by: Sonic Zhang sonic.zh...@analog.com Signed-off-by: Bob Liu lliu...@gmail.com --- arch/blackfin/cpu/initcode.c | 46 ++

[U-Boot] patman patches

2012-08-07 Thread Ilya Yanok
Hi guys, Is it a good place to post patman patches? Or should I go to some chromium list? Regards, Ilya. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] patman patches

2012-08-07 Thread Stefano Babic
On 07/08/2012 10:54, Ilya Yanok wrote: Hi guys, Hi Ilya, Is it a good place to post patman patches? Or should I go to some chromium list? IMHO here is the best place, patman is integrated in u-boot and your patches can be discussed on this ML - my 2 cents. Regards, Stefano --

Re: [U-Boot] patman patches

2012-08-07 Thread Ilya Yanok
Hi Stefano, On Tue, Aug 7, 2012 at 12:57 PM, Stefano Babic sba...@denx.de wrote: On 07/08/2012 10:54, Ilya Yanok wrote: Hi guys, Hi Ilya, Is it a good place to post patman patches? Or should I go to some chromium list? IMHO here is the best place, patman is integrated in u-boot

Re: [U-Boot] [PATCH v1 1/6] mxs: reorganize source directory for easy sharing of code in i.MXS SoCs

2012-08-07 Thread Stefano Babic
On 05/08/2012 21:05, Otavio Salvador wrote: Most code can be shared between i.MX23 and i.MX28 as both are from i.MXS family; this source directory structure makes easy to share code among them. Signed-off-by: Otavio Salvador ota...@ossystems.com.br --- Whole series applied to u-boot-imx,

Re: [U-Boot] [PATCH 1/4] MX28: Fix up the MMC driver DMA mode

2012-08-07 Thread Stefano Babic
On 07/07/2012 09:25, Marek Vasut wrote: The DMA mode didn't properly configure the DMA_ENABLE bit in CTRL1. Also, it was using SSP0 DMA channel for all SSP devices. Signed-off-by: Marek Vasut ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Fabio Estevam

[U-Boot] [PATCH 1/2] ARM: OMAP4/5: Remove dead code against CONFIG_SYS_CLOCKS_ENABLE_ALL

2012-08-07 Thread Jassi Brar
The commit f3f98bb0 : ARM: OMAP4/5: Do not configure non essential pads, clocks, dplls removed the config option aimed towards moving that stuff into kernel, which renders some code unreachable. Remove that code. Signed-off-by: Jassi Brar jaswinder.si...@linaro.org --- Hi, The commit f3f98bb0

[U-Boot] [PATCH 2/2] ARM: OMAP4/5: Remove dead code against CONFIG_SYS_ENABLE_PADS_ALL

2012-08-07 Thread Jassi Brar
The commit f3f98bb0 : ARM: OMAP4/5: Do not configure non essential pads, clocks, dplls removed the config option aimed towards moving that stuff into kernel, which renders some code unreachable. Remove that code. Signed-off-by: Jassi Brar jaswinder.si...@linaro.org ---

Re: [U-Boot] [PATCH 2/2] vision2: do not overwrite the console

2012-08-07 Thread Stefano Babic
On 05/08/2012 19:31, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com On this board, the console is always set to the serial line. Do not allow to overwrite it when video is enabled. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx,

Re: [U-Boot] [PATCH 1/2] mx51evk: do not overwrite the console

2012-08-07 Thread Stefano Babic
On 05/08/2012 19:31, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com On this board, the console is always set to the serial line. Do not allow to overwrite it when video is enabled. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx,

Re: [U-Boot] [PATCH V2] MX28: Add SchulerControl SC_SPS_1 platform

2012-08-07 Thread Stefano Babic
On 05/08/2012 12:37, Marek Vasut wrote: This i.MX28 platform supports the following: * 2x FEC ethernet * USB on USBH0 * I2C EEPROM * SPI NVRAM * LEDs Signed-off-by: Marek Vasut ma...@denx.de --- board/schulercontrol/sc_sps_1/Makefile | 47 +++

[U-Boot] [PATCH 1/4] patman: fix end of changes detection

2012-08-07 Thread Ilya Yanok
Changes may end in '---' line or Signoff line (generated by git format-patch) in case of Series-changes: lines being the last ones in commit message. So detect it properly. Signed-off-by: Ilya Yanok ilya.ya...@cogentembedded.com --- tools/patman/patchstream.py |6 ++ 1 file changed, 6

[U-Boot] [PATCH 0/4] Some patman fixes

2012-08-07 Thread Ilya Yanok
Patman is the great tool but I've found it nearly unusable for me. First of all I need to work with multiple signoffs in commits, then I'd like to use multiline changelog entries and I accostomed to putting changelog enties to the bottom of the commit. These patches fix changelog processing and

[U-Boot] [PATCH 2/4] patman: don't pick changes while processing patches

2012-08-07 Thread Ilya Yanok
We already got all changes from git log output and the comment to the ProcessLine function clearly states that 'patch' mode is not for scanning tags. Signed-off-by: Ilya Yanok ilya.ya...@cogentembedded.com --- tools/patman/patchstream.py |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)

[U-Boot] [PATCH 3/4] patman: don't mess with changelog

2012-08-07 Thread Ilya Yanok
Don't try to sort and uniq changelog entries as this breaks multiline entries. It will be better to add some real multi-line support but for now just preserve the entries as is. Signed-off-by: Ilya Yanok ilya.ya...@cogentembedded.com --- tools/patman/series.py |5 ++--- 1 file changed, 2

[U-Boot] [PATCH 4/4] patman: don't mess with signoffs

2012-08-07 Thread Ilya Yanok
Currently patman assumes that there should be only one Signoff line and this is obviously incorrect: we often have to work with patches containing other people signoffs. Moreover, it's really desirable to preserve the comments between signoffs. So until some sophisticated signoff processing will

[U-Boot] [PATCH V3] MX28: Add SchulerControl SC_SPS_1 platform

2012-08-07 Thread Marek Vasut
This i.MX28 platform supports the following: * 2x FEC ethernet * USB on USBH0 * I2C EEPROM * SPI NVRAM * LEDs Signed-off-by: Marek Vasut ma...@denx.de --- MAINTAINERS |1 + board/schulercontrol/sc_sps_1/Makefile | 47 +++

Re: [U-Boot] [PATCH 1/4] MX28: Fix up the MMC driver DMA mode

2012-08-07 Thread Marek Vasut
Dear Stefano Babic, On 06/08/2012 23:23, Marek Vasut wrote: Dear Marek Vasut, The DMA mode didn't properly configure the DMA_ENABLE bit in CTRL1. Also, it was using SSP0 DMA channel for all SSP devices. Signed-off-by: Marek Vasut ma...@denx.de Cc: Wolfgang Denk w...@denx.de Cc:

[U-Boot] [PATCH] am335x_evm: enable SMSC PHY driver

2012-08-07 Thread Ilya Yanok
Beaglebone uses SMSC PHY which works incorrectly with generic PHY driver so enable SMSC PHY driver to fix networking problems on Beaglebone. Signed-off-by: Ilya Yanok ilya.ya...@cogentembedded.com --- include/configs/am335x_evm.h |1 + 1 file changed, 1 insertion(+) diff --git

[U-Boot] [PATCH 2/2] serial: uartlite: Init all uartlites for serial multi

2012-08-07 Thread Michal Simek
Initialize all possible uartlites and return the first initialized port. For static configuration is initialization done in userial_ports array. Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/serial/serial_xuartlite.c | 34 +++--- 1 files changed, 19

[U-Boot] [PATCH 1/2] serial: Support serial multi for Microblaze

2012-08-07 Thread Michal Simek
enable serial multi for Microblaze. Signed-off-by: Michal Simek mon...@monstr.eu --- include/serial.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/serial.h b/include/serial.h index 5173499..9475779 100644 --- a/include/serial.h +++ b/include/serial.h @@

[U-Boot] [PATCH] phy: Add support for Marvell 88E1118R

2012-08-07 Thread Michal Simek
Marvell 88E1118R has different uid then 88E1118. Signed-off-by: Michal Simek mon...@monstr.eu CC: Andy Fleming aflem...@freescale.com CC: Zang Roy-R61911 tie-fei.z...@freescale.com CC: Kumar Gala ga...@kernel.crashing.org --- drivers/net/phy/marvell.c | 11 +++ 1 files changed, 11

Re: [U-Boot] [PATCH 01/11 v2] snowball: Add support for ux500 based snowball board

2012-08-07 Thread Linus Walleij
On Fri, Aug 3, 2012 at 11:05 PM, mathieu.poir...@linaro.org wrote: From: Mathieu J. Poirier mathieu.poir...@linaro.org Signed-off-by: Mathieu Poirier mathieu.poir...@linaro.org Signed-off-by: John Rigby john.ri...@linaro.org Acked-by: Linus Walleij linus.wall...@linaro.org For this entire

[U-Boot] [PATCH] arm:exynos: Enable data cache at exynos based processors.

2012-08-07 Thread Lukasz Majewski
This patch enables the L1 data cache for systems based on Samsung Exynos processor. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com --- arch/arm/cpu/armv7/exynos/soc.c |8 1 files

[U-Boot] [PATCH] arm:cache:trats: Enable PL310 L2 Cache Controller at TRATS Samsung board

2012-08-07 Thread Lukasz Majewski
Enable the PL310 L2 cache controller at TRATS Samsung board. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com --- include/configs/trats.h |6 -- 1 files changed, 4 insertions(+), 2

Re: [U-Boot] [RESEND PATCH v2] i.MX28: bug fixes in PMU configuration code

2012-08-07 Thread Stefano Babic
On 07/08/2012 16:56, Stathis Voukelatos wrote: Signed-off-by: Stathis Voukelatos stathis.voukela...@linn.co.uk Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut marek.va...@gmail.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic --

[U-Boot] [GIT PULL] Pull request: u-boot-imx

2012-08-07 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx, thanks. The following changes since commit 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08: DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-05 22:02:40 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master for you to

Re: [U-Boot] pull request for u-boot-tegra/master

2012-08-07 Thread Tom Warren
Albert, -Original Message- From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] Sent: Monday, August 06, 2012 11:53 PM To: Allen Martin Cc: Tom Warren; Tom Warren; si...@theia.denx.de; u-boot@lists.denx.de; Stephen Warren Subject: Re: [U-Boot] pull request for

Re: [U-Boot] pull request for u-boot-tegra/master

2012-08-07 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into ARM master. I've rebased to your current TOT and slipstreamed in the mkconfig fix. Thanks! The following changes since commit 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08: Laurence Withers (1): DaVinci DA8xx: fix set_cpu_clk_info() are

[U-Boot] [PATCH] ext2fs: fix warning: 'blocknxt' may be used uninitialized with gcc 4.2

2012-08-07 Thread Tom Rini
The above warning was introduced originally in 436da3c ext2load: increase read speed and fixed for newer toolchains in b803273 ext2fs: fix warning: 'blocknxt' may be used uninitialized. This change did not fix the warning with gcc 4.2, as found in ELDK 4.2. If we rework the while loop to

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Stephen Warren
On 08/06/2012 06:19 PM, Lucas Stach wrote: As discussed here [http://patchwork.ozlabs.org/patch/158202/] we want to use USE_PRIVATE_LIBGCC still. However commit 5286f1ce dropped it regardless. Adding this back fixes a hang while handing over from SPL to U-Boot on Colibri T20. This probably

Re: [U-Boot] [PATCH 1/2] tegra: init MMC from common board init

2012-08-07 Thread Stephen Warren
On 08/06/2012 07:18 PM, Lucas Stach wrote: There's no description here justifying why you want this change. I don't think the change is correct; in arch/arm/lib/board.c, board_init_r() calls drivers/mmc/mmc.c:mmc_initialize() which calls board_mmc_init(). With this patch, won't this function get

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

2012-08-07 Thread Tom Rini
Hello, The following changes since commit 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08: DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-05 22:02:40 +0200) are available in the git repository at: git://git.denx.de/u-boot-ti next for you to fetch changes up to

Re: [U-Boot] [PATCH] OMAP3: fix DRAM size for IGEP-based boards.

2012-08-07 Thread Tom Rini
On Sun, Aug 05, 2012 at 07:27:30PM +0200, Javier Martinez Canillas wrote: On Sun, Aug 5, 2012 at 12:55 PM, Enric Balletbo i Serra eballe...@gmail.com wrote: The total RAM size of the IGEP-based boards is 512MiB not 1GiB, the LPDDR memory consist on two dies of 256MiB. Signed-off-by:

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Lucas Stach
Am Dienstag, den 07.08.2012, 11:00 -0600 schrieb Stephen Warren: On 08/06/2012 06:19 PM, Lucas Stach wrote: As discussed here [http://patchwork.ozlabs.org/patch/158202/] we want to use USE_PRIVATE_LIBGCC still. However commit 5286f1ce dropped it regardless. Adding this back fixes a

Re: [U-Boot] [PATCH] am335x_evm: enable SMSC PHY driver

2012-08-07 Thread Tom Rini
On Tue, Aug 07, 2012 at 02:50:08PM +0400, Ilya Yanok wrote: Beaglebone uses SMSC PHY which works incorrectly with generic PHY driver so enable SMSC PHY driver to fix networking problems on Beaglebone. Signed-off-by: Ilya Yanok ilya.ya...@cogentembedded.com Applied to u-boot-ti/master,

Re: [U-Boot] [PATCH 2/2] tegra: convert gpio_config_uart to weak symbol

2012-08-07 Thread Stephen Warren
On 08/06/2012 07:18 PM, Lucas Stach wrote: Most boards don't need this fixup hook. To avoid a lot of empty implementations in board files convert it to a weak symbol. This seems OK on the surface, but I think there may be more opportunity for cleanup here. In board/nvidia/common/board.c, I see

[U-Boot] kernel upgradation 2.6.23 to 2.6.35.13 with old U-boot 1.3.0 version

2012-08-07 Thread rajeshvangari vangari
Hi, I have MPC8313E-RDB board on which U-boot 1.3.0(along with patches) and kernel 2.6.23(along with patches) are running. Now, i would like to upgrade the kernel from 2.6.23 to 2.6.35.13 with old U-boot 1.3.0(along with patches), i am facing problem in loading firmware and ethernet interfaces

[U-Boot] [RESEND PATCH v2] i.MX28: bug fixes in PMU configuration code

2012-08-07 Thread Stathis Voukelatos
Signed-off-by: Stathis Voukelatos stathis.voukela...@linn.co.uk Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut marek.va...@gmail.com --- Changes for v2: - White space cleanup arch/arm/cpu/arm926ejs/mx28/spl_power_init.c | 12 ++-- 1 files changed, 6 insertions(+), 6

[U-Boot] [PATCH] Save/restore global data pointer on API boundary

2012-08-07 Thread Leif Lindholm
Most architectures keep the global data pointer (gd) in a register. When using the external app API, because they are calling us rather than we calling them, this register can be corrupted. The attached (trivial) patch saves the gd pointer at api_init(), and restores it on every entry to

[U-Boot] u-boot script question

2012-08-07 Thread Sridhar Addagada
I'm using spare bytes of the nvram of the RTC chip to determine which of my two kernels should be booted. Trying to scrip that in u-boot script I'm doing the following. 1. Load 200010 with 0 (mw.b 200010 0) 2. Load 200014 with value from nvram (i2c read 68 15 1 200014) 3. if cmp.b 200010 200014

Re: [U-Boot] pull request for u-boot-tegra/master

2012-08-07 Thread Allen Martin
On Mon, Aug 06, 2012 at 11:53:03PM -0700, Albert ARIBAUD wrote: Hi Allen, Also, Allen: --- This email message is for the sole use of the intended recipient(s) and may contain confidential information.

Re: [U-Boot] [PATCH 1/2] tegra: init MMC from common board init

2012-08-07 Thread Lucas Stach
Am Dienstag, den 07.08.2012, 11:04 -0600 schrieb Stephen Warren: On 08/06/2012 07:18 PM, Lucas Stach wrote: There's no description here justifying why you want this change. I don't think the change is correct; in arch/arm/lib/board.c, board_init_r() calls drivers/mmc/mmc.c:mmc_initialize()

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Allen Martin
On Tue, Aug 07, 2012 at 10:09:00AM -0700, Lucas Stach wrote: Am Dienstag, den 07.08.2012, 11:00 -0600 schrieb Stephen Warren: On 08/06/2012 06:19 PM, Lucas Stach wrote: As discussed here [http://patchwork.ozlabs.org/patch/158202/] we want to use USE_PRIVATE_LIBGCC still. However

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Lucas Stach
Hi Allen, Am Dienstag, den 07.08.2012, 10:43 -0700 schrieb Allen Martin: On Tue, Aug 07, 2012 at 10:09:00AM -0700, Lucas Stach wrote: Am Dienstag, den 07.08.2012, 11:00 -0600 schrieb Stephen Warren: On 08/06/2012 06:19 PM, Lucas Stach wrote: As discussed here

[U-Boot] [PATCH] tegra20: usb: rework set_host_mode

2012-08-07 Thread Lucas Stach
This allows for two things: - VBus GPIO may be used on other ports than the OTG one - VBus GPIO may be low active if specified by DT Signed-off-by: Lucas Stach d...@lynxeye.de CC: Stephen Warren swar...@wwwdotorg.org CC: Tom Warren twar...@nvidia.com --- arch/arm/cpu/armv7/tegra20/usb.c | 35

Re: [U-Boot] kernel upgradation 2.6.23 to 2.6.35.13 with old U-boot 1.3.0 version

2012-08-07 Thread Wolfgang Denk
Dear Rajesh, In message CAHGpkNj+E7QY7HKCJ4=BoGvOdW9vu=peib9azqzfqsoy3kw...@mail.gmail.com you wrote: I have MPC8313E-RDB board on which U-boot 1.3.0(along with patches) and kernel 2.6.23(along with patches) are running. Now, i would like to upgrade the kernel from 2.6.23 to 2.6.35.13

Re: [U-Boot] [PATCH] Save/restore global data pointer on API boundary

2012-08-07 Thread Wolfgang Denk
Dear Leif Lindholm, In message 50214a38.3000...@arm.com you wrote: Most architectures keep the global data pointer (gd) in a register. This may, or may not be. You should not make any assumptions on how gd is implemented. When using the external app API, because they are calling us rather

Re: [U-Boot] u-boot script question

2012-08-07 Thread Wolfgang Denk
Dear Sridhar Addagada, In message 1344359350.57879.yahoomail...@web162902.mail.bf1.yahoo.com you wrote: Is it possible to compare the contents of the memory location with a constant like if test #200010 == 1; then run boot0; else run boot1;fi Yes, this is possible. For example: if

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Wolfgang Denk
Dear Lucas Stach, In message 1344298788-7059-1-git-send-email-...@lynxeye.de you wrote: As discussed here [http://patchwork.ozlabs.org/patch/158202/] we want to use USE_PRIVATE_LIBGCC still. However commit 5286f1ce dropped it regardless. Adding this back fixes a hang while handing over from

Re: [U-Boot] [PATCH] ext2fs: fix warning: 'blocknxt' may be used uninitialized with gcc 4.2

2012-08-07 Thread Wolfgang Denk
Dear Tom Rini, In message 1344358714-14032-1-git-send-email-tr...@ti.com you wrote: The above warning was introduced originally in 436da3c ext2load: increase read speed and fixed for newer toolchains in b803273 ext2fs: fix warning: 'blocknxt' may be used uninitialized. This change did not

Re: [U-Boot] [RESEND PATCH v2] i.MX28: bug fixes in PMU configuration code

2012-08-07 Thread Marek Vasut
Dear Stathis Voukelatos, Signed-off-by: Stathis Voukelatos stathis.voukela...@linn.co.uk Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut marek.va...@gmail.com --- Thanks for the patch and your effort ! btw. how did you find it ? :) Best regards, Marek Vasut

Re: [U-Boot] [PATCH v2 1/7] microblaze: Add support for device tree driven board configuration

2012-08-07 Thread Stephan Linz
Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: This is minimum code required to be able to use device-tree for u-boot initialization. Currently only for device driver initialization. Linker script change ensures DTB to be aligned for both options CONFIG_OF_EMBED and

Re: [U-Boot] [PATCH v2 2/7] microblaze: board: Remove compilation warning

2012-08-07 Thread Stephan Linz
Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: Variable is used when CONFIG_SYS_FLASH_CHECKSUM is used. Warning log: board.c: In function 'board_init': board.c:101: warning: unused variable 's' Signed-off-by: Michal Simek mon...@monstr.eu Acked-by: Stephan Linz

Re: [U-Boot] [PATCH v2 3/7] microblaze: intc: Registering interrupt should return value

2012-08-07 Thread Stephan Linz
Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: Return value to find out if un/registration was succesful. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: Add comment to header file to describe parameters and return codes --- arch/microblaze/cpu/interrupts.c

Re: [U-Boot] [PATCH v2 4/7] microblaze: intc: Coding style cleanup

2012-08-07 Thread Stephan Linz
Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: Just coding style cleanup. Remove unneeded externs. Signed-off-by: Michal Simek mon...@monstr.eu Acked-by: Simon Glass s...@chromium.org Acked-by: Stephan Linz l...@li-pro.net -- v2: Rebase - depends on previous intc patch

Re: [U-Boot] [PATCH v2 5/7] microblaze: timer: Prepare for device-tree initialization

2012-08-07 Thread Stephan Linz
Hi Michal, looks fine, but ... (see below) Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: microblaze: Fix CONFIG_SYS_HZ usage in board config Do not use hardcoded value. Use CONFIG_SYS_HZ instead. Separate static configuration to single block. Signed-off-by: Michal Simek

Re: [U-Boot] [PATCH v2 6/7] microblaze: Clean microblaze initialization

2012-08-07 Thread Stephan Linz
Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: Move board specific function to board_init function in board/ folder Remove externs from generic board.c Use board_init_f function in board.c file. Signed-off-by: Michal Simek mon...@monstr.eu Acked-by: Stephan Linz

Re: [U-Boot] [PATCH v2 7/7] microblaze: board: Use bi_flashstart instead of CONFIG_SYS_FLASH_BASE

2012-08-07 Thread Stephan Linz
Am Montag, den 06.08.2012, 09:46 +0200 schrieb Michal Simek: Prepare for device-tree driven configuration. Signed-off-by: Michal Simek mon...@monstr.eu Acked-by: Stephan Linz l...@li-pro.net Tested with AXI systems on Avnet S6LX150T and S6LX9 micro-evaluation. --- v2: Move bi_flashsize

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Allen Martin
On Tue, Aug 07, 2012 at 10:53:00AM -0700, Lucas Stach wrote: Hi Allen, Tell me what CodeSourcery version you're using and I'll test it here as well and see if I can reproduce the problem. I used CodeSourcery arm-2011.09-70-arm-none-linux-gnueabi to test this. And to answer Tom's

Re: [U-Boot] [PATCH] tegra20: usb: rework set_host_mode

2012-08-07 Thread Stephen Warren
On 08/07/2012 12:19 PM, Lucas Stach wrote: This allows for two things: - VBus GPIO may be used on other ports than the OTG one - VBus GPIO may be low active if specified by DT Hmmm. Why would the board have control over whether VBUS is asserted if the port isn't intended to operate in OTG

Re: [U-Boot] [PATCH] tegra20: usb: rework set_host_mode

2012-08-07 Thread Lucas Stach
Am Dienstag, den 07.08.2012, 14:21 -0600 schrieb Stephen Warren: On 08/07/2012 12:19 PM, Lucas Stach wrote: This allows for two things: - VBus GPIO may be used on other ports than the OTG one - VBus GPIO may be low active if specified by DT Hmmm. Why would the board have control over

Re: [U-Boot] [PATCH] disk/partition: Fix the depend for all the partitions file

2012-08-07 Thread Wolfgang Denk
Dear Zhong Hongbo, In message 1342860534-4710-1-git-send-email-bocui...@gmail.com you wrote: From: Zhong Hongbo bocui...@gmail.com all the patitions should depend CONFIG_PARTITIONS, no the CONFIG_CMD_$(device). The device symbol may be SATA, SCSI, USB, MMC, SYSTEMACE. Or else when the

Re: [U-Boot] early_malloc outline

2012-08-07 Thread Wolfgang Denk
Dear Tomas, In message caeb7qlananotlqfzpaj2nmgndpv6qinczntvbz6fhg2yv99...@mail.gmail.com you wrote: Dear Wolfgang, On Wed, Aug 1, 2012 at 9:09 PM, Wolfgang Denk w...@denx.de wrote: Hm... I have to admit that I am not really happy about such an explanation. The statement that other

Re: [U-Boot] [PATCH] spi: Fix merge conflicts - Makefile

2012-08-07 Thread Wolfgang Denk
Dear Michal Simek, In message 1344001064-762-1-git-send-email-mon...@monstr.eu you wrote: The patch spi: tegra2: rename tegra2_spi.* to tegra_spi.* (sha1: edffa63d3d6e76991998789f9fcbaa483731ca65) renamed tegra2_spi.c to tegra_spi.c and the patch Merge branch 'master' of

Re: [U-Boot] [PATCH v2] README: Reference nand monitor commands in U-Boot README

2012-08-07 Thread Wolfgang Denk
Dear Karl O. Pinc, In message 1344009441-854-1-git-send-email-...@meme.com you wrote: Reference nand monitor commands in U-Boot README Signed-off-by: Karl O. Pinc k...@meme.com --- Resend of patch to ease review/commit process. Changes for v2: - include a commit message - Change

Re: [U-Boot] [PATCH] MAINTAINERS: cleanup for km ppc boards

2012-08-07 Thread Wolfgang Denk
Dear Holger Brunck, In message 1344255393-18421-1-git-send-email-holger.bru...@keymile.com you wrote: Signed-off-by: Holger Brunck holger.bru...@keymile.com cc: Heiko Schocher h...@denx.de cc: Valentin Longchamp valentin.longch...@keymile.com cc: Gerlando Falauto gerlando.fala...@keymile.com

Re: [U-Boot] [PATCH 1/2] serial: Support serial multi for Microblaze

2012-08-07 Thread Stephan Linz
Am Dienstag, den 07.08.2012, 14:20 +0200 schrieb Michal Simek: enable serial multi for Microblaze. Signed-off-by: Michal Simek mon...@monstr.eu Acked-by: Stephan Linz l...@li-pro.net --- include/serial.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git

Re: [U-Boot] [PATCH 2/2] serial: uartlite: Init all uartlites for serial multi

2012-08-07 Thread Stephan Linz
Am Dienstag, den 07.08.2012, 14:20 +0200 schrieb Michal Simek: Initialize all possible uartlites and return the first initialized port. For static configuration is initialization done in userial_ports array. Signed-off-by: Michal Simek mon...@monstr.eu Acked-by: Stephan Linz

[U-Boot] [PATCH] spi: xilinx: Remove unused variable

2012-08-07 Thread Stephan Linz
Warning is: xilinx_spi.c: In function 'spi_setup_slave': xilinx_spi.c:81: warning: unused variable 'regs' Signed-off-by: Stephan Linz l...@li-pro.net CC: Michal Simek mon...@monstr.eu --- drivers/spi/xilinx_spi.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

Re: [U-Boot] [Pull request] u-boot-onenand

2012-08-07 Thread Wolfgang Denk
Dear Lukasz Majewski, In message 20120806112735.05fd945f@amdc308.digital.local you wrote: Hi Wolfgang, Please pull following commits: The following changes since commit 56249fea3d5e32cddcd9160e51ec93a9c4327c6b: powerpc/82xx: adapt SDRAM settings for mgcoge3ne (2012-07-31 22:36:38

Re: [U-Boot] [PATCH] tegra20: usb: rework set_host_mode

2012-08-07 Thread Stephen Warren
On 08/07/2012 02:35 PM, Lucas Stach wrote: Am Dienstag, den 07.08.2012, 14:21 -0600 schrieb Stephen Warren: On 08/07/2012 12:19 PM, Lucas Stach wrote: This allows for two things: - VBus GPIO may be used on other ports than the OTG one - VBus GPIO may be low active if specified by DT Hmmm.

Re: [U-Boot] [PATCH] Enable the EMAC clock in at91_macb_hw_init().

2012-08-07 Thread Andreas Bießmann
Dear Markus Hubig, On 01.08.12 21:49, Markus Hubig wrote: Signed-off-by: Markus Hubig mhu...@imko.de Cc: Andreas Bießmann andreas.de...@googlemail.com --- applied to u-boot-atmel, thanks. Best regards Andreas Bießmann ___ U-Boot mailing list

Re: [U-Boot] [PATCH] MAINTAINERS: fix entry of Ilko Iliev

2012-08-07 Thread Andreas Bießmann
Dear Andreas Bießmann, On 01.08.12 22:56, Andreas Bießmann wrote: These boards have ARM cores, move to the ARM section. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- applied to u-boot-atmel, thanks. Best regards Andreas Bießmann

Re: [U-Boot] [PATCH] MAINTAINERS: fix Andreas Bießmann AVR32 entry

2012-08-07 Thread Andreas Bießmann
Dear Andreas Bießmann, On 01.08.12 23:12, Andreas Bießmann wrote: The grasshopper board is a avr32 based device and belongs therefore to the avr32 section. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- applied to u-boot-atmel, thanks. Best regards Andreas Bießmann

Re: [U-Boot] [PATCH v6] at91: Add support for taskit AT91SAM9G20 boards.

2012-08-07 Thread Andreas Bießmann
Dear Markus Hubig, On 06.08.12 19:48, Markus Hubig wrote: This adds support for the AT91SAM9G20 boards by taskit GmbH. Both boards, Stamp9G20 and PortuxG20, are integrated in one file. PortuxG20 is basically a SBC built around the Stamp9G20. Signed-off-by: Markus Hubig mhu...@imko.de Cc:

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Allen Martin
On Tue, Aug 07, 2012 at 10:53:00AM -0700, Lucas Stach wrote: Hi Allen, And to answer Tom's question: the failure was that the real U-Boot would not come up after the SPL. All I could see was the one line printed by the SPL and nothing more. I think I found the problem. It's the following

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

2012-08-07 Thread Andreas Bießmann
The following changes since commit 8abcd8ab962cd5fb2a4c025e7c7b62a9faf4aa08: DaVinci DA8xx: fix set_cpu_clk_info() (2012-08-05 22:02:40 +0200) are available in the git repository at: git://git.denx.de/u-boot-atmel.git master for you to fetch changes up to

Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Lucas Stach
Am Dienstag, den 07.08.2012, 15:28 -0700 schrieb Allen Martin: On Tue, Aug 07, 2012 at 10:53:00AM -0700, Lucas Stach wrote: Hi Allen, And to answer Tom's question: the failure was that the real U-Boot would not come up after the SPL. All I could see was the one line printed by the SPL

  1   2   >