[U-Boot] [PATCH v3 2/2] fsl_i2c: add workaround for the erratum I2C A004447

2013-08-16 Thread Chunhe Lan
This workaround is for the erratum I2C A004447. Device reference manual provides a scheme that allows the I2C master controller to generate nine SCL pulses, which enable an I2C slave device that held SDA low to release SDA. However, due to this erratum, this scheme no longer works. In addition,

Re: [U-Boot] [PATCH v3 1/3] arm:samsung:serial Extract common UART code

2013-08-16 Thread Lukasz Majewski
Hi Minkyu, By mistake I've forgotten to add you to CC for the v3 of this patch series. However you were on CC for last two versions of those patches. I'd be very grateful for feedback :-) This commit brings removal of duplicated code for UART IP block embedded at Samsung SoCs. New

[U-Boot] [PATCH v3 1/2] fsl_i2c: generate nine pulses on SCL if the I2C bus is hung

2013-08-16 Thread Chunhe Lan
When the code detected that the bus is hung (e.g. SDA stuck low), send 9 pulses on SCL to try to fixup the bus. Signed-off-by: Zhao Chenhui chenhui.z...@freescale.com Signed-off-by: Chunhe Lan chunhe@freescale.com Cc: Scott Wood scottw...@freescale.com Cc: Heiko Schocher h...@denx.de ---

[U-Boot] [PATCH] powerpc: Fix CamelCase checkpatch warnings

2013-08-16 Thread Prabhakar Kushwaha
85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates WARNING: Avoid CamelCase. This patch set Convert variables name to normal naming convention and modify board, driver files with updated new - [PATCH 1/2] powerpc:

[U-Boot] [PATCH 1/2] powerpc: Fix CamelCase checkpatch warnings

2013-08-16 Thread Prabhakar Kushwaha
85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates WARNING: Avoid CamelCase. Convert variables name to normal naming convention. Signed-off-by: Prabhakar Kushwaha prabha...@freescale.com ---

[U-Boot] [PATCH 2/2] board: Update variable names as per new the structures

2013-08-16 Thread Prabhakar Kushwaha
Different board,driver files use fields defined in MPC85xx_SYS_INFO and MPC86xx_SYS_INFO structure. To fix CamelCase warning, field name has been updated in the mentioned structure. So update variable names as per new the structures. Signed-off-by: Prabhakar Kushwaha prabha...@freescale.com ---

Re: [U-Boot] [PATCH V2] Origen: Set FIMD as the default display path

2013-08-16 Thread Ajay kumar
On Thu, Aug 15, 2013 at 6:53 PM, Tushar Behera tushar.beh...@linaro.orgwrote: On EXYNOS4210, there are three paths for display data to be processed, namely MIE, MDNIE and FIMD. On Origen board, FIMD display controller is used. Signed-off-by: Tushar Behera tushar.beh...@linaro.org ---

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

2013-08-16 Thread ying.zhang
From: Ying Zhang b40...@freescale.com 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] [PATCH 3/7 v11] powerpc: p1022ds: Enable P1022DS to boot from SD Card with SPL

2013-08-16 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 v10: - Fix the warning from spl.c. Change from v9: - Mofidy board/freescale/p1022ds/spl.c, fix checkpatch warnings. Change from v8: - No change.

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

2013-08-16 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 v11] powerpc: mpc85xx: Support booting from SD Card with SPL

2013-08-16 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 4/7 v11] powerpc : spi flash : Support to start from eSPI with SPL

2013-08-16 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 6/7 v11] NAND: TPL : introduce the TPL based on the SPL

2013-08-16 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 7/7 v11] powerpc: p1022ds: add TPL for p1022ds nand boot

2013-08-16 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 v10: - No change. Change from v9: - Modify drivers/mtd/nand/Makefile. -

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

2013-08-16 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 v10: - No change. Change from v9: - No change. Change from v8: - No change. Change from v7: - No change. Change from v6: - No longer changes the header

Re: [U-Boot] [PATCH] powerpc: Fix CamelCase checkpatch warnings

2013-08-16 Thread thomas.langer
Hello Prabhakar, Prabhakar Kushwaha wrote on 2013-08-16: 85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates WARNING: Avoid CamelCase. This patch set Convert variables name to normal naming convention and modify

Re: [U-Boot] [PATCH] powerpc: Fix CamelCase checkpatch warnings

2013-08-16 Thread Prabhakar Kushwaha
On 08/16/2013 02:23 PM, thomas.lan...@lantiq.com wrote: Hello Prabhakar, Prabhakar Kushwaha wrote on 2013-08-16: 85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates WARNING: Avoid CamelCase. This patch set Convert

