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 colour

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 >> Cc: Wolfgang Denk >> Cc: Stefano Babic >> Cc: Fabio Estevam >> Cc

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

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 wrote: > > 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 patch: as long as > we rel

[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 --- arch/blackfin/lib/board.c |6 ++ arch/blackfin/lib/clocks.c| 10 +- common/cmd_reginfo.c | 17 + include/configs/bf609-ezkit.h |1 + 4 files changed, 33 in

[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 --- arch/blackfin/include/asm/cplb.h | 13 +- arch/blackfin/include/asm/mach-common/bits/mpu.h |6 - arch/blackf

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

2012-08-07 Thread Bob Liu
From: Sonic Zhang Set up soft switch pins properly in board init code. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- board/bf609-ezkit/Makefile |1 + board/bf609-ezkit/bf609-ezkit.c | 22 +++-- board/bf609-ezkit/soft_switch.c | 173 +++

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

2012-08-07 Thread Bob Liu
From: Mike Frysinger Add basic support for new board bf609-ezkit. Signed-off-by: Mike Frysinger Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 96 ++- arch/blackfin/cpu/initcode.h |9 ++ arch/blackfin

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

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

[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 --- arch/blackfin/cpu/initcode.c | 221 +- arch/blackfin/include/asm/mach-common/bits/cgu.h |2 + include/configs/bf609-ezkit.h| 35 ++

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

2012-08-07 Thread Bob Liu
Signed-off-by: Bob Liu --- 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 3197c40..c68302f 10064

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

2012-08-07 Thread Bob Liu
Signed-off-by: Bob Liu --- 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 @@ static void bfin_r

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

2012-08-07 Thread Bob Liu
From: Sonic Zhang Add support for bf609-ezkit to board file and mmc driver. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/include/asm/config-pre.h |4 ++ arch/blackfin/include/asm/mach-common/bits/dma.h | 47 +- arch/blackfin/include/a

[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 --- arch/blackfin/include/asm/mach-bf609/portmux.h |1 + board/bf609-ezkit/bf609-ezkit.c|8 +++--- include/configs/bf609-ezkit.h | 35 +++- include/configs/b

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

2012-08-07 Thread Bob Liu
From: Sonic Zhang Set up RSI data before sending RSI command if data is applicable. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- drivers/mmc/bfin_sdh.c | 23 --- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/bfin_sdh.c b/drivers/mmc/

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

2012-08-07 Thread Bob Liu
From: Scott Jiang Spi driver for bf60x is different from old one, so implement a new driver for it. Signed-off-by: Scott Jiang Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- .../blackfin/include/asm/mach-common/bits/spi6xx.h | 240 +++ drivers/spi/Makefile

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

2012-08-07 Thread Bob Liu
From: Sonic Zhang Per the request from ADI Legal. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/Clear_BSD.txt| 33 arch/blackfin/cpu/bootcount.c |2 +- arch/blackfin/cpu/os_log.c |

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

2012-08-07 Thread Bob Liu
From: Mike Frysinger 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 Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.h | 51

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

2012-08-07 Thread Bob Liu
From: Steven Miao Add Bf60x resume from hibernate support Signed-off-by: Steven Miao Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 46 ++ 1 file changed, 46 insertions(+) diff --git a/arch/blackfin/cpu/initcode

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

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 > --- Whole series applied to u-boot-imx, thanks. Best regar

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 > Cc: Wolfgang Denk > Cc: Stefano Babic > Cc: Fabio Estevam > Cc: Andy Fleming > --- Whole s

[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 --- Hi, The commit f3f98bb0 seems to suggest we want t

[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 --- arch/arm/cpu/armv7/omap-common/hwinit-common.c |

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 > > 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 > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- =

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 > > 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 > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- ==

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 > --- > board/schulercontrol/sc_sps_1/Makefile | 47 +++ > board/schulercontrol/sc_sps_1/sc_sps

[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 --- tools/patman/patchstream.py |6 ++ 1 file changed, 6 insertions(+) diff --git a/tool

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

[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 --- tools/patman/patchstream.py |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/patman/pa

[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 --- tools/patman/series.py |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) di

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

[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 --- MAINTAINERS |1 + board/schulercontrol/sc_sps_1/Makefile | 47 +++ board/schulercontrol/sc_sps_1/sc_sps_1.c | 113

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 > >> Cc: Wolfgang Denk > >> Cc: St

[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 --- include/configs/am335x_evm.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_evm.h b/include/co

[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 --- drivers/serial/serial_xuartlite.c | 34 +++--- 1 files changed, 19 insertions(+), 15 dele

[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 --- 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 @@ -31,7 +31,8 @@ extern

[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 CC: Andy Fleming CC: Zang Roy-R61911 CC: Kumar Gala --- drivers/net/phy/marvell.c | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/drivers/net/phy/marvell.c b/drivers/net/phy/marvel

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, wrote: > From: "Mathieu J. Poirier" > > Signed-off-by: Mathieu Poirier > Signed-off-by: John Rigby Acked-by: Linus Walleij For this entire series. Yours, Linus Walleij ___ U-Boot mailing list U-Boot@lists.denx.de

[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 Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- arch/arm/cpu/armv7/exynos/soc.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7

[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 Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- include/configs/trats.h |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/configs/trats.h b/include/configs/trats.h i

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 > Cc: Stefano Babic > Cc: Marek Vasut > --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic -- = DENX Software Engineering GmbH,

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

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 u-boot-tegra

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 available

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

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 proba

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 a47233a30055660ad64d865f1fde19503ed0

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 > 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: Enric Balletbo

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

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 Applied to u-boot-ti/master, thanks! -- Tom signature.

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 se

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

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

2012-08-07 Thread Stathis Voukelatos
Signed-off-by: Stathis Voukelatos Cc: Stefano Babic Cc: Marek Vasut --- Changes for v2: - White space cleanup arch/arm/cpu/arm926ejs/mx28/spl_power_init.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/mx28/spl_power_init.c

[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 syscall(

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

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 inf

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_initial

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

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 [http://patchwork.

[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 CC: Stephen Warren CC: Tom Warren --- arch/arm/cpu/armv7/tegra20/usb.c | 35 +++ 1 Datei geändert, 19

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 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 with old > U-boot 1.3.0(along with patches), i am facing problem

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:

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 ove

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

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 > Cc: Stefano Babic > Cc: Marek Vasut > --- Thanks for the patch and your effort ! btw. how did you find it ? :) Best regards, Marek Vasut ___ U-Boot mailing list U-Boot@lists.denx.de htt

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 CONF

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 > Acked-by: Stephan Linz > --- > v2: Use

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 > > --- > v2: Add comment to header file to describe parameters and return codes > --- > arch/microblaze/cpu/interrupts.c | 1

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 > Acked-by: Simon Glass > Acked-by: Stephan Linz > -- > v2: Rebase - depends on previous intc patch > --- > arch/microblaze/cpu/interrupts.c

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 Si

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 > Acked-by: Stephan Linz Tested with AXI syst

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 > Acked-by: Stephan Linz Tested with AXI systems on Avnet S6LX150T and S6LX9 micro-evaluation. > --- > v2: Move bi_flashsize and bi_flashoffset from o

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

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 mo

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

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 > > 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 filesystem comman

Re: [U-Boot] early_malloc outline

2012-08-07 Thread Wolfgang Denk
Dear Tomas, In message you wrote: > Dear Wolfgang, > > On Wed, Aug 1, 2012 at 9:09 PM, Wolfgang Denk wrote: > > > Hm... I have to admit that I am not really happy about such an > > "explanation". The statement that "other guys" want something is not > > exactly an explanation of a concept th

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 git://git.

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 > --- > Resend of patch to ease review/commit process. > > Changes for v2: > - include a commit message > - Change mes

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 > cc: Heiko Schocher > cc: Valentin Longchamp > cc: Gerlando Falauto > > --- > MAINTAINERS |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-)

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 Acked-by: Stephan Linz > --- > include/serial.h |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/include/serial.h b/include/ser

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 Acked-by: Stephan Linz Tested with AXI system o

[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 CC: Michal Simek --- drivers/spi/xilinx_spi.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/spi/xilinx_spi.c b/drivers/spi/xi

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

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 D

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 > Cc: Andreas Bießmann > --- applied to u-boot-atmel, thanks. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mai

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 > --- applied to u-boot-atmel, thanks. Best regards Andreas Bießmann ___ U-Boot mailing lis

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 > --- 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 > Cc: Andreas Bi

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 followi

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

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 >

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

2012-08-07 Thread Allen Martin
On Tue, Aug 07, 2012 at 03:42:45PM -0700, Lucas Stach wrote: > 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 > > >

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

2012-08-07 Thread Nobuhiro Iwamatsu
Dear Wolfgang Denk. Please pull from git://git.denx.de/u-boot-sh master. Best regards, Nobuhiro The following changes since commit 6d36121b878a3ccbbff7f60a02109e8c8d81dd0f: Merge branch 'master' of git://git.denx.de/u-boot-onenand (2012-08-07 23:42:55 +0200) are available in the git reposi

Re: [U-Boot] [PATCH 01/16] Blackfin: BF60x: new processor port

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:40 Bob Liu wrote: > From: Mike Frysinger > > Add basic support for blackfin new processor BF60x. i had always intended to clean & split this 1 change up, but never got a chance before i left > arch/blackfin/cpu/cpu.c|4 +- > arch

  1   2   >