Re: [U-Boot] [PATCH v7 5/5] imx6: SPL support for iMX6 SabreSD

2014-11-13 Thread Stefano Babic
Hi John, On 12/11/2014 23:27, John Tobias wrote: This patch will enable the support for SPL on iMX6 SabreSD. It tested on SD2 and SD3 mmc port (Switch 1 or 2 of SW6) Signed-off-by: John Tobias john.tobias...@gmail.com --- board/freescale/mx6sabresd/mx6sabresd.c | 186

Re: [U-Boot] [PATCH v7 2/3] Odroid-XU3: Add support for Odroid-XU3

2014-11-13 Thread Jaehoon Chung
On 11/13/2014 10:32 AM, Hyungwon Hwang wrote: This patch adds support for Odroid-XU3. Signed-off-by: Hyungwon Hwang human.hw...@samsung.com Tested-by: Lukasz Majewski l.majew...@samsung.com Acked-by: Lukasz Majewski l.majew...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com Cc: Lukasz

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Stefano Babic
On 12/11/2014 23:27, John Tobias wrote: add the spl info in the header file. Also, added a macro statement in m6sabre_common.h to avoid compiler warning. Signed-off-by: John Tobias john.tobias...@gmail.com --- include/configs/mx6sabre_common.h | 2 ++ include/configs/mx6sabresd.h |

Re: [U-Boot] [PATCH] x86: Fix a warning with gcc 4.4.4

2014-11-13 Thread Måns Rullgård
Simon Glass s...@chromium.org writes: This warning appears even though it seems that the compiler could work it out. Fix it. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/cpu/cpu.c b/arch/x86/cpu/cpu.c

Re: [U-Boot] [PATCH] x86: Fix a warning with gcc 4.4.4

2014-11-13 Thread Bin Meng
On Thu, Nov 13, 2014 at 5:00 PM, Måns Rullgård m...@mansr.com wrote: Simon Glass s...@chromium.org writes: This warning appears even though it seems that the compiler could work it out. Fix it. Signed-off-by: Simon Glass s...@chromium.org --- arch/x86/cpu/cpu.c | 1 + 1 file changed, 1

[U-Boot] [PATCH] ARM: remove unused CPU directory

2014-11-13 Thread Masahiro Yamada
There is no board with CPU arm_intcm. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Albert Aribaud albert.u.b...@aribaud.net --- arch/arm/cpu/arm_intcm/Makefile | 9 - arch/arm/cpu/arm_intcm/config.mk | 8 arch/arm/cpu/arm_intcm/cpu.c | 36 --

[U-Boot] [PATCH] config: remove redundant CONFIG_SYS_PROMPT defines

2014-11-13 Thread Masahiro Yamada
Since commit 0defddc851ed (config: Add a default CONFIG_SYS_PROMPT), each board header does not need to define CONFIG_SYS_PROMPT as long as it uses the default prompt = . Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- include/configs/T1040QDS.h | 1 - include/configs/T104xRDB.h

Re: [U-Boot] [ANN] U-Boot v2015.01-rc1 released

2014-11-13 Thread Stefano Babic
Hi Marek, On 10/11/2014 22:29, Tom Rini wrote: Hey all, I've pushed v2015.01-rc1 out to the repository and tarballs should exist soon. The merge window is now closed. Per both the min-summit and the follow up emails, I'm going to try and get into the every 2 week RC tagging groove.

[U-Boot] [PATCH] arm: mx6: Fix missing Kconfig option for Novena

2014-11-13 Thread Marek Vasut
Add two missing Kconfig options for Novena and drop the SPL from the Novena config. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Sean Cross x...@kosagi.com Cc: Marek Vasut ma...@denx.de Cc: Fabio Estevam fabio.este...@freescale.com --- arch/arm/Kconfig |

Re: [U-Boot] [ANN] U-Boot v2015.01-rc1 released

2014-11-13 Thread Marek Vasut
On Thursday, November 13, 2014 at 10:46:16 AM, Stefano Babic wrote: Hi Marek, On 10/11/2014 22:29, Tom Rini wrote: Hey all, I've pushed v2015.01-rc1 out to the repository and tarballs should exist soon. The merge window is now closed. Per both the min-summit and the follow up

Re: [U-Boot] putc

2014-11-13 Thread Martin Dorwig
Am Mittwoch, 12. November 2014, 19:32:21 schrieben Sie: Hi Martin, On 30 October 2014 00:45, Martin Dorwig dor...@tetronik.com wrote: Am Mittwoch, 29. Oktober 2014, 13:03:41 schrieben Sie: Hi Martin, On 28 October 2014 07:23, Martin Dorwig dor...@tetronik.com wrote: Hello, after

[U-Boot] [PATCH 3/4] commands: add more command entries in Kconfig

2014-11-13 Thread Masahiro Yamada
This commit adds some of command entries (CONFIG_CMD_*) to cover include/config_cmd_default.h and a little extra. Because U-Boot supports lots of commands, they should be categorized according to their usage. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- I know lots of commands

[U-Boot] [PATCH 0/4] Add more boolean configs to Kconfig

