Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-11 Thread Lukasz Majewski
Hi Marek, Dear Lukasz Majewski, Pantelis, [...] Hm hm ... I suspect it'd be nice to have a separate DFU custodian. That'd leverage some burden from me. I like that idea. I wonder if it'd be nice to start building such bigger net of custodians. I think,that this (political) decision

Re: [U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Eric Bénard
Hi Scott, Le Mon, 10 Dec 2012 16:59:23 -0600, Scott Wood scottw...@freescale.com a écrit : On 12/10/2012 10:41:59 AM, Eric Bénard wrote: - commit 418396e212b59bf907dbccad997ff50f7eb61b16 chenged the behaviour of nand write.raw which now takes a pagecount as a parameter and no more

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Pantelis Antoniou
Hi Scott, On Dec 11, 2012, at 3:09 AM, Scott Wood wrote: On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: Introduce on-the fly DFU NAND support. Signed-off-by: Pantelis Antoniou pa...@antoniou-consulting.com --- drivers/dfu/Makefile | 1 + drivers/dfu/dfu.c | 7 ++

Re: [U-Boot] [PATCH] [nand] Implement nand_extent_skip_bad

2012-12-11 Thread Pantelis Antoniou
Hi Scott, On Dec 11, 2012, at 12:53 AM, Scott Wood wrote: On 12/10/2012 09:24:24 AM, Pantelis Antoniou wrote: When accessing nand any bad blocks encountered are skipped, with no indication about the amount of bad blocks encountered. While this is normally fine, when you have to write a large

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

2012-12-11 Thread Piotr Wilczek
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 more readable. Moreover the part_efi.h file has been moved to

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

2012-12-11 Thread Piotr Wilczek
From: Lukasz Majewski l.majew...@samsung.com The ustrtoul shall convert string defined size (e.g. 1GiB) to unsigned long type (as its name implies). Up till now it had returned int, which might cause problems with large numbers (GiB range), when interpreted as U2 signed numbers. Signed-off-by:

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

2012-12-11 Thread Piotr Wilczek
From: Lukasz Majewski l.majew...@samsung.com This move is necessary to export gpt header and GPT partition entries to be used with other commands or subsystems. Additionally the part_efi.h file has been cleaned-up to supress checkpatch's warnings. Signed-off-by: Lukasz Majewski

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

2012-12-11 Thread Piotr Wilczek
From: Lukasz Majewski l.majew...@samsung.com Documentation of the GPT format. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes in v5: - Updated documentation Changes in v4: - Updated documentation Changes in v3: - None

[U-Boot] [PATCH v5 4/7] gpt: The leXX_to_int() calls replaced with ones defined at compiler.h

2012-12-11 Thread Piotr Wilczek
From: Chang Hyun Park heartinpi...@outlook.com Custom definitions of le_XX_to_int functions have been replaced with standard ones, defined at compiler.h Replacement of several GPT related structures members with ones indicating its endianness and proper size. Signed-off-by: Chang Hyun Park

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

2012-12-11 Thread Piotr Wilczek
From: Lukasz Majewski l.majew...@samsung.com The restoration of GPT table (both primary and secondary) is now possible. Function 'gpt_restore' presents example of partition restoration process. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Piotr Wilczek

[U-Boot] [PATCH v5 6/7] gpt: Support for new gpt command

2012-12-11 Thread Piotr Wilczek
New command - gpt is supported. It restores the GPT partition table. It looks into the given environment variable for partitions definition. It can be enabled at target configuration file with CONFIG_CMD_GPT. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Piotr Wilczek

[U-Boot] [PATCH v5 7/7] gpt: Enable support for GPT partition table restoration at Samsung's Trats

2012-12-11 Thread Piotr Wilczek
From: Lukasz Majewski l.majew...@samsung.com Enable support for GPT partition table restoration at Samsung's Trats development board. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com CC: Minkyu Kang mk7.k...@samsung.com --- Changes in

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-11 Thread Wolfgang Denk
Dear Marek Vasut, In message 201212110147.49045.ma...@denx.de you wrote: Hm hm ... I suspect it'd be nice to have a separate DFU custodian. That'd leverage some burden from me. I like that idea. I wonder if it'd be nice to start building such bigger net of custodians. I'm not sure about

Re: [U-Boot] [PATCH v2] universal_c210: check the NULL pointer when get the PMIC

2012-12-11 Thread Minkyu Kang
On 11/12/12 16:57, Lukasz Majewski wrote: Hi Minkyu, PMIC 2.0 require to test return pointer from pmic_get() Signed-off-by: Minkyu Kang mk7.k...@samsung.com Cc: Lukasz Majewski l.majew...@samsung.com Cc: Wolfgang Denk w...@denx.de --- Changes in V2: - Since functions are void type,

[U-Boot] [PATCH 0/5 v3] Add DT based ethernet driver for SMDK5250

2012-12-11 Thread Hatim Ali
This patch series enables the DT support on SMDK5250. Ethernet is the first driver whose discovery is based on DT node. More DT based drivers to be added subsequently Changes since v1: - Renamed the smdk5250.h file to exynos5250-dt.h to create a common configuration file which

[U-Boot] [PATCH 2/5 v3] fdt: exynos5: Add DT node definition for SROM and SMSC9215

2012-12-11 Thread Hatim Ali
Add the compatibility string and constant for the ethernet driver so the device tree parsing code can recognize it. Signed-off-by: Hatim Ali hatim...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Removed extra blank line before COMPAT_SMSC_LAN9215 -

[U-Boot] [PATCH 1/5 v3] EXYNOS5: FDT: add initial dts file for EXYNOS5250, SMDK5250

2012-12-11 Thread Hatim Ali
This patch adds initial dts file for EXYNOS5250 SoC. This dts file currently include only ethernet devices and properties. More devices to be added in subsequent patches. Also add the dts file for SMDK5250 board which uses the EXYNOS5250 dts file. Signed-off-by: Hatim Ali hatim...@samsung.com

[U-Boot] [PATCH 3/5 v3] exynos5: Add DT based driver for SMC911X ethernet

2012-12-11 Thread Hatim Ali
Add device tree based ethernet driver for SMC911X controller on SMDK5250 boards. Signed-off-by: Hatim Ali hatim...@samsung.com Acked-by: Simon Glass s...@chromium.org --- Changes since v1: - Added Acked-by Simon Glass Changes since v2: - No Change

[U-Boot] [PATCH 4/5 v3] exynos5: config: Rename the smdk5250.h to exynos5250-dt.h

2012-12-11 Thread Hatim Ali
Create a common configuration file for all exynos5250 based boards. Going forward we will be using DT based driver discovery for all the boards based on Exynos5. The different boards added will have there own config.h files which internally will include this file and specify their specific DT

[U-Boot] [PATCH 5/5 v3] SMDK5250: config: Add configuration file for SMDK5250 board

2012-12-11 Thread Hatim Ali
Add the configuration file for exynos5250 based SMDK5250 board. Signed-off-by: Hatim Ali hatim...@samsung.com --- Changes since v2: - No Change include/configs/smdk5250.h | 33 + 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH 0/8 v4] Add TMU support for Exynos5250 based SMDK5250

