Re: [U-Boot] [PATCH 1/4] arm: make sure board_init_r() is being called using the right mode (ARM / THUMB)

2016-02-09 Thread ELSOFT AG
Hello Tom Rini wrote: > On Tue, Feb 09, 2016 at 04:48:28PM +0100, David Müller wrote: >> /* call board_init_r */ >> +#if defined(CONFIG_SYS_THUMB_BUILD) >> +ldr lr, =board_init_r /* this is auto-relocated! */ >> +bx lr >> +#else >> ldr pc, =board_init_r /

[U-Boot] Need help for custom board brigup

2016-02-09 Thread Derong Zeng
Hi there, I'm currently working on our board with Atmel SAM5d3 based on SAMA5d3_xplained Bootstrap and U-boot. I am having problems with DRAM bring up. Could you help us? We can pay for this. Thanks, Derong ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH V2] OMAP3_logic: Add NAND args to boot UBIFS

2016-02-09 Thread Adam Ford
With the recent addition of UBI support, this patch will add the preset parameters to allow for mouting an UBIFS from the 'fs' partition in NAND. -V2: ubi.mtd=fs instead of ubi.mtd=4 Signed-off-by: Adam Ford --- include/configs/omap3_logic.h | 6 ++ 1 file changed, 6 insertions(+) diff --g

Re: [U-Boot] [PATCH] common/memsize.c: fix endless loop when saving

2016-02-09 Thread Hannes Schmelzer
On 02/09/2016 06:55 PM, Eddy Petrișor wrote: 2016-02-09 19:41 GMT+02:00 Eddy Petrișor : When cnt reaches 0, any shift operation will keep cnt=0, so the condition `cnt >= 0` doesn't make sense. To fix this endless loop, we drop the useless condition and simply break the loop when cnt reaches 0.

Re: [U-Boot] [PATCH] Revert "common/memsize.c: Simplify RAM size detection"

2016-02-09 Thread Eddy Petrișor
Hi Hans, I sent a fixup patch yesterday (I managed somehow to send an outdated patch), did you try the fixup patch? http://lists.denx.de/pipermail/u-boot/2016-February/245080.html Pe 9 feb. 2016 11:38 p.m., "Hans de Goede" a scris: > This commit breaks bootup on sunxi boards, the get stuck > wh

[U-Boot] [PATCH 2/2] net: phy: marvell: Fix problem with phy_reset() clearing BMCR

2016-02-09 Thread Stefan Roese
With commit a058052c [net: phy: do not read configuration register on reset], phy_reset() will clear the BMCR register. Resulting in bit 12 being cleared (A/N enable). This leads to autonegotiation link problems, at least on the Marvell Armada ClearFog board. I suspect that other boards using this

[U-Boot] [PATCH 1/2] net: phy: marvell: Call phy_reset() where possible

2016-02-09 Thread Stefan Roese
Instead of coding the soft PHY reset function multiple times in marvell.c, lets call the common phy_reset() function from phy.c. Signed-off-by: Stefan Roese Cc: Stefan Agner Cc: Hao Zhang Cc: Michal Simek Cc: Andy Fleming Cc: Joe Hershberger --- drivers/net/phy/marvell.c | 23 ++

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGS

2016-02-09 Thread Masahiro Yamada
Hi. 2016-02-10 3:18 GMT+09:00 Tom Rini : > On Tue, Feb 09, 2016 at 10:53:48AM -0700, Stephen Warren wrote: >> On 02/09/2016 10:43 AM, Tom Rini wrote: >> >On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote: >> >>On 02/09/2016 10:01 AM, Tom Rini wrote: >> >>>On Tue, Feb 09, 2016 at 08:

[U-Boot] [PATCH] am43xx: qspi: Fix config to select SPI mode

2016-02-09 Thread Vignesh R
CONFIG_SF_DEFAULT_MODE is used to select default SPI mode when using sf commands. Therefore fix am43xx to use CONFIG_SF_DEFAULT_MODE instead of CONFIG_DEFAULT_SPI_MODE. Signed-off-by: Vignesh R --- include/configs/am43xx_evm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i

