Re: [U-Boot] [PATCH 0/2] Add support for MINI2440 (s3c2440)

2012-04-30 Thread Wolfgang Denk
Dear Gabriel Huau, In message <20120429213859.GA20804@debian> you wrote: > > > Should this not only affect the SPL part of the code, while you could > > use normal mappings for the real U-Boot. > > > > Umm... but I don't even see any reference to SPL files here. Is this > > current code supposed

Re: [U-Boot] [PATCH v2 1/4] patman: Fix a typo error

2012-04-30 Thread Wolfgang Denk
Dear Vikram Narayanan, In message <4f9acbaf.60...@gmail.com> you wrote: > > Replace gti with git in README file > > Signed-off-by: Vikram Narayanan > Cc: Simon Glass > --- > tools/patman/README |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wol

Re: [U-Boot] [PATCH v2 2/4] patman: Add meaningful statements instead of blah blah

2012-04-30 Thread Wolfgang Denk
Dear Vikram Narayanan, In message <4f9acbb8.2040...@gmail.com> you wrote: > Add example statements for commit message and series messages > > Signed-off-by: Vikram Narayanan > Cc: Simon Glass > --- > tools/patman/README |9 - > 1 files changed, 4 insertions(+), 5 deletions(-) > >

Re: [U-Boot] [PATCH v2 3/4] patman: Change the location of patman path

2012-04-30 Thread Wolfgang Denk
Dear Vikram Narayanan, In message <4f9acbc3.20...@gmail.com> you wrote: > Fix the location of patman path in README > > Signed-off-by: Vikram Narayanan > Cc: Simon Glass > --- > tools/patman/README |6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) Applied, thanks. Best regard

Re: [U-Boot] [PATCH v2 4/4] patman: Handle creation of patman config

2012-04-30 Thread Wolfgang Denk
Dear Vikram & Simon, In message <4f9acbd1.1080...@gmail.com> you wrote: > > patman shouts when it couldn't find a $(HOME)/.config/patman file. > Handle it in a sane way by creating a new one for the user. > It looks for a user.name and user.email in the global .gitconfig > file, waits for the use

[U-Boot] [PATCH] EXYNOS: add the enable_cache function for support cache

2012-04-30 Thread Jaehoon Chung
By default, enable_cache() is implemented in arch/arm/lib. But didn't implemented enable_cache(). It should be implemented in platform code. This patch is added the enable_cache() in platform code for supporting cache Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park --- arch/arm/cpu/ar

Re: [U-Boot] [PATCH v2 2/3] LCD: add compressed 32bpp BMP image data

2012-04-30 Thread Wolfgang Denk
Dear Donghwa Lee, In message <4f9e2bdd.3030...@samsung.com> you wrote: > > Mr.Kang and I think TIZEN logo is not a board/vendor specific although > samsung > will release it. So, Mr.kang had proposed new directory include/video or > include/video/logo/. I agree that Tizen cannot be appropriat

Re: [U-Boot] [RESEND PATCH v6 0/4] mmc: support sdhci instead of s5p_mmc

2012-04-30 Thread Jaehoon Chung
Hi Andy. How about these series? I want to merge these series..So if you have some plan or some opinion for these series, let me know plz. Best Regards, Jaehoon Chung On 04/23/2012 09:36 PM, Jaehoon Chung wrote: > This patchset is supported the sdhci controller for Samsung-SoC. > In mmc driver,

[U-Boot] PATCH 1/4][v4] doc:Add documentation for e500 external debugger support

2012-04-30 Thread Prabhakar Kushwaha
This describes requirement of e500 and e500v2 processor to support external debugger. It also provide an insight of the configuration switch required and their description. Signed-off-by: Radu Lazarescu Signed-off-by: Marius Grigoras Signed-off-by: Prabhakar Kushwaha --- Based upon git://git

[U-Boot] [PATCH 2/4][v2] powerpc/85xx:Fix MSR[DE] bit in MSR to support debugger

2012-04-30 Thread Prabhakar Kushwaha
Debugging of e500 and e500v1 processer requires MSR[DE] bit to be set always. Where MSR = Machine State register Make sure of MSR[DE] bit is set uniformaly across the different execution address space i.e. AS0 and AS1. Signed-off-by: Radu Lazarescu Signed-off-by: Catalin Udma Signed-off-by: Mar

[U-Boot] [PATCH 3/4][v5] powerpc/85xx:Make debug exception vector accessible

2012-04-30 Thread Prabhakar Kushwaha
Debugging of e500 and e500v1 processer requires debug exception vecter (IVPR + IVOR15) to have valid and fetchable OP code. 1) While executing in translated space (AS=1), whenever a debug exception is generated, the MSR[DS/IS] gets cleared i.e. AS=0 and the processor tries to fetch an instruction

[U-Boot] [PATCH 4/4][v3] powerpc/85xx:Fix NAND code base to support debugger

