Re: [U-Boot] [PATCH resend] usbh/ehci: Increase timeout for enumeration

2012-12-06 Thread Igor Grinberg
On 12/06/12 08:30, Vipin Kumar wrote: Few pen drives take longer than usual for enumeration. The u-boot unlike linux does not depend on interrupts and works in polling and timeout mode. This patch increases this timeout to increase the set of usb sticks that can be enumerated by u-boot

Re: [U-Boot] [PATCH resend 7/7] mtd/st_smi: Add mtd support for smi

2012-12-06 Thread Stefan Roese
On 12/06/2012 07:21 AM, Vipin Kumar wrote: This patch adds mtd device support for smi devices Signed-off-by: Vipin Kumar vipin.ku...@st.com --- drivers/mtd/st_smi.c | 167 ++- 1 file changed, 165 insertions(+), 2 deletions(-) diff --git

Re: [U-Boot] [PATCH resend] spi/arm-pl022: Add support for ARM PL022 spi controller

2012-12-06 Thread Stefan Roese
(Added Mike to Cc) On 12/06/2012 07:56 AM, Vipin Kumar wrote: From: Armando Visconti armando.visco...@st.com This patch adds the support for the ARM PL022 SPI controller for the standard variant (0x00041022), which has a 16bit wide and 8 locations deep TX/RX FIFO. Signed-off-by: Armando

Re: [U-Boot] [PATCH resend 1/7] mtd/st_smi: Clear error flags while initiating a fresh write

2012-12-06 Thread Vipin Kumar
On 12/6/2012 1:07 PM, Stefan Roese wrote: On 12/06/2012 07:21 AM, Vipin Kumar wrote: SMI controller reports an error when the code tries to write on the flash area with Write Enable command not issued or the bank has come out of the write mode. This error is reported even with a fresh write

