Re: [U-Boot] [PATCH] i2c: Add support for designware i2c controller

2012-03-30 Thread Amit Virdi
Heiko, On 2/27/2012 2:43 PM, Amit VIRDI wrote: From: Vipin KUMARvipin.ku...@st.com Earlier, a driver exists in the u-boot source for designware i2c interface. That driver was specific to spear platforms. This patch implements the i2c controller as a generic driver which can be used by multiple

[U-Boot] [PATCH] i2c:designware Turn off the ctrl when setting the speed

2012-03-30 Thread Amit Virdi
From: Armando Visconti armando.visco...@st.com The designware i2c controller must be turned off before setting the speed in IC_CON register, as stated in the section 6.3.1 of the dw_apb_i2c_db.pdf. Signed-off-by: Michel Sanches michel.sanc...@st.com Signed-off-by: Armando Visconti

[U-Boot] [PATCH] st_smi: Fixed page size for Winbond W25Q128FV flash

2012-03-30 Thread Amit Virdi
From: Armando Visconti armando.visco...@st.com Signed-off-by: Armando Visconti armando.visco...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com --- drivers/mtd/st_smi.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/st_smi.c b/drivers/mtd/st_smi.c index

Re: [U-Boot] [PATCH v2 1/3] mmc: sdhci: fix the wrong operation when response type is R1b

2012-03-30 Thread Jaehoon Chung
On 03/30/2012 02:24 PM, Lei Wen wrote: Hi Jaehoon, On Fri, Mar 30, 2012 at 12:36 PM, Jaehoon Chung jh80.ch...@samsung.com wrote: Hi Lei. First, thanks for implemented the generic sdhci controller. It is my pleasure to share this common code, and I'm glad that it is used for other

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Albert ARIBAUD
Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all, I have been away from the list quite a few days, and will have a very tricky time catching up, so with my apologies, I ask people who need me to apply patches or pull requests for the upcoming release to please send me a private e-mail and

[U-Boot] [PATCH V2 00/24] SPEAr: Update platform support for SPEAr3xx/6xx

2012-03-30 Thread Amit Virdi
This patchset updates the SPEAr support in the u-boot. It contains various bugfixes and enhancements. The patches have certain dependencies on the drivers, so should be applied once the driver patches are frozen. The various drivers on which these patches depend are: 1. USB device controller:

[U-Boot] [PATCH V2 02/24] SPEAr: Eliminate dependency on Xloader table

2012-03-30 Thread Amit Virdi
Xloader table was used primarily to inform u-boot about the DDR size. However, now the ddr size is calculated at runtime which eliminates any need for the Xloader table. So removing this unnecessary code. Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de ---

[U-Boot] [PATCH V2 03/24] SPEAr: Place ethaddr write and read within CONFIG_CMD_NET

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com ethaddr can be optionally read from i2c memory. So, chip_config command supports reading/writing hw mac id into i2c memory. Placing this code within CONFIG_CMD_NET as this would only be needed when network interface is configured Signed-off-by: Vipin Kumar

[U-Boot] [PATCH V2 04/24] SPEAr: Configure network support for spear SoCs

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com --- arch/arm/include/asm/arch-spear/hardware.h |1 + board/spear/spear300/spear300.c| 10 ++ board/spear/spear310/spear310.c| 10

[U-Boot] [PATCH V2 05/24] SPEAr: Add macb driver support for spear310 and spear320

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com SPEAr310 and SPEAr320 SoCs have an extra ethernet controller. The driver for this device is already supported by u-boot, so configuring board configuration file and defining base addresses etc to make use of the common driver Signed-off-by: Vipin Kumar

[U-Boot] [PATCH V2 06/24] SPEAr: Add interface information in initialization

2012-03-30 Thread Amit Virdi
From: Vipin Kumar vipin.ku...@st.com Few Designware peripheral registers need to be modified based on the ethernet interface selected by the board. This patch supports interface information in ethernet driver Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi

[U-Boot] [PATCH V2 07/24] SPEAr: Add basic arch related support for SPEAr SoCs

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com Earlier, architecture specific init code was mixed with board initialization code in board/spear/... This patch updates architecture support for SPEAr in latest u-boot and prints the SoC information. Signed-off-by: Vipin Kumar vipin.ku...@st.com

[U-Boot] [PATCH V2 08/24] SPEAr: Add configuration options for spear3xx and spear6xx boards

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com This patch adds options for all the below mentioned configurations and subsequently renames the include/configs/spearxxx.h files to spear3xx_evb.h, spear6xx_evb.h etc to depict evaluation board configuration. SPEAr3xx and SPEAr6xx boards can be compiled in

