Re: [U-Boot] [PATCH v5 7/7] cros: exynos: enable cros-ec for smdk5250

2013-07-25 Thread Chander Kashyap
On 15 May 2013 15:57, Hung-ying Tyan ty...@chromium.org wrote: This patch initiates cros-ec in board_init() to enable it for smdk5250. This patch depends on the patch in the MMC series that brings in exynos5-dt.c. Refer to http://patchwork.ozlabs.org/patch/240084. Signed-off-by: Simon Glass

Re: [U-Boot] [PATCH] CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles

2013-07-25 Thread Inderpal Singh
Adding Minkyu, On 2 July 2013 13:10, Simon Glass s...@chromium.org wrote: On Tue, Jul 2, 2013 at 1:17 PM, Inderpal Singh inderpal.si...@linaro.orgwrote: Update the Makefiles so that all boards can use the same spl generation tool Signed-off-by: Inderpal Singh inderpal.si...@linaro.org

Re: [U-Boot] [PATCH] fs: fat: don't call disk_write with zero sector num

2013-07-25 Thread Josh Wu
Hi, All On 7/24/2013 5:55 PM, Josh Wu wrote: In the set_cluster() function, it will convert the buffer size to sector numbers. Then call disk_write() to write by sector. For remaining buffer, the size is less than a sector, call disk_write() again to write them in one sector. But if the total

[U-Boot] [PATCH 0/5] ARM: IGEP0033: Updates for next release.

2013-07-25 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com Hello, These are some updates to improve the support for IGEP COM AQUILA. Please consider adding for next release. Best regards, Enric Balletbo i Serra (5): ARM: IGEP0033: Remove undef of CONFIG_CMD_MEMTEST ARM: IGEP0033: Add support for

[U-Boot] [PATCH 1/5] ARM: IGEP0033: Remove undef of CONFIG_CMD_MEMTEST

2013-07-25 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com After commit: 79cd2f814b1c75efd47161ac27f4cbebf768240f config_cmd_default.h: Remove CONFIG_CMD_MEMTEST It's not necessary to undef the CONFIG_CMD_MEMTEST, so we can remove it from configuration file. Signed-off-by: Enric Balletbo i Serra

[U-Boot] [PATCH 3/5] ARM: IGEP0033: Remove CYGNUS name from header.

2013-07-25 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com We will not use CYGNUS names for any IGEP COM based on AM335x processor, so, to avoid confusion, remove from headers. Signed-off-by: Enric Balletbo i Serra eballe...@iseebcn.com --- board/isee/igep0033/board.c | 2 +-

[U-Boot] [PATCH 2/5] ARM: IGEP0033: Add support for Flattened Device Tree.

2013-07-25 Thread Enric Balletbo i Serra
Now, the default kernel to boot the IGEP COM AQUILA is device tree based. As old kernel is deprecated we should adapt the boot commands to use DTB files. Also, with v3.9 and later of the Linux Kernel, uImage isn't builtable anymore by default, so we should switch to use the bootz command.

[U-Boot] [PATCH 4/5] ARM: IGEP0033: Add support to boot from NAND.

2013-07-25 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com Add to the default environment the possibily to boot from NAND using a ubi rootfs. Also the partition scheme is set as follows: Start Size SPL : 0x 0x0008 (512KiB) U-Boot : 0x0008

[U-Boot] [PATCH 5/5] ARM: IGEP0033: Remove duplicate / unused #defines.

2013-07-25 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra eballe...@iseebcn.com As config was originally based on am335x_evm.h we have also some duplicate / unnused #defines. Commit 15191c91 removed these #defines on various AM335x boards but not for IGEP COM AQUILA. This patch simply removes them for this board.

[U-Boot] [PATCH 1/7 v10] powerpc: deleted unused symbol CONFIG_SPL_NAND_MINIMAL and enabled some functionality for common SPL

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com 1. The symbol CONFIG_SPL_NAND_MINIMAL is unused, so deleted it. 2. Some functions were unused in the minimal SPL, but it is useful in the common SPL. So, enabled some functionality for common SPL. Signed-off-by: Ying Zhang b40...@freescale.com --- Change

[U-Boot] [PATCH 2/7 v10] powerpc: mpc85xx: Support booting from SD Card with SPL

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com the code from the internal on-chip ROM. It loads the final uboot image into DDR, then jump to it to begin execution. The SPL's size is sizeable, the maximum size must not exceed the size of L2 SRAM. It initializes the DDR through SPD code, and copys final