2014-11-13 Thread Masahiro Yamada
We need to move configs although it is a very tedious work. First, we have to create entries in Kconfig. 1/4: add some FIT options 2/4: add Hush option 3/4: add various commands options I know there is still more to work on, but I believe every big work is done step by step. I am not an

[U-Boot] [PATCH 4/4] spl: fix descending condition to drivers/mtd/nand/

2014-11-13 Thread Masahiro Yamada
SPL should not reference CONFIG_CMD_NAND to decide whether or not it should build drivers/mtd/nand. CONFIG_CMD_NAND should be only used to select the NAND utility command on the command parser. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- scripts/Makefile.spl | 2 +- 1 file

[U-Boot] [PATCH 1/4] FIT: add some FIT configurations to Kconfig

2014-11-13 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- Kconfig | 22 ++ 1 file changed, 22 insertions(+) diff --git a/Kconfig b/Kconfig index f34f341..9b16d66 100644 --- a/Kconfig +++ b/Kconfig @@ -93,6 +93,28 @@ config TPL help If you want to build

[U-Boot] [PATCH 2/4] hush: add CONFIG_HUSH_PARSER to Kconfig

2014-11-13 Thread Masahiro Yamada
The README file states that the macros beginning with CONFIG_SYS_ depend on the hardware etc. and should not be meddled with if you do not what you're doing. We have already screwed up with this policy; we have given the prefix CONFIG_SYS_ to many user-selectable configurations. Here,

Re: [U-Boot] [PATCH 0/2] spl: MMC U-Boot image load from raw partition

2014-11-13 Thread Albert ARIBAUD
Hello Tom, On Mon, 10 Nov 2014 13:46:09 -0500, Tom Rini tr...@ti.com wrote: On Sat, Nov 08, 2014 at 11:19:23PM +0100, Albert ARIBAUD wrote: Hello Paul, On Sat, 8 Nov 2014 23:14:54 +0100, Paul Kocialkowski cont...@paulk.fr wrote: This is a first attempt at adding support for U-Boot

Re: [U-Boot] [PATCH v3 01/14] arm: spl: Avoid setting up a duplicate global data structure

2014-11-13 Thread Albert ARIBAUD
Hello Simon, On Mon, 10 Nov 2014 17:16:41 -0700, Simon Glass s...@chromium.org wrote: This is already set up in crt0.S. We don't need a new structure and don't really want one in the 'data' section of the image, since it will be empty and crt0.S's changes will be ignored. Signed-off-by:

[U-Boot] [PATCH v2 0/2] mtd: denali: Use SELF_INIT to fix up registers after nand_scan_ident()

2014-11-13 Thread Masahiro Yamada
This patch series is here because Scott Wood recommended me to use CONFIG_SYS_NAND_SELF_INIT to solve my problem: http://patchwork.ozlabs.org/patch/402462/ Changes in v2: - Use nand_info[0] instead of nand_info - Print a warning message if initialization fails Masahiro Yamada (2): mtd:

[U-Boot] [PATCH v2 2/2] mtd: denali: set some registers after nand_scan_ident()

2014-11-13 Thread Masahiro Yamada
Some but not all of implementations of the Denali NAND controller have hardware circuits to detect the device parameters such as page_size, erase_size, etc. Even on those SoCs with such hardware supported, the hardware is known to detect wrong parameters for some nasty (almost buggy) NAND

[U-Boot] [PATCH v2 1/2] mtd: denali: use CONFIG_SYS_NAND_SELF_INIT

2014-11-13 Thread Masahiro Yamada
Some variants of the Denali NAND controller need some registers set up based on the device information that has been detected during nand_scan_ident(). CONFIG_SYS_NAND_SELF_INIT has to be defined to insert code between nand_scan_ident() and nand_scan_tail(). It is also helpful to reduce the

Re: [U-Boot] [PATCH] arm: mx6: Fix missing Kconfig option for Novena

2014-11-13 Thread Masahiro Yamada
Hi Marek, (ccing Tom) I posted a patch a week ago to fix this and some other boards http://patchwork.ozlabs.org/patch/407286/ but it looks like Tom has not checked this bug fix patch. My patch is intended to go directly to Tom's repo, whereas I guess yours is going to u-boot-imx repo. I don't

Re: [U-Boot] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread Pavel Machek
Hi! From: Dinh Nguyen dingu...@opensource.altera.com Set the PHY skew settings for the ethernet phy on the SOCFPGA devkit. Should the timing configuration be done in the config file...? Marek disliked getting the values from the environment, and I'm not sure if that is neccessary. It can

