[U-Boot] [PATCH v2 3/4] mtd: nand: omap: optimize chip-ecc.calculate() for H/W ECC schemes

2013-08-14 Thread Pekon Gupta
chip-ecc.calculate() is used for calculating and fetching of ECC syndrome by processing the data passed during Read/Write accesses. All H/W based ECC schemes use GPMC controller to calculate ECC syndrome. But each BCHx_ECC scheme has its own implemetation of post-processing and fetching ECC

[U-Boot] [PATCH v2 1/4] mtd: nand: omap: enable BCH ECC scheme using ELM for generic platform

2013-08-14 Thread Pekon Gupta
BCH8_ECC scheme implemented in omap_gpmc.c driver has following two favours +---+-+-+ |ECC Scheme | ECC Calculation | Error Detection | +---+-+-+

[U-Boot] [PATCH v2 2/4] mtd: nand: omap: optimize chip-ecc.hwctl() for H/W ECC schemes

2013-08-14 Thread Pekon Gupta
chip-ecc.hwctl() is used for preparing the H/W controller before read/write NAND accesses (like assigning data-buf, enabling ECC scheme configs, etc.) Though all ECC schemes in OMAP NAND driver use GPMC controller for generating ECC syndrome (for both Read/Write accesses). But but in current code

[U-Boot] [PATCH v2 0/4] mtd: nand: omap: optimize and clean-up of OMAP NAND driver

2013-08-14 Thread Pekon Gupta
[changes in v2] - added documentation for CONFIG_NAND_OMAP_xx in doc/README.nand - added CONFIG_BCH along with CONFIG_NAND_OMAP_ECC_BCH8_CODE_HW_DETECTION_SW to include software library lib/bch.c - fixed board_nand_init() and omap_enable_hwecc() [Original v1] This patch series updates BCH8_ECC

[U-Boot] [PATCH v2 4/4] mtd: nand: omap: optimized chip-ecc.correct() for H/W ECC schemes

2013-08-14 Thread Pekon Gupta
chip-ecc.correct() is used for detecting and correcting bit-flips during read operations. In omap-nand driver it implemented as: (a) omap_correct_data(): for h/w based ECC_HAM1 scheme (b) omap_correct_data_bch() + CONFIG_NAND_OMAP_ECC_BCH8_CODE_HW_DETECTION_SW for ECC_BCH8 scheme using

Re: [U-Boot] [PATCH v3 1/4] arm, am33xx: add defines for gmii_sel_register bits

2013-08-14 Thread Mugunthan V N
On Monday 12 August 2013 11:06 PM, Mugunthan V N wrote: On Monday 12 August 2013 07:52 PM, Tom Rini wrote: +#define GMII2_SEL_MII0x0 +#define GMII2_SEL_RMII0x4 +#define GMII2_SEL_RGMII 0x8 +#define GMII2_SEL_NOTUSED 0xc NOTUSED not needed as it

[U-Boot] [PATCH v3] SPL: Makefile: Build a separate autoconf.mk for SPL

2013-08-14 Thread ying.zhang
From: Zhang Ying rock.ap.freescale.net SPL defines CONFIG_SPL_BUILD but this does not percolate to the autoconf.mk Makefile. As a result the build breaks when CONFIG_SPL_BUILD is used in the board-specific include header file. With this, there is a possibility of having a CONFIG option defined

[U-Boot] [RFC][PATCH v3] ARM: mxs: Added application UART driver

2013-08-14 Thread Andreas Wass
The driver makes it possible to use an application UART as the U-Boot output console for Freescale i.MX23/i.MX28 devices. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de --- Changes for v2: - Added comment that

[U-Boot] [U-boot] U-Boot Driver Model question

2013-08-14 Thread TigerLiu
Hi, experts: I found U-Boot Driver Model introduction ppt at SLM2012 Conference. It seems current drivers in u-boot was still not implemented by this Driver Model? It was just a long-term plan? Best wishes, ___ U-Boot mailing list

[U-Boot] [RFC][PATCH v4] ARM: mxs: Added application UART driver