[U-Boot] [PATCH] ARM : DRA7: Switch QSPI to use MODE-0 at 64MHz

2016-02-09 Thread Vignesh R
According to Data Manual(SPRS915P) of AM572x, TI QSPI controller on DRA74 EVM(rev 1.1+) can support up to 64MHz in MODE-0, whereas MODE-3 is limited to 48MHz. Hence, switch to MODE-0 for better throughput. Also, add IODelay parameters for the same. Signed-off-by: Vignesh R --- board/ti/dra7xx/mu

Re: [U-Boot] [PATCH 2/3][v3] Data types defined for 64 bit physical address

2016-02-09 Thread york sun
On 02/09/2016 09:10 PM, Scott Wood wrote: > On Wed, 2016-02-10 at 02:30 +, york sun wrote: >> >> Aneesh and Scott, >> >> I need to revisit this patch. Would it be better to change it as below? >> >> +#if defined(CONFIG_PHYS_64BIT) && !defined(CONFIG_ARM64) >> +typedef unsigned long long dma_

Re: [U-Boot] [PATCH 2/3][v3] Data types defined for 64 bit physical address

2016-02-09 Thread Scott Wood
On Wed, 2016-02-10 at 02:30 +, york sun wrote: > On 09/17/2015 03:48 AM, Aneesh Bansal wrote: > > Data types and I/O functions have been defined for > > 64 bit physical addresses in arm. > > > > Signed-off-by: Aneesh Bansal > > --- > > Changes in v3: > > Corrected the definition of virt_to_ph

Re: [U-Boot] [PATCH] OMAP3LOGIC: Update maintainer

2016-02-09 Thread Peter Barada
On 02/08/2016 10:27 PM, Adam Ford wrote: > I will take this over from Peter Barada, since I work with it daily > at Logic PD. > > Signed-off-by: Adam Ford > --- > board/logicpd/omap3som/MAINTAINERS | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/board/logicpd/omap3som

Re: [U-Boot] [PATCH 2/3][v3] Data types defined for 64 bit physical address

2016-02-09 Thread york sun
On 09/17/2015 03:48 AM, Aneesh Bansal wrote: > Data types and I/O functions have been defined for > 64 bit physical addresses in arm. > > Signed-off-by: Aneesh Bansal > --- > Changes in v3: > Corrected the definition of virt_to_phys() and definition of phys_addr_t. > > arch/arm/include/asm/io.h

Re: [U-Boot] [PATCH] OMAP3_logic: Add NAND args to boot UBIFS

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 06:04:22PM -0600, Adam Ford wrote: > With the recent addition of UBI support, this patch will add the preset > parameters to allow for mouting an UBIFS from the 'fs' partition in NAND. > > Signed-off-by: Adam Ford > --- > include/configs/omap3_logic.h | 6 ++ > 1 fil

[U-Boot] [PATCH] OMAP3_logic: Add NAND args to boot UBIFS

2016-02-09 Thread Adam Ford
With the recent addition of UBI support, this patch will add the preset parameters to allow for mouting an UBIFS from the 'fs' partition in NAND. Signed-off-by: Adam Ford --- include/configs/omap3_logic.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/omap3_logic.h b/i

[U-Boot] Please pull u-boot-dm

2016-02-09 Thread Simon Glass
Hi Tom, Here are a few more test patches. The following changes since commit 39af3d8a0db0aab3f78ae5576f0f5c668505a667: sniper: Drop references to P970 (2016-02-08 10:24:19 -0500) are available in the git repository at: git://git.denx.de/u-boot-dm.git for you to fetch changes up to c82ce0

Re: [U-Boot] [PATCH v2 2/5] superio: Add SMSC SIO1007 driver

2016-02-09 Thread Simon Glass
On 5 February 2016 at 23:08, Bin Meng wrote: > The SMSC SIO1007 superio chipset integrates two ns16550 compatible > serial ports for legacy applications, 16 GPIO pins and some other > functionalities like power management. > > This adds a simple driver to enable serial port and handle GPIO. > > Si