[U-Boot] [PATCH V2 09/24] SPEAr: Remove unused flag (CONFIG_SYS_HZ_CLOCK)

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com SPEAr doesn't need CONFIG_SYS_HZ_CLOCK. This commit removes it. Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- include/configs/spear-common.h |1 - 1 files changed, 0

[U-Boot] [PATCH V2 01/24] SPEAr: Fix ARM relocation support

2012-03-30 Thread Amit Virdi
While the u-boot code is running from the flash, it is essential that no access is made to the bss segment. This is due to the fact that .rel.dyn and .bss areas overlap and former contains information used in relocation. In SPEAr, this was not taken into consideration. As a result, while the

[U-Boot] [PATCH V2 11/24] SPEAr: Initialize SNOR in early_board_init_f

2012-03-30 Thread Amit Virdi
flash reading is required earlier than flash_init is called since the env_init is called before flash_init. This makes the smi_init necessary before env_init being called. Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- board/spear/common/spr_misc.c |8

[U-Boot] [PATCH V2 10/24] SPEAr: Change the default environment variables

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com This patch modifies the default environment variables as: 1. Default bootargs: - console=ttyAMA0,115200 - For environment present in NOR flash root=/dev/mtdblock3 - For environment present in NAND flash root=/dev/mtdblock7 - Removes mem= option

[U-Boot] [PATCH V2 13/24] SPEAr: Enable udc and usb-console support only for usbtty configuration

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com This patch enables the UDC and usb-console support only for usbtty configurations Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- include/configs/spear-common.h |3 +++ 1

[U-Boot] [PATCH V2 12/24] SPEAr: Enable usb device high speed support

2012-03-30 Thread Amit Virdi
From: Vipin KUMAR vipin.ku...@st.com This patch enables the support for usb high speed device for spear platform SOCs Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com --- include/configs/spear-common.h |1 + 1 files changed, 1 insertions(+), 0

[U-Boot] [PATCH V2 16/24] SPEAr: Enable CONFIG_SYS_FLASH_PROTECTION

2012-03-30 Thread Amit Virdi
From: Vipin Kumar vipin.ku...@st.com This patch enables flash protection(lock/unlock) for CFI devices. This is necessary because the Parallel NOR flash connected on the spear boards, M28W64, can be locked/unlocked on a sector basis. Moreover, all its sectors are in locked state at reset and these

[U-Boot] [PATCH V2 14/24] SPEAr: Enable autoneg for ethernet

2012-03-30 Thread Amit Virdi
From: Shiraz Hashim shiraz.has...@st.com Enabling autoneg avoids situation on few phys with fixed configuration. For example, in one situation, nfs boot timed out when phy configuration is 100Mbps. In another situtation, when traffic is directed to SPEAr, either thru cross-cable or thru switch,

[U-Boot] [PATCH V2 17/24] SPEAr: Correct the definition of CONFIG_SYS_MONITOR_BASE

2012-03-30 Thread Amit Virdi
From: Vipin Kumar vipin.ku...@st.com The below text is copy pasted from README - CONFIG_SYS_MONITOR_BASE: Physical start address of boot monitor code (set by make config files to be same as the text base address (TEXT_BASE) used when linking) - same as

[U-Boot] [PATCH V2 18/24] SPEAr: Enable CONFIG_SYS_FLASH_EMPTY_INFO macro

2012-03-30 Thread Amit Virdi
From: Vipin Kumar vipin.ku...@st.com Enable CONFIG_SYS_FLASH_EMPTY_INFO macro to enable reporting of empty sector information through flinfo command. Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de ---

[U-Boot] [PATCH V2 20/24] SPEAr: Remove CONFIG_MTD_NAND_VERIFY_WRITE to speed up NAND access

2012-03-30 Thread Amit Virdi
When CONFIG_MTD_NAND_VERIFY_WRITE is defined, nand driver read back the data everytime it writes. This process unnecessarily slows down the nand access. Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- include/configs/spear-common.h |1 - 1 files changed, 0

[U-Boot] [PATCH V2 15/24] SPEAr: Enable dcache for fast file transfer

2012-03-30 Thread Amit Virdi
From: Shiraz Hashim shiraz.has...@st.com Enable data cache with 1:1 mapping of DDR to enable fast file transfer over tty which was doing lot of copy. This feature is enabled only for flashing operation i.e. when CONFIG_SPEAR_USBTTY is enabled. This has been tested on SPEAr320, SPEAr600 and

[U-Boot] [PATCH V2 21/24] SPEAr: explicitly select clk src for UART

2012-03-30 Thread Amit Virdi
From: Shiraz Hashim shiraz.has...@st.com UART in u-boot intends to run on 48MHz clock supplied by USB PLL. Explicitly select the intended clock source. Signed-off-by: Shiraz Hashim shiraz.has...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de ---

