Re: [U-Boot] [PATCH 2/2] wandboard: Add Boot Splash image with Wandboard logo

2013-05-28 Thread Wolfgang Denk
Dear Otavio Salvador, In message cap9odko_uo4bs1xr3c5mjupmiw+t1t+vzvmzrvjkwpr+igz...@mail.gmail.com you wrote: --- a/tools/Makefile +++ b/tools/Makefile @@ -146,6 +146,9 @@ endif ifeq ($(VENDOR),syteco) LOGO_BMP= logos/syteco.bmp endif +ifeq ($(VENDOR),wandboard)

Re: [U-Boot] [HELP]: sf: winbond: add W25Q32

2013-05-28 Thread Rajeshwari Birje
Hi Jagan, Yes you are right it has to be 16. So you want me to and send a patch correcting it? Or you want me to revert it and send a new patch? -- Regards, Rajeshwari Shinde On Mon, May 27, 2013 at 12:30 PM, Jagan Teki jagannadh.t...@gmail.com wrote: Hi Rajeshwari, On Mon, May 27, 2013 at

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Heiko Schocher
Hello Wolfgang, Am 28.05.2013 07:58, schrieb Wolfgang Denk: Dear Heiko, In message 51a42ccd.1020...@denx.de you wrote: I would imagine, but testing and implementation might show a better way, we do UBI as name ubi ubiN volume-name, ie: rootfs ubi ubi0 rootfs user ubi ubi0 user-data and

Re: [U-Boot] [PATCH] powerpc/CoreNet: Allow pbl images to take u-boot images != 512K

2013-05-28 Thread Xie Shaohui-B21989
On 27/05/13 18:18, Xie Shaohui-B21989 wrote: Hi, Chris, For the init value of next_pbl_cmd, there was a patch at below link can be used: http://lists.denx.de/pipermail/u-boot/2013-March/150260.html Thanks for the pointer. I did check the main u-boot.git tree but didn't search the

Re: [U-Boot] [HELP]: sf: winbond: add W25Q32

2013-05-28 Thread Jagan Teki
On Tue, May 28, 2013 at 11:38 AM, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi Jagan, Yes you are right it has to be 16. So you want me to and send a patch correcting it? Or you want me to revert it and send a new patch? -- Regards, Rajeshwari Shinde On Mon, May 27, 2013 at

Re: [U-Boot] [PATCH 1/2 V2] SF: Add driver for Gigabyte device GD25LQ and GD25Q64B

2013-05-28 Thread Jagan Teki
Any update on this. Was this patch refereed for denx tree? Thanks, Jagan. On Tue, May 21, 2013 at 6:40 PM, Jagan Teki jagannadh.t...@gmail.com wrote: Hi, I think this reviewed already, but have a very few comments. On Wed, Jan 23, 2013 at 12:00 PM, Rajeshwari Shinde

Re: [U-Boot] [PATCH] drivers:lcd: fix unaligned access on lcd

2013-05-28 Thread Nikita Kiryanov
Hi Piotr, On 05/27/2013 02:35 PM, Piotr Wilczek wrote: Dear Wolfgang Denk, -Original Message- From: Wolfgang Denk [mailto:w...@denx.de] Sent: Friday, May 24, 2013 8:33 PM To: Piotr Wilczek Cc: u-boot@lists.denx.de; Kyungmin Park Subject: Re: [U-Boot] [PATCH] drivers:lcd: fix unaligned

[U-Boot] [PATCH v2 0/6] Optimize ARM relocation

2013-05-28 Thread Albert ARIBAUD
*** NOTE: this series applies over the 'Factorize ARM relocate_code instances' series. This series optimizes relocation by ensuring ARM binaries only use one type of relocation record, R_ARM_RELATIVE., then optimizing relocation code accordingly. 1. A Makefile rule is added that checks that no

[U-Boot] [PATCH v2 2/6] remove all references to .dynsym

2013-05-28 Thread Albert ARIBAUD
Discard all .dynsym sections from linker scripts Remove all __dynsym_start definitions from linker scripts Remove all __dynsym_start references from the codebase Note: this touches include/asm-generic/sections.h, which is not ARM-specific, but actual uses of __dynsym_start are only in ARM, so

[U-Boot] [PATCH v2 1/6] arm: ensure u-boot only uses relative relocations

2013-05-28 Thread Albert ARIBAUD
Add a Makefile target ('checkarmreloc') which fails of the ELF binary contains relocation records of types other than R_ARM_RELATIVE. Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v2: - use $ instead of $(obj)u-boot Makefile |7 +++ arch/arm/config.mk

[U-Boot] [PATCH v2 4/6] arm: make __image_copy_{start, end} compiler-generated

2013-05-28 Thread Albert ARIBAUD
This change is only done where needed: some linker scripts may contain __image_copy_{start,end} yet remain unchanged. Also, __image_copy_end needs its own section; putting it in relocation sections changes their flags and makes relocation breaks. Signed-off-by: Albert ARIBAUD

[U-Boot] [PATCH v2 5/6] arm: make __rel_dyn_{start, end} compiler-generated

2013-05-28 Thread Albert ARIBAUD
This change is only done where needed: some linker scripts may contain relocation symbols yet remain unchanged. __rel_dyn_start and __rel_dyn_end each requires its own output section; putting them in relocation sections changes their flags and breaks relocation. Signed-off-by: Albert ARIBAUD