[U-Boot] [PATCH][v2] powerpc: Fix CamelCase checkpatch warnings

2013-08-16 Thread Prabhakar Kushwaha
85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates WARNING: Avoid CamelCase. Convert variables name to normal naming convention and modify board, driver files with updated the new structure. Signed-off-by:

Re: [U-Boot] [PATCH] net: macb: fix the building warning

2013-08-16 Thread Andreas Bießmann
Hi Bo, On 16.08.13 03:46, Bo Shen wrote: fix the following building warning ---8--- macb.c: In function 'macb_init': macb.c:400:14: warning: 'phydev' may be used uninitialized in this function macb.c:377:21: note: 'phydev' was declared here ---8--- Signed-off-by: Bo Shen

[U-Boot] [PATCH] i2c:multibus:fix: Correct I2C_MULTI_BUS value when support for many buses is enabled

2013-08-16 Thread Lukasz Majewski
The I2C_MULTI_BUS needs to be defined for correct I2C operation with many software emulated I2C controllers. This fix restores correct value of the I2C_MULTI_BUS changed by following commit: SHA1: 385c9ef5a7215b2b0c22836fee6c692dfc8559d7 i2c: add i2c_core and prepare for new multibus support

[U-Boot] [PATCH] i2c:samsung: Adjust Trats, GONI and Universal_c210 boards to work with new I2C framework

2013-08-16 Thread Lukasz Majewski
New I2C framework, introduced after v2013.07 final release, imposed I2C code adjustment for some Samsung boards - namely Trats, GONI and Universal_c210. Those boards were using schematic based I2C enumeration (I2C_5, I2C_9). However, new I2C framework imposes usage of logical I2C adapters

Re: [U-Boot] [PATCH v6 0/3] Add TI816X EVM support

2013-08-16 Thread Tom Rini
On Tue, Jul 02, 2013 at 12:05:57PM +0200, TENART Antoine wrote: Changes for v6: - fix typo in commit message Changes for v5: - use wd_timer structure for WDT - remove some magic - remove memtest and verify from config - fix a redefinition warning (VTP1_CTRL_ADDR)

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

2013-08-16 Thread Tom Rini
On Wed, Aug 14, 2013 at 12:11:03PM -0700, York Sun wrote: 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:

Re: [U-Boot] [PATCH V2 0/6] ARM: AM43xx: Add Support for AM43xx Soc's

2013-08-16 Thread Tom Rini
On Tue, Jul 30, 2013 at 11:36:26AM +0530, Lokesh Vutla wrote: AM43xx is a low cost Cortex-A9 based application processor targets higher performance applications and new specific end equipments like Point of Sale requiring stringent security requirements. This series add support for AM43xx

Re: [U-Boot] [PATCH V2 0/4]ARM: AM33xx: Cleanup clocks and hwinit

2013-08-16 Thread Tom Rini
On Tue, Jul 30, 2013 at 10:48:51AM +0530, Lokesh Vutla wrote: This series tries to cleanup code for AM33xx, inorder to ensure code reusabilty by moving the duplicated code to common place. This also helps in addition of new Soc with minimal changes. Testing: Boot tested on BeagleBone

Re: [U-Boot] [PATCH v2 0/9] Introduce common config file for TI ARMv7 platforms

2013-08-16 Thread Tom Rini
On Fri, Aug 09, 2013 at 11:22:11AM -0400, Tom Rini wrote: Hey all, The following series cleans up am335x a bit, and then uses that to introduce a common config file that can be used on all of the ARMv7 platforms from TI. This series converts am335x_evm, omap5_uevm and dra7xx_evm to use

Re: [U-Boot] [PATCH 0/4] arm, da850: add ipam390 board support

2013-08-16 Thread Tom Rini
On Mon, Aug 05, 2013 at 04:00:34PM +0200, Heiko Schocher wrote: add the am1808 based ipam390 board from Barix. - 128MByte, DDR2, synchronous RAM 16bit databus to SDRAM interface - 128MByte, NAND Flash, 8bit databus to the NANDFlash Interface - Ethernet PHY Micrel KSZ8051R via RMII -

[U-Boot] [PATCH] pmic:i2c: Replace legacy I2C_SET_BUS macro with i2c_set_bus_num()

2013-08-16 Thread Lukasz Majewski
After introduction of unified i2c model, the I2C_SET_BUS() macro is regarded as obsolete. Hence it is replaced with i2c_set_bus_num() function call. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Cc: Heiko Schocher h...@denx.de Cc: Tom Rini tr...@ti.com --- drivers/power/power_i2c.c |

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