[U-Boot] [PATCH 3/7 v10] powerpc: p1022ds: Enable P1022DS to boot from SD Card with SPL

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com Enable p1022ds to start from eSDHC with SPL. Signed-off-by: Ying Zhang b40...@freescale.com --- Change from v9: - Mofidy board/freescale/p1022ds/spl.c, fix checkpatch warnings. Change from v8: - No change. Change from v7: - No change. Change from v6: - Split

[U-Boot] [PATCH 6/7 v10] NAND: TPL : introduce the TPL based on the SPL

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com Due to the nand SPL on some board(e.g. P1022DS)has a size limit, it can not be more than 4K. So, the SPL cannot initialize the DDR with the SPD code. This patch introduces TPL to enable a loader stub that is loaded by the code from the SPL. It initializes the

[U-Boot] [PATCH 4/7 v10] powerpc : spi flash : Support to start from eSPI with SPL

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com This patch introduces SPL to enable a loader stub that being loaded by the code from the internal on-chip ROM. It loads the final uboot image into DDR, then jump to it to begin execution. The SPL's size is sizeable, the maximum size must not exceed the size

[U-Boot] [PATCH 7/7 v10] powerpc: p1022ds: add TPL for p1022ds nand boot

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com TPL is introduced in the patch NAND: TPL : introduce the TPL based on the SPL, here enable TPL for p1022ds nand boot. Signed-off-by: Ying Zhang b40...@freescale.com --- Change from v9: - Modify drivers/mtd/nand/Makefile. - Modify

[U-Boot] [PATCH 5/7 v10] powerpc : p1022ds : enable p1022ds to start from eSPI with SPL

2013-07-25 Thread ying.zhang
From: Ying Zhang b40...@freescale.com Enable p1022ds to start from eSPI with SPL. Signed-off-by: Ying Zhang b40...@freescale.com --- Change from v9: - No change. Change from v8: - No change. Change from v7: - No change. Change from v6: - No longer changes the header file included by the file. -

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

2013-07-25 Thread Macpaul Lin
Hi Tom 2013/7/24 Macpaul Lin macp...@gmail.com: Hi Tom, Please pull the following patch from u-boot-nds32 into your tree. Thanks! Because of there are new patches and compile error fix, please ignore this pull-request. I'll review those new patches and resend this pull-request later.

Re: [U-Boot] [PATCH v2 01/10] ARM: move interrupt_init to before relocation

2013-07-25 Thread Albert ARIBAUD
Hi Rob, On Wed, 12 Jun 2013 22:24:45 -0500, Rob Herring robherri...@gmail.com wrote: From: Rob Herring rob.herr...@calxeda.com interrupt_init also sets up the abort stack, but is not setup before relocation. So any aborts during relocation will hang and not print out any useful

Re: [U-Boot] [PATCHv2] socfpga: Move board/socfpga_cyclone5 to board/socfpga

2013-07-25 Thread Albert ARIBAUD
Hi dingu...@altera.com, On Tue, 2 Jul 2013 17:00:18 -0500, dingu...@altera.com wrote: From: Dinh Nguyen dingu...@altera.com Because the SOCFPGA platform will include support for Cyclone V and Arria V FPGA parts, renaming socfpga_cyclone5 folder to socfpga to be more generic.

Re: [U-Boot] [PATCH v6 00/12] arm: add Faraday A36x SoC platform support

2013-07-25 Thread Albert ARIBAUD
Hi Kuo-Jung, On Thu, 4 Jul 2013 11:40:32 +0800, Kuo-Jung Su dant...@gmail.com wrote: From: Kuo-Jung Su dant...@faraday-tech.com These patches introduce Faraday A36x SoC platform support. So where are we on this series? Seems like there were a few comments about V6, and I haven't seen a V7

[U-Boot] Pull request v2: u-boot-nds32

2013-07-25 Thread Macpaul Lin
Hi Tom, Please pull the following patch from u-boot-nds32 into your tree. Thanks! The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c: Prepare v2013.07 (2013-07-23 07:58:13 -0400) are available in the git repository at: git://git.denx.de/u-boot-nds32.git master

Re: [U-Boot] [PATCH v3 6/7] USB: usb-hub: Add a weak function for resetting devices

2013-07-25 Thread Roger Quadros
Hi Marek, On 07/25/2013 08:32 AM, Marek Vasut wrote: Dear Dan Murphy, Marek On 07/17/2013 11:30 PM, Marek Vasut wrote: Dear Dan Murphy, Add a __weak function that can be overridden to reset devices attached to an ehci devices after the FEAT_POWER has been submitted Signed-off-by: Dan