[U-Boot] [PATCH v2 3/6] arm: generalize lib/bss.c into lib/sections.c

2013-05-28 Thread Albert ARIBAUD
File arch/arm/lib/bss.c was initially defined for BSS only, but is now going to also contain definitions for other section-boundary-related symbols, so rename it for better accuracy. Also, remove useless 'used' attributes. Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in

[U-Boot] [PATCH v2 6/6] arm: optimize relocate_code routine

2013-05-28 Thread Albert ARIBAUD
Use section symbols directly Drop support for R_ARM_ABS32 record types Eliminate unneeded intermediate registers Optimize relocation table iteration Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- Changes in v2: None arch/arm/lib/relocate.S | 32 1

Re: [U-Boot] [PATCH v3 1/2] build: Use generic boot logo matching

2013-05-28 Thread Wolfgang Denk
Dear Otavio Salvador, In message 1369693124-26106-1-git-send-email-ota...@ossystems.com.br you wrote: The boot logo matching is now done in following way: - use LOGO_BMP if it is set, or - use $(BOARD).bmp if it exists in tools/logos, or - use $(VENDOR).bmp if it exists in tools/logos,

Re: [U-Boot] SF: Add Spansion S25FL064P IDs

2013-05-28 Thread Jagan Teki
On 28-08-2012 20:43, Marek Vasut wrote: This is a S25FL064A successor. It supports up to 104MHz bus speed. Signed-off-by: Marek Vasut ma...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Mike Frysinger vap...@gentoo.org Cc: Scott Wood scottw...@freescale.com Cc: Wolfgang Denk w...@denx.de ---

Re: [U-Boot] [PATCH] Wandboard: Add support for Wandboard quad