Re: [U-Boot] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread Wolfgang Denk
Dear Pavel Machek, In message 20141113120956.GB30779@amd you wrote: diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c index 507b9a3..06a31b0 100644 --- a/drivers/net/phy/micrel.c +++ b/drivers/net/phy/micrel.c @@ -112,17 +112,46 @@ static int ksz9021_phy_extwrite(struct

[U-Boot] [PATCH] zynq: zybo: Move CONFIG_DEFAULT_DEVICE_TREE to defconfig

2014-11-13 Thread Michal Simek
Move CONFIG_DEFAULT_DEVICE_TREE from board config directly to defconfig. This patch removes compilation warning: include/configs/zynq_zybo.h:24:0: warning: CONFIG_DEFAULT_DEVICE_TREE redefined [enabled by default] #define CONFIG_DEFAULT_DEVICE_TREE zynq-zybo Signed-off-by: Michal Simek

Re: [U-Boot] [GIT PULL] Zynq patches

2014-11-13 Thread Michal Simek
On 11/11/2014 09:47 PM, Tom Rini wrote: On Tue, Nov 11, 2014 at 11:22:43AM +0100, Michal Simek wrote: Hi Tom, [cc: Albert] please pull these 4 patches to your tree. It adds support for Zybo board and add support for new ps7_init_gpl file. Thanks, Michal The following changes since

Re: [U-Boot] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread Pavel Machek
Hi! On Thu 2014-11-13 13:20:52, Wolfgang Denk wrote: Dear Pavel Machek, In message 20141113120956.GB30779@amd you wrote: diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c index 507b9a3..06a31b0 100644 --- a/drivers/net/phy/micrel.c +++ b/drivers/net/phy/micrel.c @@

Re: [U-Boot] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread Albert ARIBAUD
Hello Pavel, I wanted to sign it off, so that it is clear it can be used as a basis for better patch, but I was aware it is not clean enough for merging -- how do I do that? Why not simply tag it [RFC]? Thanks, Pavel --

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
Hi John, On Thu, Nov 13, 2014 at 6:58 AM, Stefano Babic sba...@denx.de wrote: #define CONFIG_LOADADDR0x1200 +#ifndef CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_TEXT_BASE 0x1780 +#endif Why is that needed ? SPL does not use it, because it use

Re: [U-Boot] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread Pavel Machek
On Thu 2014-11-13 13:32:26, Albert ARIBAUD wrote: Hello Pavel, I wanted to sign it off, so that it is clear it can be used as a basis for better patch, but I was aware it is not clean enough for merging -- how do I do that? Why not simply tag it [RFC]? Well, dunno, I was not asking

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
On Thu, Nov 13, 2014 at 10:41 AM, Fabio Estevam feste...@gmail.com wrote: Hi John, On Thu, Nov 13, 2014 at 6:58 AM, Stefano Babic sba...@denx.de wrote: #define CONFIG_LOADADDR0x1200 +#ifndef CONFIG_SYS_TEXT_BASE #define CONFIG_SYS_TEXT_BASE 0x1780

Re: [U-Boot] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread Marek Vasut
On Thursday, November 13, 2014 at 01:48:41 PM, Pavel Machek wrote: On Thu 2014-11-13 13:32:26, Albert ARIBAUD wrote: Hello Pavel, I wanted to sign it off, so that it is clear it can be used as a basis for better patch, but I was aware it is not clean enough for merging -- how do I

Re: [U-Boot] [PATCH] arm: mx6: Fix missing Kconfig option for Novena

2014-11-13 Thread Marek Vasut
On Thursday, November 13, 2014 at 12:48:45 PM, Masahiro Yamada wrote: Hi Marek, (ccing Tom) Hi! I posted a patch a week ago to fix this and some other boards http://patchwork.ozlabs.org/patch/407286/ but it looks like Tom has not checked this bug fix patch. My patch is intended to go

Re: [U-Boot] [PATCH] ARM: remove unused CPU directory

2014-11-13 Thread Albert ARIBAUD
Hello Masahiro, On Thu, 13 Nov 2014 18:40:07 +0900, Masahiro Yamada yamad...@jp.panasonic.com wrote: There is no board with CPU arm_intcm. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Albert Aribaud albert.u.b...@aribaud.net --- arch/arm/cpu/arm_intcm/Makefile | 9

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

2014-11-13 Thread Albert ARIBAUD
Hello Tom, This PR replaces the one posted today at 08:54. The following changes since commit 63f7af9a4cfb4a3b9136674c6612c6d13957c2cd: Merge branch 'master' of git://git.denx.de/u-boot-uniphier (2014-11-11 15:49:10 -0500) are available in the git repository at:

[U-Boot] [PATCH] arm: ls102xa: Enable snooping for CCI-400 S0 slave interface

2014-11-13 Thread Alison Wang
CAAM is connected to CCI-400 S0 slave interface. Disable snooping for S0 will cause CAAM self test failure. This patch is to enable snooping for S0 slave interface. Signed-off-by: Alison Wang alison.w...@freescale.com --- board/freescale/ls1021aqds/ls1021aqds.c | 3 +--

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
Hi Stefano, On Thu, Nov 13, 2014 at 10:49 AM, Fabio Estevam feste...@gmail.com wrote: Sorry, I meant to remove only the ifdef: --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -95,9 +95,7 @@ #define CONFIG_BOOTDELAY 1 #define

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Stefano Babic
Hi Fabio, John, On 13/11/2014 15:39, Fabio Estevam wrote: Hi Stefano, On Thu, Nov 13, 2014 at 10:49 AM, Fabio Estevam feste...@gmail.com wrote: Sorry, I meant to remove only the ifdef: --- a/include/configs/mx6sabre_common.h +++ b/include/configs/mx6sabre_common.h @@ -95,9 +95,7 @@

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
On Thu, Nov 13, 2014 at 12:42 PM, Stefano Babic sba...@denx.de wrote: We already agree about the changes. There is no need to resend the patchset, I will fix it when I apply the patchset. Excellent! Thanks, Stefano ___ U-Boot mailing list

[U-Boot] Please pull u-boot-sunxi/master into master

2014-11-13 Thread Hans de Goede
Hi Tom, Please pull u-boot-sunxi/master into master, highlights: 1) sun6i dram init / SPL support, allowing full-boot of sun6i SoCs with just u-boot + linux 2) sun6i ehci support 3) A bugfix for the gmac on the bananapi The following changes since commit