2012-04-30 Thread Prabhakar Kushwaha
Update NAND code base to ovecome e500 and e500v2's second limitation i.e. IVPR + IVOR15 should be valid fetchable OP code address. As NAND SPL does not compile vector table so making sure IVOR + IVOR15 points to any fetchable valid data Signed-off-by: Radu Lazarescu Signed-off-by: Marius Grigora

[U-Boot] [PATCH] powerpc/mpc85xx:NAND_SPL:Avoid IFC/eLBC Base address setting

2012-04-30 Thread Prabhakar Kushwaha
During NAND_SPL boot, base address and different register are programmed default by corresponding NAND controllers(eLBC/IFC). These settings are sufficient enough for NAND SPL. Avoid updating these register.They will be programmed during NAND RAMBOOT. Signed-off-by: Prabhakar Kushwaha --- arch/

[U-Boot] [PATCH] powerpc/mpc85xx:Add debugger support for e500v2 SoC

2012-04-30 Thread Prabhakar Kushwaha
Freescale's e500v1 and e500v2 cores (used in mpc85xx chips) have some restrictions on external debugging (JTAG). So define CONFIG_SYS_PPC_E500_DEBUG_TLB to enable a temporary TLB entry to be used during boot to work around the limitations. Please refer doc/README.mpc85xx for more information Sig