2012-12-11 Thread Hatim Ali
This patch series adds support for TMU driver using device tree for Exynos5250 based SMDK5250 board. This patch series is dependent on the patch series Add DT based ethernet driver for SMDK5250 by Hatim Ali Changes since v3: - Rebased patch 1/8 Akshay Saraswat (6): EXYNOS5: FDT: Add

[U-Boot] [PATCH 1/8] EXYNOS5: FDT: Add TMU device node values

2012-12-11 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Fdt entry for Exynos TMU driver specific pre-defined values used for calibration of current temperature and defining threshold values. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git

[U-Boot] [PATCH 3/8] EXYNOS5: Power down API for Thermal Management Unit

2012-12-11 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Adding API in power for system shutdown when tripping value is reached in Exynos Thermal Management Unit. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git a/arch/arm/cpu/armv7/exynos/power.c

[U-Boot] [PATCH 2/8] EXYNOS5: TMU: Add driver for Thermal Management Unit

2012-12-11 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Adding Exynos Thermal Management Unit driver to monitor SOC temperature and take actions corresponding to states of TMU. System will shutdown if tripping temperature is reached. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass

[U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-11 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Adding a generic polling function to continuously monitor events and trigger actions corresponding to them. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git a/README b/README index 037513a..0e4083c

[U-Boot] [PATCH 5/8] EXYNOS5: TMU: Add TMU status polling

2012-12-11 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com This adds call to tmu_init() and TMU status polling in board_poll_devices() funtion to monitor temperature change of the SOC. Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git

[U-Boot] [PATCH 6/8] EXYNOS5: Config: Enable support for Exynos TMU driver

2012-12-11 Thread Hatim Ali
From: Akshay Saraswat aksha...@samsung.com Enables TMU driver support for exynos5250 Signed-off-by: Akshay Saraswat aksha...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git a/include/configs/exynos5250-dt.h b/include/configs/exynos5250-dt.h index 12f555c..2f4315a 100644 ---

[U-Boot] [PATCH 7/8] TMU: Add u-boot command to read current temp

2012-12-11 Thread Hatim Ali
From: Alim Akhtar alim.akh...@samsung.com Adds a new u-boot command to read current temprature from tmu driver. Signed-off-by: Alim Akhtar alim.akh...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git a/README b/README index 0e4083c..d3e7ea3 100644 --- a/README +++ b/README @@

[U-Boot] [PATCH 8/8] EXYNOS5: Config: Enable tmu command

2012-12-11 Thread Hatim Ali
From: Alim Akhtar alim.akh...@samsung.com This enables the tmu command to read the current SOC temperature with the help of TMU Signed-off-by: Alim Akhtar alim.akh...@samsung.com Acked-by: Simon Glass s...@chromium.org diff --git a/include/configs/exynos5250-dt.h

Re: [U-Boot] [PATCH 0/5 v2] Add DT based ethernet driver for SMDK5250

2012-12-11 Thread Hatim Rv
Dear Minkyu Kang, I have submitted the rebased patches. Regards, Hatim Ali On Fri, Dec 7, 2012 at 2:29 PM, Minkyu Kang mk7.k...@samsung.com wrote: Dear Hatim On 06/11/12 19:13, Hatim Ali wrote: This patch series enables the DT support on SMDK5250. Ethernet is the first driver whose

[U-Boot] please pull u-boot-samsung/resolve

2012-12-11 Thread Minkyu Kang
Dear Albert, The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9: Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07 08:47:59 -0700) are available in the git repository at: git://git.denx.de/u-boot-samsung resolve for you to fetch changes up to

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-11 Thread Lukasz Majewski
Hi Lukasz, Tomorrow I will prepare output of USB Ellisys analizer on my side, so we could get clue what is going on. Since log itself waits for moderator approval, I will be more precise: 1. dfu-util version 0.1+svnexported 2. u-boot-denx master branch: SHA1:

[U-Boot] [PATCH 1/5] EXYNOS5: Change parent clock of FIMD to MPLL

2012-12-11 Thread Ajay Kumar
With VPLL as source clock to FIMD, Exynos DP Initializaton was failing sometimes with unstable clock. Changing FIMD source to resolves this issue. Signed-off-by: Ajay Kumar ajaykumar...@samsung.com --- arch/arm/cpu/armv7/exynos/clock.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[U-Boot] [PATCH 2/5] EXYNOS5: Add pinmux for LCD

2012-12-11 Thread Ajay Kumar
This patch adds pinmux configuration for backlight, LCD reset and HPD for DP panel on Exynos5 SMDK. Signed-off-by: Ajay Kumar ajaykumar...@samsung.com --- arch/arm/cpu/armv7/exynos/pinmux.c| 20 arch/arm/include/asm/arch-exynos/periph.h |1 + 2 files changed,

[U-Boot] [PATCH 3/5] video: Fix compilation dependency of exynos_dp and exynos_mipi on exynos_fb

2012-12-11 Thread Ajay Kumar
When only DP is used, we need not enable CONFIG_EXYNOS_MIPI_DSIM. Similarly, when only MIPI is used, we need not enable CONFIG_EXYNOS_DP. But the current structuring of code forces us to enable both CONFIG_EXYNOS_MIPI_DSIM and CONFIG_EXYNOS_DP. This patch adds conditional compilation check to

[U-Boot] [PATCH 4/5] EXYNOS5: Add support for FIMD and DP

2012-12-11 Thread Ajay Kumar
Add panel_info structure required by LCD driver and DP panel platdata for SMDK5250. Enable FIMD and DP support on SMDK5250. DP Panel size: 2560x1600. We use 16BPP resolution to get LCD console. Signed-off-by: Ajay Kumar ajaykumar...@samsung.com --- board/samsung/smdk5250/smdk5250.c | 82

[U-Boot] [PATCH 5/5] video: Modify exynos_fimd driver to support LCD console.