2013-08-14 Thread Andreas Wass
The driver makes it possible to use an application UART as the U-Boot output console for Freescale i.MX23/i.MX28 devices. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de --- Changes for v2: - Added comment that

[U-Boot] [PATCH] mxc_spi: bugfix for double incrementing read pointer on unaligned buffers in spi_xchg_single

2013-08-14 Thread Timo Herbrecher
If dout buffer is not 32 bit-aligned or data to transmit is not multiple of 32 bit the read data pointer is already incremented on single byte reads. Signed-off-by: Timo Herbrecher t.herbrec...@gateware.de --- drivers/spi/mxc_spi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[U-Boot] [PATCH v4] Add Nanobone board support

2013-08-14 Thread Mark Jackson
NanoBone Specification: --- CPU: TI AM335x Memory: 256MB DDR3 64MB NOR flash 256MB NAND flash 128KB FRAM Ethernet: 2 x 10/100 connected to SMSC LAN8710 PHY USB: 1 x USB2.0 Type A I2C: 2Kbit EEPROM (Microchip 24AA02) RTC (Maxim DS1338) GPIO Expander

[U-Boot] [PATCH v2 1/4] core support of arm64

2013-08-14 Thread fenghua
From: David Feng feng...@phytium.com.cn This patch provide u-boot with arm64 support. Currently, it works on Foundation Model for armv8 or Fast Model for armv8. Signed-off-by: David Feng feng...@phytium.com.cn --- Changes for v2: - fix EXPORT_FUNC macro to use register x9 according to Scott

[U-Boot] [PATCH v2 3/4] arm64/lib support of arm64

2013-08-14 Thread fenghua
From: David Feng feng...@phytium.com.cn This patch provide u-boot with arm64 support. Currently, it works on Foundation Model for armv8 or Fast Model for armv8. Signed-off-by: David Feng feng...@phytium.com.cn --- Changes for v2: - fix EXPORT_FUNC macro to use register x9 according to Scott

[U-Boot] [PATCH v2 2/4] board support of arm64

2013-08-14 Thread fenghua
From: David Feng feng...@phytium.com.cn This patch provide u-boot with arm64 support. Currently, it works on Foundation Model for armv8 or Fast Model for armv8. Signed-off-by: David Feng feng...@phytium.com.cn --- Changes for v2: - fix EXPORT_FUNC macro to use register x9 according to Scott

[U-Boot] [PATCH v2 0/4] arm64 support

2013-08-14 Thread fenghua
From: David Feng feng...@phytium.com.cn *** BLURB HERE *** David Feng (4): core support of arm64 board support of arm64 arch/lib support of arm64 arch/cpu and arch/include and arch/dts support of arm64 arch/arm64/config.mk| 32 +++ arch/arm64/cpu/armv8/Makefile

Re: [U-Boot] [U-boot] U-Boot Driver Model question

2013-08-14 Thread Simon Glass
Hi, On Wed, Aug 14, 2013 at 2:05 AM, tiger...@viatech.com.cn wrote: Hi, experts: I found U-Boot Driver Model introduction ppt at SLM2012 Conference. It seems current drivers in u-boot was still not implemented by this Driver Model? Version 3 was posted here:

Re: [U-Boot] [PATCH v2 0/4] arm64 support

2013-08-14 Thread Simon Glass
Hi David, On Wed, Aug 14, 2013 at 4:58 AM, feng...@phytium.com.cn wrote: From: David Feng feng...@phytium.com.cn *** BLURB HERE *** David Feng (4): core support of arm64 board support of arm64 arch/lib support of arm64 arch/cpu and arch/include and arch/dts support of arm64

Re: [U-Boot] [PATCH] i.MX: Add documentation on how to use SPI NOR on MX28evk

2013-08-14 Thread Stefano Babic
Hi Mårten, On 13/08/2013 17:48, Mårten Wikman wrote: 2013/8/11 Otavio Salvador ota...@ossystems.com.br: On Sun, Aug 11, 2013 at 10:49 AM, Mårten Wikman marten.wik...@novia.fi wrote: This adds necessary information on how to use U-boot on SPI NOR on MX28evk Signed-off-by: Marten Wikman

Re: [U-Boot] [PATCH v3 1/8] MIPS: bootm: fix checkpatch.pl warnings