[U-Boot] [PATCH V2 19/24] SPEAr: Enable ONFI nand flash detection for spear3xx and 6xx and evb

2012-03-30 Thread Amit Virdi
From: Vipin Kumar vipin.ku...@st.com Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- include/configs/spear-common.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH V2 22/24] SPEAr: Correct SoC ID offset in misc configuration space

2012-03-30 Thread Amit Virdi
From: Shiraz Hashim shiraz.has...@st.com SoC Core ID offset is 0x30 in miscellaneous configuration address space. It was wrongly mentioned as periph2 clk enable. Signed-off-by: Shiraz Hashim shiraz.has...@st.com Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de ---

[U-Boot] [PATCH V2 23/24] cleanup/SPEAr: Remove unnecessary parenthesis

2012-03-30 Thread Amit Virdi
In SPEAr configuration files, unnecessary paranthesis are used in some \#defines. Remove them as they serve no purpose Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- arch/arm/include/asm/arch-spear/spr_gpt.h |4 ++-- include/configs/spear-common.h

[U-Boot] [PATCH V2 24/24] cleanup/SPEAr: Define configuration flags more elegantly

2012-03-30 Thread Amit Virdi
In SPEAr, some of the configuration flags eg. CONFIG_SPEAR_EMI, were given value 1, which isn't required. Define the flags without assigning any value Signed-off-by: Amit Virdi amit.vi...@st.com Acked-by: Stefan Roese s...@denx.de --- include/configs/spear-common.h | 16

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Albert ARIBAUD
Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all, I have been away from the list quite a few days, and will have a very tricky time catching up, so with my apologies, I ask people who need me to apply patches or pull requests for the upcoming release to please send me a private e-mail and

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

2012-03-30 Thread Albert ARIBAUD
Hi Wolfgang, The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2: Merge branch 'master' of git://git.denx.de/u-boot-cfi-flash (2012-03-23 21:59:16 +0100) are available in the git repository at: git://git.denx.de/u-boot-arm master Anatolij Gustschin (4):

Re: [U-Boot] [PATCH 4/5] ARM: EXYNOS: support EXYNOS display driver

2012-03-30 Thread Minkyu Kang
Donghwa, On 30 March 2012 10:59, Donghwa Lee dh09@samsung.com wrote: This patch is for EXYNOS Display driver. Signed-off-by: Donghwa Lee dh09@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---  

Re: [U-Boot] [PATCH 5/5] ARM: EXYNOS: add Makefile for exynos display driver

2012-03-30 Thread Minkyu Kang
On 30 March 2012 10:59, Donghwa Lee dh09@samsung.com wrote: Update Makefile for EXYNOS display driver. Signed-off-by: Donghwa Lee dh09@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---  drivers/video/Makefile |    1 +

Re: [U-Boot] [PATCH 3/5] ARM: EXYNOS: add exynos lcd clock interface

2012-03-30 Thread Minkyu Kang
Donghwa, On 30 March 2012 10:59, Donghwa Lee dh09@samsung.com wrote: To get lcd source clock in EXYNOS display driver, added get_lcd_clk() interface. Signed-off-by: Donghwa Lee dh09@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by: Kyungmin Park

Re: [U-Boot] [PATCH 2/5]: ARM: EXYNOS: add data structure for EXYNOS display driver

2012-03-30 Thread Minkyu Kang
On 30 March 2012 10:59, Donghwa Lee dh09@samsung.com wrote: add vidinfo data structure for EXYNOS display driver. Signed-off-by: Donghwa Lee dh09@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---  include/lcd.h |   63

[U-Boot] BDI2000 config file for mx35pdk

2012-03-30 Thread Gabriel Tisan
Hi ! Does someone has a working BDI2000 configuration file for Freescale's mx35pdk ? Thanks ! Gabriel ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2] lsxl: add support for lschlv2 and lsxhl

2012-03-30 Thread Prafulla Wadaskar
-Original Message- From: Michael Walle [mailto:mich...@walle.cc] Sent: 29 March 2012 20:09 To: Prafulla Wadaskar Cc: u-boot@lists.denx.de Subject: Re: [PATCH v2] lsxl: add support for lschlv2 and lsxhl Am Donnerstag 29 März 2012, 16:24:23 schrieb Prafulla Wadaskar:

Re: [U-Boot] [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release

2012-03-30 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: 29 March 2012 21:15 To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; Gerlando Falauto; Holger Brunck Subject: Re: [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release Hi

Re: [U-Boot] [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release

2012-03-30 Thread Valentin Longchamp
Hi Prafulla, For the simplicity of the discussion, I have removed everything in the discussion that is not relevant for the current open point. On 03/30/2012 01:34 PM, Prafulla Wadaskar wrote: In Kirkwood specific claim_bus API, you will backup default configuration (which is NF in your case)

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Gerlando Falauto
On 03/29/2012 10:19 PM, Marek Vasut wrote: Dear Gerlando Falauto, WD prodded me too long to review this patchset ;-D Well, better late than never! ;-) [...] +#if defined(CONFIG_CMD_NET) + else if (strcmp(name, bootfile) == 0) { + copy_filename(BootFile, newval,

Re: [U-Boot] [PATCH v2 3/3] env: make env default selective, check and apply

2012-03-30 Thread Gerlando Falauto
On 03/29/2012 10:25 PM, Marek Vasut wrote: Dear Gerlando Falauto, Changes in the syntax (user API) for env default: -f: override write-once variables -a: all (resetting the whole env is NOT the default behavior) Signed-off-by: Gerlando Falautogerlando.fala...@keymile.com I have to

Re: [U-Boot] [PATCH v2 2/3] mmc: use sdhci.c intead of s5p_mmc.c

2012-03-30 Thread Minkyu Kang
On 30 March 2012 11:39, Jaehoon Chung jh80.ch...@samsung.com wrote: In driver mmc, generic sdhci code is implemented. s5p_mmc file  is dupulicated. we are good that use the generic sdhci. This patch supported the sdhci  for Samsung-SoC. Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com

Re: [U-Boot] [PATCH v2 3/3] ARM: SAMSUNG: support sdhci controller

2012-03-30 Thread Minkyu Kang
On 30 March 2012 11:39, Jaehoon Chung jh80.ch...@samsung.com wrote: To support sdhci controller, remove the CONFIG_S5P_MMC.. Instead, use the CONFIG_S5P_SDHCI/CONFIG_SDHCI. Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---  

Re: [U-Boot] [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release

2012-03-30 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: 30 March 2012 17:45 To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; Gerlando Falauto; Holger Brunck Subject: Re: [PATCH v2] spi/kirkwood: add weak functions board_spi_bus_claim/release Hi

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Marek Vasut
Dear Gerlando Falauto, On 03/29/2012 10:19 PM, Marek Vasut wrote: Dear Gerlando Falauto, WD prodded me too long to review this patchset ;-D Well, better late than never! ;-) [...] +#if defined(CONFIG_CMD_NET) + else if (strcmp(name, bootfile) == 0) { +

Re: [U-Boot] [PATCH v2 3/3] env: make env default selective, check and apply

2012-03-30 Thread Marek Vasut
Dear Gerlando Falauto, On 03/29/2012 10:25 PM, Marek Vasut wrote: Dear Gerlando Falauto, Changes in the syntax (user API) for env default: -f: override write-once variables -a: all (resetting the whole env is NOT the default behavior) Signed-off-by: Gerlando

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Simon Glass
+Marek Hi Albert, On Fri, Mar 30, 2012 at 12:08 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all, I have been away from the list quite a few days, and will have a very tricky time catching up, so with my apologies, I ask people who

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Gerlando Falauto
On 03/30/2012 03:08 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/29/2012 10:19 PM, Marek Vasut wrote: Dear Gerlando Falauto, WD prodded me too long to review this patchset ;-D Well, better late than never! ;-) [...] +#if defined(CONFIG_CMD_NET) + else if (strcmp(name,

Re: [U-Boot] [PATCH v2 3/3] env: make env default selective, check and apply

2012-03-30 Thread Gerlando Falauto
On 03/30/2012 03:09 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/29/2012 10:25 PM, Marek Vasut wrote: Dear Gerlando Falauto, Changes in the syntax (user API) for env default: -f: override write-once variables -a: all (resetting the whole env is NOT the default behavior)

[U-Boot] [PATCH] post: remove #warning for kirkwood CPUs

2012-03-30 Thread Valentin Longchamp
Since commit 96f5c4b the needed functions (get_ticks() and get_tbclk() ) are defined for kirkwood CPUs as well. This warning is then not relevant anymore. Signed-off-by: Valentin Longchamp valentin.longch...@keymile.com cc: Holger Brunck holger.bru...@keymile.com cc: Prafulla Wadaskar

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Valentin Longchamp
Hi Albert, On 03/30/2012 09:08 AM, Albert ARIBAUD wrote: Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all, I have been away from the list quite a few days, and will have a very tricky time catching up, so with my apologies, I ask people who need me to apply patches or pull requests for

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Marek Vasut
Dear Simon Glass, +Marek Hi Albert, On Fri, Mar 30, 2012 at 12:08 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all, I have been away from the list quite a few days, and will have a very tricky time catching up, so

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Marek Vasut
Dear Gerlando Falauto, On 03/30/2012 03:08 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/29/2012 10:19 PM, Marek Vasut wrote: Dear Gerlando Falauto, WD prodded me too long to review this patchset ;-D Well, better late than never! ;-) [...] +#if

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Simon Glass
Hi Marek, On Fri, Mar 30, 2012 at 6:52 AM, Marek Vasut ma...@denx.de wrote: Dear Simon Glass, +Marek Hi Albert, On Fri, Mar 30, 2012 at 12:08 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all, I have been away from the list