Re: [U-Boot] [ANN] U-Boot v2015.01-rc1 released

2014-11-13 Thread Dirk Eibach
Hey Tom, 2014-11-10 22:29 GMT+01:00 Tom Rini tr...@ti.com: ... When I do a buildman of most things I see: blackfin: + ip04 arm: + Ippo_q8h_v5 novena openrd_base maxbcm openrd_ultimate openrd_client tricorder db-mv784mp-gp Linksprite_pcDuino3_fdt tricorder_flash cm_t3517

Re: [U-Boot] [PATCH] arm: mx6: Fix missing Kconfig option for Novena

2014-11-13 Thread Stefano Babic
Hi Masahiro, On 13/11/2014 14:10, Marek Vasut wrote: Given you're the Kconfig guru, I would gladly leave it up to you if that is not too much inconvenience, and test your result. That's fine with me. It means only that novena will remain broken for a while on u-boot-imx until your patch

Re: [U-Boot] [PATCH v2 1/2] imx: mx6q/dl sabre_common: Move MMC ENV offset to 512KB position

2014-11-13 Thread Stefano Babic
On 12/11/2014 07:02, Ye.Li wrote: Set the CONFIG_ENV_OFFSET from 384KB to 512KB offset, so we will have larger space for u-boot image. When enabling NAND flash support feature, the u-boot image size has exceeded the 384KB, which causes overlay to the environment variables storage.

Re: [U-Boot] [PULL] u-boot-usb/master

2014-11-13 Thread Tom Rini
On Tue, Nov 11, 2014 at 06:19:27PM +0100, Marek Vasut wrote: Dangling PR, sorry it's late ... The following changes since commit 11ada9225a16ed2d8ddbf0715a2416245a777cbc: Merge branch 'rmobile' of git://www.denx.de/git/u-boot-sh (2014-11-05 13:11:18 -0500) are available in the git

Re: [U-Boot] [PATCH v7 0/5] iMX6 SabreSD SPL Support

2014-11-13 Thread Stefano Babic
Hi John, On 12/11/2014 23:27, John Tobias wrote: This patch is for SPL support for iMX6 SabreSD. The said patches has been tested to work on SD2 and SD3 port of the said board. It tested the non-spl version of uboot as well. After applying the following patches, it will produces SPL and

Re: [U-Boot] [PATCH V2] powerpc: remove orphaned boards mcc200 and prs200

2014-11-13 Thread Tom Rini
On Tue, Nov 11, 2014 at 03:46:05PM +0200, Nikita Kiryanov wrote: mcc200 and prs200 are old and have no maintainer. Remove the boards. This also removes the mcc200 specific 1bpp BMP support from common/lcd.c Cc: Wolfgang Denk w...@denx.de Cc: Anatolij Gustschin ag...@denx.de Cc: Masahiro

Re: [U-Boot] [PATCH v2 1/2] kconfig: arm: select CPU_V7 for some new boards

2014-11-13 Thread Tom Rini
On Thu, Nov 06, 2014 at 11:39:26AM +0900, Masahiro Yamada wrote: This commit adds select CPU_V7 for some new boards that were not covered by commit 2e07c249a67e (kconfig: arm: introduce symbol for ARM CPUs). Redundant SYS_CPU defines and string directives should be removed.

Re: [U-Boot] [PULL] u-boot-socfpga/master

2014-11-13 Thread Tom Rini
On Tue, Nov 11, 2014 at 06:20:10PM +0100, Marek Vasut wrote: Dangling PR, sorry it's late ... The following changes since commit 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6: arm: interrupt_init: set sp in IRQ/FIQ modes (2014-10-29 09:03:28 -0400) are available in the git repository at:

Re: [U-Boot] [PATCH 6/6] kbuild: Make scripts executable

2014-11-13 Thread Tom Rini
2014-10-30 11:06 GMT+09:00 Masahiro Yamada yamad...@jp.panasonic.com: The Makefiles call the respective interpreter explicitly, but this makes it easier to use the scripts manually. (This commit follows commit 06ed5c2bfaca of Linux Kernel) Signed-off-by: Michal Marek mma...@suse.cz

Re: [U-Boot] [PATCH v2 2/2] kconfig: arm: move armv8 define to arch/arm/Kconfig

2014-11-13 Thread Tom Rini
On Thu, Nov 06, 2014 at 11:39:27AM +0900, Masahiro Yamada wrote: Commit 2e07c249a67e (kconfig: arm: introduce symbol for ARM CPUs) collected the default values of CONFIG_SYS_CPU into arch/arm/Kconfig. This commit moves armv8 to there for consistency. Signed-off-by: Masahiro Yamada

Re: [U-Boot] [PATCH v2 2/2] imx: mx6q/dlsabreauto: And NAND flash support