Re: [U-Boot] [PATCH v2 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-04-30 Thread Anatolij Gustschin
Hi, On Thu, 26 Apr 2012 17:21:23 +0900 Donghwa Lee wrote: ... > diff --git a/drivers/video/exynos_fb.c b/drivers/video/exynos_fb.c > index 96a8ec1..f669b65 100644 > --- a/drivers/video/exynos_fb.c > +++ b/drivers/video/exynos_fb.c ... > @@ -64,6 +68,29 @@ static void exynos_lcd_init(vidinfo_t *vi

Re: [U-Boot] [PATCH] doc: cleanup - move board READMEs into respective board directories

2012-04-30 Thread Stefan Roese
Hi Wolfgang, On Monday 30 April 2012 11:57:39 Wolfgang Denk wrote: > Also drop a few files referring to no longer / not yet supported > boards. > > Signed-off-by: Wolfgang Denk > Cc: Prafulla Wadaskar > Cc: Stefan Roese > Cc: Kim Phillips > Cc: Andy Fleming > Cc: Jason Jin > Cc: Stefano Bab

Re: [U-Boot] [PATCH] doc: cleanup - move board READMEs into respective board directories

2012-04-30 Thread Stefano Babic
On 30/04/2012 11:57, Wolfgang Denk wrote: > Also drop a few files referring to no longer / not yet supported > boards. > > Signed-off-by: Wolfgang Denk > Cc: Prafulla Wadaskar > Cc: Stefan Roese > Cc: Kim Phillips > Cc: Andy Fleming > Cc: Jason Jin > Cc: Stefano Babic > Cc: Daniel Schwierze

[U-Boot] [PATCH 1/2 v2] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Gabriel Huau
Signed-off-by: Gabriel Huau --- Changes for v2: - Modification of the coding style - Add my email address to copyright - Remove a typedef - Move some defines to driver file --- arch/arm/include/asm/arch-s3c24x0/gpio.h | 171 arch/arm/inc

Re: [U-Boot] [PATCH 1/2] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Gabriel Huau
On Mon, Apr 30, 2012 at 01:29:37AM +0200, Marek Vasut wrote: > Dear Gabriel Huau, > > Commit message got lost ? :p It's strange, I have the commit message in my log, but when I format-patch, The commit message is set only in the subject, not in the body. Any idea ? __

Re: [U-Boot] [PATCH 0/2] Add support for MINI2440 (s3c2440)

2012-04-30 Thread Gabriel Huau
Hi, Just a little question about the ChangeLog. I added the "---" and my changements after it, but I see this part in "git log", is it normal ? Will this part be deleted in the merge ? ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mai

[U-Boot] [PATCH 2/2 v6] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Gabriel Huau
Signed-off-by: Gabriel Huau --- Changes for v2: - Coding style cleanup - Remove unnecessary files modification - Remove unnecessary board configuration set Changes for v3: - Coding style cleanup - Move some macro definition from lowlevel_init.S to

Re: [U-Boot] [PATCH 0/2] Add support for MINI2440 (s3c2440)

2012-04-30 Thread Wolfgang Denk
Dear Gabriel Huau, In message <20120430110724.GB4656@debian> you wrote: > > Just a little question about the ChangeLog. I added the "---" and my > changements after it, but I see this part in "git log", is it normal ? > Will this part be deleted in the merge ? You should never see this in a git

Re: [U-Boot] [PATCH 0/2] Add support for MINI2440 (s3c2440)

2012-04-30 Thread Gabriel Huau
On Mon, Apr 30, 2012 at 01:35:01PM +0200, Wolfgang Denk wrote: > Dear Gabriel Huau, > > In message <20120430110724.GB4656@debian> you wrote: > > > > Just a little question about the ChangeLog. I added the "---" and my > > changements after it, but I see this part in "git log", is it normal ? > >

[U-Boot] [PATCH v3 1/3] LCD: display 32bpp decompressed bitmap image

2012-04-30 Thread Donghwa Lee
This patch supports drawing 32bpp decompressed bitmap image. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- Changes for v1/v2: - use lcd_line_length variable - convert RGB to BGR because BMP data format aligned BGR. common/lcd.c | 27 ---

[U-Boot] [PATCH v 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-04-30 Thread Donghwa Lee
This patches support drawing 32bpp bitmap TIZEN logo in exynos fb. trats_logo.h data is compressed from trats_logo.bmp to trats_logo.bmp.gz by gzip and converted to trats_logo.h header file format by some application. And then it is decomressed at the exynos fb driver by gunzip_bmp(). Signed-off-b

Re: [U-Boot] [PATCH 1/2 v2] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > Signed-off-by: Gabriel Huau > > --- > Changes for v2: > - Modification of the coding style > - Add my email address to copyright > - Remove a typedef > - Move some defines to driver file Acked-by: Marek Vasut > --- > arch/arm/include/asm/arch-s3c2

Re: [U-Boot] [PATCH 1/2] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > On Mon, Apr 30, 2012 at 01:29:37AM +0200, Marek Vasut wrote: > > Dear Gabriel Huau, > > > > Commit message got lost ? :p > > It's strange, I have the commit message in my log, but when I > format-patch, The commit message is set only in the subject, not > in the body. Are y

Re: [U-Boot] [PATCH 2/2 v6] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, I detect line over 80 in the configs/s3c2440.h-whatever file, but just visually, so you might want to prove me wrong by running checkpatch ;-) > Signed-off-by: Gabriel Huau > > --- > Changes for v2: > - Coding style cleanup > - Remove unnecessary files modificat

Re: [U-Boot] [PATCH v4 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Marek Vasut
Dear Lukasz Majewski, > Hi Marek, > > > Dear Lukasz Majewski, > > > > > This commit adds support for storing private data to Samsung's UDC > > > driver. This data is afterward used by usb gadget. > > > > > > Signed-off-by: Lukasz Majewski > > > Signed-off-by: Kyungmin Park > > > Cc: Marek Vas

Re: [U-Boot] [PATCH v2 1/6] powerpc/ppc4xx: Adjust environment size on neo

2012-04-30 Thread Stefan Roese
On Thursday 26 April 2012 15:54:21 Dirk Eibach wrote: > Environment size on neo has to be 0x2 for compatibilty reasons. Patch series (1...6) applied to u-boot-ppc4xx/master. Thanks, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: K

Re: [U-Boot] [PATCH] powerpc/ppc4xx: Remove typedefs for gdsys FPGA

2012-04-30 Thread Stefan Roese
On Friday 27 April 2012 10:33:46 Dirk Eibach wrote: > Signed-off-by: Dirk Eibach > Cc: Stefan Roese Patch applied to u-boot-ppc4xx/master. Thanks, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Ger

Re: [U-Boot] [PATCH v4 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Lukasz Majewski
Hi Marek, > > > > > Acked-by: Marek Vasut > > > > Thanks, please pull them to your u-boot-usb tree. > > (and also the patch: > > http://patchwork.ozlabs.org/patch/151983/ > > is also acked-by) > > Will do, thanks for pointing out the other patch :) One more time, > sorry for the delay.

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

2012-04-30 Thread Stefan Roese
Hi Wolfgang, please pull the following updates from Dirk: The following changes since commit 415d386877df49eb051b85ef74fa59a16dc17c7d: Prepare v2012.04.01 (2012-04-25 15:22:50 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master for you to fetch ch

[U-Boot] Problem setting target's ip address in kernel parameters passed by bootm

2012-04-30 Thread David Aldrich
Hi I am a newbie to u-boot and embedded linux. I am trying to build a development environment around a Freescale P4080DS board. Presently, I want the target to boot from a kernel image in flash and to mount an NFS root filesystem. This is not working. Target ip addr: 172.29.68.13 Host ip ad

[U-Boot] [PATCH 1/2 v3] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Gabriel Huau
Signed-off-by: Gabriel Huau --- Changes for v2: - Modification of the coding style - Add my email address to copyright - Remove a typedef - Move some defines to driver file Changes for v3: - Cleanup coding style - Changement of the commit message

[U-Boot] [PATCH 2/2 v7] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Gabriel Huau
Signed-off-by: Gabriel Huau --- Changes for v2: - Coding style cleanup - Remove unnecessary files modification - Remove unnecessary board configuration set Changes for v3: - Coding style cleanup - Move some macro definition from lowlevel_init.S to a

Re: [U-Boot] [PATCH 1/2] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Gabriel Huau
On Mon, Apr 30, 2012 at 02:25:20PM +0200, Marek Vasut wrote: > Dear Gabriel Huau, > > > On Mon, Apr 30, 2012 at 01:29:37AM +0200, Marek Vasut wrote: > > > Dear Gabriel Huau, > > > > > > Commit message got lost ? :p > > > > It's strange, I have the commit message in my log, but when I > > format-

Re: [U-Boot] [PATCH 1/2 v3] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > Signed-off-by: Gabriel Huau > --- > Changes for v2: > - Modification of the coding style > - Add my email address to copyright > - Remove a typedef > - Move some defines to driver file > > Changes for v3: > - Cleanup coding style > - Chang

Re: [U-Boot] [PATCH 2/2 v7] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > Signed-off-by: Gabriel Huau > --- > Changes for v2: > - Coding style cleanup > - Remove unnecessary files modification > - Remove unnecessary board configuration set > > Changes for v3: > - Coding style cleanup > - Move some macro definition fro

Re: [U-Boot] [PATCH 1/2 v3] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Gabriel Huau
On Mon, Apr 30, 2012 at 03:20:42PM +0200, Marek Vasut wrote: > Dear Gabriel Huau, > > > Signed-off-by: Gabriel Huau > > --- > > Changes for v2: > > - Modification of the coding style > > - Add my email address to copyright > > - Remove a typedef > > - Move some defines to driver f

Re: [U-Boot] [PATCH 2/2 v7] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Gabriel Huau
On Mon, Apr 30, 2012 at 03:21:49PM +0200, Marek Vasut wrote: > Dear Gabriel Huau, > > > + > > +/* > > + * Miscellaneous configurable options > > + */ > > +#defineCONFIG_LONGHELP > > +#defineCONFIG_SYS_PROMPT "MINI2440 => " > > +#defineCONFIG_SYS_CBSIZE 256 > > +#defineC

Re: [U-Boot] [PATCH V3] i.MX6: mx6q_sabrelite: add SATA bindings

2012-04-30 Thread Eric Nelson
Hi Marek, On 04/29/2012 07:27 PM, Marek Vasut wrote: Dear Eric Nelson, Signed-off-by: Eric Nelson --- V2 has been stripped of the board-independent changes and uses clrsetbits_le32() instead of twiddling bits by hand. >> >> +int setup_sata(void) +{ + struct iomuxc_base_regs *const i

Re: [U-Boot] [PATCH v2 2/4] patman: Add meaningful statements instead of blah blah

2012-04-30 Thread Vikram Narayanan
Hello Wolfgang, On 4/30/2012 1:14 PM, Wolfgang Denk wrote: Dear Vikram Narayanan, In message<4f9acbb8.2040...@gmail.com> you wrote: Add example statements for commit message and series messages Signed-off-by: Vikram Narayanan Cc: Simon Glass --- tools/patman/README |9 - 1 fil

Re: [U-Boot] [PATCH v2 4/4] patman: Handle creation of patman config

2012-04-30 Thread Vikram Narayanan
Hello Wolfgang, On 4/30/2012 2:14 PM, Wolfgang Denk wrote: Dear Vikram& Simon, In message<4f9acbd1.1080...@gmail.com> you wrote: patman shouts when it couldn't find a $(HOME)/.config/patman file. Handle it in a sane way by creating a new one for the user. It looks for a user.name and user.e

[U-Boot] [PATCH 2/2 v8] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Gabriel Huau
Signed-off-by: Gabriel Huau --- Changes for v2: - Coding style cleanup - Remove unnecessary files modification - Remove unnecessary board configuration set Changes for v3: - Coding style cleanup - Move some macro definition from lowlevel_init.S to a

Re: [U-Boot] [PATCH v4 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Wolfgang Denk
Dear Lukasz Majewski, In message <20120430085801.4fe5af09@lmajewski.digital.local> you wrote: > > > > +void set_udc_gadget_private_data(void *p) > > > +{ > > > + DEBUG_SETUP("%s: the_controller: 0x%p, p: 0x%p\n", > > > __func__, > > > +the_controller, p); > > > > debug() and fix this mes

Re: [U-Boot] Problem setting target's ip address in kernel parameters passed by bootm

2012-04-30 Thread Wolfgang Denk
Dear David Aldrich, In message <41302a7145ac054fa7a96cfd03835a0a10d...@ex10mbx02.eu.nec.com> you wrote: > > I am a newbie to u-boot and embedded linux. I am trying to build a > development environment around a Freescale P4080DS board. Presently, I want > the target to boot from a kernel imag

Re: [U-Boot] [PATCH 2/2 v7] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > On Mon, Apr 30, 2012 at 03:21:49PM +0200, Marek Vasut wrote: > > Dear Gabriel Huau, > > > > > + > > > +/* > > > + * Miscellaneous configurable options > > > + */ > > > +#define CONFIG_LONGHELP > > > +#define CONFIG_SYS_PROMPT "MINI2440 => " > > > +#define CONFIG_SYS_

Re: [U-Boot] [PATCH 1/2 v3] Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > On Mon, Apr 30, 2012 at 03:20:42PM +0200, Marek Vasut wrote: > > Dear Gabriel Huau, > > > > > Signed-off-by: Gabriel Huau > > > --- > > > > > > Changes for v2: > > > - Modification of the coding style > > > - Add my email address to copyright > > > - Remove a typedef

Re: [U-Boot] [PATCH 2/2 v8] Add support for MINI2440 (s3c2440).

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > Signed-off-by: Gabriel Huau Cc albert please to see what's his opinion ... I'm fine with this as is. > --- > Changes for v2: > - Coding style cleanup > - Remove unnecessary files modification > - Remove unnecessary board configuration set > > Changes for

[U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Gabriel Huau
It's now possible to use the gpio driver interface for s3c2440. This patch add iomux definitions too. Signed-off-by: Gabriel Huau --- Changes for v2: - Modification of the coding style - Add my email address to copyright - Remove a typedef - Move some defines to dr

[U-Boot] [PATCH 2/2 v9] ARM : Add support for MINI2440 (s3c2440).

2012-04-30 Thread Gabriel Huau
Support of the MINI2440 board from FriendlyARM from an old version of u-boot : http://repo.or.cz/r/u-boot-openmoko/mini2440.git Currently, supporting only boot from NOR. Signed-off-by: Gabriel Huau --- Changes for v2: - Coding style cleanup - Remove unnecessary files modification

Re: [U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > It's now possible to use the gpio driver interface > for s3c2440. This patch add iomux definitions too. All right, I guess I can't rub my sadistic reviewing pleasures on you anymore ;-) Acked-by: Marek Vasut > > Signed-off-by: Gabriel Huau > --- > Changes for v2: >

Re: [U-Boot] [PATCH 2/2 v9] ARM : Add support for MINI2440 (s3c2440).

2012-04-30 Thread Marek Vasut
Dear Gabriel Huau, > Support of the MINI2440 board from FriendlyARM from > an old version of u-boot : > http://repo.or.cz/r/u-boot-openmoko/mini2440.git > > Currently, supporting only boot from NOR. Acked-by: Marek Vasut > > Signed-off-by: Gabriel Huau > --- > Changes for v2: > - Codin

Re: [U-Boot] [PATCH v4 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Lukasz Majewski
On Mon, 30 Apr 2012 15:38:31 +0200 Wolfgang Denk wrote: > Dear Lukasz Majewski, > > In message <20120430085801.4fe5af09@lmajewski.digital.local> you > wrote: > > > > > > +void set_udc_gadget_private_data(void *p) > > > > +{ > > > > + DEBUG_SETUP("%s: the_controller: 0x%p, p: 0x%p\n", > >

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

2012-04-30 Thread Wolfgang Denk
Dear Macpaul Lin, In message you wrote: > Dear Wolfgang, > > Please pull the following 4 patches into your tree. > > Thanks! > Macpaul Lin. > > > The following changes since commit 2790bf69dc12fb9aeb9836904e5f57c7f83d5552: > > Prepare v2012.04 (2012-04-21 18:55:26 +0200) > > are availabl

Re: [U-Boot] [PATCH] image/fit: drop inline markings on parser code

2012-04-30 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1335113946-21136-1-git-send-email-vap...@gentoo.org> you wrote: > Putting "inline" on extern funcs makes no sense, so drop them. > > Signed-off-by: Mike Frysinger > --- > common/image.c |4 ++-- > include/image.h |4 ++-- > 2 files changed, 4 insertions

Re: [U-Boot] Pull request u-boot-blackfin.git (master branch)

2012-04-30 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1335114734-17155-1-git-send-email-vap...@gentoo.org> you wrote: > The following changes since commit 2790bf69dc12fb9aeb9836904e5f57c7f83d5552: > > Prepare v2012.04 (2012-04-21 18:55:26 +0200) > > are available in the git repository at: > git://www.denx.de/git

Re: [U-Boot] [i2c] Pull request

2012-04-30 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4f966e48.3030...@denx.de> you wrote: > Hello Wolfgang, > > The following changes since commit 61ddce07f8b96c5df7d00466b4da9edaecb0eff1: > > sandbox: Use the new run_command() (2012-04-23 22:53:54 +0200) > > are available in the git repository at: > git://git

Re: [U-Boot] Please pull u-boot-mpc85xx

2012-04-30 Thread Wolfgang Denk
Dear Andy Fleming, In message <1335330687-19925-1-git-send-email-aflem...@freescale.com> you wrote: > > The following changes since commit 61ddce07f8b96c5df7d00466b4da9edaecb0eff1: > > sandbox: Use the new run_command() (2012-04-23 22:53:54 +0200) > > are available in the git repository at: >

[U-Boot] [PATCH v4 RESEND 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Lukasz Majewski
This commit adds support for storing private data to Samsung's UDC driver. This data is afterward used by usb gadget. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- drivers/usb/gadget/s3c_udc_otg.c | 14 +- 1 files changed, 13 insertions(+), 1 del

Re: [U-Boot] [PATCH v3 4/4] lin_gadget: use common linux/compat.h

2012-04-30 Thread Anatolij Gustschin
On Thu, 26 Apr 2012 14:34:44 +0200 Anatolij Gustschin wrote: > From: Mike Frysinger > > Merge our duplicate definitions with the common header. > > Also fix drivers/usb/gadget/s3c_udc_otg_xfer_dma.c to > use min() instead of min_t() since we remove the latter > from compat.h. > > Additionally

Re: [U-Boot] [PATCH v3] Allow for parallel builds and saved output

2012-04-30 Thread Wolfgang Denk
Dear Andy Fleming, In message <1335332031-24138-1-git-send-email-aflem...@freescale.com> you wrote: > The MAKEALL script cleverly runs make with the appropriate options > to use all of the cores on the system, but your average U-Boot build > can't make much use of more than a few cores. If you ha

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

2012-04-30 Thread Wolfgang Denk
Dear Stefan Roese, In message <201204301511.39045...@denx.de> you wrote: > Hi Wolfgang, > > please pull the following updates from Dirk: > > The following changes since commit 415d386877df49eb051b85ef74fa59a16dc17c7d: > > Prepare v2012.04.01 (2012-04-25 15:22:50 +0200) > > are available in t

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

2012-04-30 Thread Anatolij Gustschin
Hello Wolfgang, The following changes since commit 330a091c11d48539cc5cbaab708514fe7b386f8c: patman: Change the location of patman path (2012-04-30 09:57:48 +0200) are available in the git repository at: git://git.denx.de/u-boot-staging.git ag...@denx.de Eric Nelson (2): part_dos: ali

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Anatolij Gustschin
Hi, On Mon, 30 Apr 2012 04:25:50 +0200 Marek Vasut wrote: ... > > observed with cfb on beageboard and N900 when running with data > > cache enabled. > > beagleboard ;-) Thanks for catching that!! ... > > @@ -553,6 +557,8 @@ static void video_drawchars(int xx, int yy, unsigned > > char *s, int

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Marek Vasut
Dear Anatolij Gustschin, > Hi, > > On Mon, 30 Apr 2012 04:25:50 +0200 > Marek Vasut wrote: > ... > > > > observed with cfb on beageboard and N900 when running with data > > > cache enabled. > > > > beagleboard ;-) > > Thanks for catching that!! > > ... > > > > @@ -553,6 +557,8 @@ static voi

Re: [U-Boot] [PATCH v4 RESEND 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Marek Vasut
Dear Lukasz Majewski, > This commit adds support for storing private data to Samsung's UDC > driver. This data is afterward used by usb gadget. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Marek Vasut > --- > drivers/usb/gadget/s3c_udc_otg.c | 14 +- >

Re: [U-Boot] [PATCH v4 RESEND 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Wolfgang Denk
Dear Lukasz Majewski, In message <1335797479-1091-1-git-send-email-l.majew...@samsung.com> you wrote: > This commit adds support for storing private data to Samsung's UDC > driver. This data is afterward used by usb gadget. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc:

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Anatolij Gustschin
Hi, On Mon, 30 Apr 2012 17:21:51 +0200 Marek Vasut wrote: ... > > > Can't you have SRAM cached too? ;-) > > > > I do not know. But who will put the framebuffer into SRAM? > > It is not big enough. > > Someone who has small LCD and wants to save dram bandwidth (oh, this sentence > sounds stupid

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Anatolij Gustschin
Hi Mike, On Sat, 28 Apr 2012 14:16:39 -0400 Mike Frysinger wrote: > On Saturday 28 April 2012 11:04:07 Anatolij Gustschin wrote: > > +static int cfb_fb_is_in_dram(void) > > +{ > > + bd_t *bd = gd->bd; > > + ulong start, end; > > + int i; > > + > > + for (i = 0; i < CONFIG_NR_DRAM_BANKS;

Re: [U-Boot] [PATCH 0/2] Add support for MINI2440 (s3c2440)

2012-04-30 Thread Gabriel Huau
Hi Minkyu Kang, Can you review/apply theses patches please ? (Marex have already tortured me ...) : - [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440 - [PATCH 2/2 v9] ARM : Add support for MINI2440 (s3c2440). Thanks, __

Re: [U-Boot] [PATCH v4 RESEND 3/3] usb:udc:samsung Add functions for storing private gadget data in UDC driver

2012-04-30 Thread Lukasz Majewski
Hi Wolfgang, > Dear Lukasz Majewski, > > In message <1335797479-1091-1-git-send-email-l.majew...@samsung.com> > you wrote: > > This commit adds support for storing private data to Samsung's UDC > > driver. This data is afterward used by usb gadget. > > > > Signed-off-by: Lukasz Majewski > > Si

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Marek Vasut
Dear Anatolij Gustschin, > Hi, > > On Mon, 30 Apr 2012 17:21:51 +0200 > Marek Vasut wrote: > ... > > > > > Can't you have SRAM cached too? ;-) > > > > > > I do not know. But who will put the framebuffer into SRAM? > > > It is not big enough. > > > > Someone who has small LCD and wants to save

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

2012-04-30 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message <20120430170327.30bf1463@wker> you wrote: > Hello Wolfgang, > > The following changes since commit 330a091c11d48539cc5cbaab708514fe7b386f8c: > > patman: Change the location of patman path (2012-04-30 09:57:48 +0200) > > are available in the git repository a

[U-Boot] [PATCH] USB: S5P: Add ehci support

2012-04-30 Thread Rajeshwari Shinde
This patch adds ehci driver support for s5p. Signed-off-by: Vivek Gautam Signed-off-by: Rajeshwari Shinde --- arch/arm/include/asm/arch-exynos/ehci-s5p.h | 66 drivers/usb/host/Makefile |1 + drivers/usb/host/ehci-s5p.c | 113 ++

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Anatolij Gustschin
Hi Simon, On Sun, 29 Apr 2012 22:56:01 -0700 Simon Glass wrote: ... > Regarding this patch, can I suggest also looking at this possibly more > generic patch that I originally did for Tegra? The series is here: > > http://patchwork.ozlabs.org/user/bundle/2869/ > > and in particular these patches

Re: [U-Boot] [PATCH v2 4/4] patman: Handle creation of patman config

2012-04-30 Thread Simon Glass
Hi Wolfgang, Vikram, On Mon, Apr 30, 2012 at 6:37 AM, Vikram Narayanan wrote: > Hello Wolfgang, > > On 4/30/2012 2:14 PM, Wolfgang Denk wrote: > >> Dear Vikram& Simon, >> >> >> In message<4F9ACBD1.1080003@**gmail.com <4f9acbd1.1080...@gmail.com>> >> you wrote: >> >>> >>> patman shouts when it c

Re: [U-Boot] [PATCH v2 4/4] patman: Handle creation of patman config

2012-04-30 Thread Simon Glass
Hi Vikram, On Fri, Apr 27, 2012 at 9:39 AM, Vikram Narayanan wrote: > > patman shouts when it couldn't find a $(HOME)/.config/patman file. > Handle it in a sane way by creating a new one for the user. > It looks for a user.name and user.email in the global .gitconfig > file, waits for the user in

[U-Boot] [PATCH 1/3] mx5: Add clock config interface

2012-04-30 Thread Fabio Estevam
mx5: Add clock config interface Add clock config interface support, so that we can configure CPU or DDR clock in the later init Signed-off-by: Jason Liu Signed-off-by: Eric Miao Signed-off-by: Fabio Estevam --- Changes since v1: - Rebased against Stefano's u-boot-imx plus the v2 version of htt

[U-Boot] [PATCH 2/3] mx53loco: Allow to print CPU information at a later stage

2012-04-30 Thread Fabio Estevam
Print CPU information within board_late_init(). This is in preparation for adding 1GHz support, which requires programming a PMIC via I2C. As I2C is only available after relocation, print the CPU information later at board_late_init(), so that the CPU frequency can be printed correctly. Signed-o

[U-Boot] [PATCH 3/3] mx53loco: Add support for 1GHz operation for DA9053-based boards

2012-04-30 Thread Fabio Estevam
There are two types of mx53loco boards: initial boards were built with a Dialog DA9053 PMIC and more recent version is based on a Freescale MC34708 PMIC. Add DA9053 PMIC support and adjust the required voltages and clocks for running the CPU at 1GHz. Tested on both versions of mx53loco boards. I

Re: [U-Boot] [PATCH] tegra2: move tegra2 SoC code to arch/arm/cpu/tegra2-common

2012-04-30 Thread Simon Glass
Hi Allen, On Thu, Apr 19, 2012 at 12:22 PM, Allen Martin wrote: > On Thu, Apr 19, 2012 at 11:27:05AM -0700, Simon Glass wrote: > > > > > > This is part of an upcoming patch set to move all armv4t code out of > > > tegra2 u-boot and put it into an SPL, but I wanted to get some early > > > feedbac

Re: [U-Boot] [PATCH] OMAP I2C: fix handling of alen = 0

2012-04-30 Thread Tom Rini
On Mon, Mar 26, 2012 at 01:06:22PM +0200, Daniel Mack wrote: > Allow raw I2C message transfers by setting the alen parameter to 0. > Currently, this doesn't work due to false assumptions to what is > appearantly considered a corner case. > > With this patch applied, it is possible to send multiby

Re: [U-Boot] [PATCH] tegra2: move tegra2 SoC code to arch/arm/cpu/tegra2-common

2012-04-30 Thread Allen Martin
On Mon, Apr 30, 2012 at 11:31:44AM -0700, Simon Glass wrote: > > -Have the armv4t build reach up and over into armv7 > -Move the code out to board/nvidia > > Both of these seemed worse > > I've thought about this a bit more. To me you have a bit of a unique problem > in that you need to build t

Re: [U-Boot] [PATCH][SDK1.2] powerpc/p1010rdb: add readme document for p1010rdb

2012-04-30 Thread Scott Wood
On 04/28/2012 04:32 AM, Shengzhou Liu wrote: > +2. Burn u-boot.bin into NOR flash > + => tftp 100 u-boot.bin > + => protect off all > + => erase eff8 efff > + => cp.b 100 eff8 8 => tftp => protect off all => erase eff8 +$filesize => cp.b $loadaddr eff80

Re: [U-Boot] [PATCH][SDK1.2] powerpc/p1010rdb: add readme document for p1010rdb

2012-04-30 Thread Wolfgang Denk
Dear Scott Wood, In message <4f9ef540.90...@freescale.com> you wrote: > > > + => tftp 100 u-boot.bin > > + => protect off all > > + => erase eff8 efff > > + => cp.b 100 eff8 8 > > => tftp This is discouraged. tftp takes an address as first argument. So please wr

Re: [U-Boot] [PATCH v2 11/11] New board support: Nokia RX-51 aka N900

2012-04-30 Thread Tom Rini
On Sun, Apr 29, 2012 at 11:18:48AM +0200, Marek Vasut wrote: > Dear Pali Roh?r, [snip] > > Also onenand code working fine, but when is enabled u-boot binary > > is too big and cannot be flashed into this device. But for > > testing in qemu or booting u-boot with enabled onenand support > > stored i

Re: [U-Boot] [PATCH v2 11/11] New board support: Nokia RX-51 aka N900

2012-04-30 Thread Marek Vasut
Dear Tom Rini, > On Sun, Apr 29, 2012 at 11:18:48AM +0200, Marek Vasut wrote: > > Dear Pali Roh?r, > > [snip] > > > > Also onenand code working fine, but when is enabled u-boot binary > > > is too big and cannot be flashed into this device. But for > > > testing in qemu or booting u-boot with en

[U-Boot] USB ethernet on Panda

2012-04-30 Thread Gary Thomas
I just built U-Boot 2012.04 for the OMAP4 PandaBoard, hoping that the USB ethernet would work. Sadly, it does not - the board hangs during the initial USB scan: U-Boot 2012.04 (Apr 30 2012 - 18:08:55) CPU : OMAP4430 ES2.2 Board: OMAP4 Panda I2C: ready DRAM: 1 GiB MMC: OMAP SD/

Re: [U-Boot] USB ethernet on Panda

2012-04-30 Thread Gary Thomas
On 2012-04-30 18:16, Gary Thomas wrote: I just built U-Boot 2012.04 for the OMAP4 PandaBoard, hoping that the USB ethernet would work. Sadly, it does not - the board hangs during the initial USB scan: U-Boot 2012.04 (Apr 30 2012 - 18:08:55) CPU : OMAP4430 ES2.2 Board: OMAP4 Panda I2C: ready DRA

Re: [U-Boot] [PATCH v2 11/11] New board support: Nokia RX-51 aka N900

2012-04-30 Thread Tom Rini
On 04/30/2012 04:42 PM, Marek Vasut wrote: Dear Tom Rini, On Sun, Apr 29, 2012 at 11:18:48AM +0200, Marek Vasut wrote: Dear Pali Roh?r, [snip] Also onenand code working fine, but when is enabled u-boot binary is too big and cannot be flashed into this device. But for testing in qemu or boo

Re: [U-Boot] [PATCH] mxs-i2c: Fix internal address byte order

2012-04-30 Thread Marek Vasut
Dear Torsten Fleischer, > Large EEPROMs, e.g. 24lc32, need 2 byte to address the internal memory. > These devices require that the high byte of the internal address has to be > written first. > The mxs_i2c driver currently writes the address' low byte first. Are you sure about it? Are you sure wh

Re: [U-Boot] [PATCH v2 4/4] patman: Handle creation of patman config

2012-04-30 Thread Vikram Narayanan
On 4/30/2012 11:07 PM, Simon Glass wrote: Hi Vikram, On Fri, Apr 27, 2012 at 9:39 AM, Vikram Narayanan mailto:vikram...@gmail.com>> wrote: patman shouts when it couldn't find a $(HOME)/.config/patman file. Handle it in a sane way by creating a new one for the user. It looks for a u

[U-Boot] [PATCH v3] patman: Handle creation of patman config

2012-04-30 Thread Vikram Narayanan
patman shouts when it couldn't find a $(HOME)/.config/patman file. Handle it in a sane way by creating a new one for the user. It looks for a user.name and user.email in the global .gitconfig file, waits for the user input if it can't find those. Signed-off-by: Vikram Narayanan Cc: Simon Glass

Re: [U-Boot] [PATCH] video: cfb_console: flush dcache for frame buffer in DRAM

2012-04-30 Thread Mike Frysinger
On Monday 30 April 2012 11:32:21 Anatolij Gustschin wrote: > On Sat, 28 Apr 2012 14:16:39 -0400 Mike Frysinger wrote: > > On Saturday 28 April 2012 11:04:07 Anatolij Gustschin wrote: > > > +static int cfb_fb_is_in_dram(void) > > > +{ > > > + bd_t *bd = gd->bd; > > > + ulong start, end; > > > + int

Re: [U-Boot] [PATCH v3] patman: Handle creation of patman config

2012-04-30 Thread Simon Glass
On Mon, Apr 30, 2012 at 8:46 PM, Vikram Narayanan wrote: > patman shouts when it couldn't find a $(HOME)/.config/patman file. > Handle it in a sane way by creating a new one for the user. > It looks for a user.name and user.email in the global .gitconfig > file, waits for the user input if it can'