2013-08-14 Thread Gabor Juhos
2013.08.11. 21:39 keltezéssel, Daniel Schwierzeck írta: Signed-off-by: Daniel Schwierzeck daniel.schwierz...@gmail.com Looks good, but the subject line is misleading a bit. I would expect that the patch fixes all warnings, however there are some CamelCase warnings even after the patch. -Gabor

Re: [U-Boot] [PATCH 06/10 v5] spl: env_common.c: make CONFIG_SPL_BUILD contain function env_import

2013-08-14 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/13/2013 10:31 PM, Zhang Ying-B40530 wrote: Hi, Tom, This patch hasn't been applied? I think it should be applied early and it is needed by other patches of this set. Thanks. I expect that as part of the overall series, once ready, York

Re: [U-Boot] [PATCH v3 1/4] arm, am33xx: add defines for gmii_sel_register bits

2013-08-14 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/14/2013 02:29 AM, Mugunthan V N wrote: On Monday 12 August 2013 11:06 PM, Mugunthan V N wrote: On Monday 12 August 2013 07:52 PM, Tom Rini wrote: +#define GMII2_SEL_MII 0x0 +#define GMII2_SEL_RMII 0x4 +#define

[U-Boot] [PATCH] ARM: OMAP: Enable 8-bit eMMC access for OMAP4/5/DRA7xx

2013-08-14 Thread Lubomir Popov
Enable 8-bit host capability for HSMMC2 and/or HSMMC3. CONFIG_HSMMC2_8BIT (for OMAP4/5/DRA7xx) and/or CONFIG_HSMMC3_8BIT (for DRA7xx only) must be defined in the board header if an 8-bit eMMC device is connected to the corresponding port. Fix the No status update error that appeared for eMMC

[U-Boot] [PATCH v2 6/6] am335x_evm: am33xx_spl_board_init function and scale core frequency

2013-08-14 Thread Tom Rini
Add a am33xx_spl_board_init (and enable the PMICs) that we may see, depending on the board we are running on. In all cases, we see if we can rely on the efuse_sma register to tell us the maximum speed. In the case of Beaglebone White, we need to make sure we are on AC power, and are on later

[U-Boot] [PATCH v2 5/6] am33xx: Add the efuse_sma CONTROL_MODULE register

2013-08-14 Thread Tom Rini
Starting with PG2.1 we have a register in the CONTROL_MODULE that is set with the package type and maximum supported frequency. Add this, and the relevant mask/values. Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/include/asm/arch-am33xx/cpu.h | 12 1 file changed, 12

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