2014-11-13 Thread Stefano Babic
On 12/11/2014 07:02, Ye.Li wrote: The i.MX6Q/DL sabreauto board has one NAND socket, set the CONFIG_NAND_MXS and relevant NAND configurations to enable the MXS NAND flash driver. Add board level codes to set IOMUX and clock for GPMI-NAND and BCH module. Signed-off-by: Ye.Li

Re: [U-Boot] [GIT PULL] Zynq patches

2014-11-13 Thread Tom Rini
On Tue, Nov 11, 2014 at 11:22:43AM +0100, Michal Simek wrote: Hi Tom, [cc: Albert] please pull these 4 patches to your tree. It adds support for Zybo board and add support for new ps7_init_gpl file. Thanks, Michal The following changes since commit

Re: [U-Boot] [ANN] U-Boot v2015.01-rc1 released

2014-11-13 Thread Tom Rini
On Wed, Nov 12, 2014 at 05:16:42PM -0500, Tom Rini wrote: On Wed, Nov 12, 2014 at 04:10:06PM -0500, Tom Rini wrote: On Wed, Nov 12, 2014 at 12:04:39PM -0500, Tom Rini wrote: On Wed, Nov 12, 2014 at 10:12:30AM +0100, Andreas Bießmann wrote: Hi Tom, On 11/10/2014 10:29 PM, Tom

Re: [U-Boot] [PATCH] arm: mx6: Fix missing Kconfig option for Novena

2014-11-13 Thread Tom Rini
On Thu, Nov 13, 2014 at 11:06:21AM +0100, Marek Vasut wrote: Add two missing Kconfig options for Novena and drop the SPL from the Novena config. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de Cc: Sean Cross x...@kosagi.com Cc: Marek Vasut ma...@denx.de Cc:

Re: [U-Boot] [PATCH] ot1200: add support for EHCI

2014-11-13 Thread Stefano Babic
On 10/11/2014 14:35, Christian Gmeiner wrote: U-Boot 2014.10-17457-g0b23780-dirty (Nov 10 2014 - 11:41:04) CPU: Freescale i.MX6D rev1.2 at 792 MHz Reset cause: WDOG Board: ot1200 I2C: ready DRAM: 1 GiB MMC: FSL_SDHC: 0, FSL_SDHC: 1 SF: Detected M25P16 with page size 256 Bytes,

Re: [U-Boot] [PATCH] ot1200: fix card detect for usdhc4

2014-11-13 Thread Stefano Babic
On 11/11/2014 12:57, Christian Gmeiner wrote: Today I got the final board and found out that a different connector is used as the one on my development board. The new connector has swaped pins for cd and wp. This change is tested on a production ready baord. I fixed it myself.

Re: [U-Boot] [PATCH] zynq: zybo: Move CONFIG_DEFAULT_DEVICE_TREE to defconfig

2014-11-13 Thread Tom Rini
On Thu, Nov 13, 2014 at 01:22:40PM +0100, Michal Simek wrote: Move CONFIG_DEFAULT_DEVICE_TREE from board config directly to defconfig. This patch removes compilation warning: include/configs/zynq_zybo.h:24:0: warning: CONFIG_DEFAULT_DEVICE_TREE redefined [enabled by default] #define

Re: [U-Boot] Updated: Pull request: u-boot-arm/master

2014-11-13 Thread Tom Rini
On Thu, Nov 13, 2014 at 02:49:10PM +0100, Albert ARIBAUD wrote: Hello Tom, This PR replaces the one posted today at 08:54. The following changes since commit 63f7af9a4cfb4a3b9136674c6612c6d13957c2cd: Merge branch 'master' of git://git.denx.de/u-boot-uniphier (2014-11-11 15:49:10

Re: [U-Boot] [PATCH] mx53loco: Change 'fdt_file' dynamically

2014-11-13 Thread Stefano Babic
On 10/11/2014 20:38, Fabio Estevam wrote: From: Fabio Estevam fabio.este...@freescale.com Since kernel 3.15 there are two dtb's for the imx53-qsb board: imx53-qsb.dtb - For the boards with DA9053 PMIC imx53-qsrb.dtb - For the boards with MC34708 PMIC Change the 'fdt_file' dynamically,

Re: [U-Boot] Please pull u-boot-sunxi/master into master

2014-11-13 Thread Tom Rini
On Thu, Nov 13, 2014 at 04:04:25PM +0100, Hans de Goede wrote: Hi Tom, Please pull u-boot-sunxi/master into master, highlights: 1) sun6i dram init / SPL support, allowing full-boot of sun6i SoCs with just u-boot + linux 2) sun6i ehci support 3) A bugfix for the gmac on the bananapi

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread John Tobias
Hi Stefano, On Thu, Nov 13, 2014 at 4:49 AM, Fabio Estevam feste...@gmail.com wrote: On Thu, Nov 13, 2014 at 10:41 AM, Fabio Estevam feste...@gmail.com wrote: Hi John, On Thu, Nov 13, 2014 at 6:58 AM, Stefano Babic sba...@denx.de wrote: #define CONFIG_LOADADDR

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread John Tobias
Hi Fabio, Stefano, Thanks for reviewing my work and for accepting it. Regards, John On Thu, Nov 13, 2014 at 6:42 AM, Stefano Babic sba...@denx.de wrote: Hi Fabio, John, On 13/11/2014 15:39, Fabio Estevam wrote: Hi Stefano, On Thu, Nov 13, 2014 at 10:49 AM, Fabio Estevam

