[U-Boot] mcf523x, issue in cpu_init

2012-11-07 Thread Angelo Dureghello
Hi, looking on freescale files, i found this possible issue line 65 out_be32(fbcs-cscr0, CONFIG_SYS_CS0_CTRL); considering: CONFIG_SYS_CS0_MASK for m5235evb board is define CONFIG_SYS_CS0_CTRL 0x1D00 and flexbus registers are as: typedef struct fbcs { u16 csar0; /*

Re: [U-Boot] [PATCH 6/7] fs: Add a Coreboot Filesystem (CBFS) driver and commands

2012-11-07 Thread Wolfgang Denk
Dear Simon, In message CAPnjgZ0k58-JG+MxvKp=6jxthmpb8pzhp+xfpdnb8jctamt...@mail.gmail.com you wrote: Yes I am now completely lost :-) Me too. Where have I changed the licensing model? Your original request was to remove the CREDITS line I think. I have done that in this patch:

Re: [U-Boot] [PATCH 01/10] arm: Compile cache_disable() with -O2 to avoid failure

2012-11-07 Thread Wolfgang Denk
Dear Simon, In message capnjgz38tzr2ztdq5d8fnfgcz9a+-vgjfv0saezjwiqbhh-...@mail.gmail.com you wrote: compiler to read the PC back from the stack after the dcache flush - can you please explain what exactly this means, and which exact problem it causes? This is the code without the

Re: [U-Boot] [PATCH 1/3] tpm: Add casts for proper compilation

2012-11-07 Thread Wolfgang Denk
Dear Simon, In message capnjgz2p-re5hp13st-q2cup49azyzzxwnrzsafhr_iusgb...@mail.gmail.com you wrote: I accept that it has sat there for a while without a board config to use it. But I would very much like to keep this code and see no sense in removing it now that it is actually in use.

[U-Boot] [PATCH 0/8 v2] Add TMU support for Exynos5250 based SMDK5250

2012-11-07 Thread Hatim Ali
This patch series adds support for TMU driver using device tree for Exynos5250 based SMDK5250 board. This patch series is dependent on the patch series Add DT based ethernet driver for SMDK5250 by Hatim Ali Changes since v1: - Created new generic header file include/tmu.h -

[U-Boot] [PATCH 1/8 v2] EXYNOS5: FDT: Add TMU device node values

2012-11-07 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Fdt entry for Exynos TMU driver specific pre-defined values used for calibration of current temperature and defining threshold values. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1:

[U-Boot] [PATCH 2/8 v2] EXYNOS5: TMU: Add driver for Thermal Management Unit

2012-11-07 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Adding Exynos Thermal Management Unit driver to monitor SOC temperature and take actions corresponding to states of TMU. System will shutdown if tripping temperature is reached. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass

Re: [U-Boot] [PATCH] USB: add arrow key support to usb_kbd

2012-11-07 Thread Marek Vasut
Dear Allen Martin, On Tue, Nov 06, 2012 at 02:56:37PM -0800, Marek Vasut wrote: Dear Simon Glass, Hi Marek, On Tue, Nov 6, 2012 at 2:49 PM, Marek Vasut ma...@denx.de wrote: Dear Allen Martin, Check for scancodes for arrow keys and map them to ^F/^B, ^N/^P. Control

[U-Boot] [PATCH 3/8 v2] EXYNOS5: Power down API for Thermal Management Unit

2012-11-07 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Adding API in power for system shutdown when tripping value is reached in Exynos Thermal Management Unit. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Changed description

[U-Boot] [PATCH 4/8 v2] Add a poll function to monitor events

2012-11-07 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Adding a generic polling function to continuously monitor events and trigger actions corresponding to them. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Removed GEN tag from

[U-Boot] [PATCH 5/8 v2] EXYNOS5: TMU: Add TMU status polling

2012-11-07 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com This adds call to tmu_init() and TMU status polling in board_poll_devices() funtion to monitor temperature change of the SOC. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: -

Re: [U-Boot] [PATCH 09/10] arm: Move bootstage record for board_init_f() to after arch_cpu_init()

2012-11-07 Thread Wolfgang Denk
Dear Simon, In message capnjgz0d4g4bk70vook3sykmzowlsypxdje2ycn3gvj1jav...@mail.gmail.com you wrote: NAK as is. Please make sure to keep all arhcitectures in sync. The long term goal iss till to merge the lib/board.c files into a single, common one. See my notes on the other patch,

Re: [U-Boot] [PATCH] USB: add arrow key support to usb_kbd

2012-11-07 Thread Marek Vasut
Dear Stephen Warren, On 11/06/2012 03:56 PM, Marek Vasut wrote: Dear Simon Glass, Hi Marek, On Tue, Nov 6, 2012 at 2:49 PM, Marek Vasut ma...@denx.de wrote: Dear Allen Martin, Check for scancodes for arrow keys and map them to ^F/^B, ^N/^P. Control characters are used

[U-Boot] [PATCH 6/8 v2] EXYNOS5: Config: Enable support for Exynos TMU driver

2012-11-07 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Enables TMU driver support for exynos5250 Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Added Acked-by: Simon Glass include/configs/exynos5250-dt.h |6 ++ 1 files

[U-Boot] [PATCH 7/8 v2] TMU: Add u-boot command to read current temp

2012-11-07 Thread Hatim Ali
From: Alim Akhtar alim.akh...@samsung.com Adds a new u-boot command to read current temprature from tmu driver. Signed-off-by: Alim Akhtar alim.akh...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Include new generic tmu header file - Made printf()s

[U-Boot] [PATCH 8/8 v2] EXYNOS5: Config: Enable tmu command

2012-11-07 Thread Hatim Ali
From: Alim Akhtar alim.akh...@samsung.com This enables the tmu command to read the current SOC temperature with the help of TMU Signed-off-by: Alim Akhtar alim.akh...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Added Acked-by: Simon Glass

Re: [U-Boot] [PATCH 1/3] common: add ifdefs around bouncebuf.c body

2012-11-07 Thread Marek Vasut
Dear Stephen Warren, On 11/06/2012 03:57 PM, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:43 PM, Marek Vasut wrote: Dear Stephen Warren, On 11/05/2012 05:54 PM, Marek Vasut wrote: Dear Stephen Warren, From: Stephen Warren swar...@nvidia.com If a U-Boot

Re: [U-Boot] usb: ehci: Take advantage of the new multi-controller feature for MXC

2012-11-07 Thread Marek Vasut
Dear Lucas Stach, Dear Marek Vasut, Am Dienstag, den 06.11.2012, 23:35 +0100 schrieb Marek Vasut: Dear Lucas Stach, [...] What do you think? What about passing port private / platform data instead of ID ? The ID is already passed to ehci_hcd_init(), so

Re: [U-Boot] [PATCH v3 1/2] video: atmel: implement lcd_setcolreg funtion

2012-11-07 Thread Marek Vasut
Dear Bo Shen, Hi Marek, On 11/7/2012 6:54, Marek Vasut wrote: Dear Andreas Bießmann, From: Bo Shen voice.s...@atmel.com Missing commit message Signed-off-by: Bo Shen voice.s...@atmel.com Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- since v2: *

Re: [U-Boot] usb: ehci: Take advantage of the new multi-controller feature for MXC

2012-11-07 Thread Lucas Stach
Dear Marek Vasut, Am Mittwoch, den 07.11.2012, 14:25 +0100 schrieb Marek Vasut: Dear Lucas Stach, Dear Marek Vasut, Am Dienstag, den 06.11.2012, 23:35 +0100 schrieb Marek Vasut: I don't see how you transfer DT information into controller # ... There is really no need to pass

Re: [U-Boot] [PATCH] TPM: remove dead code

2012-11-07 Thread Wolfgang Denk
Dear Simon Glass, In message capnjgz2qyrjfjbjtr9mhcsquev933oawpjstvv-kfrhlcfj...@mail.gmail.com you wrote: OK, but I still don't quite get it. As I asked in the other thread, are you not interested in TPM functionality at all until we have a verified boot implementation, or are you happy to

Re: [U-Boot] [PATCH 00/46] Enhance spear support

2012-11-07 Thread Stefan Roese
Hi Vipin, On 11/02/2012 06:39 PM, Vipin Kumar wrote: This patchset is split in several pieces - Drivers: This is essentially a few new drivers and fixes in already exiasting drivers - Enhancement: This series enhances the already existing spear support - spear13xx: This is a totally new

Re: [U-Boot] usb: ehci: Take advantage of the new multi-controller feature for MXC

2012-11-07 Thread Marek Vasut
Dear Lucas Stach, Dear Marek Vasut, Am Mittwoch, den 07.11.2012, 14:25 +0100 schrieb Marek Vasut: Dear Lucas Stach, Dear Marek Vasut, Am Dienstag, den 06.11.2012, 23:35 +0100 schrieb Marek Vasut: I don't see how you transfer DT information into controller # ...

Re: [U-Boot] SMSC LAN9514 on TI DM37x board

2012-11-07 Thread Marek Vasut
Dear Felix Radensky, !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN html head meta content=text/html; charset=ISO-8859-1 http-equiv=Content-Type /head [...] I cannot read this email, ignored, sorry. Best regards, Marek Vasut

Re: [U-Boot] [PATCH v2] mx5: Mark lowlevel_init board-specific code

2012-11-07 Thread Stefano Babic
On 05/11/2012 21:07, Benoît Thébaudeau wrote: The mx5 lowlevel_init.S contains board-specific code based on the reference design. Let's keep it since it avoids creating new lowlevel_init files and it may be used by many boards. But add a config to make it optional in order not to cause

Re: [U-Boot] [PATCH 12/13] mx35pdk: Add support for OTG

2012-11-07 Thread Stefano Babic
On 05/11/2012 21:13, Benoît Thébaudeau wrote: Add support for the OTG port on the mx35pdk Personality board. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut ma...@denx.de --- Note: I have tested this on a similar board, but

[U-Boot] [PATCH] microblaze: Remove asm/bitops.h from asm/posix_types.h

2012-11-07 Thread Michal Simek
The patch include/linux/byteorder: import latest endian definitions from linux (sha1: eef1cf2d5cf1cae5fb76713e912263dedf110aeb) Introduced a lot of compilation failures with unknow types. include/linux/byteorder/big_endian.h:45:1: error: unknown type name '__le64'

Re: [U-Boot] OMAP4/Panda: u-boot upgrade v2012.04.01 - v2012.10 breaks RTC wakeups

2012-11-07 Thread Kevin Hilman
Hi Sricharan, R Sricharan r.sricha...@ti.com writes: In the latest, pad mux and clocks for all non-essential modules at U-BOOT were removed. This might also cause the problem. We can bring this back in u-boot by adding the following macros and check if it works fine again.

Re: [U-Boot] [PATCH 01/10] arm: Compile cache_disable() with -O2 to avoid failure

2012-11-07 Thread Simon Glass
Hi Wolfgang, On Wed, Nov 7, 2012 at 4:55 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon, In message capnjgz38tzr2ztdq5d8fnfgcz9a+-vgjfv0saezjwiqbhh-...@mail.gmail.com you wrote: compiler to read the PC back from the stack after the dcache flush - can you please explain what exactly

Re: [U-Boot] [PATCH 1/4] microblaze: Fix compilation warning in ext2_find_next_zero_bit

2012-11-07 Thread Michal Simek
On 10/05/2012 06:48 PM, Marek Vasut wrote: Dear Michal Simek, ext2_find_next_zero_bit must be also static if __swab32 is also static. Warning: include/asm/bitops.h:369:22: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static [enabled by

[U-Boot] [PATCH v2] microblaze: Fix compilation failure because of missing libdts

2012-11-07 Thread Michal Simek
Microblaze platform can use CONFIG_OF_EMBED option but also it is necessary to support boards which don't want to use this option. U-Boot doesn't compile dts/libdts.o for #undef CONFIG_OF_EMBED case that's why it should be guarded by ifdef. Signed-off-by: Michal Simek mon...@monstr.eu --- v2:

Re: [U-Boot] [PATCH 12/13] mx35pdk: Add support for OTG

2012-11-07 Thread Stefano Babic
On 05/11/2012 21:13, Benoît Thébaudeau wrote: Add support for the OTG port on the mx35pdk Personality board. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Stefano Babic sba...@denx.de Cc: Marek Vasut ma...@denx.de --- Note: I have tested this on a similar board, but

Re: [U-Boot] [PATCH] TPM: remove dead code

2012-11-07 Thread Simon Glass
Hi Wolfgang, On Wed, Nov 7, 2012 at 6:08 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message capnjgz2qyrjfjbjtr9mhcsquev933oawpjstvv-kfrhlcfj...@mail.gmail.com you wrote: OK, but I still don't quite get it. As I asked in the other thread, are you not interested in TPM

Re: [U-Boot] [PATCH 6/7] fs: Add a Coreboot Filesystem (CBFS) driver and commands

2012-11-07 Thread Simon Glass
Hi Wolfgang, On Wed, Nov 7, 2012 at 4:38 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon, In message CAPnjgZ0k58-JG+MxvKp=6jxthmpb8pzhp+xfpdnb8jctamt...@mail.gmail.com you wrote: Yes I am now completely lost :-) Me too. Where have I changed the licensing model? Your original

Re: [U-Boot] [PATCH 1/3] tpm: Add casts for proper compilation

2012-11-07 Thread Simon Glass
Hi Wolfgang, On Wed, Nov 7, 2012 at 5:06 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon, In message capnjgz2p-re5hp13st-q2cup49azyzzxwnrzsafhr_iusgb...@mail.gmail.com you wrote: I accept that it has sat there for a while without a board config to use it. But I would very much like

Re: [U-Boot] [PATCH 12/13] mx35pdk: Add support for OTG

2012-11-07 Thread Benoît Thébaudeau
Hi Stefano, On Wednesday, November 7, 2012 5:16:47 PM, Stefano Babic wrote: On 05/11/2012 21:13, Benoît Thébaudeau wrote: Add support for the OTG port on the mx35pdk Personality board. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Stefano Babic sba...@denx.de Cc:

Re: [U-Boot] [PATCH 01/13] mx31: Move EHCI definitions to ehci-fsl.h

2012-11-07 Thread Stefano Babic
On 05/11/2012 23:55, Marek Vasut wrote: Dear Benoît Thébaudeau, The EHCI definitions in i.MX31's imx-regs.h are MXC-generic, so move them to ehci-fsl.h so that all MXC SoCs can use them. Signed-off-by: Benoît Thébaudeau benoit.thebaud...@advansee.com Cc: Marek Vasut ma...@denx.de Cc:

Re: [U-Boot] [PATCH 12/13] mx35pdk: Add support for OTG

2012-11-07 Thread Stefano Babic
On 07/11/2012 17:27, Benoît Thébaudeau wrote: Hi Stefano, On Wednesday, November 7, 2012 5:16:47 PM, Stefano Babic wrote: On 05/11/2012 21:13, Benoît Thébaudeau wrote: Add support for the OTG port on the mx35pdk Personality board. Signed-off-by: Benoît Thébaudeau

Re: [U-Boot] PCIe on the i.MX6?

2012-11-07 Thread Greg Topmiller
Hi Carolyn, I saw your message on the Denx mailing list. I have the Novpek board with the MX6 quad on it and a full PCIe interface. I am working in the Freescale Linux kernel and to get the interface to work we had to change a clock source for the PCIe. We had to use the LVDS2 as SATA clock

Re: [U-Boot] [PATCH 1/3] common: add ifdefs around bouncebuf.c body

2012-11-07 Thread Stephen Warren
On 11/07/2012 06:21 AM, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:57 PM, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:43 PM, Marek Vasut wrote: Dear Stephen Warren, On 11/05/2012 05:54 PM, Marek Vasut wrote: Dear Stephen Warren, From: Stephen Warren

[U-Boot] [PATCH] mx35pdk:Use IMX_GPIO_NR macro

2012-11-07 Thread Ashok Kumar Reddy
Use IMX_GPO_NR macro Signed-off-by: Ashok Kumar Reddy ashokkourla2...@gmail.com --- board/freescale/mx35pdk/mx35pdk.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/mx35pdk/mx35pdk.c b/board/freescale/mx35pdk/mx35pdk.c index 7cb6b30..e9b3827 100644 ---

[U-Boot] [PATCH] configs:Remove unused macro CONFIG_DISCOVER_PHY

2012-11-07 Thread Ashok Kumar Reddy
Remove unused macro CONFIG_DISCOVER_PHY from configs. Signed-off-by: Ashok Kumar Reddy ashokkourla2...@gmail.com --- include/configs/apx4devkit.h |1 - include/configs/sc_sps_1.h |1 - 2 files changed, 2 deletions(-) diff --git a/include/configs/apx4devkit.h

Re: [U-Boot] [PATCH] mx35pdk:Use IMX_GPIO_NR macro

2012-11-07 Thread Stefano Babic
On 07/11/2012 18:37, Ashok Kumar Reddy wrote: Use IMX_GPO_NR macro Signed-off-by: Ashok Kumar Reddy ashokkourla2...@gmail.com --- board/freescale/mx35pdk/mx35pdk.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/mx35pdk/mx35pdk.c

Re: [U-Boot] [PATCH] configs:Remove unused macro CONFIG_DISCOVER_PHY

2012-11-07 Thread Stefano Babic
On 07/11/2012 18:39, Ashok Kumar Reddy wrote: Remove unused macro CONFIG_DISCOVER_PHY from configs. Signed-off-by: Ashok Kumar Reddy ashokkourla2...@gmail.com --- include/configs/apx4devkit.h |1 - include/configs/sc_sps_1.h |1 - 2 files changed, 2 deletions(-) diff --git

Re: [U-Boot] SMSC LAN9514 on TI DM37x board

2012-11-07 Thread Felix Radensky
Hi Ilya, On 11/06/2012 01:01 PM, Ilya Yanok wrote: On Tue, Nov 6, 2012 at 9:24 AM, Felix Radensky fe...@embedded-sol.com mailto:fe...@embedded-sol.com wrote: Hi Marek, On 11/06/2012 12:57 AM, Marek Vasut wrote: Can you please avoid top-posting? Does U-Boot even support

Re: [U-Boot] [PATCH] USB: add arrow key support to usb_kbd

2012-11-07 Thread Allen Martin
On Wed, Nov 07, 2012 at 05:18:27AM -0800, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:56 PM, Marek Vasut wrote: Dear Simon Glass, Hi Marek, On Tue, Nov 6, 2012 at 2:49 PM, Marek Vasut ma...@denx.de wrote: Dear Allen Martin, Check for scancodes for arrow

Re: [U-Boot] [PATCH] TPM: remove dead code

2012-11-07 Thread Wolfgang Denk
Dear Simon, In message CAPnjgZ0V=MwiVYQ3H-dsVEpNVHMdOPx3Yh3qtPdje0=_Cz=s...@mail.gmail.com you wrote: This is not exactly a proposal that triggers enthusiasm to me. Enthusiasm is a strong word... I tried to find a strictly non-negative phrasing here, because I felt that would be somewhat

Re: [U-Boot] PCIe on the i.MX6?

2012-11-07 Thread Carolyn Smith
Hi Greg, What is the exact value of your PMU_MISC1 register? Did you change the code to clear LVDSCLK2_IBEN and set LVDSCLK2_OBEN as well? We haven't tried a PCIe switch. We just have an FPGA directly connected to the i.MX6. Thanks, Carolyn On Wed, Nov 7, 2012 at 8:38 AM, Greg Topmiller

Re: [U-Boot] [PATCH] TPM: remove dead code

2012-11-07 Thread Simon Glass
Hi Wolfgang, On Wed, Nov 7, 2012 at 11:35 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon, In message CAPnjgZ0V=MwiVYQ3H-dsVEpNVHMdOPx3Yh3qtPdje0=_Cz=s...@mail.gmail.com you wrote: This is not exactly a proposal that triggers enthusiasm to me. Enthusiasm is a strong word... I tried

Re: [U-Boot] [Drivers PATCH 17/19] imls: Add support to list images in NAND device

2012-11-07 Thread Scott Wood
On 11/06/2012 11:15:42 PM, Vipin Kumar wrote: On 11/7/2012 5:00 AM, Scott Wood wrote: On 11/02/2012 12:40:02 PM, Vipin Kumar wrote: +#if defined(CONFIG_CMD_NAND) + printf(\n); + nand_info_t *nand; + image_header_t image_header; + image_header_t *header = image_header; + int nand_dev =

Re: [U-Boot] [PATCH 14/17] console: Call overwrite_console before searching for console devices

2012-11-07 Thread Simon Glass
Hi Wolfgang, On Sat, Nov 3, 2012 at 8:32 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message 1351902453-27956-15-git-send-email-...@chromium.org you wrote: From: Anton Staaf robot...@chromium.org Move the overwrite_console function call to before the search for the console

Re: [U-Boot] [PATCH] tegra: add CONSOLE_MUX support to tegra-kbc

2012-11-07 Thread Simon Glass
Hi Allen, On Thu, Nov 1, 2012 at 4:41 PM, Allen Martin amar...@nvidia.com wrote: Add support for CONSOLE_MUX to tegra-kbc driver. This requires adding a flag to struct keyb to know the driver has already been initialized so if we try to initialize it again we can just return success. Also

Re: [U-Boot] [PATCH] common: fix help command breakage

2012-11-07 Thread Simon Glass
On Mon, Nov 5, 2012 at 9:44 PM, Henrik Nordström hen...@henriknordstrom.net wrote: mån 2012-11-05 klockan 19:51 -0600 skrev Kim Phillips: commit 199adb601ff34bdbbd0667fac80dfe0a87bffc2b common/misc: sparse fixes broke the help command trying to fix the sparse error command.c:44:38: error: bad

[U-Boot] [RFC, PATCH] mmc: prepare SDHCI_HOST_CONTROL for SDMA operation

2012-11-07 Thread Rommel G Custodio
modification for commit 804c7f422169212e92530e1ddaf74bf1ca9ebfa1 The original patch contained a bug. Using a char with sdhci_readl/sdhci_writel operation. The adjacent bytes to SDHCI_HOST_CONTROL (specially SDHCI_POWER_CONTROL) get mangled and can result in the controller entering an unstable

Re: [U-Boot] [PATCH 7/8 v2] TMU: Add u-boot command to read current temp

2012-11-07 Thread Simon Glass
Hi Hatim, On Wed, Nov 7, 2012 at 5:08 AM, Hatim Ali hatim...@samsung.com wrote: From: Alim Akhtar alim.akh...@samsung.com Adds a new u-boot command to read current temprature from tmu driver. Signed-off-by: Alim Akhtar alim.akh...@samsung.com Acked-by: Simon Glass s...@chromium.org Sorry I

Re: [U-Boot] [PATCH 2/8 v2] EXYNOS5: TMU: Add driver for Thermal Management Unit

2012-11-07 Thread Simon Glass
Hi Hatim, On Wed, Nov 7, 2012 at 5:08 AM, Hatim Ali hatim...@samsung.com wrote: From: Akshay Saraswat aksha...@samsung.com Adding Exynos Thermal Management Unit driver to monitor SOC temperature and take actions corresponding to states of TMU. System will shutdown if tripping temperature is

Re: [U-Boot] [PATCH 0/8 v2] Add TMU support for Exynos5250 based SMDK5250

2012-11-07 Thread Simon Glass
Hi Hatim, On Wed, Nov 7, 2012 at 5:08 AM, Hatim Ali hatim...@samsung.com wrote: This patch series adds support for TMU driver using device tree for Exynos5250 based SMDK5250 board. This patch series is dependent on the patch series Add DT based ethernet driver for SMDK5250 by Hatim Ali

Re: [U-Boot] [PATCH 3/3] Add stricmp() and strnicmp()

2012-11-07 Thread Simon Glass
Hi, On Sun, Nov 4, 2012 at 2:47 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Simon, OK, messaged received loud and clear. It does require a change of process at my end - now I have to find relationships between commits in different series going to different maintainers and try to

Re: [U-Boot] [PATCH 2/3] md5: Fix gcc-4.7 build problem in md5

2012-11-07 Thread Simon Glass
Hi, On Tue, Nov 6, 2012 at 2:30 PM, Marek Vasut ma...@denx.de wrote: Dear Pavel Machek, On Tue 2012-11-06 01:56:50, Marek Vasut wrote: Dear Pavel Machek, Hi! In message 20121105200340.GA15821@xo-6d-61-c0.localdomain you wrote: /* Append length in bits

Re: [U-Boot] [PATCH] common: fix help command breakage

2012-11-07 Thread Anatolij Gustschin
Hi, On Mon, 5 Nov 2012 19:51:11 -0600 Kim Phillips kim.phill...@freescale.com wrote: commit 199adb601ff34bdbbd0667fac80dfe0a87bffc2b common/misc: sparse fixes broke the help command trying to fix the sparse error command.c:44:38: error: bad constant expression. As Henrik points out, the

Re: [U-Boot] S-o-b entries for bcm2708 SDHCI driver in the downstream R.Pi Linux kernel

2012-11-07 Thread Oleksandr Tymoshenko
On 11/6/2012 6:58 PM, Stephen Warren wrote: On 10/26/2012 10:54 PM, Stephen Warren wrote: (Sorry for the resend; I sent this to the wrong U-Boot mailing list the first time around) Dom, ddv2005, Gray, I'm trying to get Signed-off-by lines for all code in the Raspberry Pi Linux kernel trees

Re: [U-Boot] [PATCH v5 0/7] SPL: Port SPL framework to powerpc

2012-11-07 Thread Anatolij Gustschin
Hi, On Tue, 23 Oct 2012 10:28:28 +0200 Stefan Roese s...@denx.de wrote: ... Stefan Roese (7): powerpc: Extract EPAPR_MAGIC constants into processor.h SPL: Port SPL framework to powerpc env: Enable getenv_f() for SPL_BUILD mpc5200: Add SPL support mpc5200: Add a3m071 board support

Re: [U-Boot] [PATCH v6 1/7] powerpc: Extract EPAPR_MAGIC constants into processor.h

2012-11-07 Thread Anatolij Gustschin
On Tue, 30 Oct 2012 10:45:21 +0100 Stefan Roese s...@denx.de wrote: By extracting these defines into a header, they can be re-used by other C sources as well. This will be done by the SPL framework OS boot support. Signed-off-by: Stefan Roese s...@denx.de --- Changes in v6: - Fix compile

Re: [U-Boot] [PATCH] patman: Issue empty change logs for unchanged patches

2012-11-07 Thread Anatolij Gustschin
Hi, On Tue, 30 Oct 2012 09:15:16 -0700 Simon Glass s...@chromium.org wrote: Often a particular patch may change only for some versions of a series. For versions where there is no change, issue a change log indicating that (for example 'Changes in v4: None'). For such lines, don't add a

[U-Boot] [PATCH] powerpc/mpc8xxx: Fix compiling error caused in DDR driver

2012-11-07 Thread York Sun
mpc86xx platforms should use CONFIG_SYS_MPC86xx_DDR2_ADDR in utils.c if applicable. Signed-off-by: York Sun york...@freescale.com --- arch/powerpc/cpu/mpc8xxx/ddr/util.c |4 1 file changed, 4 insertions(+) diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/util.c

Re: [U-Boot] [u-boot-release] [PATCH] powerpc/mpc8xxx: Fix compiling error caused in DDR driver

2012-11-07 Thread Fleming Andy-AFLEMING
On Nov 7, 2012, at 5:47 PM, York Sun wrote: mpc86xx platforms should use CONFIG_SYS_MPC86xx_DDR2_ADDR in utils.c if applicable. Signed-off-by: York Sun york...@freescale.com --- arch/powerpc/cpu/mpc8xxx/ddr/util.c |4 1 file changed, 4 insertions(+) diff --git

Re: [U-Boot] [u-boot-release] [PATCH] powerpc/mpc8xxx: Fix compiling error caused in DDR driver

2012-11-07 Thread York Sun
On 11/07/2012 03:57 PM, Fleming Andy-AFLEMING wrote: On Nov 7, 2012, at 5:47 PM, York Sun wrote: mpc86xx platforms should use CONFIG_SYS_MPC86xx_DDR2_ADDR in utils.c if applicable. Signed-off-by: York Sun york...@freescale.com --- arch/powerpc/cpu/mpc8xxx/ddr/util.c |4 1 file

Re: [U-Boot] [RFC, PATCH] mmc: prepare SDHCI_HOST_CONTROL for SDMA operation

2012-11-07 Thread Jaehoon Chung
Hi Rommel, Looks good to me. Thank you. Acked-by: Jaehoon Chung jh80.ch...@samsung.com On 11/08/2012 06:46 AM, Rommel G Custodio wrote: modification for commit 804c7f422169212e92530e1ddaf74bf1ca9ebfa1 The original patch contained a bug. Using a char with sdhci_readl/sdhci_writel operation.

Re: [U-Boot] [PATCH 1/4] microblaze: Fix compilation warning in ext2_find_next_zero_bit

2012-11-07 Thread Marek Vasut
Dear Michal Simek, On 10/05/2012 06:48 PM, Marek Vasut wrote: Dear Michal Simek, ext2_find_next_zero_bit must be also static if __swab32 is also static. Warning: include/asm/bitops.h:369:22: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit'

Re: [U-Boot] [PATCH 1/3] common: add ifdefs around bouncebuf.c body

2012-11-07 Thread Marek Vasut
Dear Stephen Warren, On 11/07/2012 06:21 AM, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:57 PM, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:43 PM, Marek Vasut wrote: Dear Stephen Warren, On 11/05/2012 05:54 PM, Marek Vasut wrote: Dear Stephen

Re: [U-Boot] [PATCH] USB: add arrow key support to usb_kbd

2012-11-07 Thread Marek Vasut
Dear Allen Martin, On Wed, Nov 07, 2012 at 05:18:27AM -0800, Marek Vasut wrote: Dear Stephen Warren, On 11/06/2012 03:56 PM, Marek Vasut wrote: Dear Simon Glass, Hi Marek, On Tue, Nov 6, 2012 at 2:49 PM, Marek Vasut ma...@denx.de wrote: Dear Allen Martin,

Re: [U-Boot] [PATCH v3 1/2] video: atmel: implement lcd_setcolreg funtion

2012-11-07 Thread Bo Shen
Hi Andreas, On 11/7/2012 21:26, Marek Vasut wrote: Dear Bo Shen, Hi Marek, On 11/7/2012 6:54, Marek Vasut wrote: Dear Andreas Bießmann, From: Bo Shen voice.s...@atmel.com Missing commit message Signed-off-by: Bo Shen voice.s...@atmel.com Signed-off-by: Andreas Bießmann

Re: [U-Boot] [PATCH 00/46] Enhance spear support

2012-11-07 Thread Vipin Kumar
On 11/7/2012 7:40 PM, Stefan Roese wrote: Hi Vipin, On 11/02/2012 06:39 PM, Vipin Kumar wrote: This patchset is split in several pieces - Drivers: This is essentially a few new drivers and fixes in already exiasting drivers - Enhancement: This series enhances the already existing spear

Re: [U-Boot] [PATCH 00/46] Enhance spear support

2012-11-07 Thread Vipin Kumar
On 11/7/2012 7:40 PM, Stefan Roese wrote: Hi Vipin, On 11/02/2012 06:39 PM, Vipin Kumar wrote: This patchset is split in several pieces - Drivers: This is essentially a few new drivers and fixes in already exiasting drivers - Enhancement: This series enhances the already existing spear

[U-Boot] [PATCH 0/6] EXYNOS5: FDT Support for I2C

2012-11-07 Thread Rajeshwari Shinde
This patch set adds FDT support for I2C driver and API's to acess the bus number using the fdt node and also reset the port. Rajeshwari Shinde (6): EXYNOS5: FDT: Add I2C device node data EXYNOS5 : FDT: Add Aliases for I2C device EXYNOS5: FDT: Add compatible string for I2C FDT: Api to

[U-Boot] [PATCH 1/6] EXYNOS5: FDT: Add I2C device node data

2012-11-07 Thread Rajeshwari Shinde
Add I2C device node data for exynos Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/dts/exynos5250.dtsi | 64 ++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/exynos5250.dtsi

[U-Boot] [PATCH 2/6] EXYNOS5 : FDT: Add Aliases for I2C device

2012-11-07 Thread Rajeshwari Shinde
This patch adds aliases for I2C. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- board/samsung/dts/exynos5250-smdk5250.dts | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/board/samsung/dts/exynos5250-smdk5250.dts

[U-Boot] [PATCH 3/6] EXYNOS5: FDT: Add compatible string for I2C

2012-11-07 Thread Rajeshwari Shinde
Add required compatible information for I2C driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/fdtdec.h b/include/fdtdec.h index 180dfff..f9aac31 100644

[U-Boot] [PATCH 4/6] FDT: Api to find compatible id for a given node

2012-11-07 Thread Rajeshwari Shinde
This patch adds api to find compatible id for a given FDT node Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- include/fdtdec.h | 14 ++ lib/fdtdec.c | 12 2 files changed, 26 insertions(+), 0 deletions(-) diff --git a/include/fdtdec.h

[U-Boot] [PATCH 5/6] I2C: Driver changes for FDT support

2012-11-07 Thread Rajeshwari Shinde
Functions added to get the I2C bus number and reset I2C bus using FDT node. Signed-off-by: Simon Glass s...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/i2c/s3c24x0_i2c.c | 89 - drivers/i2c/s3c24x0_i2c.h |7

[U-Boot] [PATCH 6/6] SMDK5250: Populate I2C data using FDT.

2012-11-07 Thread Rajeshwari Shinde
Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- board/samsung/smdk5250/smdk5250.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/board/samsung/smdk5250/smdk5250.c b/board/samsung/smdk5250/smdk5250.c index db2457b..dfb7239 100644 ---

[U-Boot] [PATCH 0/5] EXYNOS5: FDT support for Sound

2012-11-07 Thread Rajeshwari Shinde
This patch adds FDT support for Sound driver. This patch is based on following patchset. EXYNOS5: FDT Support for I2C Rajeshwari Shinde (5): EXYNOS5: FDT: Add sound device node data EXYNOS5: FDT: Add sound and codec device node informations EXYNOS5: FDT: Add compatible strings for sound

[U-Boot] [PATCH 1/5] EXYNOS5: FDT: Add sound device node data

2012-11-07 Thread Rajeshwari Shinde
Add sound device node data for exynos Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/dts/exynos5250.dtsi |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/dts/exynos5250.dtsi b/arch/arm/dts/exynos5250.dtsi index e877e6c..3f750f0 100644

[U-Boot] [PATCH 2/5] EXYNOS5: FDT: Add sound and codec device node informations

2012-11-07 Thread Rajeshwari Shinde
Adds sound and codec device node parameters Signed-off-by: R. Chandrasekar rcse...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- board/samsung/dts/exynos5250-smdk5250.dts | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 3/5] EXYNOS5: FDT: Add compatible strings for sound

2012-11-07 Thread Rajeshwari Shinde
Add required compatible information for sound driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- include/fdtdec.h |3 +++ lib/fdtdec.c |2 ++ 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/fdtdec.h b/include/fdtdec.h index d501d7e..a8dacac

[U-Boot] [PATCH 4/5] Sound: Add FDT support to driver

2012-11-07 Thread Rajeshwari Shinde
This patch adds FDT support to the driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- drivers/sound/sound.c | 228 +++-- include/sound.h |9 ++ 2 files changed, 230 insertions(+), 7 deletions(-) diff --git

[U-Boot] [PATCH 5/5] Sound: Add FDT support to CMD.

2012-11-07 Thread Rajeshwari Shinde
This patch adds FDT support to sound init. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- common/cmd_sound.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/common/cmd_sound.c b/common/cmd_sound.c index 459d1eb..ad8669f 100644 --- a/common/cmd_sound.c

Re: [U-Boot] S-o-b entries for bcm2708 SDHCI driver in the downstream R.Pi Linux kernel

2012-11-07 Thread Stephen Warren
On 11/07/2012 01:47 PM, Oleksandr Tymoshenko wrote: On 11/6/2012 6:58 PM, Stephen Warren wrote: On 10/26/2012 10:54 PM, Stephen Warren wrote: (Sorry for the resend; I sent this to the wrong U-Boot mailing list the first time around) Dom, ddv2005, Gray, I'm trying to get Signed-off-by lines

[U-Boot] [PATCH V3 2/4] ARM: rpi_b: use bcm2835 mbox driver to get memory size

2012-11-07 Thread Stephen Warren
The firmware running on the bcm2835 SoC's VideoCore CPU determines how much of the system RAM is available for use by the ARM CPU. Previously, U-Boot assumed that only 128MB was available, since this was the smallest value configured by any public firmware. However, we can now query the actual

[U-Boot] [PATCH V3 4/4] video: add a driver for the bcm2835

2012-11-07 Thread Stephen Warren
The firmware running on the bcm2835 SoC's VideoCore CPU manages the display controller. Add a simple LCD driver that communicates with the firmware using the property mailbox protocol. This configures the display and frame-buffer to match whatever physical resolution the firmware chosen when

[U-Boot] [PATCH V3 3/4] lcd: calculate line_length after lcd_ctrl_init()

2012-11-07 Thread Stephen Warren
When an LCD driver is actually driving a regular external display, e.g. an HDMI monitor, the display resolution might not be known until the display controller has initialized, i.e. during lcd_ctrl_init(). However, lcd.c calculates lcd_line_length before calling this function, thus relying on a

[U-Boot] [PATCH V3 1/4] ARM: bcm2835: add mailbox driver

2012-11-07 Thread Stephen Warren
The BCM2835 SoC contains (at least) two CPUs; the VideoCore (a/k/a GPU) and the ARM CPU. The ARM CPU is often thought of as the main CPU. However, the VideoCore actually controls the initial SoC boot, and hides much of the hardware behind a protocol. This protocol is transported using the SoC's

[U-Boot] [PATCH V2 1/2] mmc: add bcm2835 driver

2012-11-07 Thread Stephen Warren
This adds a simple driver for the BCM2835's SD controller. Workarounds are implemented for: * Register writes can't be too close to each-other in time, or they will be lost. * Register accesses must all be 32-bit, so implement custom accessors. This code was extracted from:

[U-Boot] [PATCH V2 2/2] ARM: rpi_b: enable SD controller, add related env/cmds

2012-11-07 Thread Stephen Warren
Enable the SD controller driver for the Raspberry Pi. Enable a number of useful MMC, partition, and filesystem-related commands. Set up the environment to provide standard locations for loading a kernel, DTB, etc. Provide a boot command that loads and executes boot.scr.uimg from the SD card; this

Re: [U-Boot] [PATCH 2/2] WIP: tegra: i2c: Enable new CONFIG_SYS_I2C framework

2012-11-07 Thread Heiko Schocher
Hello Stephen, On 01.11.2012 18:03, Stephen Warren wrote: On 11/01/2012 01:42 AM, Heiko Schocher wrote: Hello Stephen, On 31.10.2012 17:25, Stephen Warren wrote: On 10/31/2012 09:56 AM, Simon Glass wrote: Hi Stephen, On Wed, Oct 31, 2012 at 8:41 AM, Stephen Warrenswar...@wwwdotorg.org

Re: [U-Boot] [PATCH 2/2] WIP: tegra: i2c: Enable new CONFIG_SYS_I2C framework

2012-11-07 Thread Heiko Schocher
Hello Simon, On 05.11.2012 21:39, Simon Glass wrote: Hi, On Thu, Nov 1, 2012 at 10:03 AM, Stephen Warrenswar...@wwwdotorg.org wrote: On 11/01/2012 01:42 AM, Heiko Schocher wrote: Hello Stephen, On 31.10.2012 17:25, Stephen Warren wrote: On 10/31/2012 09:56 AM, Simon Glass wrote: Hi

Re: [U-Boot] [PATCH 1/2] tegra: i2c: Add function to know about current bus

2012-11-07 Thread Heiko Schocher
Hello Simon, On 05.11.2012 21:43, Simon Glass wrote: Hi Heiko, On Tue, Oct 30, 2012 at 10:26 PM, Heiko Schocherh...@denx.de wrote: Hello Simon, On 30.10.2012 18:28, Simon Glass wrote: Rather than using a variable in various places, add a single function, tegra_i2c_get_bus(), which

Re: [U-Boot] [PATCH v3 1/2] video: atmel: implement lcd_setcolreg funtion

2012-11-07 Thread Andreas Bießmann
Hi Bo, On 08.11.2012 04:06, Bo Shen wrote: Hi Andreas, On 11/7/2012 21:26, Marek Vasut wrote: Dear Bo Shen, Hi Marek, On 11/7/2012 6:54, Marek Vasut wrote: Dear Andreas Bießmann, From: Bo Shen voice.s...@atmel.com Missing commit message Signed-off-by: Bo Shen voice.s...@atmel.com

Re: [U-Boot] [PATCH 1/4] microblaze: Fix compilation warning in ext2_find_next_zero_bit

2012-11-07 Thread Michal Simek
On 11/08/2012 02:30 AM, Marek Vasut wrote: Dear Michal Simek, On 10/05/2012 06:48 PM, Marek Vasut wrote: Dear Michal Simek, ext2_find_next_zero_bit must be also static if __swab32 is also static. Warning: include/asm/bitops.h:369:22: warning: '__fswab32' is static but used in inline