2013-08-16 Thread Tom Rini
On Tue, Jul 09, 2013 at 09:43:17AM +0200, 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

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

2013-08-16 Thread Tom Rini
On Thu, Jul 25, 2013 at 09:27:35AM +0200, Enric Balletbo i Serra wrote: 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):

Re: [U-Boot] [U-Boot, 1/2] omap: overo: update support for Micron 1GB POP

2013-08-16 Thread Tom Rini
On Wed, Jul 24, 2013 at 12:22:34PM -0700, Ash Charles wrote: From: Steve Sakoman st...@sakoman.com Signed-off-by: Ash Charles ashchar...@gmail.com --- board/overo/overo.c |6 ++ board/overo/overo.h |1 + 2 files changed, 7 insertions(+) Applied to u-boot-ti/master, thanks!

Re: [U-Boot] [U-Boot, 2/2] omap: overo: Use 200MHz SDRC timings for revision 1, 2 3 boards

2013-08-16 Thread Tom Rini
On Wed, Jul 24, 2013 at 12:22:35PM -0700, Ash Charles wrote: From: Ash Charles ashchar...@gmail.com Gumstix uses 200Mhz RAM on revision 1, 2 3 COMs, so use 200MHz timings rather than 165MHz. Based on 6cf8bf44b1f8550e12f7f2a16e01890e5de8443d Signed-off-by: Ash Charles

Re: [U-Boot] omap: emif: Set initial DDR PHY config first

2013-08-16 Thread Tom Rini
On Tue, Aug 06, 2013 at 04:16:50PM +0300, Taras Kondratiuk wrote: Commit OMAP5: emif/ddr: Change emif settings as required for ES1.0 silicon (f40107345cbcd6e0d1747eda45e76c4e2a6df0db) changed sequence to set final DDR PHY config register value at the beginning. Looks like it was made by

Re: [U-Boot] [U-Boot, 2/2] OMAP3: igep00x0: allow booting with a FDT from MMC

2013-08-16 Thread Tom Rini
On Wed, Aug 07, 2013 at 05:53:19PM +0200, Javier Martinez Canillas wrote: IGEP boards now have Device Tree support in the mainline kernel. To boot an IGEP board using a DT, a uEnv.txt plain text file could be used to define a custom uenvcmd that will be run by the default boot command. It

Re: [U-Boot] [U-Boot, 1/2] ARM: igep00x0.h: Enable the use of CMD_EXT4, CMD_FS_GENERIC and zImage.

2013-08-16 Thread Tom Rini
On Wed, Aug 07, 2013 at 05:53:18PM +0200, Javier Martinez Canillas wrote: From: Enric Balletbo i Serra eballe...@gmail.com Able to load the kernel from some form of ext[234] or FAT. Also, with v3.9 and later of the Linux Kernel, uImage isn't builtable anymore by default, so we should switch

Re: [U-Boot] ARM: omap24xx: remove remainders of dead board

2013-08-16 Thread Tom Rini
On Mon, Aug 05, 2013 at 10:49:42AM +0900, Masahiro Yamada wrote: Since Commit 7f5eef9 removed OMAP2420H4 support, arm1136/omap24xx has not been used at all. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description:

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

2013-08-16 Thread Tom Rini
On Wed, Aug 14, 2013 at 09:53:16PM -0500, Peter A. Bigot wrote: 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

[U-Boot] Please pull u-boot-ti/master

2013-08-16 Thread Tom Rini
Hey, The following changes since commit fdce7b633a1de24456226b18527cc7900c34282a: gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-30 09:21:42 -0400) are available in the git repository at: git://git.denx.de/u-boot-ti.git master for you to fetch changes up to

Re: [U-Boot] [PATCH v4 0/8] ARMv7: Add HYP mode switching support

2013-08-16 Thread Andre Przywara
On 08/09/2013 06:55 PM, Christoffer Dall wrote: On Fri, Aug 09, 2013 at 05:03:04PM +0200, Andre Przywara wrote: (for GIT URL and Changelog see below) ARM CPUs with the virtualization extension have a new mode called HYP mode, which allows hypervisors to safely control and monitor guests. The

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

2013-08-16 Thread Kees Cook
On Thu, Aug 15, 2013 at 10:19 AM, Kees Cook keesc...@chromium.org wrote: On Wed, Aug 14, 2013 at 10:30 AM, Simon Glass s...@chromium.org wrote: 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

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

2013-08-16 Thread Peter A. Bigot
On 08/16/2013 08:38 AM, Tom Rini wrote: On Wed, Aug 14, 2013 at 09:53:16PM -0500, Peter A. Bigot wrote: 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

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