Re: [U-Boot] [PATCH v3 03/26] x96: ifdtool: Allow creation of an empty ROM

2014-11-13 Thread Simon Glass
Hi, On 13 November 2014 00:06, Masahiro Yamada yamad...@jp.panasonic.com wrote: This typo caught my attention by chance. x96: ifdtool: Allow creation of an empty ROM x96 - x86 Yes will fix. Probably wishful thinking, but perhaps I should be grateful it is not '76. Regards, Simon

Re: [U-Boot] [PATCH] x86: Fix a warning with gcc 4.4.4

2014-11-13 Thread Simon Glass
Hi, On 13 November 2014 02:38, Bin Meng bmeng...@gmail.com wrote: On Thu, Nov 13, 2014 at 5:00 PM, Måns Rullgård m...@mansr.com wrote: Simon Glass s...@chromium.org writes: This warning appears even though it seems that the compiler could work it out. Fix it. Signed-off-by: Simon Glass

Re: [U-Boot] [PATCH] arm: mx6: Fix missing Kconfig option for Novena

2014-11-13 Thread Marek Vasut
On Thursday, November 13, 2014 at 04:34:40 PM, Tom Rini wrote: On Thu, Nov 13, 2014 at 11:06:21AM +0100, Marek Vasut wrote: Add two missing Kconfig options for Novena and drop the SPL from the Novena config. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de

Re: [U-Boot] putc

2014-11-13 Thread Simon Glass
Hi Martin, On 13 November 2014 03:28, Martin Dorwig dor...@tetronik.com wrote: Am Mittwoch, 12. November 2014, 19:32:21 schrieben Sie: Hi Martin, On 30 October 2014 00:45, Martin Dorwig dor...@tetronik.com wrote: Am Mittwoch, 29. Oktober 2014, 13:03:41 schrieben Sie: Hi Martin, On 28

Re: [U-Boot] verified boot of beaglebone black

2014-11-13 Thread Simon Glass
Hi, On 11 November 2014 21:29, Srinivasan S srinivasa...@tataelxsi.co.in wrote: Hi , From: s...@google.com s...@google.com on behalf of Simon Glass s...@chromium.org Sent: Monday, November 10, 2014 9:23 PM To: Srinivasan S Cc: Jagan Teki; U-Boot

Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Stefano Babic
Hi John, On 13/11/2014 16:47, John Tobias wrote: The CONFIG_SYS_TEXT_BASE was defined in imx6_spl.h and I was seeing previously some warning related to the duplication of the said macro. I thought it would be great to remove the warning messages so that is why I added the macro. Maybe it

Re: [U-Boot] [PATCH v3 1/5] power: pfuze100: Update definitions for buck regulators

2014-11-13 Thread Przemyslaw Marczak
Hello Ye Li, On 11/06/2014 09:28 AM, Ye.Li wrote: Add definitions for buck regulators (SW1A/B/C) registers and voltage values. Signed-off-by: Ye.Li b37...@freescale.com --- Changes since v1: - None Changes since v2: - Create this patch for updating registers definitions and magic value.

Re: [U-Boot] [PATCH v3 1/5] ARM: HYP/non-sec: add the pen address BE mode support.

2014-11-13 Thread York Sun
On 10/20/2014 02:00 AM, Xiubo Li wrote: For some SoCs, the pen address register maybe in BE mode and the CPUs are in LE mode. This patch adds BE mode support for smp pen address. Signed-off-by: Xiubo Li li.xi...@freescale.com --- Acked-by: York Sun york...@freescale.com

Re: [U-Boot] [PATCH v3 2/5] ARM: HYP/non-sec: Fix the ARCH Timer frequency setting.

2014-11-13 Thread York Sun
On 10/20/2014 02:00 AM, Xiubo Li wrote: For some SoCs, the system clock frequency may not equal to the ARCH Timer's frequency. This patch uses the CONFIG_TIMER_CLK_FREQ instead of CONFIG_SYS_CLK_FREQ, then the system clock macro and arch timer macor could be set separately and without

Re: [U-Boot] [PATCH v3 4/5] ARM: ls102xa: allow all the peripheral access permissions as R/W.

2014-11-13 Thread York Sun
On 10/20/2014 02:00 AM, Xiubo Li wrote: The Central Security Unit (CSU) allows secure world software to change the default access control policies of peripherals/bus slaves, determining which bus masters may access them. This allows peripherals to be separated into distinct security domains.

Re: [U-Boot] [PATCH v3 3/5] ls102xa: HYP/non-sec: support for ls102xa boards

2014-11-13 Thread York Sun
On 10/20/2014 02:00 AM, Xiubo Li wrote: Enable hypervisors utilizing the ARMv7 virtualization extension on the LS1021A-QDS/TWR boards with the A7 core tile, we add the required configuration variable. Also we define the board specific smp_set_cpu_boot_addr() function to set the start address