Re: [U-Boot] [PATCH v2] lsxl: add support for lschlv2 and lsxhl

2012-03-30 Thread Michael Walle
Hi Prafulla, [ I'm CCing Wolfgang on this, because i don't know who's responsible for the build/make infrastructure. ] AFAIK, you need to pass only u-boot.kwb to the make (no $(okj) needed) Sorry you're wrong here, that won't work for out-of-tree builds, see below. [mw@thanatos b-u-boot]$

[U-Boot] [PATCH] km_arm: use filesize for erase in update command

2012-03-30 Thread Valentin Longchamp
We used to have an arbitrary value, which can be a problem if we have a u-boot image that is bigger than this value. This patch is dependant on the whole km/arm series and will be included in the v3 of the series if there is one. Signed-off-by: Valentin Longchamp valentin.longch...@keymile.com

[U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Anatolij Gustschin
Since commit 5c1ad3e6f8ae578bbe30e09652f1531e9bc22031 (net: fec_mxc: allow use with cache enabled) the FEC_MXC driver uses flush_dcache_range() and invalidate_dcache_range() functions. This driver is also configured for ARM1136 based 'flea3' and 'mx35pdk' boards which currently do not build as

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Gerlando Falauto
On 03/30/2012 03:55 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/30/2012 03:08 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/29/2012 10:19 PM, Marek Vasut wrote: [...] + return 0; + } +#endif + return 0; +} + [...] --- a/include/search.h +++

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

2012-03-30 Thread Tom Rini
On Thu, Mar 29, 2012 at 10:35 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Tom, Le 30/03/2012 02:58, Tom Rini a écrit : On Thu, Mar 29, 2012 at 4:51 PM, Albert ARIBAUD albert.u.b...@aribaud.net  wrote: Hi Tom, Le 29/03/2012 20:01, Tom Rini a écrit : On Wed, Mar 28, 2012 at

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Stefano Babic
On 30/03/2012 16:02, Anatolij Gustschin wrote: Since commit 5c1ad3e6f8ae578bbe30e09652f1531e9bc22031 Hi Antolji, (net: fec_mxc: allow use with cache enabled) the FEC_MXC driver uses flush_dcache_range() and invalidate_dcache_range() functions. This driver is also configured for ARM1136 based

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Marek Vasut
Dear Gerlando Falauto, On 03/30/2012 03:55 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/30/2012 03:08 PM, Marek Vasut wrote: Dear Gerlando Falauto, On 03/29/2012 10:19 PM, Marek Vasut wrote: [...] + return 0; + } +#endif + return 0; +} +

Re: [U-Boot] [ARM] Status for 2012.03