2013-08-16 Thread Kees Cook
The output buffer size must 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 Acked-by: Simon Glass s...@chromium.org --- lib/gunzip.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

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

2013-08-16 Thread Kees Cook
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 --- lib/lzo/lzo1x_decompress.c |8 +++- 1 file changed, 7 insertions(+), 1

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

2013-08-16 Thread Kees Cook
v2: added acks, various suggested cleanups 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 overflow the buffers used to hold the decompressed image. To catch these conditions, I added a

[U-Boot] [PATCH 6/6] bootm: allow correct bounds-check of destination

2013-08-16 Thread Kees Cook
While nothing presently examines the destination size, it should at least be correct so that future users of sys_mapmem() will not be surprised. Without this, it might be possible to overflow memory. Signed-off-by: Kees Cook keesc...@chromium.org Acked-by: Simon Glass s...@chromium.org ---

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

2013-08-16 Thread Kees Cook
This adds the missing compression config items to the README. Signed-off-by: Kees Cook keesc...@chromium.org --- v2: - adjusted language slightly, thanks to Simon Glass --- README |9 + 1 file changed, 9 insertions(+) diff --git a/README b/README index 3918807..6485350 100644 ---

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

2013-08-16 Thread Kees Cook
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 buffer becomes full. Signed-off-by: Kees Cook keesc...@chromium.org Acked-by:

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

2013-08-16 Thread Kees Cook
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 keesc...@chromium.org --- v2: - updates, suggested by Simon Glass: - replace license

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

2013-08-16 Thread Robert Nelson
On Fri, Aug 16, 2013 at 9:34 AM, Peter A. Bigot p...@pabigot.com wrote: On 08/16/2013 08:38 AM, Tom Rini wrote: On Wed, Aug 14, 2013 at 09:53:16PM -0500, Peter A. Bigot wrote: On 07/09/2013 02:43 AM, Naumann Andreas wrote: In chapter 'Advisory 2.1 USB Host Clock Drift Causes USB Spec

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

2013-08-16 Thread Robert Nelson
On Fri, Aug 16, 2013 at 10:07 AM, Robert Nelson robertcnel...@gmail.com wrote: On Fri, Aug 16, 2013 at 9:34 AM, Peter A. Bigot p...@pabigot.com wrote: On 08/16/2013 08:38 AM, Tom Rini wrote: On Wed, Aug 14, 2013 at 09:53:16PM -0500, Peter A. Bigot wrote: On 07/09/2013 02:43 AM, Naumann

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

2013-08-16 Thread York Sun
On 08/16/2013 12:14 AM, ying.zh...@freescale.com wrote: From: Ying Zhang b40...@freescale.com 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

[U-Boot] [PATCH] ARM: mxs: Add mx28evk_auart_console target

2013-08-16 Thread Andreas Wass
The target uses AUART 3 instead of the DUART for console output. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de --- boards.cfg| 1 + include/configs/mxs.h | 7 ++- 2 files changed, 7 insertions(+),

[U-Boot] [u-boot-release] [PATCH][v2] powerpc/common/vsc3316: remove const from vsc3316_config parameter define

2013-08-16 Thread York Sun
From: Shaohui Xie shaohui@freescale.com Since the parameters need to be modified according to different Serdes protocols at runtime, the const will block this. Also remove const from arrays define used by vsc3316_config. Signed-off-by: Shaohui Xie shaohui@freescale.com --- Resend for

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

2013-08-16 Thread Tom Rini
On Fri, Aug 16, 2013 at 03:14:44PM +0800, ying.zh...@freescale.com wrote: From: Ying Zhang b40...@freescale.com 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

Re: [U-Boot] [u-boot-release] [PATCH][v2] powerpc/common/vsc3316: remove const from vsc3316_config parameter define

2013-08-16 Thread York Sun
On 08/09/2013 03:41 AM, Shaohui Xie wrote: Since the parameters need to be modified according to different Serdes protocols at runtime, the const will block this. Also remove const from arrays define used by vsc3316_config. Signed-off-by: Shaohui Xie shaohui@freescale.com --- changes

Re: [U-Boot] [PATCH] ARM: mxs: Add mx28evk_auart_console target

2013-08-16 Thread Otavio Salvador
On Fri, Aug 16, 2013 at 1:24 PM, Andreas Wass andreas.w...@dalelven.com wrote: The target uses AUART 3 instead of the DUART for console output. Signed-off-by: Andreas Wass andreas.w...@dalelven.com Cc: Fabio Estevam fabio.este...@freescale.com Cc: Marek Vasut ma...@denx.de Why to use AUART