Re: [U-Boot] [PATCH v3 5/5] ARM: ls102xa: Setting device's stream id for SMMUs.

2014-11-13 Thread York Sun
On 10/20/2014 02:00 AM, Xiubo Li wrote: LS1 has 4 SMMUs for address translation of the masters. All the SMMUs' stream IDs are 8-bit. The address translation depends on the stream ID of the incoming transaction. Each master has unique stream ID assigned to it and is configurable through SCFG

Re: [U-Boot] [PATCH v2 4/4] ARM: ls102xa: allow all the peripheral access permissions as R/W.

2014-11-13 Thread York Sun
Albert, This set should be marked as superseded. York On 11/12/2014 10:09 PM, York Sun wrote: I will take a closer look tomorrow. Being crazy busy lately. York From: Albert ARIBAUD Sent: Wed, 12/11/2014 22:08 To: Sun York-R58495 york...@freescale.com

[U-Boot] Query on CONFIG_SYS_THUMB_BUILD

2014-11-13 Thread Victor Ascroft
Hello, I am working with a Cortex A5 Freescale Vybrid Processor. Since a thumb build leads to a saving of almost 1 MB for my u-boot image and consequently to faster serial downloads I have been looking at this. Currently enabling this option leads to a hang. After some debugging I have

Re: [U-Boot] [PATCH] mx6: video_skip: Fix crash on NULL pointer

2014-11-13 Thread Stefano Babic
Hi Nikolay, On 05/11/2014 09:55, picmas...@mail.bg wrote: From: Nikolay Dimitrov picmas...@mail.bg Signed-off-by: Nikolay Dimitrov picmas...@mail.bg Cc: Stefano Babic sba...@denx.de --- Applied to -u-boot-imx, thanks ! Best regards, Stefano Babic --

[U-Boot] [PATCH v3 0/2] Fix SoC-specific exception handling

2014-11-13 Thread Albert ARIBAUD
Short version: * this patch fixes exception handling on i.MX27 which was broken, probably from day one. * this patch was tested on apf27. Due to lack of debugging hardware, only the data abort, prefetch abort and undefined instruction cases have been tested; software interrupt, IRQ and

[U-Boot] [PATCH v3 2/2] imx: fix exception vectors relocation in imx27

2014-11-13 Thread Albert ARIBAUD
Commit 3ff46cc4 fixed exception vectors setting in the general ARM case, by either copying the exception and indirect vector tables to normal (0x) or high (0x) vectors address, or setting VBAR to U-Boot's base if applicable. i.MX27 SoC is ARM926E-JS, thus has only normal and high

[U-Boot] [PATCH v3 1/2] cosmetic: arm: fix whitespace in arch/arm/lib/relocate.S

2014-11-13 Thread Albert ARIBAUD
Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v3: None Changes in v2: None arch/arm/lib/relocate.S | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/lib/relocate.S b/arch/arm/lib/relocate.S index b4a258c..6ede41c 100644 ---

Re: [U-Boot] [PATCH 1/2] mx6sabresd: Fix error handling in board_mmc_init()

2014-11-13 Thread Stefano Babic
On 06/11/2014 15:24, Fabio Estevam wrote: When an invalid USDHC port is passed we should return -EINVAL instead of 0. Also, return the error immediately on fsl_esdhc_initialize() failure. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to -u-boot-imx, thanks ! Best

Re: [U-Boot] [PATCH 2/2] mx6sabresd: Staticize when possible

2014-11-13 Thread Stefano Babic
On 06/11/2014 15:24, Fabio Estevam wrote: Annotate 'static' when appropriate for the variables used locally. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to -u-boot-imx, thanks ! Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v3 0/2] Fix SoC-specific exception handling

2014-11-13 Thread Albert ARIBAUD
On Thu, 13 Nov 2014 17:59:13 +0100, Albert ARIBAUD albert.u.b...@aribaud.net wrote: * This patch was NOT tested on imx27lite, which is the only other i.MX27-based board AFAICT. The maintainer of imx27lite is Cc:ed on this series. ... or should have, if it had not been for my flaky

[U-Boot] [PATCH] ubi: reset relevant globals in ubi_exit()

2014-11-13 Thread Andrew Ruder
Before calling ubi_init() the U-Boot wrapper calls ubi_mtd_param_parse() to have the UBI driver add it to its mtd_dev_param[] array and increment mtd_devs. The first time ubi_init() is called, mtd_devs would be 1. Before ubi_init() is called again (another partition is attached),

[U-Boot] [PATCH v2] ext4: goni: Modify dfu_alt_info's file names to have absolute path

2014-11-13 Thread Lukasz Majewski
After the clean up performed in the commit 1151b7ac10b81ecbb the DFU subsystem requires absolute path for correct operation. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Acked-by: Robert Baldyga r.bald...@samsung.com --- Changes for v2: - Correct spelling error - Get ACK from board

Re: [U-Boot] [PATCH v4] arm: mx6: add support for TBS2910 Matrix ARM miniPC

2014-11-13 Thread Stefano Babic
On 03/11/2014 13:57, Soeren Moch wrote: Add initial support for TBS2910 Matrix ARM miniPC. Support includes MMC, Ethernet, UARTs, HDMI, USB, SATA, PCI, I2C, RTC. Signed-off-by: Soeren Moch sm...@web.de --- Applied to -u-boot-imx, thanks ! Best regards, Stefano Babic --