2013-08-14 Thread Tom Rini
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. Signed-off-by: Philip, Avinash avinashphi...@ti.com [trini: Split and rework Avinash's changes into new drivers/power framework] Signed-off-by: Tom Rini

[U-Boot] [PATCH v2 1/6] spl/Makefile: Add drivers/power/pmic/libpmic to CONFIG_SPL_POWER_SUPPORT

2013-08-14 Thread Tom Rini
We may need to access the PMIC code in SPL, when we have power set. Signed-off-by: Tom Rini tr...@ti.com --- spl/Makefile |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spl/Makefile b/spl/Makefile index 6e5299b..dff1345 100644 --- a/spl/Makefile +++ b/spl/Makefile @@

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

2013-08-14 Thread Tom Rini
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 rework Greg's changes into new drivers/power framework] Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: -

[U-Boot] [PATCH v2 4/6] am33xx: Add am33xx_spl_board_init function, call

2013-08-14 Thread Tom Rini
We need to allow for a further call-out in spl_board_init. Call this am33xx_spl_board_init and add a __weak version. This function may be used to scale the MPU frequency up, depending on board needs. Signed-off-by: Tom Rini tr...@ti.com --- Changes in v2: - Move am33xx_spl_board_init to

[U-Boot] [PATCH v2] am335x:Handle worst case scenario for Errata 1.0.24

2013-08-14 Thread Tom Rini
From: Steve Kipisz s-kipi...@ti.com In Errata 1.0.24, if the board is running at OPP50 and has a warm reset, the boot ROM sets the frequencies for OPP100. This patch attempts to drop the frequencies back to OPP50 as soon as possible in the SPL. Then later the voltages and frequencies up set

[U-Boot] [PATCH v3 6/6] am335x_evm: am33xx_spl_board_init function and scale core frequency

2013-08-14 Thread Tom Rini
Add a am33xx_spl_board_init (and enable the PMICs) that we may see, depending on the board we are running on. In all cases, we see if we can rely on the efuse_sma register to tell us the maximum speed. In the case of Beaglebone White, we need to make sure we are on AC power, and are on later

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

2013-08-14 Thread Lukasz Majewski
Hi Tom, Greg 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 rework Greg's changes into new drivers/power framework] Signed-off-by: Tom Rini

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

2013-08-14 Thread Lukasz Majewski
Hi Tom, Philip, I have the same comments as with: [PATCH v2 2/6] drivers/power/pmic: Add tps65217 driver 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. Signed-off-by: Philip, Avinash

Re: [U-Boot] [PATCH 06/10 v5] spl: env_common.c: make CONFIG_SPL_BUILD contain function env_import

2013-08-14 Thread York Sun
On 08/14/2013 06:48 AM, Tom Rini wrote: On 08/13/2013 10:31 PM, Zhang Ying-B40530 wrote: Hi, Tom, This patch hasn't been applied? I think it should be applied early and it is needed by other patches of this set. Thanks. I expect that as part of the overall series, once ready, York will

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

2013-08-14 Thread Tom Rini
On Wed, Aug 14, 2013 at 05:08:12PM +0200, Lukasz Majewski wrote: Hi Tom, Greg 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 rework Greg's

Re: [U-Boot] [PATCH] RFC: tegra: Avoid using I2C prior to relocation

2013-08-14 Thread Stephen Warren
On 08/13/2013 03:12 PM, Tom Rini wrote: On Wed, Aug 07, 2013 at 10:20:01AM -0600, Stephen Warren wrote: On 08/06/2013 11:52 PM, Simon Glass wrote: Tegra recently moved to the new I2C framework, which sets up I2C prior to relocation, and prior to calling i2c_init_board(). This causes a crash

[U-Boot] [PATCH v2] ARM: OMAP: Enable 8-bit eMMC access for OMAP4/5/DRA7xx

2013-08-14 Thread Lubomir Popov
Enable 8-bit host capability for HSMMC2 and/or HSMMC3. CONFIG_HSMMC2_8BIT (for OMAP4/5/DRA7xx) and/or CONFIG_HSMMC3_8BIT (for DRA7xx only) must be defined in the board header if an 8-bit eMMC device is connected to the corresponding port. Fix the No status update error that appeared for eMMC

Re: [U-Boot] [PATCH] RFC: tegra: Avoid using I2C prior to relocation

2013-08-14 Thread Simon Glass
Hi Stephen, On Wed, Aug 14, 2013 at 9:59 AM, Stephen Warren swar...@wwwdotorg.org wrote: On 08/13/2013 03:12 PM, Tom Rini wrote: On Wed, Aug 07, 2013 at 10:20:01AM -0600, Stephen Warren wrote: On 08/06/2013 11:52 PM, Simon Glass wrote: Tegra recently moved to the new I2C framework, which sets

Re: [U-Boot] [PATCH 1/2] ARM: tegra: Make cache line size SoC specific

2013-08-14 Thread Stephen Warren
On 07/18/2013 01:13 PM, Thierry Reding wrote: From: Thierry Reding tred...@nvidia.com Currently all Tegra SoCs are assumed to have 32 byte cache lines. This isn't true for Tegra114, however, which uses 4 Cortex-A15 cores and therefore uses a cache line size of 64 bytes. Move the cache line

[U-Boot] [PATCH REPOST] ARM: tegra: support raw ramdisks

2013-08-14 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com This way, we don't have to run mkimage on them. Signed-off-by: Stephen Warren swar...@nvidia.com --- include/configs/tegra-common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/tegra-common.h b/include/configs/tegra-common.h index

Re: [U-Boot] [PATCH REPOST] ARM: tegra: support raw ramdisks

2013-08-14 Thread Simon Glass
On Wed, Aug 14, 2013 at 10:05 AM, Stephen Warren swar...@wwwdotorg.org wrote: From: Stephen Warren swar...@nvidia.com This way, we don't have to run mkimage on them. Signed-off-by: Stephen Warren swar...@nvidia.com Acked-by: Simon Glass s...@chromium.org

Re: [U-Boot] [PATCH 1/2] ARM: tegra: Make cache line size SoC specific

2013-08-14 Thread Tom Warren
Sure, your mkimage patch, and Thierry's 2 cache patches have been applied to u-boot-tegra/next (after rebasing next against Albert's ARM master), build tested (all Tegra boards build fine), and pushed to denx. Also updated u-boot-tegra/master w/Albert's ARM TOT. Sorry for the delay, really