Re: [U-Boot] [PATCH] nds32: Update asm/io.h and asm/setup.h with SPDX license identifiers

2013-07-25 Thread Macpaul Lin
Hi Tom, 2013/7/24 Tom Rini tr...@ti.com: Signed-off-by: Tom Rini tr...@ti.com --- arch/nds32/include/asm/io.h|4 +--- arch/nds32/include/asm/setup.h |4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) Applied to u-boot-nds32. Thanks! -- Best regards, Macpaul Lin

Re: [U-Boot] [PATCH] nds32: Convert Makefiles to use COBJS-y style

2013-07-25 Thread Macpaul Lin
Hi Kuan-Yu, 2013/7/25 Kuan-Yu Kuo ken.ku...@gmail.com: Signed-off-by: Kuan-Yu Kuo ken.ku...@gmail.com Cc: Macpaul Lin macp...@gmail.com --- arch/nds32/cpu/n1213/Makefile |4 ++-- arch/nds32/cpu/n1213/ag101/Makefile |8 arch/nds32/cpu/n1213/ag102/Makefile |8

Re: [U-Boot] [PATCH v2] nds32: Enable FPU if the version of CPU supported

2013-07-25 Thread Macpaul Lin
Hi Kuan-Yu, 2013/7/25 Kuan-Yu Kuo ken.ku...@gmail.com: Some version of Andes core support FPU coprocessor, if this is the case, and toolchain support FPU instruction set, we should enable it at low level initialization time. Signed-off-by: Kuan-Yu Kuo ken.ku...@gmail.com Cc: Macpaul Lin

Re: [U-Boot] [RFC] [PATCH 0/5] Refactor MAINTAINERS file

2013-07-25 Thread Albert ARIBAUD
Hi Wolfgang, On Wed, 24 Jul 2013 06:34:30 +0200, Wolfgang Denk w...@denx.de wrote: Dear Albert, In message 1374611299-16836-1-git-send-email-albert.u.b...@aribaud.net you wrote: This patch series aims at refactoring MAINTAINERS into an easily processable file. Thanks! Much

Re: [U-Boot] [PATCH 2/2] arm: goni: remove config.mk file

2013-07-25 Thread Lukasz Majewski
On Thu, 25 Jul 2013 10:45:35 +0900 Minkyu Kang mk7.k...@samsung.com wrote, Hi Minkyu, Since config.mk is deprecated, remove this file, and move CONFIG_SYS_TEXT_BASE define to config file. Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- board/samsung/goni/config.mk | 34

[U-Boot] [PATCH v4 2/2] exynos5250: arndale: Add mmc support

2013-07-25 Thread Chander Kashyap
From: Inderpal Singh inderpal.si...@linaro.org This patch adds mmc support to the arndale board. Signed-off-by: Inderpal Singh inderpal.si...@linaro.org --- board/samsung/arndale/arndale.c | 14 ++ board/samsung/dts/exynos5250-arndale.dts | 18 ++ 2

[U-Boot] [PATCH v2] CONFIG: EXYNOS5: Replace misnomer SMDK5250 with EXYNOS5250 and update Makefiles

2013-07-25 Thread Inderpal Singh
From: Chander Kashyap chander.kash...@linaro.org Update the Makefiles so that all boards can use the same spl generation tool Signed-off-by: Inderpal Singh inderpal.si...@linaro.org Acked-by: Simon Glass s...@chromium.org --- changes in v2: - Rebased to latest u-boot-samsung master

Re: [U-Boot] [PATCH] drivers/i2c: Update fti2c010.[ch], i2c_core.c to use SPDX identifiers

2013-07-25 Thread Tom Rini
On Wed, Jul 24, 2013 at 09:26:40AM -0400, Tom Rini wrote: Signed-off-by: Tom Rini tr...@ti.com --- drivers/i2c/fti2c010.c |3 +-- drivers/i2c/fti2c010.h |3 +-- drivers/i2c/i2c_core.c | 14 +- 3 files changed, 3 insertions(+), 17 deletions(-) Applied to

Re: [U-Boot] Fwd: [i2c] Pull request

2013-07-25 Thread Tom Rini
On Tue, Jul 23, 2013 at 03:52:10PM +0200, Heiko Schocher wrote: Hello, forgot to add the U-Boot mailinglist to Cc: ... Original-Nachricht Betreff: [U-Boot] [i2c] Pull request Datum: Tue, 23 Jul 2013 14:54:39 +0200 Von: Heiko Schocher h...@denx.de Antwort an:

Re: [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers

2013-07-25 Thread Tom Rini
On Wed, Jul 10, 2013 at 09:37:36AM +0200, Wolfgang Denk wrote: Like many other projects, U-Boot has a tradition of including big blocks of License headers in all files. This not only blows up the source code with mostly redundant information, but also makes it very difficult to generate

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

2013-07-25 Thread Tom Rini
On Wed, Jul 24, 2013 at 12:42:14AM +0200, Daniel Schwierzeck wrote: Hi Tom, The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c: Prepare v2013.07 (2013-07-23 07:58:13 -0400) are available in the git repository at: git://git.denx.de/u-boot-mips.git master

Re: [U-Boot] Pull request v2: u-boot-nds32

2013-07-25 Thread Tom Rini
On Thu, Jul 25, 2013 at 05:17:05PM +0800, Macpaul Lin wrote: Hi Tom, Please pull the following patch from u-boot-nds32 into your tree. Thanks! The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c: Prepare v2013.07 (2013-07-23 07:58:13 -0400) are available in

Re: [U-Boot] [PATCH] qemu-malta: Update for SPDX license identifiers

2013-07-25 Thread Tom Rini
On Wed, Jul 24, 2013 at 09:35:23AM -0400, Tom Rini wrote: Signed-off-by: Tom Rini tr...@ti.com --- board/qemu-malta/Makefile| 18 +- board/qemu-malta/lowlevel_init.S |4 +--- board/qemu-malta/qemu-malta.c|4 +--- drivers/pci/pci_gt64120.c|4

[U-Boot] dfu: bConfigurationValue=2 makes download from windows fail

2013-07-25 Thread Egli, Samuel
Hi Lukasz We found out that there is an issue with dfu implementation on the latest U-Boot (v2013.07) when downloading from windows. From linux everything works fine. I discussed this with Tormod on the dfu-util mailing list. In short, I found out that when downloading with dfu-util in libusbx

[U-Boot] [PATCH v4 0/2] Add Arndale board support

2013-07-25 Thread Chander Kashyap
The Arndale board is based on samsung's exynos5250 SOC. For spl generation, it depends on the patch at [5]. First patch provides the basic arndale board support. The second patch adds the MMC support. Changes in v2: - split from earlier patchset at [3] as per Minkyu - Removed

Re: [U-Boot] [PATCH 0/5] Introducing SPDX-License-Identifiers

2013-07-25 Thread Wolfgang Denk
Dear Tom, In message 20130725130551.GE19104@bill-the-cat you wrote: OK, with the cmd_io.c fix squashed in (and S-o-B added), and v3 of 1/5 used instead, this is now applied to u-boot/master, thanks! Thanks a lot! [But I can't see it on the server, yet?] Best regards, Wolfgang Denk --

[U-Boot] [PATCH v4 1/2] exynos5250: Add arndale board support

2013-07-25 Thread Chander Kashyap
Arndale board is based on samsung's exynos5250 soc. Signed-off-by: Inderpal Singh inderpal.si...@linaro.org Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- MAINTAINERS |4 + board/samsung/arndale/Makefile | 50 ++

[U-Boot] [PATCH 2/2] fpga: zynqpl: Clear loopback mode during device init

2013-07-25 Thread Michal Simek
From: Soren Brinkmann soren.brinkm...@xilinx.com Some versions of the Zynq first stage boot loader enable PCAP loopback during boot regardless of whether or not the boot image includes PL configuration. This behavior only appears in certain boot modes (notably QSPI boot). Attempting to configure

Re: [U-Boot] dfu: bConfigurationValue=2 makes download from windows fail

2013-07-25 Thread Lukasz Majewski
On Thu, 25 Jul 2013 12:29:01 + Egli, Samuel samuel.e...@siemens.com wrote, Hi Samuel, Thanks for very detailed bug/problem report. Hi Lukasz We found out that there is an issue with dfu implementation on the latest U-Boot (v2013.07) when downloading from windows. From linux everything

[U-Boot] [PATCH 1/2] fpga: zynqpl: Add support for zc7100 device.

2013-07-25 Thread Michal Simek
- Add support for zc7100 device. - FPGA programming on few of the SOC(zc7100) takes more than 1sec, hence increased the program time by 4sec to sync' all soc's. Signed-off-by: Jagannadha Sutradharudu Teki jaga...@xilinx.com Signed-off-by: Michal Simek michal.si...@xilinx.com ---

[U-Boot] [PATCH] arm: lds: Remove libgcc eabi exception handling tables

2013-07-25 Thread Michal Simek
Remove ARM eabi exception handling tables (for frame unwinding). AFAICT, u-boot stubs away the frame unwiding routines, so the tables will more or less just consume space. It should be OK to remove them. Signed-off-by: Edgar E. Iglesias edgar.igles...@xilinx.com Signed-off-by: Michal Simek

[U-Boot] [PATCH 2/3] zynq: slcr: Wait 100ms till clk is properly setup

2013-07-25 Thread Michal Simek
If you don't wait you will loose the first sent packet even all bits in emacps are correctly setup. Signed-off-by: Michal Simek michal.si...@xilinx.com --- arch/arm/cpu/armv7/zynq/slcr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/cpu/armv7/zynq/slcr.c

[U-Boot] [PATCH 3/3] zynq: Enable axi ethernet and emaclite driver initialization

2013-07-25 Thread Michal Simek
Zynq can have axi ethernet and emaclite IPs in programmable logic. Signed-off-by: Michal Simek michal.si...@xilinx.com --- board/xilinx/zynq/board.c | 17 + 1 file changed, 17 insertions(+) diff --git a/board/xilinx/zynq/board.c b/board/xilinx/zynq/board.c index

[U-Boot] [PATCH 1/3] zynq: Add new ddrc driver for ECC support

2013-07-25 Thread Michal Simek
The first 1MB is not initialized by first stage bootloader. Check if memory is setup to 16bit mode and ECC is enabled. If it is, clear the first 1MB. Also u-boot should report only the half size of memory. Signed-off-by: Michal Simek michal.si...@xilinx.com Acked-by: Jagannadha Sutradharudu Teki

Re: [U-Boot] [PATCH 2/6] drivers/power/pmic: Add tps65217 driver

2013-07-25 Thread Tom Rini
On Tue, Jul 23, 2013 at 01:34:15PM -0500, Dan Murphy wrote: On 07/19/2013 02:00 PM, Tom Rini wrote: From: Greg Guyotte gguyo...@ti.com Add a driver for the TPS65217 PMIC that is found in the Beaglebone family of boards. Signed-off-by: Greg Guyotte gguyo...@ti.com [trini: Split and

Re: [U-Boot] dfu: bConfigurationValue=2 makes download from windows fail

2013-07-25 Thread Egli, Samuel
Hi Lukasz, -Original Message- From: Lukasz Majewski [mailto:l.majew...@samsung.com] Sent: Donnerstag, 25. Juli 2013 16:03 To: Egli, Samuel Cc: Heiko Schocher; Wolfgang Denk; Bach, Pascal; Meier, Roger; u- b...@lists.denx.de; Tormod Volden Subject: Re: dfu: bConfigurationValue=2 makes

Re: [U-Boot] [PATCH 1/7 v10] powerpc: deleted unused symbol CONFIG_SPL_NAND_MINIMAL and enabled some functionality for common SPL

2013-07-25 Thread Scott Wood
On 07/25/2013 02:44:39 AM, ying.zh...@freescale.com wrote: From: Ying Zhang b40...@freescale.com 1. The symbol CONFIG_SPL_NAND_MINIMAL is unused, so deleted it. 2. Some functions were unused in the minimal SPL, but it is useful in the common SPL. So, enabled some functionality for common SPL.

Re: [U-Boot] [PATCH v6 04/12] cfi_flash: use buffer length in unmap_physmem()

2013-07-25 Thread Stefan Roese
On 07/04/2013 05:40 AM, Kuo-Jung Su wrote: From: Kuo-Jung Su dant...@faraday-tech.com While the flash_detect_legacy() of drivers/mtd/cfi_flash.c feed unmap_physmem() with MAP_NOCACHE as 2nd parameter, the do_spi_flash_read_write() of common/cmd_sf.c feed unmap_physmem() with the length of

[U-Boot] Please pull u-boot-cfi-flash

2013-07-25 Thread Stefan Roese
Hi Tom, please pull the following patch: The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c: Prepare v2013.07 (2013-07-23 07:58:13 -0400) are available in the git repository at: git://www.denx.de/git/u-boot-cfi-flash.git master for you to fetch changes up to

Re: [U-Boot] [PATCH] cfi_flash: Add prototypes of overridable functions

2013-07-25 Thread Stefan Roese
On 06/06/2013 09:54 AM, Masahiro Yamada wrote: This commit adds some prototypes into include/mtd/cfi_flash.h. These functions are defined with a weak attribute in drivers/mtd/cfi_flash.c. This means they can be overrided by board-specific ones if necessary. When defining such functions

Re: [U-Boot] dfu: bConfigurationValue=2 makes download from windows fail

2013-07-25 Thread Lukasz Majewski
On Thu, 25 Jul 2013 14:41:02 + Egli, Samuel samuel.e...@siemens.com wrote, Hi Lukasz, -Original Message- From: Lukasz Majewski [mailto:l.majew...@samsung.com] Sent: Donnerstag, 25. Juli 2013 16:03 To: Egli, Samuel Cc: Heiko Schocher; Wolfgang Denk; Bach, Pascal; Meier, Roger;

[U-Boot] How to integrate libtomcrypt into u-boot?

2013-07-25 Thread André Schaller
Hi there, for a research project I need to incorporate different crypto functions (PRNG, SHA1, symmetric encryption/decryption) into the MLO part of u-boot. My questions: 1.) Has someone achieved this before? 2.) Do you guys know it this is even possible regarding the limited size of the MLO

Re: [U-Boot] [PATCH v3 1/2] mx6: Factor out common HDMI setup code

2013-07-25 Thread Eric Nelson
Hi Pardeep, On 07/24/2013 02:35 PM, Pardeep Kumar Singla wrote: Instead of duplicating HDMI setup code for every mx6 board, factor out the common code Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v2: Added new function enable_ipu_clock() to separate the

[U-Boot] [PATCH v4 1/2] mx6: Factor out common HDMI setup code

2013-07-25 Thread Pardeep Kumar Singla
Instead of duplicating HDMI setup code for every mx6 board, factor out the common code Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v3: Added declaration of enable_ipu_clock(). Made enable_ipu_clock() function public. arch/arm/cpu/armv7/mx6/clock.c

Re: [U-Boot] [PATCH 2/6] drivers/power/pmic: Add tps65217 driver

2013-07-25 Thread Dan Murphy
On 07/25/2013 09:37 AM, Tom Rini wrote: On Tue, Jul 23, 2013 at 01:34:15PM -0500, Dan Murphy wrote: On 07/19/2013 02:00 PM, Tom Rini wrote: From: Greg Guyotte gguyo...@ti.com Add a driver for the TPS65217 PMIC that is found in the Beaglebone family of boards. Can we add the public reference

[U-Boot] [PATCH v4 2/2] mx6qsabresd: Add splash screen support via HDMI

2013-07-25 Thread Pardeep Kumar Singla
Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v3: Added enable_ipu_clock() function for ipu clock setting board/freescale/mx6sabresd/mx6sabresd.c | 64 ++- include/configs/mx6sabre_common.h |3 +- include/configs/mx6sabresd.h

Re: [U-Boot] [PATCH v4 1/2] mx6: Factor out common HDMI setup code

2013-07-25 Thread Eric Nelson
On 07/25/2013 10:12 AM, Pardeep Kumar Singla wrote: Instead of duplicating HDMI setup code for every mx6 board, factor out the common code Signed-off-by: Pardeep Kumar Singla b45...@freescale.com --- Changes since v3: Added declaration of enable_ipu_clock(). Made enable_ipu_clock() function

Re: [U-Boot] [Ac100] [PATCH 3/3] ARM: tegra: paz00: enable nveckeyboardsupport

2013-07-25 Thread Stephen Warren
On 07/24/2013 10:52 AM, Marc Dietrich wrote: On Tuesday 23 July 2013 08:40:42 Stephen Warren wrote: On 07/22/2013 01:09 AM, Marc Dietrich wrote: [ snip the stuff we agreed upon ] The nvec still needs to tell the slave driver which protocol to use, but that can be hard coded. I'm not

Re: [U-Boot] [PATCH 3/6] drivers/power/pmic: Add tps65910 driver

2013-07-25 Thread Dan Murphy
On 07/19/2013 02:00 PM, Tom Rini wrote: From: Philip, Avinash avinashphi...@ti.com Add a driver for the TPS65910 PMIC that is found in the AM335x GP EVM, AM335x EVM SK and others. Can we add a link to the technical manual? http://www.ti.com/product/tps65910 Signed-off-by: Philip, Avinash

Re: [U-Boot] [PATCH 2/6] drivers/power/pmic: Add tps65217 driver

2013-07-25 Thread Tom Rini
On Thu, Jul 25, 2013 at 12:21:41PM -0500, Dan Murphy wrote: On 07/25/2013 09:37 AM, Tom Rini wrote: On Tue, Jul 23, 2013 at 01:34:15PM -0500, Dan Murphy wrote: On 07/19/2013 02:00 PM, Tom Rini wrote: From: Greg Guyotte gguyo...@ti.com Add a driver for the TPS65217 PMIC that is found in

[U-Boot] [RFC] Remove static display data

2013-07-25 Thread Robert Winkler
Hello all, We're trying to figure out how best to get rid of static code like this: http://git.denx.de/?p=u-boot.git;a=blob;f=board/boundary/nitrogen6x/nitrogen6x.c;h=8f0f9b8de2e8e77fcbf477728ea063a213941dd0;hb=HEAD#l526 and turn it into run time data. Our idea is to use an environment

[U-Boot] Extract data file from U-Boot image

2013-07-25 Thread Guilherme Maciel Ferreira
Hi list, I guess I'm not the first one who ever needed to retrieve data files from multifile images, those create by mkimage tool. However, I could just find scripts to do that (specially an old thread answered by Wolfgang about dd). I made a patch to allow mkimage to extract files from images,

Re: [U-Boot] Extract data file from U-Boot image

2013-07-25 Thread Albert ARIBAUD
Hi Guilherme, On Thu, 25 Jul 2013 12:31:46 -0300, Guilherme Maciel Ferreira guilherme.maciel.ferre...@gmail.com wrote: Hi list, I guess I'm not the first one who ever needed to retrieve data files from multifile images, those create by mkimage tool. However, I could just find scripts to do

Re: [U-Boot] Extract data file from U-Boot image

2013-07-25 Thread Wolfgang Denk
Dear Guilherme Maciel Ferreira, In message CAF=5bWftE3UwPrOH+q+JPm-ag0igmAr_G4s=kLzhSObNhN=y...@mail.gmail.com you wrote: I made a patch to allow mkimage to extract files from images, which just works for multi-file image. But, the fact that nobody has ever done this means that this feature

[U-Boot] [IMPORTANT NOTE] License handling

2013-07-25 Thread Wolfgang Denk
Hello all, this is to raise your attention to some small but important change in the way we're dealing with software licenses in U-Boot. Don't be afraid - the licensing itself does not change at all, we just change the way how we express the license terms in the source code. Please see commit

Re: [U-Boot] Extract data file from U-Boot image

2013-07-25 Thread Wolfgang Denk
Dear Heer Lorcan, In message CAHCtDORkcGdgTnTPyJfrxwdpmA=mrFDAJ5rHEzz94gy=wuq...@mail.gmail.com you wrote: want to extract files from my u-boot.bin. could you send me the script to do this? u-boot.bin is a raw binary which does not contain any sort of files. You cannot extract what's not

Re: [U-Boot] [U-Boot, v3, 6/7] USB: usb-hub: Add a weak function for resetting devices

2013-07-25 Thread Lubomir Popov
Hi Dan, guys, Just would like to give my 5 cents: my humble experience with OMAP4 and OMAP5 tells me that this (that is, the need to reset devices after applying port power) seems to be a OMAP5 HSIC IP issue, and not a device problem. We at MMS have two custom designs, one with OMAP5430 and one

Re: [U-Boot] Extract data file from U-Boot image

2013-07-25 Thread Guilherme Maciel Ferreira
Dear Wolfgang, 2013/7/25 Wolfgang Denk w...@denx.de: Dear Guilherme Maciel Ferreira, In message CAF=5bWftE3UwPrOH+q+JPm-ag0igmAr_G4s=kLzhSObNhN=y...@mail.gmail.com you wrote: I made a patch to allow mkimage to extract files from images, which just works for multi-file image. But, the

[U-Boot] [PATCH] wandboard: add pxe support, set default boot command like highbank

2013-07-25 Thread dgilmore
From: Dennis Gilmore den...@ausil.us Signed-off-by: Dennis Gilmore den...@ausil.us --- include/configs/wandboard.h | 42 +++--- 1 file changed, 39 insertions(+), 3 deletions(-) diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index

[U-Boot] [PATCH v2] arm:samsung:serial Extract common UART code

2013-07-25 Thread Lukasz Majewski
This commit brings removal of duplicated code for UART IP block embedded at Samsung SoCs. New include/asm/samsung-common directory has been created to store common code for existing and future Samsung targets. Moreover building of UART code now depends on more verbose CONFIG_S5P_SERIAL. Thereof

[U-Boot] [PATCH v2] arm:samsung: Move common code from ./s5p-common to ./samsung-common/

2013-07-25 Thread Lukasz Majewski
Common Samsung code has been moved one level up - to ./samsung-common directory. This would allow other - non S5P based targets to reuse this code base Moreover duplicated header files were removed. Signed-off-by: Lukasz Majewski l.majew...@majess.pl --- Changes for v2: - Only compile in

[U-Boot] [PATCH] arm:samsung:cpu_info: Rename s5p_* to samsung_*

2013-07-25 Thread Lukasz Majewski
Common CPU info code has been refactored to use more generic name - namely samsung_* instead of s5p_*. This change will prevent code duplication for non armv7a based SoCs (e.g. s3c64xx). Signed-off-by: Lukasz Majewski l.majew...@majess.pl --- This patch depends on: 1. arm:samsung:serial Extract

Re: [U-Boot] [U-Boot, v3, 6/7] USB: usb-hub: Add a weak function for resetting devices

2013-07-25 Thread Dan Murphy
Lubo Thanks for the reply On 07/25/2013 03:38 PM, Lubomir Popov wrote: Hi Dan, guys, Just would like to give my 5 cents: my humble experience with OMAP4 and OMAP5 tells me that this (that is, the need to reset devices after applying port power) seems to be a OMAP5 HSIC IP issue, and not a

[U-Boot] [PATCH] video: mxc_ipuv3: fix memory alignment of framebuffer

2013-07-25 Thread Eric Nelson
The frame-buffer on i.MX boards needs to be aligned for DMA. Signed-off-by: Eric Nelson eric.nel...@boundarydevices.com --- drivers/video/mxc_ipuv3_fb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c index

Re: [U-Boot] [PATCH 2/2] arm: goni: remove config.mk file

2013-07-25 Thread Minkyu Kang
Dear Lukasz, On 25/07/13 20:05, Lukasz Majewski wrote: On Thu, 25 Jul 2013 10:45:35 +0900 Minkyu Kang mk7.k...@samsung.com wrote, Hi Minkyu, Since config.mk is deprecated, remove this file, and move CONFIG_SYS_TEXT_BASE define to config file. Signed-off-by: Minkyu Kang

Re: [U-Boot] [PATCH] video: mxc_ipuv3: fix memory alignment of framebuffer

2013-07-25 Thread Marek Vasut
Dear Eric Nelson, The frame-buffer on i.MX boards needs to be aligned for DMA. Signed-off-by: Eric Nelson eric.nel...@boundarydevices.com --- drivers/video/mxc_ipuv3_fb.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/video/mxc_ipuv3_fb.c

Re: [U-Boot] [U-Boot, v3, 6/7] USB: usb-hub: Add a weak function for resetting devices

2013-07-25 Thread Marek Vasut
Dear Dan Murphy, Lubo Thanks for the reply On 07/25/2013 03:38 PM, Lubomir Popov wrote: Hi Dan, guys, Just would like to give my 5 cents: my humble experience with OMAP4 and OMAP5 tells me that this (that is, the need to reset devices after applying port power) seems to be a

Re: [U-Boot] Extract data file from U-Boot image

2013-07-25 Thread Wolfgang Denk
Dear Guilherme Maciel Ferreira, In message CAF=5bWcMhBhvvWP1933Xyi9Cpv_t3Y306ceWr6pH+TqwoYpi=g...@mail.gmail.com you wrote: But I fear that mkimage explodes from creaping featurism, so if you go and implement something like this, please do not add it to kmimage, but rather create a

Re: [U-Boot] [PATCH v5 0/6] Update gdsys ppc4xx-based boards

2013-07-25 Thread Stefan Roese
On 06/26/2013 04:04 PM, dirk.eib...@gdsys.cc wrote: From: Dirk Eibach dirk.eib...@gdsys.cc This series depends on i2c multibus support. It was rebased on the latest multibus branch at http://git.denx.de/?p=u-boot/u-boot-i2c.git;a=shortlog;h=refs/heads/20130620_multibus_v2 Patch

Re: [U-Boot] [PATCH 1/3] zynq: Add new ddrc driver for ECC support

2013-07-25 Thread Michal Simek
On 07/25/2013 04:18 PM, Michal Simek wrote: The first 1MB is not initialized by first stage bootloader. Check if memory is setup to 16bit mode and ECC is enabled. If it is, clear the first 1MB. Also u-boot should report only the half size of memory. Signed-off-by: Michal Simek

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

2013-07-25 Thread Stefan Roese
Hi Tom, please pull the following patches: The following changes since commit aaf5e825606a70ddc8fca8e366d8c16a6fd3cc7c: Merge branch 'master' of git://git.denx.de/u-boot-nds32 (2013-07-25 08:51:51 -0400) are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git