[U-Boot] [PATCH v2] arm: socfpga: set skew settings for ethernet phy

2014-11-13 Thread dinguyen
From: Dinh Nguyen dingu...@opensource.altera.com Set the PHY skew settings for the ethernet phy on the SOCFPGA Cyclone5 hardware. Signed-off-by: Dinh Nguyen dingu...@opensource.altera.com Cc: Vince Bridgers vbrid...@opensource.altera.com Cc: Pavel Machek pa...@denx.de Cc: Marek Vasut

Re: [U-Boot] [PATCH v3 0/7] Addition of new board Peach-Pi

2014-11-13 Thread Simon Glass
Hi Akshay, On 13 November 2014 10:16, Akshay Saraswat aksha...@samsung.com wrote: Hi Simon, Hi Akshay, On 31 October 2014 02:55, Akshay Saraswat aksha...@samsung.com wrote: Now we are adding a new Peach-Pi board which is a variant of Peach-Pit and is based on Exynos5800. Exynos5800 itself is

Re: [U-Boot] [PATCH v3 1/5] power: pfuze100: Update definitions for buck regulators

2014-11-13 Thread Stefano Babic
Hi Przemyslaw, On 13/11/2014 17:29, Przemyslaw Marczak wrote: Hello Ye Li, On 11/06/2014 09:28 AM, Ye.Li wrote: Add definitions for buck regulators (SW1A/B/C) registers and voltage values. Signed-off-by: Ye.Li b37...@freescale.com --- I can't test this code, but the changes looks

[U-Boot] Booting non devicetree enabled kernels using u-boot build with CONFIG_OF_LIBFDT ?

2014-11-13 Thread Hans de Goede
Hi all, So as you know I've been working on getting mainline u-boot to boot the older android derived linux-sunxi kernels, as some people need features not yet in mainline, and I would like there to be only one u-boot for both. I had this working a while ago, but recently it broke, this is

[U-Boot] [PATCH v2 5/7] board: iocon: Fix fpga index in print_fpga_info()

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None board/gdsys/405ep/iocon.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/board/gdsys/405ep/iocon.c b/board/gdsys/405ep/iocon.c index 1bac970..fffed73

[U-Boot] [PATCH v2 2/7] mtd: Handle 29LV800BT

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The device id makes u-boot think that this chip needs cfi_reverse_geometry(), which is not the case. Add it to jedec_flash, so it is handled properly. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None drivers/mtd/jedec_flash.c | 51

[U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v2: - fix compiler warning - fix cppcheck finding reported by Wolfgang - move cmd_ioloop from common to board/gdsys/common - remove debug code from hrcon.c Dirk Eibach (7): board: dlvision: Reduce memory footprint mtd: Handle 29LV800BT

[U-Boot] [PATCH v2 3/7] common: Fix cmd_fpgad addressing

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Addressing was completely broken for cmd_fpgad. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None common/cmd_fpgad.c | 32 1 file changed, 24 insertions(+), 8 deletions(-) diff --git

[U-Boot] [PATCH v2 1/7] board: dlvision: Reduce memory footprint

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Tune dlvision configuration similar to other gdsys boards to reduce memory footprint. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None include/configs/dlvision.h | 9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff

[U-Boot] [PATCH v2 7/7] mpc83xx: Add gdsys hrcon board

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The gdsys hrcon board is based on a Freescale MPC8308 SOC. It boots from NOR-Flash, kernel and rootfs are stored on SD-Card. On board peripherals include: - 1x GbE (optional) - Lattice ECP3 FPGA connected via eLBC and PCIe Signed-off-by: Dirk Eibach

[U-Boot] [PATCH v2 4/7] board: dlvision-10g: Compile fix

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: - fix compiler warning board/gdsys/common/osd.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/board/gdsys/common/osd.c b/board/gdsys/common/osd.c index

[U-Boot] [PATCH v2 6/7] board: iocon: Fix uninitialized access

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Wolfgang Denk found this issue using cppcheck: (error) Uninitialized variable: fpga_features Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: - fix cppcheck finding reported by Wolfgang board/gdsys/405ep/iocon.c | 3 ++- 1 file changed,

Re: [U-Boot] Booting non devicetree enabled kernels using u-boot build with CONFIG_OF_LIBFDT ?

2014-11-13 Thread Tom Rini
On Thu, Nov 13, 2014 at 07:08:59PM +0100, Hans de Goede wrote: Hi all, So as you know I've been working on getting mainline u-boot to boot the older android derived linux-sunxi kernels, as some people need features not yet in mainline, and I would like there to be only one u-boot for both.

Re: [U-Boot] Booting non devicetree enabled kernels using u-boot build with CONFIG_OF_LIBFDT ?

2014-11-13 Thread Hans de Goede
Hi, On 11/13/2014 07:34 PM, Tom Rini wrote: On Thu, Nov 13, 2014 at 07:08:59PM +0100, Hans de Goede wrote: Hi all, So as you know I've been working on getting mainline u-boot to boot the older android derived linux-sunxi kernels, as some people need features not yet in mainline, and I would

  1   2   >