2012-12-11 Thread Ajay Kumar
Currently, exynos FIMD driver is being used to support only TIZEN LOGOs. In order to get LCD console, we need to enable half word swap feature of FIMD and use 16 BPP. Signed-off-by: Ajay Kumar ajaykumar...@samsung.com --- drivers/video/exynos_fimd.c | 10 -- 1 files changed, 8

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-11 Thread Pantelis Antoniou
Hi Lukasz, I bet transmission is performed, but with the default settings of dfu. The DFU function descriptor is completely ignored. An easy way to verify it is to check if the DFU version of the device is the same one as the one stored in the descriptor. Same with the transmission block size.

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-11 Thread Robert P. J. Day
On Tue, 11 Dec 2012, Lukasz Majewski wrote: Hi Pantelis, Tomorrow I will prepare output of USB Ellisys analizer on my side, so we could get clue what is going on. Please find attached output from USB ellisys analizer. is it really appropriate to post 8M of output to a mailing list?

Re: [U-Boot] [PATCH 4/4] sf: Add Quad-input Page Program(32h) instruction support

2012-12-11 Thread Langer Thomas (LQDE RD ST PON SW)
Hello Jagannadha, I have some remarks and questions, as I currently work on a hw platform, which also would allow to support dual- or quad-io accesses. So my first question: why is this restricted to write only? If you have a hardware, which is capable of supporting this, the read will

Re: [U-Boot] [PATCH 2/4] S5P: GPIO: Add GPIO pin numbering to driver

2012-12-11 Thread Rajeshwari Birje
Hi Minkyu Kang, Thank you for comments. On Wed, Dec 5, 2012 at 4:51 PM, Minkyu Kang mk7.k...@samsung.com wrote: Dear Rajeshwari, On 05/12/12 19:46, Minkyu Kang wrote: API's for GPIO pin numbering support are added to the generic S5P gpio driver Signed-off-by: Leela Krishna Amudala

Re: [U-Boot] [PATCH 7/8] TMU: Add u-boot command to read current temp

2012-12-11 Thread Wolfgang Denk
Dear Hatim Ali, In message 1355223289-15685-8-git-send-email-hatim...@samsung.com you wrote: From: Alim Akhtar alim.akh...@samsung.com Adds a new u-boot command to read current temprature from tmu driver. Signed-off-by: Alim Akhtar alim.akh...@samsung.com Acked-by: Simon Glass

Re: [U-Boot] [PATCH 4/8] Add a poll function to monitor events

2012-12-11 Thread Wolfgang Denk
Dear Hatim Ali, In message 1355223289-15685-5-git-send-email-hatim...@samsung.com you wrote: From: Akshay Saraswat aksha...@samsung.com Adding a generic polling function to continuously monitor events and trigger actions corresponding to them. Signed-off-by: Akshay Saraswat

Re: [U-Boot] [PATCH 2/8] EXYNOS5: TMU: Add driver for Thermal Management Unit

2012-12-11 Thread Wolfgang Denk
Dear Hatim Ali, In message 1355223289-15685-3-git-send-email-hatim...@samsung.com you wrote: From: Akshay Saraswat aksha...@samsung.com Adding Exynos Thermal Management Unit driver to monitor SOC temperature and take actions corresponding to states of TMU. System will shutdown if tripping

Re: [U-Boot] [PATCH 3/8] EXYNOS5: Power down API for Thermal Management Unit

2012-12-11 Thread Wolfgang Denk
Dear Hatim Ali, In message 1355223289-15685-4-git-send-email-hatim...@samsung.com you wrote: From: Akshay Saraswat aksha...@samsung.com Adding API in power for system shutdown when tripping value is reached in Exynos Thermal Management Unit. Signed-off-by: Akshay Saraswat

Re: [U-Boot] [PATCH v3 6/9] dfu: Send correct DFU response from composite_setup

2012-12-11 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/10/12 19:47, Marek Vasut wrote: Dear Lukasz Majewski, Pantelis, [...] Hm hm ... I suspect it'd be nice to have a separate DFU custodian. That'd leverage some burden from me. I like that idea. I wonder if it'd be nice to start building

[U-Boot] [PATCH] mx25pdk: Adapt it for the new PMIC framework

2012-12-11 Thread Fabio Estevam
Make the necessary adaptions for the new PMIC framework, so that mx25pdk can be built again. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Stefano, Build tested only, as I did not manage to get access to a mx25pdk. board/freescale/mx25pdk/mx25pdk.c | 13 ++---

Re: [U-Boot] [PATCH] mx25pdk: Adapt it for the new PMIC framework

2012-12-11 Thread Stefano Babic
On 11/12/2012 15:58, Fabio Estevam wrote: Make the necessary adaptions for the new PMIC framework, so that mx25pdk can be built again. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Stefano, Build tested only, as I did not manage to get access to a mx25pdk. Ok - I will

[U-Boot] [PATCH v2] ARM: OMAP5: redefine arm_setup_identity_mapping

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

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