Re: [U-Boot] [PATCH v2 5/5] x86: Add Intel Cougar Canyon 2 board

2016-02-09 Thread Simon Glass
Hi Bin, On 5 February 2016 at 23:08, Bin Meng wrote: > This adds basic support to Intel Cougar Canyon 2 board, a board > based on Chief River platform with an Ivy Bridge processor and > a Panther Point chipset. > > Signed-off-by: Bin Meng > Acked-by: Simon Glass > > --- > > Changes in v2: > - C

Re: [U-Boot] [PATCH v2 4/5] x86: ivybridge: bd82x6x: Support FSP enabled configuration

2016-02-09 Thread Simon Glass
On 5 February 2016 at 23:08, Bin Meng wrote: > Wrap initialization codes with #ifndef CONFIG_HAVE_FSP #endif, > and enable the build for both FSP and non-FSP configurations. > > Signed-off-by: Bin Meng > --- > > Changes in v2: None > > arch/x86/cpu/ivybridge/Makefile | 2 +- > arch/x86/cpu/ivyb

Re: [U-Boot] [PATCH v2 17/18] board: Add Qualcomm Dragonboard 410C support

2016-02-09 Thread Jagan Teki
On 25 January 2016 at 02:23, Mateusz Kulikowski wrote: > This commit add support for 96Boards Dragonboard410C. > It is board based on APQ8016 Qualcomm SoC, complying with > 96boards specification. > Features (present out of the box): > - 4x Cortex A53 (ARMv8) > - 2x USB Host port > - 1x USB Device

Re: [U-Boot] [PATCH v2 16/18] arm: Add support for Qualcomm Snapdragon family

2016-02-09 Thread Jagan Teki
On 8 February 2016 at 02:27, Mateusz Kulikowski wrote: > First supported chip is APQ8016 (that is compatible with MSM8916). > Drivers in SoC code: > - Reset controller (PSHOLD) > - Clock controller (very simple clock configuration for MMC and UART) > > Signed-off-by: Mateusz Kulikowski > Reviewed

Re: [U-Boot] [PATCH 2/2] fastboot: sparse: remove unnecessary logging

2016-02-09 Thread Steve Rae
On Tue, Feb 9, 2016 at 12:18 PM, Maxime Ripard < maxime.rip...@free-electrons.com> wrote: > On Tue, Feb 09, 2016 at 09:58:10AM -0800, Steve Rae wrote: > > > > So, to handle MMC versus NAND, I propose that we follow the same > method > > > > used throughout 'fastboot': > > > > > > > > +#ifdef CONFI

Re: [U-Boot] [PATCH v2 15/18] gpio: Add support for Qualcomm PM8916 gpios

2016-02-09 Thread Jagan Teki
On 8 February 2016 at 02:27, Mateusz Kulikowski wrote: > This driver supports GPIOs present on PM8916 PMIC. > There are 2 device drivers inside: > - GPIO driver (4 "generic" GPIOs) > - Keypad driver that presents itself as GPIO with 2 inputs (power and reset) > > Signed-off-by: Mateusz Kulikowski

[U-Boot] [PATCH] sunxi: power: add support for sy8106a driver

2016-02-09 Thread Hans de Goede
From: Jelle van der Waa SY8106A is a PMIC which is used on the Allwinner H3 Orange Pi Pc board. The VOUT1_SEL register is implemented to set thea default V-CPU voltage to 1200 mV. Signed-off-by: Jelle van der Waa [hdego...@redhat.com: Polish Kconfig parts a bit] Signed-off-by: Hans de Goede --

[U-Boot] [PATCH] Revert "common/memsize.c: Simplify RAM size detection"

2016-02-09 Thread Hans de Goede
This commit breaks bootup on sunxi boards, the get stuck when running the main u-boot binary at: CPU: Allwinner H3 (SUN8I) I2C: ready DRAM: This reverts commit 8e7cba048baae68ee0916a8f52b4304277328d5e. Signed-off-by: Hans de Goede --- common/memsize.c | 47 ++---

Re: [U-Boot] [PATCH v2 13/18] drivers: spmi: Add support for Qualcomm SPMI bus driver