Re: [U-Boot] [PATCH resend 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Vipin Kumar
On 12/6/2012 1:05 PM, Stefan Roese wrote: Hi Vipin, On 12/06/2012 07:21 AM, Vipin Kumar wrote: Hello, This patch-set adds simple fixes for smi driver used in spear devices. Modifications include - Add MTD support for smi driver - Write to flash in a tight loop - Alphabetically sort the list

[U-Boot] [PATCH] spi: atmel: sam9m10g45 also support WDRBT bit

2012-12-06 Thread Bo Shen
The at91sam9m10g45 also support WDRBT bit, add support for it Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/spi/atmel_spi.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index c7a51f7..ce7d460 100644 ---

Re: [U-Boot] [PATCH resend 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Stefan Roese
On 12/06/2012 09:19 AM, Vipin Kumar wrote: Since I'm the CFI (NOR parallel) flash custodian, I can take these patches through my repository as well. If there is a dependency with some of your platforms patches, then the patches can go through your ST repo as well, after successful review.

Re: [U-Boot] [PATCH resend 7/7] mtd/st_smi: Add mtd support for smi

2012-12-06 Thread Vipin Kumar
On 12/6/2012 1:32 PM, Stefan Roese wrote: On 12/06/2012 07:21 AM, Vipin Kumar wrote: This patch adds mtd device support for smi devices Signed-off-by: Vipin Kumarvipin.ku...@st.com --- drivers/mtd/st_smi.c | 167 ++- 1 file changed, 165

[U-Boot] [PATCH v2 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Vipin Kumar
Modifications in v2 (Review comments incorporation) - Use setbits_le32 and clrbits_le32 whereever applicable in patch-set - Define smi_mtd_init() routine irrespective of CONFIG_MTD_DEVICE Modifications in v1 - Add MTD support for smi driver - Write to flash in a tight loop - Alphabetically sort

[U-Boot] [PATCH v2 1/7] mtd/st_smi: Clear error flags while initiating a fresh write

2012-12-06 Thread Vipin Kumar
SMI controller reports an error when the code tries to write on the flash area with Write Enable command not issued or the bank has come out of the write mode. This error is reported even with a fresh write once the ERF1 or ERF2 is set. Clear these flags while initiating a fresh write

[U-Boot] [PATCH v2 2/7] mtd/st_smi: Rearrange the supported devices in alphabetical order

2012-12-06 Thread Vipin Kumar
Signed-off-by: Vipin Kumar vipin.ku...@st.com Acked-by: Stefan Roese s...@denx.de --- drivers/mtd/st_smi.c | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/mtd/st_smi.c b/drivers/mtd/st_smi.c index 63b10fc..30bfa3f 100644 ---

[U-Boot] [PATCH v2 3/7] mtd/st_smi: Add support for Micron N25Q128 Flash

2012-12-06 Thread Vipin Kumar
From: Armando Visconti armando.visco...@st.com Signed-off-by: Vipin Kumar vipin.ku...@st.com Signed-off-by: Armando Visconti armando.visco...@st.com Acked-by: Stefan Roese s...@denx.de --- drivers/mtd/st_smi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/st_smi.c

[U-Boot] [PATCH v2 4/7] mtd/st_smi: Avoid issuing multiple WE commands

2012-12-06 Thread Vipin Kumar
At the start of an smi_write, if the destination address is page aligned, the Write Enable command is getting issued twice. This patch fixes it by keeping a flag. Signed-off-by: Vipin Kumar vipin.ku...@st.com Acked-by: Stefan Roese s...@denx.de --- drivers/mtd/st_smi.c | 13 + 1 file

[U-Boot] [PATCH v2 5/7] mtd/st_smi: Write to flash in a tight loop

2012-12-06 Thread Vipin Kumar
The write loop is checking for dest_addr alignment with page size. This sometimes leads to smi controller coming out of write mode and eventually the next write failing with ERF1 being set. To avoid this, write to flash in a tight loop and write bytewise to also support not word aligned data

[U-Boot] [PATCH v2 7/7] mtd/st_smi: Add mtd support for smi

2012-12-06 Thread Vipin Kumar
This patch adds mtd device support for smi devices Signed-off-by: Vipin Kumar vipin.ku...@st.com --- drivers/mtd/st_smi.c | 167 ++- 1 file changed, 166 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/st_smi.c b/drivers/mtd/st_smi.c index

[U-Boot] [PATCH v2 6/7] mtd/st_smi: Use page sizes respective to flash

2012-12-06 Thread Vipin Kumar
The page size is a flash dependent property and the driver was using a macro in place of page size. This patch uses the proper page size wrt the flash device connected on board Signed-off-by: Vipin Kumar vipin.ku...@st.com Acked-by: Stefan Roese s...@denx.de --- drivers/mtd/st_smi.c | 41

Re: [U-Boot] [PATCH resend 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Vipin Kumar
On 12/6/2012 2:02 PM, Stefan Roese wrote: On 12/06/2012 09:19 AM, Vipin Kumar wrote: Since I'm the CFI (NOR parallel) flash custodian, I can take these patches through my repository as well. If there is a dependency with some of your platforms patches, then the patches can go through your ST

Re: [U-Boot] [PATCH resend] usbh/ehci: Increase timeout for enumeration

2012-12-06 Thread Vipin Kumar
On 12/6/2012 1:06 PM, Igor Grinberg wrote: On 12/06/12 08:58, Vipin Kumar wrote: On 12/6/2012 12:17 PM, Igor Grinberg wrote: On 12/06/12 08:30, Vipin Kumar wrote: Few pen drives take longer than usual for enumeration. The u-boot unlike linux does not depend on interrupts and works in polling

Re: [U-Boot] [PATCH v2 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Vipin Kumar
Hello Stefan, As you can see, I have added your Acked-by to patches 2, 3, 4, 6 The reset are still pending. If you can quickly close them, I can send a pull-request for these patches Thanks for a fast review Regards Vipin On 12/6/2012 2:17 PM, Vipin KUMAR wrote: Modifications in v2 (Review

[U-Boot] [PATCH resend] armv7/ltimer: Add support for local timer on armv7 cpus

2012-12-06 Thread Vipin Kumar
Certain ARMV7 cpus eg. CortexA9 contains a local and a global timer within the CPU core itself. This patch adds generic support for local timer. Signed-off-by: Vipin Kumar vipin.ku...@st.com --- arch/arm/cpu/armv7/Makefile | 11 ++- arch/arm/cpu/armv7/ca9_ltimer.c | 152

[U-Boot] [PATCH resend 1/2] u-boot/spl: Add u-boot-spl.img to u-boot targets

2012-12-06 Thread Vipin Kumar
Signed-off-by: Vipin Kumar vipin.ku...@st.com --- Makefile | 10 ++ 1 file changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 8a04727..7f416f4 100644 --- a/Makefile +++ b/Makefile @@ -499,6 +499,13 @@ $(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin

[U-Boot] [PATCH resend 2/2] arm/boards: Define a new config option CONFIG_BOOT_PARAMS_P

2012-12-06 Thread Vipin Kumar
A lot of ARM boards are using board_init routine just to initialize boot_params variable in the global data structure. This patch lets the board config files to define a CONFIG_BOOT_PARAMS_P option which is assigned to gd-bd-bi_boot_params automatically Consequently, many board_init routines

Re: [U-Boot] [PATCH resend 2/2] arm/boards: Define a new config option CONFIG_BOOT_PARAMS_P

2012-12-06 Thread Stefan Roese
On 12/06/2012 10:29 AM, Vipin Kumar wrote: A lot of ARM boards are using board_init routine just to initialize boot_params variable in the global data structure. This patch lets the board config files to define a CONFIG_BOOT_PARAMS_P option which is assigned to gd-bd-bi_boot_params

[U-Boot] [PATCH resend] misc/crypto: Add support for C3

2012-12-06 Thread Vipin Kumar
C3 is a cryptographic controller which is used by the SPL when DDR ECC support is enabled. Basically, the DDR ECC feature requires the initialization of ECC values before the DDR can actually be used. To accomplish this, the complete on board DDR is initialized with zeroes. This initialization

Re: [U-Boot] [PATCH resend 2/2] arm/boards: Define a new config option CONFIG_BOOT_PARAMS_P

2012-12-06 Thread Vipin Kumar
On 12/6/2012 3:14 PM, Stefan Roese wrote: On 12/06/2012 10:29 AM, Vipin Kumar wrote: A lot of ARM boards are using board_init routine just to initialize boot_params variable in the global data structure. This patch lets the board config files to define a CONFIG_BOOT_PARAMS_P option which is

[U-Boot] [PATCH V2 4/5] designware_i2c.h: Fixed the correct values for SCL low/high time

2012-12-06 Thread Armando Visconti
Signed-off-by: Armando Visconti armando.visco...@st.com --- drivers/i2c/designware_i2c.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/i2c/designware_i2c.h b/drivers/i2c/designware_i2c.h index e004152..0dc8884 100644 --- a/drivers/i2c/designware_i2c.h +++

[U-Boot] [PATCH V2 5/5] designware_i2c.h: Define IC_CLK only if not already defined in config file

2012-12-06 Thread Armando Visconti
Signed-off-by: Armando Visconti armando.visco...@st.com --- drivers/i2c/designware_i2c.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/designware_i2c.h b/drivers/i2c/designware_i2c.h index 0dc8884..2faf4a8 100644 --- a/drivers/i2c/designware_i2c.h +++

[U-Boot] [PATCH V2 1/5] designware_i2c.c: Added the support for MULTI_BUS

2012-12-06 Thread Armando Visconti
This patch adds the capability to switch between 10 different I2C busses (from 0 to 9). Signed-off-by: Armando Visconti armando.visco...@st.com --- drivers/i2c/designware_i2c.c | 82 +- 1 files changed, 81 insertions(+), 1 deletions(-) diff --git

[U-Boot] [PATCH V2 0/5] I2C designware patches

2012-12-06 Thread Armando Visconti
Changes from V1: Added two patches that I missed to send... Armando Visconti (5): designware_i2c.c: Added the support for MULTI_BUS designware_i2c: Added s/w generation of stop bit designware_i2c: Fixed the setting of the i2c bus speed designware_i2c.h: Fixed the correct values for SCL

[U-Boot] [PATCH V2 3/5] designware_i2c: Fixed the setting of the i2c bus speed

2012-12-06 Thread Armando Visconti
There are three couple (hcnt/lcnt) of registers for each speed (SS/FS/HS). The driver needs to set the proper couple of regs according to what speed we are setting. Signed-off-by: Armando Visconti armando.visco...@st.com --- drivers/i2c/designware_i2c.c | 28 +--- 1

[U-Boot] [PATCH V2 2/5] designware_i2c: Added s/w generation of stop bit

2012-12-06 Thread Armando Visconti
In the newer versions of designware i2c IP there is the possibility of configuring it with IC_EMPTYFIFO_HOLD_MASTER_EN=1, which basically requires the s/w to generate the stop bit condition directly, as the h/w will not automatically generate it when TX_FIFO is empty. To avoid generation of an

Re: [U-Boot] [PATCH] mtd: nand: mxs: reset BCH earlier, too, to avoid NAND startup problems

2012-12-06 Thread Fabio Estevam
On Wed, Dec 5, 2012 at 9:39 PM, Wolfram Sang w.s...@pengutronix.de wrote: Both patches are correct. Check the kernel code again, please, especially the function arguments. Ok, all is clear after reading the comments of the kernel gpmi_reset_block function. Regards, Fabio Estevam

Re: [U-Boot] [PATCH 10/10] tools: Add support for Dove to kwboot

2012-12-06 Thread Sebastian Hesselbarth
On 12/05/2012 11:15 PM, Daniel Stodden wrote: On Sun, 2012-12-02 at 20:15 +0100, Luka Perkov wrote: On Sun, Dec 02, 2012 at 03:36:22PM +0100, Sebastian Hesselbarth wrote: On Dove kwboot can also be used to boot an u-boot image into RAM. In contrast to Kirkwood, Dove does not support the UART

Re: [U-Boot] [PATCH resend 2/2] arm/boards: Define a new config option CONFIG_BOOT_PARAMS_P

2012-12-06 Thread Stefan Roese
On 12/06/2012 10:56 AM, Vipin Kumar wrote: snip +#ifdef CONFIG_BOOT_PARAMS_P + /* Boot params passed to Linux */ + gd-bd-bi_boot_params = CONFIG_BOOT_PARAMS_P; +#endif Again an ugly #ifdef. Why not something like this instead: Define a default earlier in the code (is 0x100 the best

Re: [U-Boot] [PATCH v2 1/7] mtd/st_smi: Clear error flags while initiating a fresh write

2012-12-06 Thread Stefan Roese
On 12/06/2012 09:47 AM, Vipin Kumar wrote: SMI controller reports an error when the code tries to write on the flash area with Write Enable command not issued or the bank has come out of the write mode. This error is reported even with a fresh write once the ERF1 or ERF2 is set. Clear

Re: [U-Boot] [PATCH v2 5/7] mtd/st_smi: Write to flash in a tight loop

2012-12-06 Thread Stefan Roese
On 12/06/2012 09:47 AM, Vipin Kumar wrote: The write loop is checking for dest_addr alignment with page size. This sometimes leads to smi controller coming out of write mode and eventually the next write failing with ERF1 being set. To avoid this, write to flash in a tight loop and write

Re: [U-Boot] [PATCH v2 7/7] mtd/st_smi: Add mtd support for smi

2012-12-06 Thread Stefan Roese
On 12/06/2012 09:47 AM, Vipin Kumar wrote: This patch adds mtd device support for smi devices Signed-off-by: Vipin Kumar vipin.ku...@st.com Acked-by: Stefan Roese s...@denx.de Thanks, Stefan ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [RFC] NFS issue when loading two files

2012-12-06 Thread Matthias Brugger
Hello Wolfgang, hello all, sorry for re-sending, but the list didn't accept an attachment. On 12/05/2012 11:20 PM, Wolfgang Denk wrote: Dear Matthias Brugger, In message 50bf9cc3.9020...@gmail.com you wrote: I run into an NFS issue when trying to load two files from nfs for booting (uImage

[U-Boot] [PATCH] net: nfs: Fixing error when mounting with time outs

2012-12-06 Thread Matthias Brugger
When reading more then one file via nfs and in the mount/unmountall process occurs a time out the boot process will be aborted, although eventually the respons from the NFS server arrives. This patch does not increment the rpc_id for the communication with the server when we resend a command

Re: [U-Boot] [PATCH v2 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Stefan Roese
Hi Vipin, On 12/06/2012 10:05 AM, Vipin Kumar wrote: As you can see, I have added your Acked-by to patches 2, 3, 4, 6 The reset are still pending. If you can quickly close them, I can send a pull-request for these patches I'm fine with all patches now. But please wait still a few days for

Re: [U-Boot] [PATCH resend] usbh/ehci: Increase timeout for enumeration

2012-12-06 Thread Igor Grinberg
On 12/06/12 11:03, Vipin Kumar wrote: On 12/6/2012 1:06 PM, Igor Grinberg wrote: On 12/06/12 08:58, Vipin Kumar wrote: On 12/6/2012 12:17 PM, Igor Grinberg wrote: On 12/06/12 08:30, Vipin Kumar wrote: Few pen drives take longer than usual for enumeration. The u-boot unlike linux does not

Re: [U-Boot] [PATCH resend] misc/crypto: Add support for C3

2012-12-06 Thread Stefan Roese
On 12/06/2012 10:15 AM, Vipin Kumar wrote: C3 is a cryptographic controller which is used by the SPL when DDR ECC support is enabled. Basically, the DDR ECC feature requires the initialization of ECC values before the DDR can actually be used. To accomplish this, the complete on board DDR

Re: [U-Boot] [PATCH resend 1/2] u-boot/spl: Add u-boot-spl.img to u-boot targets

2012-12-06 Thread Stefan Roese
On 12/06/2012 10:29 AM, Vipin Kumar wrote: Signed-off-by: Vipin Kumar vipin.ku...@st.com Is this new build target really needed? Please take a look at the recently added/renamed targets (e.g. u-boot-with-spl.bin or u-boot-img.bin). If this does not fit, then please add a short description about

[U-Boot] [PATCH] mpc5200: spl_boot.c: Change init oder to first enable printf

2012-12-06 Thread Stefan Roese
On MPC5200, the initial RAM (and gd) is located in the internal SRAM. So we can actually call the preloader console init code before calling initdram(). This makes serial output (printf) available very early, even before SDRAM init, which has been an U-Boot priciple from day 1. Signed-off-by:

[U-Boot] [PATCH] mpc5200: Add a4m2k board port

2012-12-06 Thread Stefan Roese
This patch adds the a4m2k MPC5200B board port. Its a derivate of the a3m071 board with only minor changes. Additionally this patch includes some clean-up changes: - Remove I2C support from a3m071 as its unused - Fix/enhance default env variables - Fix some comments - Add newly introduced

[U-Boot] [PATCH 1/4] cfi_flash: Add manufact_match helper function

2012-12-06 Thread Stefan Roese
Consolidate manufacturer matching into the function manufact_match() and use it. Signed-off-by: Stefan Roese s...@denx.de --- drivers/mtd/cfi_flash.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index

[U-Boot] [PATCH 3/4] cfi_flash: Enable PPB protection for all AMD cmdset flash chips

2012-12-06 Thread Stefan Roese
Not only Spansion supports the Persistent Protection Bits (PPB) locking. Other devices like the Micron JS28F512M29EWx also support this type of locking/unlocking. Detection of support is done in the same way as done for the Spansion chips - via the 0x49 CFI word. This patch enables this PPB

[U-Boot] [PATCH 4/4] cfi_flash: Report Advanced Sector Protection (PPB) with flinfo cmd

2012-12-06 Thread Stefan Roese
Report the usage of the Advanced Sector Protection (PPB) to the user upon 'flinfo' command. E.g: Bank # 1: CFI conformant flash (16 x 16) Size: 64 MB in 512 Sectors AMD Standard command set, Manufacturer ID: 0x01, Device ID: 0x227E2301 Advanced Sector Protection (PPB) enabled Erase

[U-Boot] [PATCH 2/4 v2] cfi_flash: Read PPB sector protection from device for AMD/Spansion chips

2012-12-06 Thread Stefan Roese
Patch 66863b05 [cfi_flash: add support for Spansion flash PPB sector protection] introduced the PPB (Persistent Protection Bit) locking for Spansion chips. But right now the sector protection status (locked vs unlocked) is set to unlocked for all sectors upon bootup. The real sector protection

Re: [U-Boot] [PATCH] 4xx: Fix PCI memory mapping on CPCI405 boards

2012-12-06 Thread Stefan Roese
On 11/02/2012 02:30 PM, Matthias Fuchs wrote: This patch fixes an issue with overlapping PCI regions on boards with more than 64MB RAM. Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu Applied. Thanks, Stefan ___ U-Boot mailing list

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

2012-12-06 Thread Stefan Roese
Hi Tom, please pull the following fix: The following changes since commit fb3d2b8a3fc26ffb0127fd0fed90ff5f074e67d7: Makefile: Add target for combined spl/u-boot.bin u-boot.img (2012-12-05 17:31:30 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git

[U-Boot] [PATCH] spl:falcon:trats Update Trats default board configuration file to support FALCON MODE

2012-12-06 Thread Lukasz Majewski
Support for a new command (defined at envs) - spl_export generates the ATAGS image necessary for fast boot. Afterwards, it is stored at ext4 partition. Generated image format: CRC [4B] SIZE [4B] PAYLOAD(ATAGS/DT) [SIZE] Remarks: - CRC is calculated only for PAYLOAD - SIZE is the size of PAYLOAD

[U-Boot] [PATCH] cmd:spl:fix: Prevent from a build error on boards, which don't support FDT

2012-12-06 Thread Lukasz Majewski
Do not compile in FDT related code, when it is not supported. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- common/cmd_spl.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/common/cmd_spl.c

Re: [U-Boot] [PATCH] cmd:spl:fix: Prevent from a build error on boards, which don't support FDT

2012-12-06 Thread Stefano Babic
On 06/12/2012 16:23, Lukasz Majewski wrote: Do not compile in FDT related code, when it is not supported. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- common/cmd_spl.c |2 ++ 1 files changed, 2 insertions(+), 0

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

2012-12-06 Thread Tom Rini
On Thu, Dec 06, 2012 at 03:57:42PM +0100, Stefan Roese wrote: Hi Tom, please pull the following fix: The following changes since commit fb3d2b8a3fc26ffb0127fd0fed90ff5f074e67d7: Makefile: Add target for combined spl/u-boot.bin u-boot.img (2012-12-05 17:31:30 +0100) are available

Re: [U-Boot] [PATCH resend] usbh/ehci: Increase timeout for enumeration

2012-12-06 Thread Marek Vasut
Dear Vipin Kumar, Few pen drives take longer than usual for enumeration. The u-boot unlike linux does not depend on interrupts and works in polling and timeout mode. Good, can you maybe poll the register instead of adding arbitrary delay which will cause trouble to everyone even if they never

Re: [U-Boot] [PATCH 1/3 V2] EHCI: Exynos: Add fdt support

2012-12-06 Thread Marek Vasut
Dear Rajeshwari Shinde, Adding fdt support to ehci-exynos in order to parse register base addresses from the device node. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Chnages in V2: - Removed checkpatch errors.

Re: [U-Boot] [PATCH 2/3 V2] EXYNOS5: Add devine node for USB.

2012-12-06 Thread Marek Vasut
Dear Rajeshwari Shinde, Subject ... add device node ... This patch adds the device node required for USB Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- Chnages in V2: - None arch/arm/dts/exynos5250.dtsi |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-)

Re: [U-Boot] [PATCH 1/3 V2] EHCI: Exynos: Add fdt support

2012-12-06 Thread Simon Glass
Hi Marek, On Thu, Dec 6, 2012 at 9:39 AM, Marek Vasut ma...@denx.de wrote: Dear Rajeshwari Shinde, Adding fdt support to ehci-exynos in order to parse register base addresses from the device node. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com Signed-off-by: Rajeshwari Shinde

Re: [U-Boot] [PATCH 1/3 V2] EHCI: Exynos: Add fdt support

2012-12-06 Thread Marek Vasut
Dear Simon Glass, [...] [...] error output should be really puts() or printf() ... Ick that bloats the code badly for an uncommon case. Would really prefer to avoid this. What do you mean? Are you saying this debug() is correct and this is triggered often? How come? You can also

Re: [U-Boot] [PATCH 1/3 V2] EHCI: Exynos: Add fdt support

2012-12-06 Thread Simon Glass
Hi Marek, On Thu, Dec 6, 2012 at 10:02 AM, Marek Vasut ma...@denx.de wrote: Dear Simon Glass, [...] [...] error output should be really puts() or printf() ... Ick that bloats the code badly for an uncommon case. Would really prefer to avoid this. What do you mean? Are you saying

Re: [U-Boot] [PATCH 1/3 V2] EHCI: Exynos: Add fdt support

2012-12-06 Thread Marek Vasut
Dear Simon Glass, Hi Marek, On Thu, Dec 6, 2012 at 10:02 AM, Marek Vasut ma...@denx.de wrote: Dear Simon Glass, [...] [...] error output should be really puts() or printf() ... Ick that bloats the code badly for an uncommon case. Would really prefer to avoid this.

Re: [U-Boot] [PATCH 10/10] tools: Add support for Dove to kwboot

2012-12-06 Thread Daniel Stodden
On Thu, 2012-12-06 at 11:59 +0100, Sebastian Hesselbarth wrote: On 12/05/2012 11:15 PM, Daniel Stodden wrote: On Sun, 2012-12-02 at 20:15 +0100, Luka Perkov wrote: On Sun, Dec 02, 2012 at 03:36:22PM +0100, Sebastian Hesselbarth wrote: On Dove kwboot can also be used to boot an u-boot image

Re: [U-Boot] [PATCH 2/4] env_nand.c: support falling back to redundant env when writing

2012-12-06 Thread Scott Wood
On 11/28/2012 03:06:00 PM, Phil Sutter wrote: Hi, On Tue, Nov 27, 2012 at 04:04:15PM -0600, Scott Wood wrote: On 11/21/2012 06:59:19 AM, Phil Sutter wrote: Without this patch, when the currently chosen environment to be written has bad blocks, saveenv fails completely. Instead, when

Re: [U-Boot] JFFS2 seems to drop nand data with ECC corrections

2012-12-06 Thread Scott Wood
On 12/01/2012 11:02:05 AM, Deltour, Stephane wrote: I had a few boards with NAND related problems. In Linux a file was written to a JFFS2 partition in NAND, but u-boot was unable to read the same file correctly from the JFFS2. This happened to be often the case if the NAND had a few bad

Re: [U-Boot] [PATCH] fsmc: Skip BBT scan for bad block management

2012-12-06 Thread Scott Wood
On 12/06/2012 01:21:28 AM, Vipin Kumar wrote: This patch forces to read the bad block marker from location 0 in large page nand devices and location 5 in small page devices. Signed-off-by: Vipin Kumar vipin.ku...@st.com Reviewed-by: Shiraz Hashim shiraz.has...@st.com ---

Re: [U-Boot] [PATCH 10/10] tools: Add support for Dove to kwboot

2012-12-06 Thread Sebastian Hesselbarth
On 12/06/2012 07:18 PM, Daniel Stodden wrote: On Thu, 2012-12-06 at 11:59 +0100, Sebastian Hesselbarth wrote: So finally, we have three options: - leave kwboot as is and hope the user will know about Dove's inability to use the boot sequence - add a note to usage() and kwboot that Dove doen't

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

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

[U-Boot] Please pull u-boot-x86.git

2012-12-06 Thread Simon Glass
Hi Tom, I have included a config change 'Fix coreboot config to boot on Chromebook' as I found after all this work that it did not actually boot correctly without this. I hope that is ok. This should be the final pull request for x86 until 'next' opens. The following changes since commit

[U-Boot] [PATCH 1/3] spl: Change PAD_TO to CONFIG_SPL_PAD_TO

2012-12-06 Thread Scott Wood
This was already used by some SPL targets, and allows the pad amount to be specified by board config headers rather than only in makefile fragments. Also supply a pad-to of zero if the variable is undefined. It works without this, but this avoids relying on undocumented behavior. Signed-off-by:

[U-Boot] [PATCH 2/3] powerpc/mpc83xx: add support for new SPL

2012-12-06 Thread Scott Wood
This adds arch support for PPC mpc83xx to boot minimal (4K) SPLs using the new infrastructure. Existing nand_spl targets are updated to deal with the name change from nand_init.c to spl_minimal.c (as in theory this isn't limited to NAND anymore). Signed-off-by: Scott Wood scottw...@freescale.com

[U-Boot] [PATCH 3/3] powerpc/mpc83xx: convert MPC8313ERDB to new-SPL

2012-12-06 Thread Scott Wood
This converts MPC8313ERDB NAND boot to use the new SPL infrastructure. Signed-off-by: Scott Wood scottw...@freescale.com Cc: Kim Phillips kim.phill...@freescale.com --- board/freescale/mpc8313erdb/mpc8313erdb.c | 10 +-- boards.cfg |4 +-

Re: [U-Boot] [PATCH] fsmc: Skip BBT scan for bad block management

2012-12-06 Thread Vipin Kumar
On 12/7/2012 12:57 AM, Scott Wood wrote: On 12/06/2012 01:21:28 AM, Vipin Kumar wrote: This patch forces to read the bad block marker from location 0 in large page nand devices and location 5 in small page devices. Signed-off-by: Vipin Kumarvipin.ku...@st.com Reviewed-by: Shiraz

Re: [U-Boot] [PATCH v2 0/7] mtd/st_smi: Add fixes for smi driver

2012-12-06 Thread Vipin Kumar
On 12/6/2012 5:12 PM, Stefan Roese wrote: Hi Vipin, On 12/06/2012 10:05 AM, Vipin Kumar wrote: As you can see, I have added your Acked-by to patches 2, 3, 4, 6 The reset are still pending. If you can quickly close them, I can send a pull-request for these patches I'm fine with all patches

Re: [U-Boot] [PATCH] Exynos: clock: support get_mmc_clk for exynos

2012-12-06 Thread Minkyu Kang
Dear Jaehoon, On 22/11/12 13:22, Jaehoon Chung wrote: To get exactly clock value for mmc, support the get_mmc_clk() like set_mmc_clk(). Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- arch/arm/cpu/armv7/exynos/clock.c |

[U-Boot] [PATCH] arm: at91sam9x5: add dataflash boot support

2012-12-06 Thread Bo Shen
Add dataflash boot support on at91sam9x5ek board Signed-off-by: Bo Shen voice.s...@atmel.com --- boards.cfg |1 + include/configs/at91sam9x5ek.h | 10 ++ 2 files changed, 11 insertions(+) diff --git a/boards.cfg b/boards.cfg index 70a1569..e799d9b 100644 ---

Re: [U-Boot] [PATCH v2 0/3] EXYNOS: Add support for Exynos4x12

2012-12-06 Thread Minkyu Kang
Dear Chander, On 02/11/12 19:51, Chander Kashyap wrote: ping On 2 October 2012 15:16, Chander Kashyap chander.kash...@linaro.org wrote: This patch series popultes Register addresses, clock structure and gpio structure for Exynos4x12. Changes in v2: - Fixed the GPIO base address

Re: [U-Boot] [PATCH v2 0/3] EXYNOS: Add support for Exynos4x12

2012-12-06 Thread Chander Kashyap
Dear Minkyu, On 7 December 2012 13:19, Minkyu Kang mk7.k...@samsung.com wrote: Dear Chander, On 02/11/12 19:51, Chander Kashyap wrote: ping On 2 October 2012 15:16, Chander Kashyap chander.kash...@linaro.org wrote: This patch series popultes Register addresses, clock structure and gpio