2012-12-11 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 12/11/12 10:35, Vincent Stehlé wrote: We introduce an OMAP5 specific version of arm_setup_identity_mapping(), which makes the first page of the identity mapping invalid. We want to unmap the region near address zero on HS OMAP devices, to

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

2012-12-11 Thread Vincent Stehlé
Tom Rini: Lets put the extern in arch/arm/include/asm/cache.h and make both files #include asm/cache.h. Sure, here is an updated patches pair: [PATCH v3 1/2] ARM: cache: introduce weak arm_setup_identity_mapping [PATCH v3 2/2] ARM: OMAP5: redefine arm_setup_identity_mapping Thank you for

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

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

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

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

Re: [U-Boot] [PATCH] mx25pdk: Adapt it for the new PMIC framework

2012-12-11 Thread Fabio Estevam
On Tue, Dec 11, 2012 at 1:14 PM, Stefano Babic sba...@denx.de wrote: Ok - I will merge it soon into u-boot-imx. If we will find some issues later, we will fix on the top of it. Good, I have managed to get a mx25pdk and I can confirm that with this patch the FEC (which depends on a supply being

[U-Boot] [PATCH] woodburn: Set gpio value in gpio_direction_output()

2012-12-11 Thread Fabio Estevam
Set the gpio value in gpio_direction_output() instead of an extra gpio_set_value call. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- board/woodburn/woodburn.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/board/woodburn/woodburn.c

Re: [U-Boot] [PATCH] woodburn: Set gpio value in gpio_direction_output()

2012-12-11 Thread Stefano Babic
On 11/12/2012 17:19, Fabio Estevam wrote: Set the gpio value in gpio_direction_output() instead of an extra gpio_set_value call. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- board/woodburn/woodburn.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

Re: [U-Boot] [PATCH] woodburn: Set gpio value in gpio_direction_output()

2012-12-11 Thread Stefano Babic
On 11/12/2012 17:19, Fabio Estevam wrote: Set the gpio value in gpio_direction_output() instead of an extra gpio_set_value call. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- board/woodburn/woodburn.c |3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

Re: [U-Boot] [PATCH] mx25pdk: Adapt it for the new PMIC framework

2012-12-11 Thread Stefano Babic
On 11/12/2012 15:58, Fabio Estevam wrote: Make the necessary adaptions for the new PMIC framework, so that mx25pdk can be built again. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Applied to u-boot-imx, thanks. Best regards, Stefano Babic --

Re: [U-Boot] [PATCH v3 6/6] mx25pdk: Add Ethernet support

2012-12-11 Thread Fabio Estevam
Albert, On Sat, Dec 8, 2012 at 9:12 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: This commit introduced a dependency on the PMIC framework, which has since been reworked in u-boot/master, leading to a failure to merge u-boot-arm/master and u-boot/master properly. I have just sent a

Re: [U-Boot] [PATCH v4 0/20] Add environment call-back and flags capability

2012-12-11 Thread Tom Rini
On Tue, Dec 04, 2012 at 07:52:27PM -0600, Joe Hershberger wrote: When a variable with a registered callback is inserted, deleted, or overwritten the callback is called and gives the system an opportunity to do something in response to the change. It also has the opportunuty to reject the

[U-Boot] [PATCH] mx53loco: Fix PMIC name

2012-12-11 Thread Fabio Estevam
commit c73368150 (pmic: Extend PMIC framework to support multiple instances of PMIC devices) has incorrectly passed the PMIC name under the FSL PMIC case. Fix that by passing FSL_PMIC as the parameter of pmic_get. Signed-off-by: Fabio Estevam fabio.este...@freescale.com ---

Re: [U-Boot] [PATCH] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Scott Wood
On 12/11/2012 02:50:37 AM, Eric Bénard wrote: Hi Scott, Le Mon, 10 Dec 2012 16:59:23 -0600, Scott Wood scottw...@freescale.com a écrit : On 12/10/2012 10:41:59 AM, Eric Bénard wrote: - commit 418396e212b59bf907dbccad997ff50f7eb61b16 chenged the behaviour of nand write.raw which now

Re: [U-Boot] please pull u-boot-samsung/resolve

2012-12-11 Thread Stephen Warren
On 12/11/2012 04:10 AM, Minkyu Kang wrote: Dear Albert, The following changes since commit fd4d564b3c80b111f18c93adb14233a6a7ddb0e9: Merge branch 'master' of git://git.denx.de/u-boot-x86 (2012-12-07 08:47:59 -0700) are available in the git repository at:

Re: [U-Boot] [PATCH] [nand] Implement nand_extent_skip_bad

2012-12-11 Thread Scott Wood
On 12/11/2012 03:40:53 AM, Pantelis Antoniou wrote: Hi Scott, On Dec 11, 2012, at 12:53 AM, Scott Wood wrote: +/** + * nand_extent_skip_bad: + * + * Find the extent of a chunk, return the offset where it ends + * Blocks that are marked bad are skipped and the next block is examined + *

Re: [U-Boot] [PATCH] [nand] Implement nand_extent_skip_bad

2012-12-11 Thread Pantelis Antoniou
Hi Scott, On Dec 11, 2012, at 7:13 PM, Scott Wood wrote: On 12/11/2012 03:40:53 AM, Pantelis Antoniou wrote: Hi Scott, On Dec 11, 2012, at 12:53 AM, Scott Wood wrote: +/** + * nand_extent_skip_bad: + * + * Find the extent of a chunk, return the offset where it ends + * Blocks that

[U-Boot] NFS time out problem

2012-12-11 Thread Matthias Brugger
After reading through the RFC [1] I realized that we have to increment the rpc_id when we resend a message. This patch therefor doesn't change the rpc_id behaviour, but adds a dynamic increment of the time to wait before time out. Apart we just drop messages which are replies to timed out

[U-Boot] [PATCH] net: nfs: add dynamic wait period

2012-12-11 Thread Matthias Brugger
This patch tackles the time out problem which leads to break the boot process, when loading file over nfs. The patch does two things. First of all, we just ignore messages that arrive with a rpc_id smaller then the client id. We just interpret this messages as answers to formaly timed out

[U-Boot] [PATCH] env: Fixup typos in callback

2012-12-11 Thread Joe Hershberger
Use the same command guard on the help and make the help accurate. Fix spelling in header. Signed-off-by: Joe Hershberger joe.hershber...@ni.com --- common/cmd_nvedit.c| 6 +++--- include/env_callback.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-11 Thread Allen Martin
On Mon, Dec 10, 2012 at 01:51:40PM -0800, Tom Warren wrote: Albert, On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hello, It seems like two commits 5ddcc38b (in u-boot, committed by Marek) 29f3e3f2 (in u-boot-arm, committed by Tom from u-boot-tegra)

[U-Boot] Pull request: u-boot-net.git master

2012-12-11 Thread Joe Hershberger
The following changes since commit ea40a05422bdc87a7af5dc349e8adce59f982e72: MIPS: constify address pointer in test_bit() (2012-12-08 21:48:19 +0100) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to

[U-Boot] [PATCH v2] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Eric Bénard
- since commit 418396e212b59bf907dbccad997ff50f7eb61b16 nand write.raw can take the number of page to be written as an argument. nand_update_full is passing the size (in bytes) to nand write.raw. This value was previously ignored but now breaks the write. - this patch updates the default

[U-Boot] [PATCH] mx25pdk: Allow booting a device tree kernel

2012-12-11 Thread Fabio Estevam
From: Fabio Estevam fabio.este...@freescale.com Select CONFIG_OF_LIBFDT so that a device tree kernel can be launched. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- include/configs/mx25pdk.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/mx25pdk.h

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Scott Wood
On 12/11/2012 01:56:25 AM, Lukasz Majewski wrote: Hi Scott, On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: + sprintf(cmd_buf, nand %s %p %llx %llx, + op == DFU_OP_READ ? read : write, + buf, start, count); + + debug(%s: %s 0x%p\n, __func__,

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Scott Wood
On 12/10/2012 07:16:50 PM, Tom Rini wrote: On Mon, Dec 10, 2012 at 07:09:55PM -0600, Scott Wood wrote: On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: + sprintf(cmd_buf, nand %s %p %llx %llx, + op == DFU_OP_READ ? read : write, + buf, start, count); + +

[U-Boot] patchwork delegation

2012-12-11 Thread Scott Wood
Is there any way to find out who delegated a patch to me, or get a history of patchwork actions in general? People have been delegating patches to me that are not NAND-related, such as the series beginning with http://patchwork.ozlabs.org/patch/204177/ I am the NAND custodian (i.e. drivers/nand,

Re: [U-Boot] [PATCH] [DFU] Implement NAND dfu support

2012-12-11 Thread Tom Rini
On Tue, Dec 11, 2012 at 04:24:37PM -0600, Scott Wood wrote: On 12/10/2012 07:16:50 PM, Tom Rini wrote: On Mon, Dec 10, 2012 at 07:09:55PM -0600, Scott Wood wrote: On 12/10/2012 09:24:32 AM, Pantelis Antoniou wrote: + sprintf(cmd_buf, nand %s %p %llx %llx, + op == DFU_OP_READ ? read

Re: [U-Boot] patchwork delegation

2012-12-11 Thread Tom Rini
On Tue, Dec 11, 2012 at 04:34:23PM -0600, Scott Wood wrote: Is there any way to find out who delegated a patch to me, or get a history of patchwork actions in general? Not that I know of, but in general, yell at me, I probably did it. People have been delegating patches to me that are not

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

2012-12-11 Thread Scott Wood
On 12/10/2012 07:41:43 AM, Phil Sutter wrote: On Fri, Dec 07, 2012 at 11:38:11AM -0600, Scott Wood wrote: On 12/07/2012 10:58:53 AM, Phil Sutter wrote: Hmm. Does not look like CONFIG_ENV_OFFSET_OOB is used to select the block(s) within the erase page to save the environment. Looking at

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

2012-12-11 Thread Scott Wood
On 12/05/2012 02:48:47 PM, Wolfram Sang wrote: It could happen (1 out of 100 times) that NAND did not start up correctly after warm rebooting, so we end up with various failures or DMA timed out due to a stalled BCH. When resetting BCH together with GPMI, the issue could not be observed

Re: [U-Boot] [PATCH v2] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Scott Wood
On 12/11/2012 03:36:21 PM, Eric Bénard wrote: - since commit 418396e212b59bf907dbccad997ff50f7eb61b16 nand write.raw can take the number of page to be written as an argument. nand_update_full is passing the size (in bytes) to nand write.raw. This value was previously ignored but now breaks

[U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-11 Thread Tom Warren
This patch series adds basic (boot to cmd prompt) support for Tegra30. This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI) boot proc) first, then control is transferred to the CPU (A9 quad cluster). It is based on current u-boot-tegra/next. Some Tegra20 files were changed or

[U-Boot] [PATCH V3 2/7] Tegra30: Add AVP (arm720t) files

2012-12-11 Thread Tom Warren
This provides SPL support for T30 boards - AVP early init, plus CPU (A9) init/jump to main U-Boot. Some changes were made to Tegra20 cpu.c to move common routines into tegra-common/cpu.c and reduce code duplication. Signed-off-by: Tom Warren twar...@nvidia.com --- V2: * Move common CPU init code

[U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-11 Thread Tom Warren
Common Tegra files are in arch-tegra, shared between T20 and T30. Tegra30-specific headers are in arch-tegra30. Note that some of these will be filled in as more T30 support is added (drivers, WB/LP0 support, etc.). A couple of Tegra20 files were changed to support common headers in arch-tegra,

[U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-11 Thread Tom Warren
These files are used by both SPL and main U-Boot. Also made minor changes to shared Tegra code to support T30 differences. Signed-off-by: Tom Warren twar...@nvidia.com --- V2: * Differentiate between T20 and T30 in ODMDATA and query_sdram_size. * Fix numerous func entries in pingroup table as per

[U-Boot] [PATCH V3 5/7] Tegra30: Cardhu: Add DT files

2012-12-11 Thread Tom Warren
These are stripped down for bringup, They'll be filled out later to match-up with the kernel DT contents, and/or as devices are brought up (mmc, usb, spi, etc.). Signed-off-by: Tom Warren twar...@nvidia.com --- V2: Reduce to the minimum needed to build/boot to cmd prompt V3: Remove model= from

[U-Boot] [PATCH V3 6/7] Tegra30: Add generic Tegra30 build support

2012-12-11 Thread Tom Warren
This patch adds basic Tegra30 (T30) build support - no specific board is targeted. Signed-off-by: Tom Warren twar...@nvidia.com --- V2: * Use generic CONFIG_TEGRA in Makefile instead of specific SOC test * Cleanup a couple of include files due to T20/T30 build differences * Move pinmux_init to

[U-Boot] [PATCH V3 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-11 Thread Tom Warren
This build is stripped down. It boots to the command prompt. GPIO is the only peripheral supported. Others TBD. include/configs/tegra-common.h now holds common config options for Tegra SoCs. Signed-off-by: Tom Warren twar...@nvidia.com --- --- V2: * Move pinmux_init to cardhu.c, move

Re: [U-Boot] Pull request: u-boot-net.git master

2012-12-11 Thread Langer Thomas (LQDE RD ST PON SW)
Hello Joe, Tomas Hlavacek (67): net: dm: Pull out ops from struct eth_device net: 4xx_enet: Pull out init of struct eth_ops net: altera_tse: Pull out init of struct eth_ops net: dm9000x: Pull out init of struct eth_ops net: armada100_fec: Pull out init of

[U-Boot] [PATCH V3 3/7] Tegra30: Add CPU (armv7) files

2012-12-11 Thread Tom Warren
These files are for code that runs on the CPU (A9) on T30 boards. At this time, there are no T30-specific ARMV7 files. As T30-specific run-time code is added, it'll go here. Signed-off-by: Tom Warren twar...@nvidia.com --- V2: Cleanup whitespace issues V3: Change commit msg

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-11 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: Common Tegra files are in arch-tegra, shared between T20 and T30. Tegra30-specific headers are in arch-tegra30. Note that some of these will be filled in as more T30 support is added (drivers, WB/LP0 support, etc.). A couple of Tegra20 files were

Re: [U-Boot] [PATCH V3 2/7] Tegra30: Add AVP (arm720t) files

2012-12-11 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: This provides SPL support for T30 boards - AVP early init, plus CPU (A9) init/jump to main U-Boot. Some changes were made to Tegra20 cpu.c to move common routines into tegra-common/cpu.c and reduce code duplication. diff --git

Re: [U-Boot] [PATCH V3 3/7] Tegra30: Add CPU (armv7) files

2012-12-11 Thread Stephen Warren
On 12/11/2012 04:34 PM, Tom Warren wrote: These files are for code that runs on the CPU (A9) on T30 boards. At this time, there are no T30-specific ARMV7 files. As T30-specific run-time code is added, it'll go here. Reviewed-by: Stephen Warren swar...@nvidai.com

Re: [U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-11 Thread Allen Martin
On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote: This patch series adds basic (boot to cmd prompt) support for Tegra30. This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI) boot proc) first, then control is transferred to the CPU (A9 quad cluster). It is based on

Re: [U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-11 Thread Allen Martin
On Tue, Dec 11, 2012 at 05:09:45PM -0800, Allen Martin wrote: On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote: This patch series adds basic (boot to cmd prompt) support for Tegra30. This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI) boot proc) first, then

Re: [U-Boot] [PATCH v2] m28evk/mx28evk: fix nand_update_full

2012-12-11 Thread Marek Vasut
Dear Scott Wood, On 12/11/2012 03:36:21 PM, Eric Bénard wrote: - since commit 418396e212b59bf907dbccad997ff50f7eb61b16 nand write.raw can take the number of page to be written as an argument. nand_update_full is passing the size (in bytes) to nand write.raw. This value was previously

Re: [U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-11 Thread Allen Martin
On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote: This patch series adds basic (boot to cmd prompt) support for Tegra30. This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI) boot proc) first, then control is transferred to the CPU (A9 quad cluster). It is based on

[U-Boot] [BUGFIX PATCH] mips: serial: Fix busted manual relocation

2012-12-11 Thread Joe Hershberger
serial_initialize() must be called after relocation to adjust the pointers to putc(), getc(), etc. This is busted ever since the serial driver-model-ification series. Signed-off-by: Joe Hershberger joe.hershber...@ni.com --- arch/mips/lib/board.c | 2 ++ 1 file changed, 2 insertions(+) diff

Re: [U-Boot] Pull request: u-boot-net.git master

2012-12-11 Thread Joe Hershberger
Hi Thomas, On Tue, Dec 11, 2012 at 5:47 PM, Langer Thomas (LQDE RD ST PON SW) thomas.lan...@lantiq.com wrote: Hello Joe, These patches for static initialization of the struct eth_ops will break the drivers on any architecture which needs manual relocation! I've send a comment regarding

[U-Boot] [PATCH v5 13/20] env: Add a silent env handler

2012-12-11 Thread Joe Hershberger
The silent variable now updates the global data flag anytime it is changed as well as after the env relocation (in case its value is different from the default env in such cases as NAND env) Signed-off-by: Joe Hershberger joe.hershber...@ni.com --- Changes in v5: None Changes in v4: None Changes

[U-Boot] [PATCH v5 10/20] env: Add a baudrate env handler

2012-12-11 Thread Joe Hershberger
Remove the hard-coded baudrate handler and use a callback instead Signed-off-by: Joe Hershberger joe.hershber...@ni.com --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None common/cmd_nvedit.c | 47 - drivers/serial/serial.c |

  1   2   >