2012-03-30 Thread Marek Vasut
Dear Simon Glass, Hi Marek, On Fri, Mar 30, 2012 at 6:52 AM, Marek Vasut ma...@denx.de wrote: Dear Simon Glass, +Marek Hi Albert, On Fri, Mar 30, 2012 at 12:08 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 27/03/2012 22:18, Albert ARIBAUD a écrit : Hi all,

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Anatolij Gustschin
Hi Stefano, On Fri, 30 Mar 2012 16:20:19 +0200 Stefano Babic sba...@denx.de wrote: On 30/03/2012 16:02, Anatolij Gustschin wrote: Since commit 5c1ad3e6f8ae578bbe30e09652f1531e9bc22031 Hi Antolji, (net: fec_mxc: allow use with cache enabled) the FEC_MXC driver uses

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Stefano Babic
On 30/03/2012 16:35, Anatolij Gustschin wrote: Hi Stefano, On Fri, 30 Mar 2012 16:20:19 +0200 Stefano Babic sba...@denx.de wrote: On 30/03/2012 16:02, Anatolij Gustschin wrote: Since commit 5c1ad3e6f8ae578bbe30e09652f1531e9bc22031 Hi Antolji, (net: fec_mxc: allow use with cache

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Marek Vasut
Dear Stefano Babic, On 30/03/2012 16:35, Anatolij Gustschin wrote: Hi Stefano, On Fri, 30 Mar 2012 16:20:19 +0200 Stefano Babic sba...@denx.de wrote: On 30/03/2012 16:02, Anatolij Gustschin wrote: Since commit 5c1ad3e6f8ae578bbe30e09652f1531e9bc22031 Hi Antolji, (net:

Re: [U-Boot] ext2 file system performance

2012-03-30 Thread Jason
On Thu, Mar 15, 2012 at 09:20:34PM -0400, jonsm...@gmail.com wrote: The ext2 file system code is reading the kernel image off from my SD card one sector at a time. Of course this takes 61 seconds to get the kernel in to memory. Loading the same kernel off from the same SD on FAT takes less

[U-Boot] zImage and raw ramdisk support -- test

2012-03-30 Thread Marek Vasut
Guys, I need final test on as much platforms as possible. Can you please run these two following patches and tell me if they work with zImage and raw ramdisk for you? http://patchwork.ozlabs.org/patch/146848/ http://patchwork.ozlabs.org/patch/147440/ I can't promise they will make it to this

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Anatolij Gustschin
Hi, On Fri, 30 Mar 2012 17:28:03 +0200 Marek Vasut ma...@denx.de wrote: ... I pulled u-boot-arm.git master for build tests and see this change on the FEC driver in resulting tree. However, Albert has sent a report http://www.mail-archive.com/u-boot@lists.denx.de/msg80566.html a

[U-Boot] [PATCH] mx28evk: fix build error

2012-03-30 Thread Anatolij Gustschin
Fix: drivers/mmc/libmmc.o: In function `mxsmmc_send_cmd': /home/ag/git/u-boot/drivers/mmc/mxsmmc.c:210: undefined reference to `mxs_dma_desc_append' /home/ag/git/u-boot/drivers/mmc/mxsmmc.c:211: undefined reference to `mxs_dma_go' drivers/mmc/libmmc.o: In function `mxsmmc_initialize':

Re: [U-Boot] [PATCH] mx28evk: fix build error

2012-03-30 Thread Fabio Estevam
On Fri, Mar 30, 2012 at 12:45 PM, Anatolij Gustschin ag...@denx.de wrote: Fix: drivers/mmc/libmmc.o: In function `mxsmmc_send_cmd': /home/ag/git/u-boot/drivers/mmc/mxsmmc.c:210: undefined reference to `mxs_dma_desc_append' /home/ag/git/u-boot/drivers/mmc/mxsmmc.c:211: undefined reference to

Re: [U-Boot] [PATCH v2 1/3] mmc: sdhci: fix the wrong operation when response type is R1b

2012-03-30 Thread Lei Wen
Hi Jaehoon, On Fri, Mar 30, 2012 at 2:23 PM, Jaehoon Chung jh80.ch...@samsung.com wrote: On 03/30/2012 02:24 PM, Lei Wen wrote: Hi Jaehoon, On Fri, Mar 30, 2012 at 12:36 PM, Jaehoon Chung jh80.ch...@samsung.com wrote: Hi Lei. First, thanks for implemented the generic sdhci controller.

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Stefano Babic
On 30/03/2012 17:28, Marek Vasut wrote: However, Albert has sent a report http://www.mail-archive.com/u-boot@lists.denx.de/msg80566.html a none of these boards was broken. But I see now that other boards are affected (the mx28evk does not compile due to missing CONFIG_APBH_DMA). Fabio,

Re: [U-Boot] Please pull u-boot-sh/master

2012-03-30 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message CABMQnVKnWXQdQVzu3605WSh2T=z2Sz16SP=vflbffq4kfzl...@mail.gmail.com you wrote: Dear Wolfgang Denk. Please pull u-boot-sh/master. The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2= : Merge branch 'master' of

Re: [U-Boot] Pull request - microblaze

2012-03-30 Thread Wolfgang Denk
Dear Michal Simek, In message 4f71b03a.8050...@monstr.eu you wrote: Dear Wolfgang Denk, Please pull this one patch when merge window is open. Thanks, Michal The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2: Wolfgang Denk (1): Merge branch

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Marek Vasut
Dear Stefano Babic, On 30/03/2012 17:28, Marek Vasut wrote: However, Albert has sent a report http://www.mail-archive.com/u-boot@lists.denx.de/msg80566.html a none of these boards was broken. But I see now that other boards are affected (the mx28evk does not compile due to missing

Re: [U-Boot] [PATCH] mx6qsabrelite: Fix the serial console port

2012-03-30 Thread Fabio Estevam
Hi Stefano, On Wed, Mar 28, 2012 at 4:45 PM, Fabio Estevam fabio.este...@freescale.com wrote: On mx6qsabrelite the console is ttymxc1. Signed-off-by: Fabio Estevam fabio.este...@freescale.com Along with the mx28 README patches, this one would be nice to get into 12.03 as well. Thanks, Fabio

Re: [U-Boot] [PATCH] ARM1136: add cache flush and invalidate operations

2012-03-30 Thread Stefano Babic
On 30/03/2012 18:05, Marek Vasut wrote: I am testing Anatolij's patch on mx35pdk. TFTP from server 192.168.2.14; our IP address is 192.168.2.97 Filename 'mx35pdk/uImage'. Load address: 0x8080 Loading: Misaligned cache operation [8fe726e8, 8fe72728] However, data is correctly loaded. I

Re: [U-Boot] [PATCH] post: remove #warning for kirkwood CPUs

2012-03-30 Thread Wolfgang Denk
Dear Valentin Longchamp, In message 1333114168-7151-1-git-send-email-valentin.longch...@keymile.com you wrote: Since commit 96f5c4b the needed functions (get_ticks() and get_tbclk() ) are defined for kirkwood CPUs as well. This warning is then not relevant anymore. Signed-off-by: Valentin

Re: [U-Boot] ext2 file system performance

2012-03-30 Thread jonsm...@gmail.com
Much better 3.5 seconds versus the old 61 seconds. It is still slower than FAT which can load in less than one second. Can those 40 sequential reads starting at 1034 be combined? Read trace from EXT2. EA3131-NXP # ext2load mmc 0:3 0x3000 uImage Loading file uImage from mmc device 0:3

Re: [U-Boot] [PATCH v2 1/3] env: unify logic to check and apply changes

2012-03-30 Thread Gerlando Falauto
On 03/30/2012 03:00 PM, Gerlando Falauto wrote: On 03/29/2012 10:19 PM, Marek Vasut wrote: [...] +#if defined(CONFIG_CMD_NET) + else if (strcmp(name, bootfile) == 0) { + copy_filename(BootFile, newval, sizeof(BootFile)); Can you remove the camel-case here please? That's code I just moved

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

2012-03-30 Thread Anatolij Gustschin
Hello Wolfgang, Please pull various fixes and patches that have been submitted before merge window was closed. There is one patch from me, I know that I may not push my own patches through the staging tree. But this patch is trivial and has been acked by two people, so I hope this is okay. The

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

2012-03-30 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message 4f755c4a.5090...@aribaud.net you wrote: Hi Wolfgang, The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2: Merge branch 'master' of git://git.denx.de/u-boot-cfi-flash (2012-03-23 21:59:16 +0100) are available in the git

[U-Boot] [PATCH v2] OMAP: Move omap1510inn to Unmaintained / Orphaned

2012-03-30 Thread Tom Rini
After removing omap1610inn for not building, move omap1510inn to orphaned as it had the same maintainer. Signed-off-by: Tom Rini tr...@ti.com --- MAINTAINERS |7 +++ 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 72f8b64..708ded7 100644 ---

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

2012-03-30 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message 20120330192423.3cd8e85c@wker you wrote: Hello Wolfgang, Please pull various fixes and patches that have been submitted before merge window was closed. There is one patch from me, I know that I may not push my own patches through the staging tree. But this

Re: [U-Boot] [PATCH v2 02/20] i2c: Add TPS6586X driver

2012-03-30 Thread Simon Glass
Hi Heiko, On Sat, Jan 14, 2012 at 11:30 PM, Heiko Schocher h...@denx.de wrote: Hello Simon, Simon Glass wrote: This power management chip supports battery charging and a large number of power supplies. This initial driver only provides the ability to adjust the two synchronous buck

Re: [U-Boot] [PATCH v2 0/20] tegra: warmboot (suspend / resume) support

2012-03-30 Thread Simon Glass
+Nvidia warmboot authors Hi Tom, On Sat, Jan 14, 2012 at 8:06 PM, Mike Frysinger vap...@gentoo.org wrote: there are a few patches here where the Author hasn't provided his s-o-b tag, so that'll need fixing ... -mike I am going to post a new v3 series - can you please organise people to

Re: [U-Boot] zImage and raw ramdisk support -- test

2012-03-30 Thread Robert Nelson
On Fri, Mar 30, 2012 at 10:38 AM, Marek Vasut marek.va...@gmail.com wrote: Guys, I need final test on as much platforms as possible. Can you please run these two following patches and tell me if they work with zImage and raw ramdisk for you? http://patchwork.ozlabs.org/patch/146848/

Re: [U-Boot] [PATCH] drivers/mmc/tegra2_mmc.c: fix GCC 4.6 warning

2012-03-30 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message 1332942000-4992-1-git-send-email-ag...@denx.de you wrote: Fix: tegra2_mmc.c: In function 'mmc_send_cmd': tegra2_mmc.c:230:3: warning: 'mask' may be used uninitialized in this function [-Wuninitialized] Signed-off-by: Anatolij Gustschin ag...@denx.de Cc:

Re: [U-Boot] [PATCH] drivers/mmc/mmc.c: Fix build warning

2012-03-30 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message 1333005872-4325-1-git-send-email-ag...@denx.de you wrote: Fix: mmc.c: In function 'mmc_bounce_buffer_start': mmc.c:132:13: warning: no return statement in function returning non-void [-Wreturn-type] Signed-off-by: Anatolij Gustschin ag...@denx.de Cc:

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

2012-03-30 Thread Marek Vasut
The following changes since commit 7cb30b13f12077c7eec8ce2419cd96cd65ace8e2: Merge branch 'master' of git://git.denx.de/u-boot-cfi-flash (2012-03-23 21:59:16 +0100) are available in the git repository at: git://git.denx.de/u-boot-usb.git master for you to fetch changes up to

Re: [U-Boot] zImage and raw ramdisk support -- test

2012-03-30 Thread Marek Vasut
Dear Robert Nelson, On Fri, Mar 30, 2012 at 10:38 AM, Marek Vasut marek.va...@gmail.com wrote: Guys, I need final test on as much platforms as possible. Can you please run these two following patches and tell me if they work with zImage and raw ramdisk for you?

Re: [U-Boot] [PATCH] command, log: print with log show a full logbuffer

2012-03-30 Thread Wolfgang Denk
Dear Heiko Schocher, In message 1329390141-5356-1-git-send-email...@denx.de you wrote: If the logbuffer contains LOGBUFF_LEN chars, they never got printed with the log show command, because chars get printed with the following for loop: for (i = 0; i (size LOGBUFF_MASK); i++) { with

Re: [U-Boot] [PATCH v2 1/2] cosmetic: command, log: Coding Style cleanup

2012-03-30 Thread Wolfgang Denk
Dear Heiko Schocher, In message 1329724730-22694-1-git-send-email...@denx.de you wrote: Signed-off-by: Heiko Schocher h...@denx.de Acked-by: Detlev Zundel d...@denx.de --- - changes for v2: add cosmetic prefix as Detlev Zundel suggested. common/cmd_log.c | 98

[U-Boot] standalone hello_world example crashes on PowerPC

2012-03-30 Thread Manukumar
I have also experienced the same problem, by using command md.w E8008080 10. according to our memory map of our custom board. please give solution or what is the cause for this problem. manukumar signal-networks ___ U-Boot mailing list

Re: [U-Boot] [PATCH 2/2] command, log: print log-v2.con value in the log info command

2012-03-30 Thread Wolfgang Denk
Dear Heiko Schocher, In message 1329294067-4472-2-git-send-email...@denx.de you wrote: print in the log info command, if log_version = 2 also the value from log-v2.con. Signed-off-by: Heiko Schocher h...@denx.de --- [hs@pollux u-boot]$ ./tools/checkpatch.pl

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

2012-03-30 Thread Anatolij Gustschin
Hello Wolfgang, On Fri, 24 Feb 2012 11:39:24 +0800 Thomas Chou tho...@wytron.com.tw wrote: Dear Wolfgang, The following changes since commit 2acca35ce4604dcef933f07d90aa9c9c930e1049: Merge branch 'master' of git://git.denx.de/u-boot-mmc (2012-02-17 23:54:46 +0100) are available in

Re: [U-Boot] [PATCH V4] MAKEALL: Add -m/-M option to determine maintainers

2012-03-30 Thread Wolfgang Denk
Dear Marek Vasut, In message 1330996251-24214-1-git-send-email-ma...@denx.de you wrote: The -m option tries to find the board in MAINTAINERS file and figure out the email. The -M option lists boards including their maintainers emails and all affiliated emails. There are multiple strategies

Re: [U-Boot] [PATCH 2/2] Add support for loading and saving the environment to a FAT partition

2012-03-30 Thread Wolfgang Denk
Dear Maximilian Schwerin, In message 1331632670-14874-2-git-send-email-...@tigris.de you wrote: The following must be defined: CONFIG_ENV_IS_IN_FAT Enable this saving environment to FAT. FAT_ENV_INTERFACE Interface the FAT resides on (e.g. mmc). FAT_ENV_DEVICE The

Re: [U-Boot] [PATCH 1/2] pci: get rid of local prototypes

2012-03-30 Thread Wolfgang Denk
Dear Linus Walleij, In message 1332713585-11084-1-git-send-email-linus.wall...@linaro.org you wrote: two boards were redeclaring pciauto_region_allocate() in their local scope for no obvious reason, the function is in pci.h anyway, this is probably just copying artifacts and old cruft.

  1   2   >