Re: [U-Boot] [PATCH] ARM: mxs: Add mx28evk_auart_console target

2013-08-16 Thread Andreas Wass
Dear Otavio, Some boards don't have the DUART easily available (see STKa28 by TQ-group for instance) while a regular rs232 port is easily accessed. The purpose of this patch is more of a demonstration how to use the AUART driver and was requested by Fabio during the submission of the AUART

Re: [U-Boot] [PATCH] ARM: mxs: Add mx28evk_auart_console target

2013-08-16 Thread Fabio Estevam
On Fri, Aug 16, 2013 at 2:06 PM, Andreas Wass andreas.w...@dalelven.com wrote: Dear Otavio, Some boards don't have the DUART easily available (see STKa28 by TQ-group for instance) while a regular rs232 port is easily accessed. The purpose of this patch is more of a demonstration how to use

Re: [U-Boot] [PATCH] ARM: mxs: Add mx28evk_auart_console target

2013-08-16 Thread Otavio Salvador
On Fri, Aug 16, 2013 at 2:10 PM, Fabio Estevam feste...@gmail.com wrote: On Fri, Aug 16, 2013 at 2:06 PM, Andreas Wass andreas.w...@dalelven.com wrote: Dear Otavio, Some boards don't have the DUART easily available (see STKa28 by TQ-group for instance) while a regular rs232 port is easily

Re: [U-Boot] [PATCH V3 01/20] Add functions for use with i.mx6 otg udc

2013-08-16 Thread Troy Kisky
On 8/15/2013 2:36 PM, Marek Vasut wrote: Are there any news on this front? If not, please fix as requested so I can apply this stuff for .10 , thanks. Best regards, Marek Vasut I will update, I'm just sidetracked with Windows work for a little while. Thanks Troy

Re: [U-Boot] about CONFIG_SYS_GENERIC_BOARD

2013-08-16 Thread Scott Wood
On Fri, 2013-08-16 at 13:02 +0800, FengHua wrote: hi Simon, I have worked on generic board for a few days, but something confuse me. Why it is needed? Each processor architecture has different features, this will affect processor specific and board specific code.

Re: [U-Boot] [PATCH 2/2] board: Update variable names as per new the structures

2013-08-16 Thread Scott Wood
On Fri, 2013-08-16 at 12:56 +0530, Prabhakar Kushwaha wrote: Different board,driver files use fields defined in MPC85xx_SYS_INFO and MPC86xx_SYS_INFO structure. To fix CamelCase warning, field name has been updated in the mentioned structure. So update variable names as per new the

Re: [U-Boot] about CONFIG_SYS_GENERIC_BOARD

2013-08-16 Thread Simon Glass
Hi David, On Thu, Aug 15, 2013 at 11:02 PM, FengHua feng...@phytium.com.cn wrote: hi Simon, I have worked on generic board for a few days, but something confuse me. Why it is needed? Each processor architecture has different features, this will affect processor

Re: [U-Boot] about CONFIG_SYS_GENERIC_BOARD

2013-08-16 Thread Tom Rini
On Fri, Aug 16, 2013 at 01:28:26PM -0600, Simon Glass wrote: Hi David, On Thu, Aug 15, 2013 at 11:02 PM, FengHua feng...@phytium.com.cn wrote: hi Simon, I have worked on generic board for a few days, but something confuse me. Why it is needed? Each processor

Re: [U-Boot] [PATCH v3 0/5] arm64 patch

2013-08-16 Thread Scott Wood
On Thu, 2013-08-15 at 23:32 -0500, Dennis Gilmore wrote: On Thu, 15 Aug 2013 21:47:09 +0800 feng...@phytium.com.cn wrote: From: David Feng feng...@phytium.com.cn *** BLURB HERE *** Changes for v3: - rewrite cache.S and exception.S that partly originated from linux kernel, so

[U-Boot] merge arm64 to arm

2013-08-16 Thread FengHua
hi tom, hi albert, yes, it's right. the u-boot could be more uniformly and maintainable if merging armv8 to arm architecture. I will try to migrate arm64 to armv8 subarchitecture of arm. do you have any other advice? Regards. David ___

Re: [U-Boot] [PATCH v3 0/5] arm64 patch

2013-08-16 Thread Sharma Bhupesh-B45370
-Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Scott Wood Sent: Saturday, August 17, 2013 1:23 AM To: Dennis Gilmore Cc: tr...@ti.com; u-boot@lists.denx.de; feng...@phytium.com.cn Subject: Re: [U-Boot] [PATCH v3 0/5] arm64