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

2012-11-19 Thread Heiko Schocher
Hello Rajeshwari, On 14.11.2012 10:11, Rajeshwari Shinde wrote: This patch adds aliases for I2C. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes in V2: - None. board/samsung/dts/exynos5250-smdk5250.dts | 11 +++ 1 files changed, 11 insertions(+), 0 deleti

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

2012-11-19 Thread Heiko Schocher
Hello Rajeshwari, On 14.11.2012 10:11, Rajeshwari Shinde wrote: Add I2C device node data for exynos Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes in V2: Added Periph id to the I2C device node arch/arm/dts/exynos-periph-id.dtsi | 35 + arch/arm/d

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

2012-11-19 Thread Heiko Schocher
Hello Rajeshwari, On 14.11.2012 10:11, Rajeshwari Shinde wrote: Add required compatible information for I2C driver. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes in V2: - None include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2 insertions(+)

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

2012-11-19 Thread Heiko Schocher
Hello Rajeshwari, On 14.11.2012 10:11, Rajeshwari Shinde wrote: This patch adds api to find compatible id for a given FDT node Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes in V2: - None include/fdtdec.h | 14 ++ lib/fdtdec.c | 12

Re: [U-Boot] [PATCH 6/6 V2] SMDK5250: Initialise I2C using FDT

2012-11-19 Thread Heiko Schocher
Hello Rajeshwari, On 14.11.2012 10:11, Rajeshwari Shinde wrote: This patch initialises I2C using FDT. Signed-off-by: Rajeshwari Shinde --- Changes since V2: - board_i2c_init moved to driver in case of FDT. board/samsung/smdk5250/smdk5250.c | 20 +--- 1 files changed

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

2012-11-19 Thread Heiko Schocher
Hello Rajeshwari, On 14.11.2012 10:11, Rajeshwari Shinde:wrote Functions added to get the I2C bus number and reset I2C bus using FDT node. Signed-off-by: Simon Glass Signed-off-by: Rajeshwari Shinde --- Changes in V2: - Added periph id to I2C bus structure. - Modified i2c_get_bu

[U-Boot] [PATCH v3 1/3] Add README for the "Falcon" mode