Re: [U-Boot] [PATCH 0/6] handle compression buffer overflows

2013-08-14 Thread Simon Glass
Hi Kees, On Mon, Aug 12, 2013 at 5:01 PM, Kees Cook keesc...@chromium.org wrote: [sending, now subscribed so mailman won't yell at me] This series fixes gzip, lzma, and lzo to not overflow when writing to output buffers. Without this, it might be possible for untrusted compressed input to

Re: [U-Boot] [PATCH 1/6] sandbox: add compression tests

2013-08-14 Thread Simon Glass
Hi Kees, On Mon, Aug 12, 2013 at 4:48 PM, Kees Cook keesc...@chromium.org wrote: This adds the test_compression command when building the sandbox. This tests the existing compression and decompression routines for simple sanity and for buffer overflow conditions. Signed-off-by: Kees Cook

Re: [U-Boot] [PATCH 2/6] documentation: add more compression configs

2013-08-14 Thread Simon Glass
Hi Kees, On Mon, Aug 12, 2013 at 5:02 PM, Kees Cook keesc...@chromium.org wrote: This adds the missing compression config items to the README. Signed-off-by: Kees Cook keesc...@chromium.org --- README |9 + 1 file changed, 9 insertions(+) diff --git a/README b/README index

Re: [U-Boot] [PATCH 3/6] gzip: correctly bounds-check output buffer

2013-08-14 Thread Simon Glass
On Mon, Aug 12, 2013 at 5:02 PM, Kees Cook keesc...@chromium.org wrote: The output buffer size not be reset by the gzip decoder or there is a risk of overflowing memory during decompression. Signed-off-by: Kees Cook keesc...@chromium.org Looks right to me. Acked-by: Simon Glass

Re: [U-Boot] [PATCH 4/6] lzma: correctly bounds-check output buffer

2013-08-14 Thread Simon Glass
On Mon, Aug 12, 2013 at 5:02 PM, Kees Cook keesc...@chromium.org wrote: The output buffer size must be correctly passed to the lzma decoder or there is a risk of overflowing memory during decompression. Switching to the LZMA_FINISH_END mode means nothing is left in an unknown state once the

Re: [U-Boot] [PATCH 5/6] lzo: correctly bounds-check output buffer

2013-08-14 Thread Simon Glass
On Mon, Aug 12, 2013 at 5:02 PM, Kees Cook keesc...@chromium.org wrote: This checks the size of the output buffer and fails if it was going to overflow the buffer during lzo decompression. Signed-off-by: Kees Cook keesc...@chromium.org Acked-by: Simon Glass s...@chromium.org

Re: [U-Boot] [PATCH 6/6] bootm: correctly bounds-check decompression

2013-08-14 Thread Simon Glass
Hi Kees, On Mon, Aug 12, 2013 at 5:02 PM, Kees Cook keesc...@chromium.org wrote: This passes the actual memory allocation size for the destination to the decompression routines, avoiding potential memory overflows. Signed-off-by: Kees Cook keesc...@chromium.org Acked-by: Simon Glass

Re: [U-Boot] [PATCH]fsl/usb: Move USB internal phy definitions to fsl_usb.h

2013-08-14 Thread York Sun
On 08/05/2013 03:30 AM, Ramneek Mehresh wrote: snip diff --git a/include/fsl_usb.h b/include/fsl_usb.h new file mode 100644 index 000..88d6a1f --- /dev/null +++ b/include/fsl_usb.h @@ -0,0 +1,80 @@ +/* + * Freescale USB Controller + * + * Copyright 2013 Freescale Semiconductor,

Re: [U-Boot] [PATCH] mkimage: add option for adding dtc binary path via argument

2013-08-14 Thread Harvey Chapman
On May 6, 2013, at 8:59 AM, Luka Perkov l...@openwrt.org wrote: On Mon, May 06, 2013 at 02:32:51PM +0200, Wolfgang Denk wrote: It appears there is no really good reason for this patch, so I think we should drop it. Ok. Thanks for the review. Would there be any objection to adding an option

[U-Boot] [PATCH v2 1/4] ARM: make reserving the gd register a make variable

2013-08-14 Thread Jeroen Hofstee
Currently all ARM targets spell out that r8 needs to be a reserved register, while using a common crt0.s. Move this to a common make variable so it is not repeated (and can be easily changed) cc: Albert ARIBAUD albert.u.b...@aribaud.net Signed-off-by: Jeroen Hofstee jer...@myspectrum.nl ---

[U-Boot] [PATCH v2 0/4] ARM: use r9 for gd instead of r8

2013-08-14 Thread Jeroen Hofstee
v2: update the README as requested by Wolfgang Denk cc: w...@denx.de Jeroen Hofstee (4): ARM: make reserving the gd register a make variable ARM,relocate: do not use r9 ARM: use r9 for gd README: update ARM register usage README | 8 +---

[U-Boot] [PATCH v2 4/4] README: update ARM register usage

2013-08-14 Thread Jeroen Hofstee
Besides the change of this patchset it also updates the README to reflect that GOT-generated relocations are no longer supported on ARM. cc: Albert ARIBAUD albert.u.b...@aribaud.net Signed-off-by: Jeroen Hofstee jer...@myspectrum.nl --- README | 8 +--- 1 file changed, 5 insertions(+), 3

[U-Boot] [PATCH v2 2/4] ARM,relocate: do not use r9

2013-08-14 Thread Jeroen Hofstee
r9 is a platform-specific register in ARM EABI and not per definition a general purpose register. Do not use it while relocating so it can be used for gd. cc: Albert ARIBAUD albert.u.b...@aribaud.net Signed-off-by: Jeroen Hofstee jer...@myspectrum.nl --- arch/arm/lib/relocate.S | 6 +++--- 1

[U-Boot] [PATCH v2 3/4] ARM: use r9 for gd

2013-08-14 Thread Jeroen Hofstee
To be more EABI compliant and as a preparation for building with clang, use the platform-specific r9 register for gd instead of r8. note: The FIQ is not updated since it is not used in u-boot, and under discussion for the time being. The following checkpatch warning is ignored: WARNING: Use of

[U-Boot] [PATCH] include/fsl_usb.h: Cleanup license header

2013-08-14 Thread York Sun
Replace license header with SPDX license identifier. Replace GPL-2.0 with GPL-2.0+. Signed-off-by: York Sun york...@freescale.com --- include/fsl_usb.h | 18 +- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/include/fsl_usb.h b/include/fsl_usb.h index

Re: [U-Boot] [PATCH] mkimage: add option for adding dtc binary path via argument

2013-08-14 Thread Simon Glass
Hi, On Wed, Aug 14, 2013 at 10:58 AM, Harvey Chapman hchap...@3gfp.com wrote: On May 6, 2013, at 8:59 AM, Luka Perkov l...@openwrt.org wrote: On Mon, May 06, 2013 at 02:32:51PM +0200, Wolfgang Denk wrote: It appears there is no really good reason for this patch, so I think we should drop it.

Re: [U-Boot] [PATCH] part1 of arm64. This patch provide u-boot with arm64 support. Currently it works on Foundation Model for armv8 or Fast Model for armv8.

2013-08-14 Thread Scott Wood
On Wed, 2013-08-14 at 12:43 +0800, FengHua wrote: -原始邮件- 发件人: Scott Wood scottw...@freescale.com 发送时间: 2013年8月14日 星期三 收件人: feng...@phytium.com.cn 抄送: u-boot@lists.denx.de, tr...@ti.com 主题: Re: [U-Boot] [PATCH] part1 of arm64. This patch provide u-boot with arm64 support.

Re: [U-Boot] [PATCH] include/fsl_usb.h: Cleanup license header

2013-08-14 Thread Mehresh Ramneek-B31383
Acked. -Ramneek -Original Message- From: sun york-R58495 Sent: Wednesday, August 14, 2013 11:56 PM To: Mehresh Ramneek-B31383 Cc: u-boot@lists.denx.de; sun york-R58495 Subject: [PATCH] include/fsl_usb.h: Cleanup license header Replace license header with SPDX license identifier.

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

2013-08-14 Thread York Sun
Tom, The following changes since commit b98d934128bcd98106e764d2f492ac79c38ae53d: Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2013-08-13 09:14:02 -0400) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master for you to fetch changes up to

Re: [U-Boot] [RFC][PATCH v4] ARM: mxs: Added application UART driver

2013-08-14 Thread Marek Vasut
Dear Andreas Wass, The driver makes it possible to use an application UART as the U-Boot output console for Freescale i.MX23/i.MX28 devices. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de --- Changes for

Re: [U-Boot] [RFC][PATCH v4] ARM: mxs: Added application UART driver

2013-08-14 Thread Fabio Estevam
Hi Andreas, On Wed, Aug 14, 2013 at 4:20 PM, Marek Vasut ma...@denx.de wrote: The rest is good. You could remove the RFC tag in your next submission. Also, it would be nice to add a mx28evk target that could make use of this driver, otherwise this will be just dead code, as there is no board

Re: [U-Boot] [RFC][PATCH v4] ARM: mxs: Added application UART driver

2013-08-14 Thread Marek Vasut
Dear Fabio Estevam, Hi Andreas, On Wed, Aug 14, 2013 at 4:20 PM, Marek Vasut ma...@denx.de wrote: The rest is good. You could remove the RFC tag in your next submission. Yes Also, it would be nice to add a mx28evk target that could make use of this driver, otherwise this will be just

Re: [U-Boot] [PATCH 1/1] net: phy/realtek: Add support for RTL8211DN and RTL8211E phy modules

2013-08-14 Thread Sharma Bhupesh-B45370
Hi York, I guess with Andy no longer there as FSL u-boot maintainer, will the patch below go through you or Joe. If no one has an objection to this patch, can I get a Acked-by and can we queue it up for upstream. Regards, Bhupesh -Original Message- From: Sharma Bhupesh-B45370 Sent:

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

2013-08-14 Thread Lukasz Majewski
On Wed, 14 Aug 2013 11:57:06 -0400 Tom Rini tr...@ti.com wrote: On Wed, Aug 14, 2013 at 05:08:12PM +0200, Lukasz Majewski wrote: Hi Tom, Greg From: Greg Guyotte gguyo...@ti.com Add a driver for the TPS65217 PMIC that is found in the Beaglebone family of boards.

Re: [U-Boot] [PATCH 1/1] net: phy/realtek: Add support for RTL8211DN and RTL8211E phy modules

2013-08-14 Thread York Sun
On 08/14/2013 01:30 PM, Sharma Bhupesh-B45370 wrote: Hi York, I guess with Andy no longer there as FSL u-boot maintainer, will the patch below go through you or Joe. If no one has an objection to this patch, can I get a Acked-by and can we queue it up for upstream. Acked-by: York Sun

Re: [U-Boot] [PATCH 1/1] net: phy/realtek: Add support for RTL8211DN and RTL8211E phy modules

2013-08-14 Thread Sharma Bhupesh-B45370
-Original Message- From: sun york-R58495 Sent: Thursday, August 15, 2013 2:29 AM To: Sharma Bhupesh-B45370 Cc: 'u-boot@lists.denx.de'; 'joe.hershber...@gmail.com' Subject: Re: [PATCH 1/1] net: phy/realtek: Add support for RTL8211DN and RTL8211E phy modules On 08/14/2013 01:30

[U-Boot] [PATCH v5] ARM: mxs: Added application UART driver

2013-08-14 Thread Andreas Wass
The driver makes it possible to use an application UART as the U-Boot output console for Freescale i.MX23/i.MX28 devices. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de --- Changes for v2: - Added comment that

Re: [U-Boot] [PATCH v5] ARM: mxs: Added application UART driver

2013-08-14 Thread Marek Vasut
Dear Andreas Wass, The driver makes it possible to use an application UART as the U-Boot output console for Freescale i.MX23/i.MX28 devices. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de --- Changes for

Re: [U-Boot] [PATCH 1/1] net: phy/realtek: Add support for RTL8211DN and RTL8211E phy modules

2013-08-14 Thread Joe Hershberger
On Wed, Aug 14, 2013 at 4:08 PM, Sharma Bhupesh-B45370 b45...@freescale.com wrote: -Original Message- From: sun york-R58495 Sent: Thursday, August 15, 2013 2:29 AM To: Sharma Bhupesh-B45370 Cc: 'u-boot@lists.denx.de'; 'joe.hershber...@gmail.com' Subject: Re: [PATCH 1/1] net:

Re: [U-Boot] [PATCH 06/10 v5] spl: env_common.c: make CONFIG_SPL_BUILD contain function env_import

2013-08-14 Thread Zhang Ying-B40530
York, I had checked all the patch and I am sure there is only this patch almost forgotten. I don't know how to do. Need I send the patch again or other way? Thanks. -Original Message- From: sun york-R58495 Sent: Wednesday, August 14, 2013 11:42 PM To:

[U-Boot] [PATCH] powerpc/p1010rdb: remove CONFIG_SYS_FSL_ESDHC_P1010_BROKEN_SDCLK

2013-08-14 Thread Shengzhou Liu
CONFIG_SYS_FSL_ESDHC_P1010_BROKEN_SDCLK was needed only on obsolete P1010RDB Rev.B non-formal board, not reproduced on P1010RDB Rev.C and new P1010RDB-PB, now it's no longer needed. Signed-off-by: Shengzhou Liu shengzhou@freescale.com --- arch/powerpc/include/asm/config_mpc85xx.h | 1 - 1

[U-Boot] [PATCH] powerpc/sec: Add workaround for SEC A-003571

2013-08-14 Thread Shengzhou Liu
Multiple read/write transactions initiated by security engine may cause system to hang. Workaround: set MCFGR[AXIPIPE] to 0 to avoid hang. Signed-off-by: Shengzhou Liu shengzhou@freescale.com --- arch/powerpc/cpu/mpc85xx/cmd_errata.c | 4 arch/powerpc/cpu/mpc85xx/cpu_init.c |

Re: [U-Boot] [PATCH 06/10 v5] spl: env_common.c: make CONFIG_SPL_BUILD contain function env_import

2013-08-14 Thread sun york-R58495
On Aug 14, 2013, at 7:25 PM, Zhang Ying-B40530 wrote: York, I had checked all the patch and I am sure there is only this patch almost forgotten. I don't know how to do. Need I send the patch again or other way? Thanks. No need to resend. I can mark it. Just want to be

Re: [U-Boot] [PATCH 06/10 v5] spl: env_common.c: make CONFIG_SPL_BUILD contain function env_import

2013-08-14 Thread Zhang Ying-B40530
Hi, York, I see. I am sure there isn't newer version. -Original Message- From: sun york-R58495 Sent: Thursday, August 15, 2013 10:42 AM To: Zhang Ying-B40530 Cc: Tom Rini; Wood Scott-B07421; u-boot@lists.denx.de; Andy Fleming; Xie Xiaobo-R63061 Subject: Re: [U-Boot] [PATCH 06/10

Re: [U-Boot] ARM: omap3: Implement dpll5 (HSUSB clk) workaround for OMAP36xx/AM/DM37xx according to errata sprz318e.

2013-08-14 Thread Peter A. Bigot
On 07/09/2013 02:43 AM, Naumann Andreas wrote: In chapter 'Advisory 2.1 USB Host Clock Drift Causes USB Spec Non-compliance in Certain Configurations' of the TI Errata it is recommended to use certain div/mult values for the DPLL5 clock setup. So far u-boot used the old 34xx values, so I added