2016-02-09 Thread Jagan Teki
On 8 February 2016 at 02:27, Mateusz Kulikowski wrote: > Support SPMI arbiter on Qualcomm Snapdragon devices. > > Signed-off-by: Mateusz Kulikowski > Reviewed-by: Simon Glass > Tested-by: Simon Glass > --- > > Changes in v3: None > Changes in v2: > - Rename DM_SPMI -> SPMI > - Rename p -> priv

Re: [U-Boot] [PATCH v2 03/18] mmc: Add support for Qualcomm SDHCI controller

2016-02-09 Thread Jagan Teki
On 8 February 2016 at 02:27, Mateusz Kulikowski wrote: > Add support for SD/eMMC controller present on some Qualcomm Snapdragon > devices. This controller implements SDHCI 2.0 interface but requires > vendor-specific initialization. > Driver works in PIO mode as ADMA is not supported by U-Boot (ye

Re: [U-Boot] [PATCH v2 02/18] gpio: Add support for Qualcomm gpio controller

2016-02-09 Thread Jagan Teki
On 8 February 2016 at 02:27, Mateusz Kulikowski wrote: > Add support for gpio controllers on Qualcomm Snapdragon devices. > This devices are usually called Top Level Mode Multiplexing in > Qualcomm documentation. > > Signed-off-by: Mateusz Kulikowski > Reviewed-by: Simon Glass > Tested-by: Simon

Re: [U-Boot] [RFC PATCH v1 0/2] Convert ls1021aqds to use driver model for serial ports

2016-02-09 Thread york sun
On 02/08/2016 04:57 PM, York Sun wrote: > Since a recent merge 5160def "dm: lpuart: Drop the legacy code", > ls1021aqds_ddr4_nor_lpuart and ls1021aqds_nor_lpuart failed to > compile because they are using legacy driver for lpuart. Following > ls1021atwr, ls1021aqds should be converted as well. > >

Re: [U-Boot] [PATCH 2/2] fastboot: sparse: remove unnecessary logging

2016-02-09 Thread Maxime Ripard
On Tue, Feb 09, 2016 at 09:58:10AM -0800, Steve Rae wrote: > > > So, to handle MMC versus NAND, I propose that we follow the same method > > > used throughout 'fastboot': > > > > > > +#ifdef CONFIG_FASTBOOT_FLASH_MMC_DEV > > > total_blocks += blkcnt; > > > +#endif > > > +#if

[U-Boot] [PATCH v2 2/2] fastboot: sparse: remove unnecessary logging

2016-02-09 Thread Steve Rae
remove logging of the 'skipped' blocks Signed-off-by: Steve Rae --- Changes in v2: None common/image-sparse.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/common/image-sparse.c b/common/image-sparse.c index ef0d232..737e8ea 100644 --- a/common/image-sparse.c +++ b/

[U-Boot] [PATCH v2 1/2] fastboot: sparse: fix block addressing for don't care chunk type

2016-02-09 Thread Steve Rae
When 7bfc3b1 (sparse: Refactor chunk parsing function) was implemented, it dropped 9981945 (aboot: fix block addressing for don't care chunk type). This re-implements the required fix for the "don't care chunk type"... Signed-off-by: Steve Rae --- Changes in v2: Handle MMC device differently th

Re: [U-Boot] exclude email by patman

2016-02-09 Thread Steve Rae
On Tue, Feb 9, 2016 at 10:08 AM, york sun wrote: > On 02/09/2016 09:13 AM, Tom Rini wrote: > > On Tue, Feb 09, 2016 at 05:08:35PM +, york sun wrote: > >> On 02/09/2016 12:00 AM, Wolfgang Denk wrote: > >>> Dear York, > >>> > >>> In message < > am4pr0401mb1732ec48981eed9b70ce23859a...@am4pr0401

Re: [U-Boot] test, tools: introduce tbot README

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 06:57:08PM +0100, Heiko Schocher wrote: > Hello Tom, > > Am 08.02.2016 um 21:46 schrieb Tom Rini: > >On Tue, Jan 26, 2016 at 08:42:48AM +0100, Heiko Schocher wrote: > > > >>introduce a README how to use tbot for testing U-Boot > >>and/or linux kernels. > >> > >>Signed-off-b

Re: [U-Boot] [PATCH] net: phy: do not read configuration register on reset

2016-02-09 Thread Stefan Roese
On 09.12.2015 20:21, Stefan Agner wrote: > When doing a software reset, the reset flag should be written without > other bits set. Writing the current state will lead to restoring the > state of the PHY (e.g. Powerdown), which is not what is expected from > a software reset. > > Signed-off-by: Ste

[U-Boot] [PATCH] common/memsize.c: fix endless loop when saving

2016-02-09 Thread Eddy Petrișor
When cnt reaches 0, any shift operation will keep cnt=0, so the condition `cnt >= 0` doesn't make sense. To fix this endless loop, we drop the useless condition and simply break the loop when cnt reaches 0. Signed-off-by: Eddy Petrișor --- common/memsize.c | 3 ++- 1 file changed, 2 insertions(

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGS

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 10:53:48AM -0700, Stephen Warren wrote: > On 02/09/2016 10:43 AM, Tom Rini wrote: > >On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote: > >>On 02/09/2016 10:01 AM, Tom Rini wrote: > >>>On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote: > >

Re: [U-Boot] exclude email by patman

2016-02-09 Thread york sun
On 02/09/2016 09:13 AM, Tom Rini wrote: > On Tue, Feb 09, 2016 at 05:08:35PM +, york sun wrote: >> On 02/09/2016 12:00 AM, Wolfgang Denk wrote: >>> Dear York, >>> >>> In message >>> >>> you wrote: Is there a way to exclude specific emails from the CC list when using patman? >

Re: [U-Boot] [PATCH 2/2] fastboot: sparse: remove unnecessary logging

2016-02-09 Thread Steve Rae
On Tue, Feb 9, 2016 at 9:17 AM, Maxime Ripard < maxime.rip...@free-electrons.com> wrote: > Hi, > > On Mon, Feb 08, 2016 at 10:04:03AM -0800, Steve Rae wrote: > > Hi Maxime, > > > > On Mon, Feb 8, 2016 at 12:19 AM, Maxime Ripard < > > maxime.rip...@free-electrons.com> wrote: > > > > > Hi Steve, > >

Re: [U-Boot] test, tools: introduce tbot README

2016-02-09 Thread Heiko Schocher
Hello Tom, Am 08.02.2016 um 21:46 schrieb Tom Rini: On Tue, Jan 26, 2016 at 08:42:48AM +0100, Heiko Schocher wrote: introduce a README how to use tbot for testing U-Boot and/or linux kernels. Signed-off-by: Heiko Schocher Applied to u-boot/master, thanks! Huh... so fast? Did you found so

Re: [U-Boot] [PATCH] common/memsize.c: fix endless loop when saving

2016-02-09 Thread Eddy Petrișor
2016-02-09 19:41 GMT+02:00 Eddy Petrișor : > When cnt reaches 0, any shift operation will keep cnt=0, so the condition > `cnt >= 0` doesn't make sense. > > To fix this endless loop, we drop the useless condition and simply break the > loop when cnt reaches 0. This should fix the endless issue intr

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGSilver pepper blue dog

2016-02-09 Thread Stephen Warren
On 02/09/2016 10:43 AM, Tom Rini wrote: On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote: On 02/09/2016 10:01 AM, Tom Rini wrote: On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote: On 02/08/2016 05:32 PM, Stephen Warren wrote: From: Stephen Warren If BUILD_TAG is

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGSilver pepper blue dog

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 10:26:14AM -0700, Stephen Warren wrote: > On 02/09/2016 10:01 AM, Tom Rini wrote: > >On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote: > >> > >> > >>On 02/08/2016 05:32 PM, Stephen Warren wrote: > >>>From: Stephen Warren > >>> > >>>If BUILD_TAG is part of KBUIL

Re: [U-Boot] Problem with mounting a jffs2 partition on flash.

2016-02-09 Thread Marek Vasut
On Tuesday, February 09, 2016 at 04:36:33 PM, Bakhvalov, Denis (Nokia - PL/Wroclaw) wrote: > Hi, Hi! > Thank you for you responses! > > @To Marek: > > It would be very helpful to see the whole boot output, not just U-Boot > > output. For example SPL output is missing. Are you using mainline U-B

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGS

2016-02-09 Thread Stephen Warren
On 02/09/2016 10:01 AM, Tom Rini wrote: On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote: On 02/08/2016 05:32 PM, Stephen Warren wrote: From: Stephen Warren If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes, all files get rebuilt. In a continuous integratio

Re: [U-Boot] [PATCH 2/2] fastboot: sparse: remove unnecessary logging

2016-02-09 Thread Maxime Ripard
Hi, On Mon, Feb 08, 2016 at 10:04:03AM -0800, Steve Rae wrote: > Hi Maxime, > > On Mon, Feb 8, 2016 at 12:19 AM, Maxime Ripard < > maxime.rip...@free-electrons.com> wrote: > > > Hi Steve, > > > > On Thu, Feb 04, 2016 at 10:51:00AM -0800, Steve Rae wrote: > > > Hi Maxime, > > > > > > On Thu, Feb

Re: [U-Boot] exclude email by patman

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 05:08:35PM +, york sun wrote: > On 02/09/2016 12:00 AM, Wolfgang Denk wrote: > > Dear York, > > > > In message > > > > you wrote: > >> > >> Is there a way to exclude specific emails from the CC list when using > >> patman? > >> The no-longer-existed email address go

Re: [U-Boot] exclude email by patman

2016-02-09 Thread york sun
On 02/09/2016 12:00 AM, Wolfgang Denk wrote: > Dear York, > > In message > > you wrote: >> >> Is there a way to exclude specific emails from the CC list when using patman? >> The no-longer-existed email address got rejected by SMTP server. > > That';s just papering over the problems, and thus

Re: [U-Boot] [PATCH 1/4] arm: make sure board_init_r() is being called using the right mode (ARM / THUMB)

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 04:48:28PM +0100, David Müller wrote: > Signed-off-by: David Müller > --- > arch/arm/lib/crt0.S | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S > index 2f4c14e..8415f77 100644 > --- a/arch/arm/lib/cr

Re: [U-Boot] [PATCH] OMAP3: omap3_logic: Grow SPL to 64K from 54K

2016-02-09 Thread Tom Rini
On Mon, Feb 08, 2016 at 07:06:08PM -0600, Adam Ford wrote: > Based on the work done by Overo, this seems to help some compilers > that have a hard time fitting all the code into the allocated space. > > Signed-off-by: Adam Ford Reviewed-by: Tom Rini -- Tom signature.asc Description: Digita

Re: [U-Boot] Pull request: u-boot-net.git master

2016-02-09 Thread Tom Rini
On Thu, Jan 28, 2016 at 05:32:19PM -0600, Joe Hershberger wrote: > Hi Tom, > > Here are the network patches for this round. Should be pretty basic stuff. > > Thanks! > -Joe > > The following changes since commit 077678eb0c226e52a1f90edabd3369ab26065b32: > > Merge git://git.denx.de/u-boot-dm

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGS

2016-02-09 Thread Tom Rini
On Tue, Feb 09, 2016 at 08:11:15AM -0800, James Chargin wrote: > > > On 02/08/2016 05:32 PM, Stephen Warren wrote: > >From: Stephen Warren > > > >If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes, > >all files get rebuilt. In a continuous integration environment, the value >

Re: [U-Boot] [PATCH] Makefile: remove BUILD_TAG from KBUILD_CFLAGS

2016-02-09 Thread James Chargin
On 02/08/2016 05:32 PM, Stephen Warren wrote: From: Stephen Warren If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes, all files get rebuilt. In a continuous integration environment, the value will change every build. This wastes time assuming that incremental builds would

[U-Boot] [PATCH] board: tbs2910: Fix eMMC BOOTCFG value

2016-02-09 Thread Soeren Moch
Fix the BOOTCFG value for eMMC in the same way as commit 214c3f0f9921250eb336c7effadcc16158ea9df5 [imx: MX6DQ{P}/DL:SABRESD Fix bmode eMMC failure] did for sabresd. Signed-off-by: Soeren Moch --- Cc: Stefano Babic Cc: u-boot@lists.denx.de --- board/tbs/tbs2910/tbs2910.c | 2 +- 1 file chang

Re: [U-Boot] Problem with mounting a jffs2 partition on flash.

2016-02-09 Thread Bakhvalov, Denis (Nokia - PL/Wroclaw)
Hi, Thank you for you responses! @To Marek: > It would be very helpful to see the whole boot output, not just U-Boot output. > For example SPL output is missing. Are you using mainline U-Boot SPL or not ? Here is the output from SPL: U-Boot SPL 2013.01.01-svn564 (May 27 2015 - 17:58:12) Board

[U-Boot] [PATCH 0/4] Use THUMB mode for VCMA9 U-Boot builts

2016-02-09 Thread David Müller
Patch 1 fixes a bug in the calling of board_init_r() in THUMB mode. Patch 2-3 enable THUMB support for the ARM920T architecture. Patch 4 finally activates THUMB mode for VCMA9. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/lis

[U-Boot] [PATCH 1/4] arm: make sure board_init_r() is being called using the right mode (ARM / THUMB)

2016-02-09 Thread David Müller
Signed-off-by: David Müller --- arch/arm/lib/crt0.S | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index 2f4c14e..8415f77 100644 --- a/arch/arm/lib/crt0.S +++ b/arch/arm/lib/crt0.S @@ -167,8 +167,12 @@ clbss_l:cmpr0, r1

[U-Boot] [PATCH 4/4] arm: VCMA9: because of NOR flash space constrains, activate THUMB build mode

2016-02-09 Thread David Müller
Signed-off-by: David Müller --- include/configs/VCMA9.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h index 42af34f..de7d5c2 100644 --- a/include/configs/VCMA9.h +++ b/include/configs/VCMA9.h @@ -20,6 +20,8 @@ * High Level Configuration

[U-Boot] [PATCH 3/4] arm: build some file(s) as ARM mode only

2016-02-09 Thread David Müller
Signed-off-by: David Müller --- arch/arm/cpu/arm920t/Makefile | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/cpu/arm920t/Makefile b/arch/arm/cpu/arm920t/Makefile index 6582938..1832b9d 100644 --- a/arch/arm/cpu/arm920t/Makefile +++ b/arch/arm/cpu/arm920t/Makefile @@ -13,3 +13,

[U-Boot] [PATCH 2/4] arm: the ARM920T is THUMB capable, so select the appropriate ISA

2016-02-09 Thread David Müller
Signed-off-by: David Müller --- arch/arm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Makefile b/arch/arm/Makefile index cd7d880..6defdfb 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -9,7 +9,7 @@ endif # This selects which instruction set i

Re: [U-Boot] [PATCH v1 1/2] drivers: musb-new: Add USB DRC driver for Microchip PIC32 OTG controller.

2016-02-09 Thread Marek Vasut
On Tuesday, February 09, 2016 at 02:26:37 PM, Purna Chandra Mandal wrote: > On 02/09/2016 06:48 PM, Marek Vasut wrote: > > On Tuesday, February 09, 2016 at 01:02:49 PM, Purna Chandra Mandal wrote: > >> From: Cristian Birsan > >> > >> This driver adds support of PIC32 MUSB OTG controller as dual r

Re: [U-Boot] [PATCHv2] common/memsize.c: Simplify RAM size detection

2016-02-09 Thread Eddy Petrișor
2016-02-09 12:14 GMT+02:00 Hannes Schmelzer : > > On 02.02.2016 21:15, Eddy Petrișor wrote: >> >> The case of memory of size 0 is not that different from a memory of any >> other >> size, so we remove the duplicate code and treat the small differences when >> it >> is the case. >> >> Signed-off-by:

Re: [U-Boot] [PATCH v1 1/2] drivers: musb-new: Add USB DRC driver for Microchip PIC32 OTG controller.

2016-02-09 Thread Purna Chandra Mandal
On 02/09/2016 06:48 PM, Marek Vasut wrote: > On Tuesday, February 09, 2016 at 01:02:49 PM, Purna Chandra Mandal wrote: >> From: Cristian Birsan >> >> This driver adds support of PIC32 MUSB OTG controller as dual role device. >> It implements platform specific glue to reuse musb core. >> >> Signed

Re: [U-Boot] [PATCH v1 1/2] drivers: musb-new: Add USB DRC driver for Microchip PIC32 OTG controller.

2016-02-09 Thread Marek Vasut
On Tuesday, February 09, 2016 at 01:02:49 PM, Purna Chandra Mandal wrote: > From: Cristian Birsan > > This driver adds support of PIC32 MUSB OTG controller as dual role device. > It implements platform specific glue to reuse musb core. > > Signed-off-by: Cristian Birsan > Signed-off-by: Purna C

[U-Boot] Need support for Raspberry pi B+ u-boot.bin

2016-02-09 Thread Jay Gandhi
Hi, I am facing problem with U-boot for my Raspberry pi B+ model. Can you please provide me files(u-boot.bin , start.elf, config.txt & bootcode.bin) required for U-boot of Raspberry Pi. Thanks in advance. Jay ___ U-Boot mailing list U-Boot@lists.denx.d

Re: [U-Boot] [PATCH 2/2] Enable test/py for sandbox in Travis CI

2016-02-09 Thread Meier, Roger
Thanks Stephen > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Dienstag, 9. Februar 2016 02:24 > To: Tom Rini > Cc: Simon Glass ; u-boot@lists.denx.de; Meier, Roger > ; Daniel Schwierzeck > ; Heiko Schocher ; Stephen > Warren > Subject: [PATCH 2/2] Enab

[U-Boot] [PATCH v1 2/2] board: pic32mzda: enable USB-host, USB-storage support.

2016-02-09 Thread Purna Chandra Mandal
Enable MUSB host and USB storage support for Microchip PIC32MZ[DA] Starter Kit. Signed-off-by: Purna Chandra Mandal --- arch/mips/dts/pic32mzda.dtsi | 10 ++ arch/mips/dts/pic32mzda_sk.dts | 4 configs/pic32mzdask_defconfig | 6 +- include/configs/pic32mzdask.h | 7

[U-Boot] [PATCH v1 1/2] drivers: musb-new: Add USB DRC driver for Microchip PIC32 OTG controller.

2016-02-09 Thread Purna Chandra Mandal
From: Cristian Birsan This driver adds support of PIC32 MUSB OTG controller as dual role device. It implements platform specific glue to reuse musb core. Signed-off-by: Cristian Birsan Signed-off-by: Purna Chandra Mandal --- drivers/usb/gadget/f_mass_storage.c | 2 + drivers/usb/musb-new/K

Re: [U-Boot] [PATCHv2] common/memsize.c: Simplify RAM size detection

2016-02-09 Thread Hannes Schmelzer
On 02.02.2016 21:15, Eddy Petrișor wrote: The case of memory of size 0 is not that different from a memory of any other size, so we remove the duplicate code and treat the small differences when it is the case. Signed-off-by: Eddy Petrișor --- v2: Removed patman stuff from commit message

[U-Boot] [PATCH] ARM: uniphier: drop unnecessary "bootm_low" environment define

2016-02-09 Thread Masahiro Yamada
This environment define has been here to work around the LMB allocation error introduced by commit 9c11135ce053 ("image: fix getenv_bootm_size() function"). It is no longer needed because the root cause was fixed by commit 0cb389dd1a38 ("image: fix getenv_bootm_size() function again"). Signed-off

Re: [U-Boot] exclude email by patman

2016-02-09 Thread Wolfgang Denk
Dear York, In message you wrote: > > Is there a way to exclude specific emails from the CC list when using patman? > The no-longer-existed email address got rejected by SMTP server. That';s just papering over the problems, and thus the wrong approach. The correct thing to do is having the wr