2012-11-19 Thread Stefano Babic
Simple howto to add support to a board for booting the kernel from SPL ("Falcon" mode). Signed-off-by: Stefano Babic --- Changes in v3: - parameter initrd_addr was removed in V2 (Andreas Biessmann) - added patch to fix help usage for spl export (Andreas Biessmann) - Added empty lines (Otavio Salv

[U-Boot] [PATCH v3 3/3] SPL: Change description for spl command

2012-11-19 Thread Stefano Babic
Add a more descriptive text to the help of the spl command. Signed-off-by: Stefano Babic --- common/cmd_spl.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/common/cmd_spl.c b/common/cmd_spl.c index 9ec054a..b21d41d 100644 --- a/common/cmd_spl.c +++ b/common/

[U-Boot] [PATCH v3 2/3] OMAP3: drop CONFIG_SPL_OS_BOOT_KEY and use local define

2012-11-19 Thread Stefano Babic
CONFIG_SPL_OS_BOOT_KEY is used only in board files. It is not required to have a general CONFIG_ option. Rename it and define it in board directory. Signed-off-by: Stefano Babic --- board/technexion/twister/twister.c |8 board/technexion/twister/twister.h |2 ++ board/timll/d

Re: [U-Boot] [PATCH v3 1/3] Add README for the "Falcon" mode

2012-11-19 Thread Otavio Salvador
On Mon, Nov 19, 2012 at 7:11 AM, Stefano Babic wrote: > ... > +Falcon Mode relies on the SPL framework. In fact, to make booting faster, > +U-Boot is split into two parts: the SPL (Secondary Program Loader) and > U-Boot > +image. In most implementations, SPL is used to start U-Boot when booting >

Re: [U-Boot] [PATCH v3 3/3] SPL: Change description for spl command

2012-11-19 Thread Andreas Bießmann
Dear Stefano Babic, On 19.11.2012 10:11, Stefano Babic wrote: > Add a more descriptive text to the help of the spl > command. > > Signed-off-by: Stefano Babic > --- > > common/cmd_spl.c | 12 > 1 file changed, 8 insertions(+), 4 deletions(-) > > diff --git a/common/cmd_spl.c b/

Re: [U-Boot] [PATCH v3 1/3] Add README for the "Falcon" mode

2012-11-19 Thread Andreas Bießmann
Dear Stefano Babic, On 19.11.2012 10:11, Stefano Babic wrote: > Simple howto to add support to a board > for booting the kernel from SPL ("Falcon" mode). > > Signed-off-by: Stefano Babic despite a small change Acked-by: Andreas Bießmann > --- > Changes in v3: > - parameter initrd_addr was re

Re: [U-Boot] [PATCH v3 1/3] Add README for the "Falcon" mode

2012-11-19 Thread Stefano Babic
On 19/11/2012 11:14, Otavio Salvador wrote: > On Mon, Nov 19, 2012 at 7:11 AM, Stefano Babic > wrote: > > ... > > +Falcon Mode relies on the SPL framework. In fact, to make booting > faster, > +U-Boot is split into two parts: the SPL (Secondary Program Loa

Re: [U-Boot] [PATCH v3 1/3] Add README for the "Falcon" mode

2012-11-19 Thread Stefano Babic
On 19/11/2012 11:21, Andreas Bießmann wrote: > Dear Stefano Babic, > > On 19.11.2012 10:11, Stefano Babic wrote: >> Simple howto to add support to a board >> for booting the kernel from SPL ("Falcon" mode). >> >> Signed-off-by: Stefano Babic > > despite a small change > > Acked-by: Andreas Bieß

Re: [U-Boot] sam9x5 can't find Nand flash

2012-11-19 Thread alex
Hi: Thanks, it can work now. BTW, one question whether the atmel' patch on v2010.6 is merged int u-boot mainline? At 2012-11-19 14:10:27,"Bo Shen" wrote: >Hi Alex, > >On 11/19/2012 13:40, alex wrote: >> more information. samba script as below: >> >> ## Falshing binaries >> puts "-I- === In

Re: [U-Boot] sam9x5 can't find Nand flash

2012-11-19 Thread Andreas Bießmann
Dear alex, On 19.11.2012 11:23, alex wrote: > Hi: > Thanks, it can work now. BTW, one question whether the atmel' patch on > v2010.6 is merged int u-boot mainline? if you provide a rebased version on current HEAD we will do so. Best regards Andreas Bießmann ___

Re: [U-Boot] [PATCH 03/11] arm: ks8695eth: Use MAC address from environment

2012-11-19 Thread Yann Vernier
On Fri, 26 Oct 2012 23:37:28 +0200 Albert ARIBAUD wrote: > Hi Yann, > > On Fri, 19 Oct 2012 10:02:09 +0200, Yann Vernier > wrote: > > > On Thu, 18 Oct 2012 15:55:31 -0500 > > Joe Hershberger wrote: > > > > > Hi Yann, > > > > > > On Fri, Oct 5, 2012 at 7:09 AM, Yann Vernier > > > wrote: > >

[U-Boot] [PATCH] arm: ks8695: more macros for register values

2012-11-19 Thread Yann Vernier
Adding macros for more configurable lowlevel_init code. Also cleanup of some typos. --- Changes for v2: - Add spaces for legibility - Correct multiple #include protection to specify device --- arch/arm/include/asm/arch-ks8695/platform.h | 55 - arch/arm/include/asm/arch-ks8695

Re: [U-Boot] [PATCH] arm: ks8695: more macros for register values

2012-11-19 Thread Yann Vernier
Sorry! I didn't remember this patch (regvalues.h) is where a poorly named macro (comment on patch 7/11, SDRAM parameters) was defined. I will fix it. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC, PATCH v2] omap: Invalidate first page to avoid speculation

2012-11-19 Thread Vincent Stehlé
Albert Aribaud: > To make this affect only some CPUs or even boards, you can define and use a > weak function which would handle filling the page-table; the weak, default, > function would fill table[0] like others, while OMAP5 would have a strong > version which would clear table[0]. Hi Albert,

[U-Boot] [PATCH 1/2] ARM: cache: introduce weak arm_setup_identity_mapping

2012-11-19 Thread Vincent Stehlé
Separate the MMU identity mapping for ARM in a weak function, to allow redefinition with platform specific function. This is motivated by the need to unmap the region near address zero on HS OMAP devices, to avoid speculative accesses. Accessing this region causes security violations, which we wan

[U-Boot] [PATCH 2/2] ARM: OMAP5: redefine arm_setup_identity_mapping

2012-11-19 Thread Vincent Stehlé
We introduce an OMAP5 specific version of arm_setup_identity_mapping(), which makes the first page of the identity mapping invalid. We want to unmap the region near address zero on HS OMAP devices, to avoid speculative accesses. Accessing this region causes security violations, which we want to av

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2012-11-19 Thread Tom Warren
That makes perfect sense - should have thought it through myself. I moved the pxa patch to before Simon's LCD patchset. Testing MAKEALL -a arm now; should have a new pull request in a few hours. Thanks, Tom On Fri, Nov 16, 2012 at 5:12 PM, Albert ARIBAUD wrote: > Hi Tom, > > On Fri, 16 Nov 201

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

2012-11-19 Thread Simon Glass
Hi, On Mon, Nov 19, 2012 at 12:54 AM, Heiko Schocher wrote: > Hello Rajeshwari, > > > On 14.11.2012 10:11, Rajeshwari Shinde wrote: >> >> Add I2C device node data for exynos >> >> Signed-off-by: Rajeshwari Shinde >> Acked-by: Simon Glass >> --- >> Changes in V2: >> Added Periph id to the

Re: [U-Boot] [PATCH 0/14] fdt: Add various device tree utilities and features

2012-11-19 Thread Simon Glass
Hi Jerry, On Sat, Nov 17, 2012 at 5:35 PM, Jerry Van Baren wrote: > Dear Simon, > > Sorry for being so late on this (the patches were submitted before the > merge window closed). I've applied the patches to the "next" branch in > the u-boot-fdt repo. >

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2012-11-19 Thread Tom Warren
Albert, please pull u-boot-tegra/master into ARM/master. Thanks! 'pxa' patch moved to before Simon's LCD patchset; MAKEALL -a arm AOK. The following changes since commit 7a5337732e3e05b2b0de1b592fa031b2c7b4f632: Rajeshwari Shinde (1): EXYNOS5: Enable SPI booting. are available in the g

Re: [U-Boot] [PATCH v4 1/7] vsprintf:fix: Change type returned by ustrtoul

2012-11-19 Thread Stephen Warren
On 11/09/2012 02:22 AM, Piotr Wilczek wrote: > From: Lukasz Majewski > > The ustrtoul shall convert string defined size (e.g. 1GiB) to unsigned > long type (as its name implies). > > Up till now it had returned int, which might cause problems with large > numbers (GiB range), when interpreted as

Re: [U-Boot] [PATCH v4 3/7] gpt:doc: GPT (GUID Partition Table) documentation

2012-11-19 Thread Stephen Warren
On 11/09/2012 02:22 AM, Piotr Wilczek wrote: > Documentation of the GPT format. > diff --git a/doc/README.gpt b/doc/README.gpt > +Introduction: > += > +This document describes the GPT partition table format when used with u-boot. Why "when used with U-Boot"; U-Boot shouldn't influen

Re: [U-Boot] [PATCH v4 2/7] part:efi: Move part_efi.h file to ./include

2012-11-19 Thread Stephen Warren
On 11/09/2012 02:22 AM, Piotr Wilczek wrote: > From: Lukasz Majewski > > This move is necessary to export gpt header and GPT partition entries to be > used with other commands or subsystems (like DFU in the future) > Additionally the part_efi.h file has been cleaned-up to supress checkpatch's > w

Re: [U-Boot] [PATCH v4 4/7] gpt: The leXX_to_int() calls replaced with ones defined at

2012-11-19 Thread Stephen Warren
On 11/09/2012 03:48 AM, Piotr Wilczek wrote: > Custom definitions of le_XX_to_int functions have been replaced with > standard ones, defined at > > Replacement of several GPT related structures members with ones > indicating its endianness and proper size. > diff --git a/disk/part_efi.c b/disk/p

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

2012-11-19 Thread Tom Rini
On Sat, Nov 10, 2012 at 08:09:58PM +0800, Thomas Chou wrote: > Hi Tom, > > Please add these patches to fix the compilation error of nios2 arch > after v2013.01-rc1. > > Best regards, > Thomas > > > The following changes since commit 59852d03867108217fe88e3bfc3e1e9cedfe63c5: > > Merge branch

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

2012-11-19 Thread Tom Rini
On Wed, Nov 14, 2012 at 02:52:59PM +0100, Anatolij Gustschin wrote: > Hello Tom, > > The following changes since commit 1cc619be8b73abbee2fd6faf2cd4ade27b516531: > > Merge branch 'master' of git://git.denx.de/u-boot-avr32 (2012-11-05 > 09:46:45 -0700) > > are available in the git repository

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

2012-11-19 Thread Tom Rini
On Wed, Nov 14, 2012 at 02:56:49PM +0100, Anatolij Gustschin wrote: > Hello Tom, > > The following changes since commit 1cc619be8b73abbee2fd6faf2cd4ade27b516531: > > Merge branch 'master' of git://git.denx.de/u-boot-avr32 (2012-11-05 > 09:46:45 -0700) > > are available in the git repository

Re: [U-Boot] Moschip ethernet adapter is not seen as ethernet device

2012-11-19 Thread valdez valdez
Sorry for duplication previous post. If this configuration doesn't work, could you instruct how to write a driver for this dongle? 2012/11/18 valdez valdez : > Hello, > > I tried use my USB ETH adapter. Following README files I addes into > beagle.h file (my board is beagleboard) this: > > #defin

Re: [U-Boot] [PATCH v4 5/7] gpt: Support for GPT (GUID Partition Table) restoration

2012-11-19 Thread Stephen Warren
On 11/09/2012 03:48 AM, Piotr Wilczek wrote: > The restoration of GPT table (both primary and secondary) is now possible. > Simple GUID generation is supported. > diff --git a/include/part.h b/include/part.h > +int set_gpt_table(block_dev_desc_t *dev_desc, > + gpt_header *gpt_h, gpt

Re: [U-Boot] [U-Boot,2/3] nand: Fix nand_erase_opts() offset check

2012-11-19 Thread Benoît Thébaudeau
Dear Scott Wood, On Friday, November 16, 2012 1:23:20 AM, Scott Wood wrote: > On Mon, Nov 05, 2012 at 10:16:15AM -, > =?utf-8?q?Beno=C3=AEt_Th=C3=A9baudeau_=3Cbenoit=2Ethebaudeau=40advans?==?utf-8?q?ee=2Ecom=3E?= > wrote: > > NAND Flash is erased by blocks, not by pages. > > > > Signed-off-by

Re: [U-Boot] [PATCH v4 2/7] part:efi: Move part_efi.h file to ./include

2012-11-19 Thread Tom Rini
On Mon, Nov 19, 2012 at 12:30:02PM -0700, Stephen Warren wrote: > On 11/09/2012 02:22 AM, Piotr Wilczek wrote: > > From: Lukasz Majewski > > > > This move is necessary to export gpt header and GPT partition entries to be > > used with other commands or subsystems (like DFU in the future) > > Addi

Re: [U-Boot] [PATCH v4 0/7] gpt: GUID Partition Table (GPT) restoration

2012-11-19 Thread Tom Rini
On Fri, Nov 09, 2012 at 10:22:11AM +0100, Piotr Wilczek wrote: > This patch series provides a new command - "gpt" for eMMC partition table > (in the GPT format) restoration. > > As a pre-work, some cleanup at the part_efi.c file was performed to > remove custom macros and make GPT related structu

Re: [U-Boot] [PATCH 2/2] ARM: OMAP5: redefine arm_setup_identity_mapping

2012-11-19 Thread Tom Rini
On Mon, Nov 19, 2012 at 03:59:34PM +0100, Vincent Stehlé wrote: > We introduce an OMAP5 specific version of arm_setup_identity_mapping(), which > makes the first page of the identity mapping invalid. > > We want to unmap the region near address zero on HS OMAP devices, to avoid > speculative acce

Re: [U-Boot] [U-Boot,2/3] nand: Fix nand_erase_opts() offset check

2012-11-19 Thread Scott Wood
On 11/19/2012 02:40:31 PM, Benoît Thébaudeau wrote: Dear Scott Wood, On Friday, November 16, 2012 1:23:20 AM, Scott Wood wrote: > On Mon, Nov 05, 2012 at 10:16:15AM -, > =?utf-8?q?Beno=C3=AEt_Th=C3=A9baudeau_=3Cbenoit=2Ethebaudeau=40advans?==?utf-8?q?ee=2Ecom=3E?= > wrote: > > NAND Flash

Re: [U-Boot] [U-Boot,1/3] nand: Clean up nand_util

2012-11-19 Thread Tom Rini
On Fri, Nov 16, 2012 at 08:20:50AM +0100, Andreas Bießmann wrote: > Dear Scott Wood, > > On 16.11.12 01:29, Scott Wood wrote: > > On 11/15/2012 06:22:11 PM, Scott Wood wrote: > >> On Mon, Nov 05, 2012 at 10:15:46AM -, > >> =?utf-8?q?Beno=C3=AEt_Th=C3=A9baudeau_=3Cbenoit=2Ethebaudeau=40advans?=

Re: [U-Boot] [PATCH 1/2] ARM: cache: introduce weak arm_setup_identity_mapping

2012-11-19 Thread Tom Rini
On Mon, Nov 19, 2012 at 03:59:33PM +0100, Vincent Stehlé wrote: > Separate the MMU identity mapping for ARM in a weak function, to allow > redefinition with platform specific function. > > This is motivated by the need to unmap the region near address zero on HS OMAP > devices, to avoid speculativ

Re: [U-Boot] [PATCH v4 6/7] gpt: Support for new "gpt" command

2012-11-19 Thread Stephen Warren
On 11/09/2012 03:48 AM, Piotr Wilczek wrote: > New command - "gpt" is supported. It restores the GPT partition table. > It looks into the "partitions" environment variable for partitions definition. > It can be enabled at target configuration file with CONFIG_CMD_GPT. > Simple UUID generator has be

Re: [U-Boot] common/xyzmodem.c, ymodem, slow behavior receiving bytes

2012-11-19 Thread Angelo Dureghello
Hi all, i finally found an issue in cache initialization for this cpu. Setting correct CACR / ACR regs solved the issue. Many thanks, Best Regards Angelo Dureghello ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-b

Re: [U-Boot] common/xyzmodem.c, ymodem, slow behavior receiving bytes

2012-11-19 Thread Wolfgang Denk
Dear Angelo, In message <20121119215454.GA7107@angel3> you wrote: > > i finally found an issue in cache initialization for this cpu. > > Setting correct CACR / ACR regs solved the issue. Ah! Thanks a lot for the feedback. I'm glad my initial suspicions were right. Can you please post some hi

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

2012-11-19 Thread Marek Vasut
Tom, please apply this onto u-boot/master ... I've been waiting for you to return with this pull. The following changes since commit 178d0cc1a4c73c3341afbeb2a93b172de8c96bd1: Merge branch 'master' of git://git.denx.de/u-boot-video (2012-11-19 09:28:04 -0700) are available in the git reposito

Re: [U-Boot] [PATCH 17/17] tpm: Add TPM stress test

2012-11-19 Thread Marek Vasut
Dear Simon Glass, > Hi Wolfgang, > > On Sat, Nov 3, 2012 at 8:29 AM, Wolfgang Denk wrote: > > Dear Simon Glass, > > > > In message <1351902453-27956-18-git-send-email-...@chromium.org> you wrote: > >> From: Luigi Semenzato > >> > >> Add a simple command to stress-test a TPM (Trusted Platform

Re: [U-Boot] [PATCH 1/8] mx28evk: Configure CONFIG_BOOTDELAY to one second

2012-11-19 Thread Marek Vasut
Dear Stefano Babic, > On 16/11/2012 16:09, Fabio Estevam wrote: > > From: Fabio Estevam > > > > One second is enough time for users to react in case they want to stop > > the booting process. > > > > Signed-off-by: Fabio Estevam > > --- > > > > include/configs/mx28evk.h |2 +- > > 1 file

Re: [U-Boot] [PATCH] arm: ks8695: more macros for register values

2012-11-19 Thread Marek Vasut
Dear Yann Vernier, > Sorry! I didn't remember this patch (regvalues.h) is where a poorly > named macro (comment on patch 7/11, SDRAM parameters) was defined. I > will fix it. Make sure to run checkpatch.pl on those patches before reposting please. Best regards, Marek Vasut __

Re: [U-Boot] [PATCH 17/17] tpm: Add TPM stress test

2012-11-19 Thread Simon Glass
Hi, On Mon, Nov 19, 2012 at 3:50 PM, Marek Vasut wrote: > Dear Simon Glass, > >> Hi Wolfgang, >> >> On Sat, Nov 3, 2012 at 8:29 AM, Wolfgang Denk wrote: >> > Dear Simon Glass, >> > >> > In message <1351902453-27956-18-git-send-email-...@chromium.org> you wrote: >> >> From: Luigi Semenzato >> >>

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

2012-11-19 Thread Minkyu Kang
On 20/11/12 01:42, Simon Glass wrote: > Hi, > > On Mon, Nov 19, 2012 at 12:54 AM, Heiko Schocher wrote: >> Hello Rajeshwari, >> >> >> On 14.11.2012 10:11, Rajeshwari Shinde wrote: >>> >>> Add I2C device node data for exynos >>> >>> Signed-off-by: Rajeshwari Shinde >>> Acked-by: Simon Glass >>> --

[U-Boot] Pull request: u-boot-fdt

2012-11-19 Thread Jerry Van Baren
Dear Tom, Please pull u-boot-fdt. These are the patches submitted by Simon Glass and his compatriots prior to the v2013.01 merge window closing and are thus eligible for inclusion in the v2013.01 release. Thanks, gvb The following changes since commit 59852d03867108217fe88e3bfc3e1e9cedfe63c5:

Re: [U-Boot] sam9x5 can't find Nand flash

2012-11-19 Thread Bo Shen
Hi Alex, On 11/19/2012 18:23, alex wrote: Hi: Thanks, it can work now. BTW, one question whether the atmel' patch on v2010.6 is merged int u-boot mainline? The mainline for at91sam9x5ek is supported. You can find it on tag 2012.10 and after. But, one thing should keep in mind, it only

Re: [U-Boot] sam9x5 can't find Nand flash

2012-11-19 Thread Bo Shen
Hi Andreas, On 11/19/2012 19:22, Andreas Bießmann wrote: Dear alex, On 19.11.2012 11:23, alex wrote: Hi: Thanks, it can work now. BTW, one question whether the atmel' patch on v2010.6 is merged int u-boot mainline? if you provide a rebased version on current HEAD we will do so. What'

Re: [U-Boot] [RFC PATCH 00/50] net: net subsystem ops cleanup

2012-11-19 Thread Tomas Hlavacek
Hello Joe! On Wed, Nov 14, 2012 at 1:06 AM, Joe Hershberger wrote: > Hi Tomas, > > On Sat, Nov 3, 2012 at 6:23 PM, Tomas Hlavacek wrote: >> Dear Wolfgang, >> >> On Sat, Nov 3, 2012 at 4:09 PM, Wolfgang Denk wrote: >>> Dear Tomas Hlavacek, >>> >>> In message <1351876722-5183-1-git-send-email-tms

Re: [U-Boot] [PATCH 17/17] tpm: Add TPM stress test

2012-11-19 Thread Marek Vasut
Dear Simon Glass, [...] > > What is the actual problem with keeping this code in our codebase and > > patching it then? It's all used now, problem solved, or am I missing > > something? > > Yes there has been quite a bit of effort on this. I hope we can keep > this code, and perhaps even others

Re: [U-Boot] sam9x5 can't find Nand flash

2012-11-19 Thread alex
Can you tell me from which tag on mainline kernel can work with mainline u-boot? At 2012-11-20 09:55:35,"Bo Shen" wrote: >Hi Alex, > >On 11/19/2012 18:23, alex wrote: >> Hi: >>Thanks, it can work now. BTW, one question whether the atmel' patch >> on v2010.6 is merged int u-boot mainline? >

Re: [U-Boot] sam9x5 can't find Nand flash

2012-11-19 Thread Bo Shen
Hi Alex, On 11/20/2012 11:11, alex wrote: Can you tell me from which tag on mainline kernel can work with mainline u-boot? When the mainline kernel support at91sam9x5ek, it can work with mainline u-boot. You can choose the kernel version as you prefer. Btw, this is u-boot ML. If you want to

Re: [U-Boot] [PATCH 51/57] nios2: Use generic global_data

2012-11-19 Thread Thomas Chou
On 11/17/2012 05:20 AM, Simon Glass wrote: Move nios2 over to use generic global_data. Hi Simon, Built and tested on nios2 board. Acked-by: Thomas Chou - Thomas ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2012-11-19 Thread Albert ARIBAUD
Hi Tom, On Mon, 19 Nov 2012 10:12:52 -0700, Tom Warren wrote: > Albert, please pull u-boot-tegra/master into ARM/master. Thanks! > > 'pxa' patch moved to before Simon's LCD patchset; MAKEALL -a arm AOK. > > The following changes since commit 7a5337732e3e05b2b0de1b592fa031b2c7b4f632: > Rajesh

Re: [U-Boot] [PATCH v2 03/10] x86: Allow excluding reset vector code from u-boot

2012-11-19 Thread Wolfgang Denk
Dear Simon Glass, In message <1349910781-32088-4-git-send-email-...@chromium.org> you wrote: > From: Gabe Black > > When running from coreboot we don't want this code. > > This version works by ifdef-ing out all of the code that would go > into those sections and all the code that refers to it.

Re: [U-Boot] [PATCH 17/17] tpm: Add TPM stress test

2012-11-19 Thread Wolfgang Denk
Dear Simon, In message you wrote: > > Yes there has been quite a bit of effort on this. I hope we can keep > this code, and perhaps even others way wish to help. I am looking at > how to create a very simple kernel verification method based around a > FIT image. So far, and even after all our

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

2012-11-19 Thread Wolfgang Denk
Dear Tom, In message <1351960246-31771-1-git-send-email...@denx.de> you wrote: > The TPM code was added more than a year or 4 releases ago. This was > done under the proposition that board support that would actually use > such code would be added soon. However, nothing happened since. The > co

Re: [U-Boot] [PATCH 0/57] RFC: Move arch-specific global data into its own structure

2012-11-19 Thread Wolfgang Denk
Dear Simon Glass, In message <1353100842-20126-1-git-send-email-...@chromium.org> you wrote: > The previous generic board series hit a snag in that we needed generic > code to access some of the architecture-specific fields in global_data. I missed that. Can you please summarize what exactly the

[U-Boot] [PATCH] serial: serial_sh: bugfix: autoboot fails if serial console is not connected

2012-11-19 Thread Tetsuyuki Kobayashi
On kzm9g board (rmobile SoC), autoboot fails if serial console cable is not connected. When serial cable is not connected, serial error occurs and some garbage comes in data register. sh_serial_tstc() in serial_sh.c does not check error status and misunderstand there is some input data. It is the