2013-05-28 Thread Tapani Utriainen
On Mon, 27 May 2013 13:56:30 -0300 Otavio Salvador ota...@ossystems.com.br wrote: I have sent two patches for adding the Boot Splash with Wandboard logo. Please take a look on them and if you agree please base on this to avoid conflicts. (For easyness:

Re: [U-Boot] [PATCH] Wandboard: Add support for Wandboard quad

2013-05-28 Thread Tapani Utriainen
On Mon, 27 May 2013 07:22:42 -0300 Fabio Estevam feste...@gmail.com wrote: Hi Tapani, On Mon, May 27, 2013 at 1:13 AM, Tapani Utriainen tap...@technexion.com wrote: Add support for the Wandboard quad. Signed-off-by: Tapani Utriainen tap...@technexion.com --- boards.cfg

Re: [U-Boot] [U-Boot, v2] sf: winbond: Add support for W25PXX SPI flash

2013-05-28 Thread Jagan Teki
On 23-05-2013 20:39, Kuo-Jung Su wrote: From: Kuo-Jung Su dant...@faraday-tech.com Add support for Winbond's W25PXX SPI flash. These devices is used on Faraday A369 evaluation board. Signed-off-by: Kuo-Jung Su dant...@faraday-tech.com CC: Jagan Teki jagannadh.t...@gmail.com CC: Tom Rini

Re: [U-Boot] [U-Boot,4/4] sf: winbond: Add support for W25Q256

2013-05-28 Thread Jagan Teki
On 23-02-2013 07:09, Jagannadha Sutradharudu Teki wrote: Add support for Winbond W25Q256 SPI flash. Signed-off-by: Jagannadha Sutradharudu Teki jaga...@xilinx.com --- drivers/mtd/spi/winbond.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git

Re: [U-Boot] [PATCH v2 06/10] powerpc/ppc4xx: Use generic FPGA accessors on all gdsys 405ep/ex boards

2013-05-28 Thread Dirk Eibach
Hello Wolfgang, would you please have a look at this? I need some feedback to get this finally sorted. Cheers Dirk 2013/5/15 Dirk Eibach dirk.eib...@gdsys.cc: Hello Wolfgang, sorry for the delay, I had to clean some other things on my ToDoList. I cleaned up my patchseries and wanted to

Re: [U-Boot] [PATCH v2 06/10] powerpc/ppc4xx: Use generic FPGA accessors on all gdsys 405ep/ex boards

2013-05-28 Thread Dirk Eibach
Hello Wolfgang, would you please have a look at this? I need some feedback to get this finally sorted. Cheers Dirk 2013/5/15 Dirk Eibach dirk.eib...@gdsys.cc: Hello Wolfgang, sorry for the delay, I had to clean some other things on my ToDoList. I cleaned up my patchseries and wanted to

Re: [U-Boot] minimum bdi config to read flash on 85xx

2013-05-28 Thread Monica
Hi Fabio, The CPU is imx6 customed processor. The Prog command shows it passed but the u-boot.bin is not uploaded. Regards, Monica.S From: Fabio Estevam-2 [via U-Boot] [mailto:ml-node+s10912n155717...@n7.nabble.com] Sent: Monday, May 27, 2013 7:08 PM To: Monica Sampathkumar Subject: Re:

[U-Boot] [PATCH v2] Add support for Wandboard quad.

2013-05-28 Thread Tapani Utriainen
Add support for Wandboard quad. Signed-off-by: Tapani Utriainen tap...@technexion.com --- Changes from v1: - reorganized the board names into alphabetical order - added quad entry to the Wandboard README board/wandboard/README | 5 + boards.cfg | 1 +

Re: [U-Boot] [PATCH] Wandboard: Add support for Wandboard quad

2013-05-28 Thread Stefano Babic
On 28/05/2013 09:44, Tapani Utriainen wrote: Hi Tapani, Otavio, while I do agree with the work you are doing (HDMI bootlogo into mainline), and would not have minded to base my patches on top of yours. However, the patches you sent seem to have been NAK:ed. The v3 does not apply on top

Re: [U-Boot] [PATCH v3 0/6] arm: mvf600: Add Freescale Vybrid MVF600 CPU and MVF600TWR board support

2013-05-28 Thread Wang Huan-B18965
Hi, Stefano, On 24/05/2013 08:18, Wang Huan-B18965 wrote: [Alison Wang] We usually named the Powerpc(before QorIQ) as MPC and ColdFire as MCF, So we generally named the Vybrid as MVF. We had some internal discussion for this, and we think we should use VF instead of MVF, we will follow

Re: [U-Boot] [PATCH v3 0/6] arm: mvf600: Add Freescale Vybrid MVF600 CPU and MVF600TWR board support

2013-05-28 Thread Wang Huan-B18965
Hi, benoit, On Tuesday, May 21, 2013 11:02:55 AM, Alison Wang wrote: This series contain the support for Freescale Vybrid MVF600 CPU and MVF600TWR board. Vybird devices are built on an asymmetrical-multiprocessing architecture using ARM cores. The families in the

Re: [U-Boot] [PATCH v3 0/6] arm: mvf600: Add Freescale Vybrid MVF600 CPU and MVF600TWR board support

2013-05-28 Thread Stefano Babic
On 28/05/2013 10:51, Wang Huan-B18965 wrote: Hi, Stefano, On 24/05/2013 08:18, Wang Huan-B18965 wrote: [Alison Wang] We usually named the Powerpc(before QorIQ) as MPC and ColdFire as MCF, So we generally named the Vybrid as MVF. We had some internal discussion for this, and we think we

[U-Boot] [PATCH v4 4/7] arm: vf610: Add watchdog support for Vybrid VF610

2013-05-28 Thread Alison Wang
This patch adds watchdog support for Vybrid VF610 platform. Signed-off-by: Alison Wang b18...@freescale.com --- Changes in v4: - Rename mvf600 to vf610 Changes in v3: None Changes in v2: - Add watchdog support - Use reset_cpu() in imx_watchdog.c drivers/watchdog/Makefile | 2 +- 1 file

[U-Boot] [PATCH v4 0/7] arm: vf610: Add Freescale Vybrid VF610 CPU and VF610TWR board support

2013-05-28 Thread Alison Wang
This series contain the support for Freescale Vybrid VF610 CPU and VF610TWR board. Vybird devices are built on an asymmetrical-multiprocessing architecture using ARM cores. The families in the Vybrid portfolio span entry-level, single core Cortex-A class SoCs all the way to dual heterogeneous

[U-Boot] [PATCH v4 1/7] arm: vf610: Add IOMUX support for Vybrid VF610

2013-05-28 Thread Alison Wang
This patch adds the IOMUX support for Vybrid VF610 platform. There is a little difference for IOMUXC module between VF610 and i.MX platform, the muxmode and pad configuration share one 32bit register on VF610, but they are two independent registers on I.MX platform. A

[U-Boot] [PATCH v4 5/7] arm: vf610: Add uart support for Vybrid VF610

2013-05-28 Thread Alison Wang
This patch adds lpuart support for Vybrid VF610 platform. Signed-off-by: TsiChung Liew tsicl...@gmail.com Signed-off-by: Alison Wang b18...@freescale.com --- Changes in v4: None Changes in v3: - Move the structure definition to imx-regs.h Changes in v2: - Define C structures and access C

[U-Boot] [PATCH v4 2/7] arm: vf610: Add Vybrid VF610 CPU support

2013-05-28 Thread Alison Wang
This patch adds generic codes to support Freescale's Vybrid VF610 CPU. It aligns Vybrid VF610 platform with i.MX platform. As there are some differences between VF610 and i.MX platforms, the specific codes are in the arch/arm/cpu/armv7/vf610 directory. Signed-off-by: Alison Wang

[U-Boot] [PATCH v4 6/7] arm: vf610: Add Vybrid VF610 to mxc_ocotp document

2013-05-28 Thread Alison Wang
This patch adds Vybrid VF610 to mxc_ocotp document. Signed-off-by: Alison Wang b18...@freescale.com --- Changes in v4: New Changes in v3: None Changes in v2: None doc/README.mxc_ocotp | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/README.mxc_ocotp b/doc/README.mxc_ocotp index

[U-Boot] [PATCH v4 3/7] net: fec_mxc: Add support for Vybrid VF610

2013-05-28 Thread Alison Wang
This patch adds FEC support for Vybrid VF610 platform. In function fec_open(), RCR register is only set as RGMII mode. But RCR register should be set as RMII mode for VF610 platform. This configuration is already done in fec_reg_setup(), so this piece of code could just leave untouched the

[U-Boot] [PATCH v4 7/7] arm: vf610: Add basic support for Vybrid VF610TWR board

2013-05-28 Thread Alison Wang
VF610TWR is a board based on Vybrid VF610 SoC. This patch adds basic support for Vybrid VF610TWR board. Signed-off-by: Alison Wang b18...@freescale.com Signed-off-by: Jason Jin jason@freescale.com Signed-off-by: TsiChung Liew tsicl...@gmail.com --- Changes in v4: - Rename directory name

[U-Boot] about uboot leads to LAN disconnected

2013-05-28 Thread wanghgsz
Dear all, Device is a camera connected LAN, camera board CPU is RT5350(based on MIPS) . I have met a problem about uboot. uboot leads to LAN disconnected in the following cases. I have been looking forward to answers. with best wishes case 1 : when CRC checksum

Re: [U-Boot] [PATCH v2 06/10] powerpc/ppc4xx: Use generic FPGA accessors on all gdsys 405ep/ex boards

2013-05-28 Thread Wolfgang Denk
Dear Dirk, In message 0e4604dcfff89a1bd2b7f144a5b3c...@gdsys.cc you wrote: sorry for the delay, I had to clean some other things on my ToDoList. Ditto :-( void fpga_set_reg(u32 fpga, u16 *reg, off_t regoff, u16 data) { if (fpga) return mclink_send(fpga - 1, regoff,

Re: [U-Boot] [PATCH v2] Add support for Wandboard quad.

2013-05-28 Thread Otavio Salvador
On Tue, May 28, 2013 at 5:04 AM, Tapani Utriainen tap...@technexion.comwrote: Add support for Wandboard quad. Signed-off-by: Tapani Utriainen tap...@technexion.com Acked-by: Otavio Salvador ota...@ossystems.com.br -- Otavio Salvador O.S. Systems

Re: [U-Boot] [PATCH] Wandboard: Add support for Wandboard quad

2013-05-28 Thread Otavio Salvador
On Tue, May 28, 2013 at 4:44 AM, Tapani Utriainen tap...@technexion.comwrote: On Mon, 27 May 2013 13:56:30 -0300 Otavio Salvador ota...@ossystems.com.br wrote: I have sent two patches for adding the Boot Splash with Wandboard logo. Please take a look on them and if you agree please base on

Re: [U-Boot] [U-BOOT PATCH] sf: Fix sf read for memory-mapped SPI flashes

2013-05-28 Thread Jagan Teki
Hi Simon, Can you please check this change. Thanks, Jagan. On Tue, May 28, 2013 at 1:44 AM, Jagannadha Sutradharudu Teki jagannadha.sutradharudu-t...@xilinx.com wrote: Missing return after memcpy is done for memory-mapped SPI flashes, hence added retun 0 after memcpy done. The return is

Re: [U-Boot] [PATCH v4 0/4] Factorize ARM relocate_code instances

2013-05-28 Thread Albert ARIBAUD
Hi Fabio, On Tue, 21 May 2013 10:24:19 -0300, Fabio Estevam feste...@gmail.com wrote: Hi Benoît, On Mon, May 20, 2013 at 12:39 PM, Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: Can you test this series on mx31pdk (directly changed by this series), and some other i.MX EVK

Re: [U-Boot] [PATCH v2] EXYNOS: SPL: Add a custom spi copy function

2013-05-28 Thread Rajeshwari Birje
Hi Wolfgang Denk, Thank you for review comments. On Sun, May 12, 2013 at 2:01 AM, Wolfgang Denk w...@denx.de wrote: Dear Simon Glass, In message 1368285471-11039-1-git-send-email-...@chromium.org you wrote: From: Rajeshwari Shinde rajeshwar...@samsung.com This CL implements a custom

[U-Boot] Soft_spi questions

2013-05-28 Thread laurent vaudoit
Hello all, i have integrated soft_spi driver in u-boot, in order to communicate with a FRAM device, using some GPIO. I use mode 0 of spi (CPHA=0, CPOL=0). When i try to communicate with the device, i have a problem, none of my commands are answered. After looking signals with scope, i see that

Re: [U-Boot] [PATCH] da830: add MMC support

2013-05-28 Thread Tom Rini
On Mon, May 27, 2013 at 03:33:58AM +, Vishwanathrao Badarkhe, Manish wrote: Hi Tom On Fri, May 24, 2013 at 21:31:56, Rini, Tom wrote: On Fri, May 24, 2013 at 08:16:14AM +0530, Vishwanathrao Badarkhe, Manish wrote: Add MMC support for da830 boards in order to perform mmc

Re: [U-Boot] Soft_spi questions

2013-05-28 Thread Jagan Teki
HI, Few little comments. CCed driver contributed delegate, may be they will help if I am missing any thing. On Tue, May 28, 2013 at 6:48 PM, laurent vaudoit laurent.vaud...@gmail.com wrote: Hello all, i have integrated soft_spi driver in u-boot, in order to communicate with a FRAM device,

Re: [U-Boot] [PATCH v3 0/2] cmd_sf: print message support

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 01:41:44AM +0530, Jagannadha Sutradharudu Teki wrote: I agreed that adding new prints will increase the foot-print, but here I have removed the verbose messages from sf_flash and add on cmd_sf. These are much essential for showing print messages while user using sf

Re: [U-Boot] Soft_spi questions

2013-05-28 Thread laurent vaudoit
Hi, thanks for your answer. On Tue, May 28, 2013 at 4:41 PM, Jagan Teki jagannadh.t...@gmail.comwrote: HI, Few little comments. CCed driver contributed delegate, may be they will help if I am missing any thing. On Tue, May 28, 2013 at 6:48 PM, laurent vaudoit laurent.vaud...@gmail.com

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 07:50:46AM +0200, Wolfgang Denk wrote: Dear Tom, In message 20130527233735.GZ17119@bill-the-cat you wrote: Where exactly is this 8 MB limit coming into play? In buffering the data. We cannot write a chunk of a file to a filesystem and then append to it, we

[U-Boot] [PATCH V2] input: simplify key_matrix_decode_fdt()

2013-05-28 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com We know the exact property names that the code wants to process. Look these up directly with fdt_get_property(), rather than iterating over all properties within the node, and checking each property's name, in a convoluted fashion, against the expected

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Pantelis Antoniou
Hi Tom, On May 28, 2013, at 6:01 PM, Tom Rini wrote: On Tue, May 28, 2013 at 07:50:46AM +0200, Wolfgang Denk wrote: Dear Tom, In message 20130527233735.GZ17119@bill-the-cat you wrote: Where exactly is this 8 MB limit coming into play? In buffering the data. We cannot write a chunk of

Re: [U-Boot] powerpc/mpc8xxx failed to compile: operand out of range

2013-05-28 Thread Jérôme Arzel
On 05/27/2013 11:25:17 AM, Jérôme Arzel wrote: On 05/24/2013 10:13:55 PM, Scott Wood wrote: On 05/23/2013 04:52:26 AM, Jérôme Arzel wrote: Hi all, I have an issue when I compile U-Boot for my target machine (P1022DS, 36-bit). Here is the error message:

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 07:55:03AM +0200, Wolfgang Denk wrote: Dear Heiko, In message 51a427a8.8090...@denx.de you wrote: Where exactly is this 8 MB limit coming into play? You find this in drivers/dfu/dfu.c: static unsigned char __aligned(CONFIG_SYS_CACHELINE_SIZE)

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 08:24:06AM +0200, Heiko Schocher wrote: Hello Wolfgang, Am 28.05.2013 07:58, schrieb Wolfgang Denk: Dear Heiko, In message 51a42ccd.1020...@denx.de you wrote: I would imagine, but testing and implementation might show a better way, we do UBI as name ubi

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Benoît Thébaudeau
Dear Pantelis Antoniou, On Tuesday, May 28, 2013 5:05:12 PM, Pantelis Antoniou wrote: Hi Tom, On May 28, 2013, at 6:01 PM, Tom Rini wrote: On Tue, May 28, 2013 at 07:50:46AM +0200, Wolfgang Denk wrote: Dear Tom, In message 20130527233735.GZ17119@bill-the-cat you wrote: Where

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Pantelis Antoniou
Hi Benoît On May 28, 2013, at 7:31 PM, Benoît Thébaudeau wrote: Dear Pantelis Antoniou, On Tuesday, May 28, 2013 5:05:12 PM, Pantelis Antoniou wrote: Hi Tom, On May 28, 2013, at 6:01 PM, Tom Rini wrote: On Tue, May 28, 2013 at 07:50:46AM +0200, Wolfgang Denk wrote: Dear Tom, In

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Benoît Thébaudeau
Hi Pantelis, On Tuesday, May 28, 2013 6:43:06 PM, Pantelis Antoniou wrote: Hi Benoît On May 28, 2013, at 7:31 PM, Benoît Thébaudeau wrote: Dear Pantelis Antoniou, On Tuesday, May 28, 2013 5:05:12 PM, Pantelis Antoniou wrote: Hi Tom, On May 28, 2013, at 6:01 PM, Tom Rini wrote:

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Pantelis Antoniou
Hi On May 28, 2013, at 7:43 PM, Benoît Thébaudeau wrote: Hi Pantelis, On Tuesday, May 28, 2013 6:43:06 PM, Pantelis Antoniou wrote: Hi Benoît On May 28, 2013, at 7:31 PM, Benoît Thébaudeau wrote: Dear Pantelis Antoniou, On Tuesday, May 28, 2013 5:05:12 PM, Pantelis Antoniou wrote:

Re: [U-Boot] [PATCH v2 1/6] arm: ensure u-boot only uses relative relocations

2013-05-28 Thread Benoît Thébaudeau
Hi Albert, On Tuesday, May 28, 2013 9:01:46 AM, Albert ARIBAUD wrote: Add a Makefile target ('checkarmreloc') which fails of the ELF binary contains relocation records ^ if Sorry to have missed that in my review of v1. of types other than R_ARM_RELATIVE. The rest of the

Re: [U-Boot] [PATCH v2 4/6] arm: make __image_copy_{start, end} compiler-generated

2013-05-28 Thread Benoît Thébaudeau
Hi Albert, On Tuesday, May 28, 2013 9:01:49 AM, Albert ARIBAUD wrote: This change is only done where needed: some linker scripts may contain __image_copy_{start,end} yet remain unchanged. Also, __image_copy_end needs its own section; putting it in relocation sections changes their flags

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 06:31:41PM +0200, Beno??t Th??baudeau wrote: [snip] Of course this can't yet apply to writing files on file systems since the current API in U-Boot misses the append feature, but this could be applied to program raw memory partitions, including UBI images. Correct. We

Re: [U-Boot] [PATCH v2 1/6] arm: ensure u-boot only uses relative relocations

2013-05-28 Thread Albert ARIBAUD
Hi Benoît, On Tue, 28 May 2013 19:04:23 +0200 (CEST), Benoît Thébaudeau benoit.thebaud...@advansee.com wrote: Hi Albert, On Tuesday, May 28, 2013 9:01:46 AM, Albert ARIBAUD wrote: Add a Makefile target ('checkarmreloc') which fails of the ELF binary contains relocation records ^

Re: [U-Boot] [RFC PATCH 4/7] Add Kconfig scripts and related material

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 10:31:59AM +0900, Masahiro Yamada wrote: [snip] So, my first request is that this commit should just import scripts as they are in Linux Kernel (plus renaming from Makefile to Makefile.kbuild) All modification you make for U-Boot should be pushed into the next

[U-Boot] [PATCH] mmc: fsl_esdhc: Fix hang after 'save' command

2013-05-28 Thread Fabio Estevam
Since commit 48e0b2bd (powerpc/esdhc: Correct judgement for DATA PIO mode) we see mx6 systems to hang after doing a 'save' command. Revert this commit since the original 'ifdef' logic from 7b43db92 (drivers/mmc/fsl_esdhc.c: fix compiler warnings) was the correct one. Reported-by: Tapani

Re: [U-Boot] [PATCH] mmc: fsl_esdhc: Fix hang after 'save' command

2013-05-28 Thread Otavio Salvador
On Tue, May 28, 2013 at 3:09 PM, Fabio Estevam fabio.este...@freescale.comwrote: Since commit 48e0b2bd (powerpc/esdhc: Correct judgement for DATA PIO mode) we see mx6 systems to hang after doing a 'save' command. Revert this commit since the original 'ifdef' logic from 7b43db92

Re: [U-Boot] [PATCH] mmc: fsl_esdhc: Fix hang after 'save' command

2013-05-28 Thread Fabio Estevam
On Tue, May 28, 2013 at 3:31 PM, Otavio Salvador ota...@ossystems.com.br wrote: This seem to affect 'master' branch, not 'imx' tree. Is that correct? Yes, the offending commit is in master, but not on u-boot-imx branch. ___ U-Boot mailing list

Re: [U-Boot] SF: Add Spansion S25FL064P IDs

2013-05-28 Thread Marek Vasut
Dear Jagan Teki, On 28-08-2012 20:43, Marek Vasut wrote: This is a S25FL064A successor. It supports up to 104MHz bus speed. Signed-off-by: Marek Vasut ma...@denx.de Cc: Heiko Schocher h...@denx.de Cc: Mike Frysinger vap...@gentoo.org Cc: Scott Wood scottw...@freescale.com Cc:

Re: [U-Boot] [PATCH v4 1/7] arm: vf610: Add IOMUX support for Vybrid VF610

2013-05-28 Thread Benoît Thébaudeau
Hi Alison, On Tuesday, May 28, 2013 10:55:41 AM, Alison Wang wrote: This patch adds the IOMUX support for Vybrid VF610 platform. There is a little difference for IOMUXC module between VF610 and i.MX platform, the muxmode and pad configuration share one 32bit register on VF610, but they are

[U-Boot] [PATCH] mx27: add function enable_caches

2013-05-28 Thread Philippe Reynes
Signed-off-by: Philippe Reynes trem...@yahoo.fr --- arch/arm/cpu/arm926ejs/mx27/generic.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/mx27/generic.c b/arch/arm/cpu/arm926ejs/mx27/generic.c index 41bb84b..4239fa0 100644 ---

[U-Boot] [PATCH] mx27: add i2c clock

2013-05-28 Thread Philippe Reynes
Signed-off-by: Eric Jarrige eric.jarr...@armadeus.org --- arch/arm/cpu/arm926ejs/mx27/generic.c |2 ++ arch/arm/include/asm/arch-mx27/clock.h |1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/mx27/generic.c

[U-Boot] [PATCH] mx27: add missing constant for mx27

2013-05-28 Thread Philippe Reynes
Add some missing constant (chip select, ...) Signed-off-by: Philippe Reynes trem...@yahoo.fr Signed-off-by: Eric Jarrige eric.jarr...@armadeus.org --- arch/arm/cpu/arm926ejs/mx27/asm-offsets.c |5 + arch/arm/include/asm/arch-mx27/imx-regs.h |3 ++- 2 files changed, 7 insertions(+), 1

Re: [U-Boot] [PATCH v4 2/7] arm: vf610: Add Vybrid VF610 CPU support

2013-05-28 Thread Benoît Thébaudeau
Hi Alison, On Tuesday, May 28, 2013 10:55:42 AM, Alison Wang wrote: This patch adds generic codes to support Freescale's Vybrid VF610 CPU. It aligns Vybrid VF610 platform with i.MX platform. As there are some differences between VF610 and i.MX platforms, the specific codes are in the

Re: [U-Boot] [PATCH v4 3/7] net: fec_mxc: Add support for Vybrid VF610

2013-05-28 Thread Benoît Thébaudeau
Hi Alison, On Tuesday, May 28, 2013 10:55:43 AM, Alison Wang wrote: This patch adds FEC support for Vybrid VF610 platform. In function fec_open(), RCR register is only set as RGMII mode. But RCR register should be set as RMII mode for VF610 platform. This configuration is already done in

Re: [U-Boot] [PATCH v4 2/7] arm: vf610: Add Vybrid VF610 CPU support

2013-05-28 Thread Benoît Thébaudeau
Hi Alison, On Tuesday, May 28, 2013 9:16:20 PM, Benoît Thébaudeau wrote: Hi Alison, On Tuesday, May 28, 2013 10:55:42 AM, Alison Wang wrote: This patch adds generic codes to support Freescale's Vybrid VF610 CPU. It aligns Vybrid VF610 platform with i.MX platform. As there are some

[U-Boot] [PATCH] fdt: Enhance dts/Makefile to be all things to all men

2013-05-28 Thread Simon Glass
There are a few partially conflicting requirements in compiling the device tree, since U-Boot relies on whatever is installed on the build machine. Some versions of dtc support -i, and this is often better than using #include since you get correct line number information in errors. Unfortunately

Re: [U-Boot] [PATCH] mmc: fsl_esdhc: Fix hang after 'save' command

2013-05-28 Thread Fleming Andy-AFLEMING
On May 28, 2013, at 1:09 PM, Fabio Estevam wrote: Since commit 48e0b2bd (powerpc/esdhc: Correct judgement for DATA PIO mode) we see mx6 systems to hang after doing a 'save' command. Revert this commit since the original 'ifdef' logic from 7b43db92 (drivers/mmc/fsl_esdhc.c: fix compiler

Re: [U-Boot] [PATCH] fdt: Enhance dts/Makefile to be all things to all men

2013-05-28 Thread Tom Warren
Simon, -Original Message- From: Simon Glass [mailto:s...@chromium.org] Sent: Tuesday, May 28, 2013 12:36 PM To: U-Boot Mailing List Cc: Tom Rini; Stephen Warren; Devicetree Discuss; u-boot- rev...@google.com; Simon Glass; Tom Warren; Jerry Van Baren Subject: [PATCH] fdt: Enhance

Re: [U-Boot] [PATCH v4 7/7] arm: vf610: Add basic support for Vybrid VF610TWR board

2013-05-28 Thread Benoît Thébaudeau
Hi Alison, On Tuesday, May 28, 2013 10:55:47 AM, Alison Wang wrote: VF610TWR is a board based on Vybrid VF610 SoC. This patch adds basic support for Vybrid VF610TWR board. Signed-off-by: Alison Wang b18...@freescale.com Signed-off-by: Jason Jin jason@freescale.com Signed-off-by:

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Wolfgang Denk
Dear Tom, In message 20130528172309.GF5829@bill-the-cat you wrote: Of course this can't yet apply to writing files on file systems since the current API in U-Boot misses the append feature, but this could be applied to program raw memory partitions, including UBI images. Correct. We

Re: [U-Boot] [PATCH v2] OMAP5: Fix bug in omap5_es1_prcm struct

2013-05-28 Thread Tom Rini
On Sun, May 26, 2013 at 11:03:17PM +0300, Lubomir Popov wrote: The newly introduced function setup_warmreset_time(), called from within prcm_init(), tries to write to the prm_rsttime OMAP5 register. The struct member holding this register's address is however initialized for OMAP5 ES2.0 only.

Re: [U-Boot] [PATCH 0/5] sf: Code cleanup patch set

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 01:27:23AM +0530, Jagannadha Sutradharudu Teki wrote: This patch set consist of code clean-up on sf. Thanks, Jagan. Jagannadha Sutradharudu Teki (5): sf: eon|spansion|ramtron: Fix code cleanup sf: sst: Fix code cleanup sf: stmicro: Fix code cleanup sf:

Re: [U-Boot] [PATCH] fdt: Enhance dts/Makefile to be all things to all men

2013-05-28 Thread Stephen Warren
On 05/28/2013 01:36 PM, Simon Glass wrote: There are a few partially conflicting requirements in compiling the device tree, since U-Boot relies on whatever is installed on the build machine. Some versions of dtc support -i, and this is often better than using #include since you get correct

Re: [U-Boot] [PATCH] fdt: Enhance dts/Makefile to be all things to all men

2013-05-28 Thread Wolfgang Denk
Dear Simon Glass, In message 1369769778-12455-1-git-send-email-...@chromium.org you wrote: Some device tree files use the word 'linux' which gets replaced with '1' by many version of gcc, including version 4.7. So undefine this. I think this is not a good way to address this issue. The GCC

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Tom Rini
On Tue, May 28, 2013 at 11:01:09PM +0200, Wolfgang Denk wrote: Dear Tom, In message 20130528172309.GF5829@bill-the-cat you wrote: Of course this can't yet apply to writing files on file systems since the current API in U-Boot misses the append feature, but this could be applied to

[U-Boot] pull request for u-boot-tegra/master into ARM/master

2013-05-28 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into ARM/master. Thanks! ./MAKEALL for all the Tegra boards is OK, running a ./MAKEALL -a arm now. tools/checkpatch.pl is clean. The following changes since commit fd725691797bb3192af15a15c2cba7d0b2ee9327: arm: Enable -ffunction-sections /

[U-Boot] [PATCH] powerpc/pixis: Fix pixis help message

2013-05-28 Thread York Sun
pixis_reset help command prints the message without a new line \n, which makes the prompt on the same line. Signed-off-by: York Sun york...@freescale.com --- board/freescale/common/pixis.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/common/pixis.c

Re: [U-Boot] [PATCH 5/6] spl: Make CONFIG_SPL_BUILD contain more functionality

2013-05-28 Thread Scott Wood
On 05/22/2013 08:26:31 PM, Zhang Ying-B40530 wrote: -Original Message- From: Wood Scott-B07421 Sent: Wednesday, May 22, 2013 11:46 PM To: Zhang Ying-B40530 Cc: Wood Scott-B07421; u-boot@lists.denx.de; aflem...@gmail.com; Xie Xiaobo-R63061; Ilya Yanok Subject: Re: [PATCH 5/6] spl:

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

2013-05-28 Thread Joel A Fernandes
SPL defines CONFIG_SPL_BUILD but this does not percolate to the autoconf.mk Makefile. As a result the build breaks when CONFIG_SPL_BUILD is used in the board-specific include header file. With this, there is a possibility of having a CONFIG option defined in the header file but not defined in

Re: [U-Boot] [PATCH v2 07/13] sf: winbond: add W25Q32DW

2013-05-28 Thread Allen Martin
On Fri, May 24, 2013 at 01:39:51PM -0700, Jagan Teki wrote: Hi, Any update on this. Thanks, Jagan. On Thu, May 23, 2013 at 1:15 PM, Jagan Teki jagannadh.t...@gmail.com wrote: Hi Allen, On Sun, Mar 17, 2013 at 10:28 AM, Allen Martin amar...@nvidia.com wrote: Add support for

Re: [U-Boot] [RFC PATCH 5/7] Adjust Kconfig scripts for use by U-Boot

2013-05-28 Thread Masahiro Yamada
Hello, Simon. Please let me ask some more questions. By applying these series of commits, U-Boot's config file scheme and Kconfig coexist. For example, scripts/Makefile.build includes both auto.conf generated by Kconfig and autoconf.mk derived from U-boot's config. -include

Re: [U-Boot] [PATCH v2 07/13] sf: winbond: add W25Q32DW

2013-05-28 Thread Jagan Teki
On Wed, May 29, 2013 at 5:58 AM, Allen Martin amar...@nvidia.com wrote: On Fri, May 24, 2013 at 01:39:51PM -0700, Jagan Teki wrote: Hi, Any update on this. Thanks, Jagan. On Thu, May 23, 2013 at 1:15 PM, Jagan Teki jagannadh.t...@gmail.com wrote: Hi Allen, On Sun, Mar 17, 2013 at

Re: [U-Boot] dfu: dfu and UBI Volumes

2013-05-28 Thread Heiko Schocher
Hello Tom, Am 28.05.2013 23:16, schrieb Tom Rini: On Tue, May 28, 2013 at 11:01:09PM +0200, Wolfgang Denk wrote: Dear Tom, In message 20130528172309.GF5829@bill-the-cat you wrote: Of course this can't yet apply to writing files on file systems since the current API in U-Boot misses the

Re: [U-Boot] [PATCH v4 1/7] arm: vf610: Add IOMUX support for Vybrid VF610

2013-05-28 Thread Wang Huan-B18965
Hi, Benoit, diff --git a/arch/arm/imx-common/iomux-v3.c b/arch/arm/imx-common/iomux-v3.c index 7fe5ce7..35880c7 100644 --- a/arch/arm/imx-common/iomux-v3.c +++ b/arch/arm/imx-common/iomux-v3.c @@ -48,8 +48,14 @@ void imx_iomux_v3_setup_pad(iomux_v3_cfg_t pad) if (sel_input_ofs)

Re: [U-Boot] [PATCH v4 2/7] arm: vf610: Add Vybrid VF610 CPU support

2013-05-28 Thread Wang Huan-B18965
Hi, Benoit, The hunk below is still missing: doc/README.mxc_ocotp: --- on MXC This IP can be found on the following SoCs: + - Vybrid VF610, - i.MX6. Note that this IP is different from albeit similar to the IPs of the same name [Alison Wang] It is not missing, it is in the 6/7

Re: [U-Boot] [PATCH v4 2/7] arm: vf610: Add Vybrid VF610 CPU support

2013-05-28 Thread Wang Huan-B18965
Hi, Benoit, diff --git a/doc/README.vf610 b/doc/README.vf610 new file mode 100644 index 000..38cf5cf --- /dev/null +++ b/doc/README.vf610 @@ -0,0 +1,10 @@ +U-Boot for Freescale Vybrid VF610 + +This file contains information for the port of U-Boot to the +Freescale

Re: [U-Boot] [PATCH v4 7/7] arm: vf610: Add basic support for Vybrid VF610TWR board

2013-05-28 Thread Wang Huan-B18965
Hi, Benoit, + +#define CONFIG_CMD_PING +#define CONFIG_CMD_DHCP +#define CONFIG_CMD_MII +#define CONFIG_CMD_NET +#define CONFIG_FEC_MXC +#define CONFIG_MII +#define IMX_FEC_BASE ENET_BASE_ADDR +#define CONFIG_FEC_XCV_TYPERMII +#define