Re: [U-Boot] [PATCH] PowerPC: Change -fpic flag to -fPIC flag in the config.mk

2012-04-25 Thread Joakim Tjernlund
Scott Wood wrote on 2012/04/25 21:01:00: > > On 04/18/2012 05:07 AM, Joakim Tjernlund wrote: > > Your linker file is buggy I think. I found u-boot-nand_spl.lds, is that the > > one? > > That's the one for the SPL part. OK, good. > > > Check out that files reloc part: > > .reloc : { > > _G

Re: [U-Boot] [PATCH 2/2] mmc: tegra: invalidate complete cachelines

2012-04-25 Thread Thierry Reding
* Mike Frysinger wrote: > On Tuesday 24 April 2012 03:53:44 Thierry Reding wrote: > > The MMC core sometimes reads buffers that are smaller than a complete > > cacheline, for example when reading the SCR. In order to avoid a warning > > from the ARM v7 cache handling code, this patch makes sure tha

Re: [U-Boot] [PATCH 2/5] imx-common: Factor out get_ahb_clk()

2012-04-25 Thread Dirk Behme
Hi Fabio, On 20.03.2012 22:40, Fabio Estevam wrote: get_ahb_clk() is a common function between mx5 and mx6. Place it into imx-common directory. Signed-off-by: Fabio Estevam --- arch/arm/cpu/armv7/imx-common/cpu.c| 23 arch/arm/cpu/armv7/mx5/clock.c

Re: [U-Boot] Can anyone help me to solve the stack problem of U-boot? Urgent~

2012-04-25 Thread Macpaul Lin
Hi Civic Wu, > Please see the README (section "U-Boot Porting Guide", but also > section "System Initialization"), and read doc/README.SPL and > http://catb.org/esr/faqs/smart-questions.html > > If this is urgent, and you spent many days on this, then the best > advice for you is to hire an expert

[U-Boot] [SOT] linker scripts

2012-04-25 Thread Jason
All, I know this is a little off topic, but u-boot is the only project I've found implementing a feature I'd like to add to a project. Specifically, the macro U_BOOT_CMD() and it's use of section(".u_boot_cmd"). I'd like to implement something similar in a userspace C program, but I can't get it

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

2012-04-25 Thread Prabhakar Kushwaha
Hi Scott, On Wednesday 25 April 2012 08:20 PM, Scott Wood wrote: On 04/24/2012 11:05 PM, Andy Fleming wrote: On Tue, Apr 24, 2012 at 10:48 PM, Prabhakar Kushwaha wrote: Hi, On Wednesday 25 April 2012 02:50 AM, Andy Fleming wrote: On Tue, Apr 24, 2012 at 4:10 PM, Scott Wood wrote: On

[U-Boot] A problem about using the nand command

2012-04-25 Thread li guohu
Hello, everyone! I find a strange problem when I use the u-boot command. I list the command I used in the u-boot command line as follows. nand erase nand read 0x200 0x0 0x800 md 0x200 I should see 2K bytes of "0xFF" because I have erase the whole nand flash device. Actually, I find a

Re: [U-Boot] [PATCH] ext2load: increase read speed

2012-04-25 Thread Eric Nelson
On 03/28/2012 07:37 AM, Jason Cooper wrote: This patch dramatically drops the amount of time u-boot needs to read a file from an ext2 partition. On a typical 2 to 5 MB file (kernels and initrds) it goes from tens of seconds to a couple seconds. All we are doing here is grouping contiguous block

Re: [U-Boot] [PATCH] i.MX6Q: mx6qsabrelite: Add keypress support to alter boot flow

2012-04-25 Thread Eric Nelson
On 04/25/2012 05:17 PM, Marek Vasut wrote: Dear Eric Nelson, Uses the 'magic_keys' idiom as described in doc/README.kbd: http://lists.denx.de/pipermail/u-boot/2012-April/122502.html If this is a V2 of a patch, please send is as "in-reply-to" and descibe the changes below (at spot mar

[U-Boot] [PATCH V2] i.MX: fsl_esdhc: allow use with cache enabled.

2012-04-25 Thread Eric Nelson
Signed-off-by: Eric Nelson --- V2 fixes checkpatch errors and typecasts as pointed out on the ML. drivers/mmc/fsl_esdhc.c | 17 - 1 files changed, 16 insertions(+), 1 deletions(-) diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index a2f35e3..539d848 100644 ---

Re: [U-Boot] [PATCH] i.MX6Q: mx6qsabrelite: Add keypress support to alter boot flow

2012-04-25 Thread Marek Vasut
Dear Eric Nelson, > Uses the 'magic_keys' idiom as described in doc/README.kbd: > http://lists.denx.de/pipermail/u-boot/2012-April/122502.html If this is a V2 of a patch, please send is as "in-reply-to" and descibe the changes below (at spot marked V2 (and V3 etc))... Also, change the key

Re: [U-Boot] Using sata on mx6qsabrelite

2012-04-25 Thread Fabio Estevam
Hi Eric, On Wed, Apr 25, 2012 at 8:55 PM, Eric Nelson wrote: > I just re-based and re-sent two of the three patches needed to get > SATA up and running against mainline/master. That's good news! Thanks a lot! I think Pete can give a try on SATA with mainline U-boot now. Thanks, Fabio Estevam

[U-Boot] [PATCH] i.MX6Q: mx6qsabrelite: Add keypress support to alter boot flow

2012-04-25 Thread Eric Nelson
Uses the 'magic_keys' idiom as described in doc/README.kbd: http://lists.denx.de/pipermail/u-boot/2012-April/122502.html Signed-off-by: Eric Nelson Acked-by: Marek Vasut --- board/freescale/mx6qsabrelite/mx6qsabrelite.c | 122 - include/configs/mx6qsabrelite.h

Re: [U-Boot] Using sata on mx6qsabrelite

2012-04-25 Thread Eric Nelson
On 04/25/2012 03:11 PM, Eric Nelson wrote: On 04/25/2012 12:10 PM, Eric Nelson wrote: On 04/25/2012 11:40 AM, Fabio Estevam wrote: Hi, On Stefano´s tree I see this sata patch for mx5/mx6: http://git.denx.de/?p=u-boot/u-boot-imx.git;a=commit;h=6931bd30d03de827c52bf2c8ddc6ed0c8f21dc9d Has any

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

2012-04-25 Thread 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. V3 returns immediately from setup_sata() if enable_sata_clock() returns an error. board/freescale/mx6qsabrelite/mx6qsabrelite.c | 32

[U-Boot] [PATCH, V2] Resend: i.MX6: add enable_sata_clock()

2012-04-25 Thread Eric Nelson
This patch requires Stefano's driver for MX5/MX6 to be useful. http://lists.denx.de/pipermail/u-boot/2012-February/118530.html This is the first and board-independent part of what's needed to enable SATA on an i.MX6 board as discussed in this thread: http://lists.denx.de/pipermail

Re: [U-Boot] [PATCH] Add support s3c2440 NAND controller

2012-04-25 Thread Marek Vasut
Dear Scott Wood, > On 04/19/2012 08:53 AM, Ilya Averyanov wrote: > > arch/arm/include/asm/arch-s3c24x0/s3c2410.h |4 +- > > arch/arm/include/asm/arch-s3c24x0/s3c2440.h |4 +- > > arch/arm/include/asm/arch-s3c24x0/s3c24x0.h | 13 +- > > drivers/mtd/nand/Makefile |3

[U-Boot] [PATCH v2] TRATS: initialize panel_info data structure in board file

2012-04-25 Thread Donghwa Lee
panel_info data structure is gloable variable, so, I have initialized it in board file. If it is initialized in init_panel_info() like existing, it can't be used in drv_lcd_init() in common/lcd.c because init_panel_info() is called after drv_lcd_init(). change of v1: - I had made a mistake that m

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

2012-04-25 Thread Eric Nelson
On 03/26/2012 09:59 AM, Eric Nelson wrote: On 03/26/2012 06:42 AM, Stefano Babic wrote: On 26/03/2012 15:35, Eric Nelson wrote: On 03/26/2012 01:35 AM, Stefano Babic wrote: On 26/03/2012 01:00, Eric Nelson wrote: V2 has been stripped of the board-independent changes and +#ifde

Re: [U-Boot] [PATCH v4 1/3] usb:gadget:composite USB composite gadget support

2012-04-25 Thread Marek Vasut
Dear Lukasz Majewski, > USB Composite gadget implementation for u-boot. It builds on top > of USB UDC drivers. > > This commit is based on following files from Linux Kernel v2.6.36: > > ./include/linux/usb/composite.h > ./drivers/usb/gadget/composite.c > > SHA1: d187abb9a83e6c6b6e9f2ca17962bdea

Re: [U-Boot] [PATCH 2/2] mmc: tegra: invalidate complete cachelines

2012-04-25 Thread Mike Frysinger
On Tuesday 24 April 2012 03:53:44 Thierry Reding wrote: > The MMC core sometimes reads buffers that are smaller than a complete > cacheline, for example when reading the SCR. In order to avoid a warning > from the ARM v7 cache handling code, this patch makes sure that complete > cachelines are flus

Re: [U-Boot] [PATCH] CONFIG_SYS_BAUDRATE_TABLE: Place default into

2012-04-25 Thread Mike Frysinger
On Wednesday 25 April 2012 14:46:27 Tom Rini wrote: > --- a/mkconfig > +++ b/mkconfig > @@ -167,6 +167,11 @@ cat << EOF >> config.h > #include > #include > #include > + > +/* Default baud rate table */ > +#ifndef CONFIG_SYS_BAUDRATE_TABLE > +#define CONFIG_SYS_BAUDRATE_TABLE{ 9600, 19200,

Re: [U-Boot] [PATCH] Remove remaining mdelay() macros

2012-04-25 Thread Mike Frysinger
Acked-by: Mike Frysinger -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Pull request: Integrate latest yaffs2

2012-04-25 Thread Charles Manning
On Thursday 26 April 2012 10:40:51 Tom Rini wrote: > On 04/25/2012 03:28 PM, Charles Manning wrote: > > On Thursday 26 April 2012 10:21:37 Tom Rini wrote: > >> On Thu, Apr 26, 2012 at 09:08:42AM +1200, Charles Manning wrote: > >>> On Tuesday 24 April 2012 08:58:09 you wrote: > Dear Charles Man

Re: [U-Boot] Pull request: Integrate latest yaffs2

2012-04-25 Thread Tom Rini
On 04/25/2012 03:28 PM, Charles Manning wrote: On Thursday 26 April 2012 10:21:37 Tom Rini wrote: On Thu, Apr 26, 2012 at 09:08:42AM +1200, Charles Manning wrote: On Tuesday 24 April 2012 08:58:09 you wrote: Dear Charles Manning, In message<201204231346.32195.mannin...@actrix.gen.nz> you wro

Re: [U-Boot] Pull request: Integrate latest yaffs2

2012-04-25 Thread Charles Manning
On Thursday 26 April 2012 10:21:37 Tom Rini wrote: > On Thu, Apr 26, 2012 at 09:08:42AM +1200, Charles Manning wrote: > > On Tuesday 24 April 2012 08:58:09 you wrote: > > > Dear Charles Manning, > > > > > > In message <201204231346.32195.mannin...@actrix.gen.nz> you wrote: > > > > I recently sent a

Re: [U-Boot] "make menuconfig" does not work

2012-04-25 Thread Graeme Russ
Hi Henry, On Thu, Apr 26, 2012 at 4:21 AM, hong zhang wrote: > List, > > "make menuconfig" does not work for u-boot under panadaboard. > Old mailing list said because of no Kconfig in u-boot tree. Correct - new mailing list says the same thing ;) > Any plan to add Kconfig or any other way to co

Re: [U-Boot] Pull request: Integrate latest yaffs2

2012-04-25 Thread Tom Rini
On Thu, Apr 26, 2012 at 09:08:42AM +1200, Charles Manning wrote: > On Tuesday 24 April 2012 08:58:09 you wrote: > > Dear Charles Manning, > > > > In message <201204231346.32195.mannin...@actrix.gen.nz> you wrote: > > > I recently sent a message to the list announcing a method for patching in > > >

Re: [U-Boot] Using sata on mx6qsabrelite

2012-04-25 Thread Eric Nelson
On 04/25/2012 12:10 PM, Eric Nelson wrote: On 04/25/2012 11:40 AM, Fabio Estevam wrote: Hi, On Stefano´s tree I see this sata patch for mx5/mx6: http://git.denx.de/?p=u-boot/u-boot-imx.git;a=commit;h=6931bd30d03de827c52bf2c8ddc6ed0c8f21dc9d Has anyone tried sata support on mx6qsabrelite yet?

Re: [U-Boot] [PATCH v3 6/7] tegra: nand: Add Tegra NAND driver

2012-04-25 Thread Scott Wood
On 04/17/2012 01:50 PM, Simon Glass wrote: > +#define DEBUG Did you mean to leave this in? > +/** > + * [DEFAULT] Read one byte from the chip > + * > + * @param mtdMTD device structure > + * @return data byte > + * > + * Default read function for 8bit bus-width > + */ This isn't the de

Re: [U-Boot] Can anyone help me to solve the stack problem of U-boot? Urgent~

2012-04-25 Thread Wolfgang Denk
Dear =?big5?B?p2Sn065w?=, In message <001e01cd2301$609c2e00$21d48a00$@x...@msa.hinet.net> you wrote: ... Urgent~ ... > Please help me because this problem had confused me a lot of days. Please see the README (section "U-Boot Porting Guide", but also section "System Initialization"), and read doc/

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

2012-04-25 Thread Andy Fleming
On Wed, Apr 25, 2012 at 3:22 AM, Albert ARIBAUD wrote: > Hi Andy, > > Le 25/04/2012 07:33, Andy Fleming a écrit : > *However*, two boards build without and do not build clean with: scpu and > pndb3. Ok, I figured that one out, and sent out a patch. > > Also, the final report is not displayed a

Re: [U-Boot] [PATCH] Add support s3c2440 NAND controller

2012-04-25 Thread Scott Wood
On 04/19/2012 08:53 AM, Ilya Averyanov wrote: > arch/arm/include/asm/arch-s3c24x0/s3c2410.h |4 +- > arch/arm/include/asm/arch-s3c24x0/s3c2440.h |4 +- > arch/arm/include/asm/arch-s3c24x0/s3c24x0.h | 13 +- > drivers/mtd/nand/Makefile |3 +- > drivers/mtd/nand/s3c24

[U-Boot] Can anyone help me to solve the stack problem of U-boot? Urgent~

2012-04-25 Thread 吳志峰
Dear all: I had a ARM platform which call DVTEST. While booting, the platform (ROM code) will copy image from SD card to SDRAM base address (0x0). So my TEXT_BASE address should be start from 0x. But I found all the ARM platforms in U-boot didn’t start from their SDRAM base address.

[U-Boot] "make menuconfig" does not work

2012-04-25 Thread hong zhang
List, "make menuconfig" does not work for u-boot under panadaboard. Old mailing list said because of no Kconfig in u-boot tree. Any plan to add Kconfig or any other way to configure u-boot? Thanks for any help! ---henry ___ U-Boot mailing list U-Boot@l

[U-Boot] [PATCH 0/3] omap4: panda: fixes for core retention

2012-04-25 Thread Tero Kristo
[sorry, failed with the header sending, trying it again] Hi, The following patches are needed before kernel can enter core retention. Namely, u-boot is enabling some functionality too early in the init phase which seems not to be needed, and it is causing trouble later on. I haven't found any oth

[U-Boot] [PATCH 3/3] omap4: do not enable auxiliary cores

2012-04-25 Thread Tero Kristo
Booting up these cores (dsp / ivahd / cortex-m3) is bad without firmware running on them, and they will hang preventing any kind of sleep transitions later on with the kernel. Signed-off-by: Tero Kristo --- arch/arm/cpu/armv7/omap4/clocks.c |4 1 files changed, 0 insertions(+), 4 deleti

[U-Boot] [PATCH 2/3] omap4: do not enable fs-usb module

2012-04-25 Thread Tero Kristo
If this is done in the bootloader, the FS-USB will later be stuck into intransition state, which will prevent the device from entering idle. Signed-off-by: Tero Kristo --- arch/arm/cpu/armv7/omap4/clocks.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/arm

[U-Boot] [PATCH 1/3] omap4: panda: disable uart2 pads during boot

2012-04-25 Thread Tero Kristo
If uart2 is enabled during boot, spurious wifi chip transmission will hang the module and it is impossible to recover from this situation without hard reset. This will prevent any l4_per domain idle transitions. Signed-off-by: Tero Kristo --- board/ti/panda/panda_mux_data.h |8 1 fi

Re: [U-Boot] Pull request: Integrate latest yaffs2

2012-04-25 Thread Charles Manning
On Tuesday 24 April 2012 08:58:09 you wrote: > Dear Charles Manning, > > In message <201204231346.32195.mannin...@actrix.gen.nz> you wrote: > > I recently sent a message to the list announcing a method for patching in > > the latest yaffs2. > > > > u-boot updated with the latest yaffs2 can be pulle

Re: [U-Boot] [Yaffs] yaffs2 u-boot patching support

2012-04-25 Thread Charles Manning
On Tuesday 24 April 2012 03:33:35 Stefano Babic wrote: > On 22/04/2012 22:23, Charles Manning wrote: > > On Friday 20 April 2012 09:40:50 Tom Rini wrote: > >> On Mon, Apr 16, 2012 at 04:32:07PM +1200, Charles Manning wrote: > >>> Hello ubooters and yaffsers > > Hi Charles, > > >>> I was commissione

[U-Boot] [PATCH] Remove extra boards from LIST_ixp

2012-04-25 Thread Andy Fleming
pdnb3 and scpu are explicitly on LIST_ixp, even though they are also specified in boards.cfg as having cpu ixp. This means that they will be built twice when doing ./MAKEALL ixp, or ./MAKEALL arm. This was pointless before, but actually breaks things if you launch both builds at the same time, as

Re: [U-Boot] Using sata on mx6qsabrelite

2012-04-25 Thread Eric Nelson
On 04/25/2012 11:40 AM, Fabio Estevam wrote: Hi, On Stefano´s tree I see this sata patch for mx5/mx6: http://git.denx.de/?p=u-boot/u-boot-imx.git;a=commit;h=6931bd30d03de827c52bf2c8ddc6ed0c8f21dc9d Has anyone tried sata support on mx6qsabrelite yet? Any patches missing that were not applied?

Re: [U-Boot] [PATCH] PowerPC: Change -fpic flag to -fPIC flag in the config.mk

2012-04-25 Thread Scott Wood
On 04/18/2012 05:07 AM, Joakim Tjernlund wrote: > Your linker file is buggy I think. I found u-boot-nand_spl.lds, is that the > one? That's the one for the SPL part. > Check out that files reloc part: > .reloc : { > _GOT2_TABLE_ = .; > KEEP(*(.got2)) > _

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

2012-04-25 Thread Scott Wood
On 04/25/2012 01:55 PM, Joakim Tjernlund wrote: > > Scott Wood wrote on 2012/04/25 20:43:22: >> >> On 04/25/2012 05:57 AM, Joakim Tjernlund wrote: Debugging of e500 and e500v1 processer requires MSR[DE] bit to be set always. Where MSR = Machine State register Make s

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

2012-04-25 Thread Joakim Tjernlund
Scott Wood wrote on 2012/04/25 20:43:22: > > On 04/25/2012 05:57 AM, Joakim Tjernlund wrote: > >> > >> 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 differ

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

2012-04-25 Thread Scott Wood
On 04/25/2012 05:57 AM, Joakim Tjernlund wrote: >> >> 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. > > Hi > > W

[U-Boot] Using sata on mx6qsabrelite

2012-04-25 Thread Fabio Estevam
Hi, On Stefano´s tree I see this sata patch for mx5/mx6: http://git.denx.de/?p=u-boot/u-boot-imx.git;a=commit;h=6931bd30d03de827c52bf2c8ddc6ed0c8f21dc9d Has anyone tried sata support on mx6qsabrelite yet? Any patches missing that were not applied? I don't have a way to test it at the moment, bu

[U-Boot] [PATCH] beagle: fix 'timed out in wait_for_bb' message in SPL

2012-04-25 Thread Peter Meerwald
From: Peter Meerwald SPL boot outputs a 'timed out in wait_for_bb: IC2_STAT' message on beagle U-Boot SPL 2012.04-00020-gb8310b9-dirty (Apr 25 2012 - 18:49:57) Texas Instruments Revision detection unimplemented OMAP SD/MMC: 0 timed out in wait_for_bb: I2C_STAT=1000 reading u-boot.img the reason

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-25 Thread Luka Perkov
Hi Daniel, On Wed, Apr 25, 2012 at 02:34:07PM +0200, Wolfgang Denk wrote: > In message <1335325799.8304.15.camel@ramone> you wrote: > > > > > Why not use something like: > > > > > > BIN_FILES-$(CONFIG_KIRKWOOD) += kwboot$(SFX) > > > > Huh? > > > > I don't know u-boot's build system very well, b

Re: [U-Boot] [PATCH v4 0/3] usb:gadget:composite: Support for composite gadget framework

2012-04-25 Thread Marek Vasut
Dear Lukasz Majewski, > Hi Marek, > > > This patch set provides support for composite gadget framework. > > Files from Linux kernel (2.6.36) - namely composite.{c|h} have been > > ported to u-boot. > > > > Code supporting this framework has been added to gadget.h and > > Samsung's UDC driver as

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

2012-04-25 Thread Lukasz Majewski
Hi Anatolij, > 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. Yes. the include/usb/lin_gadget_compat.h layer. Good idea to provide

Re: [U-Boot] [PATCH v4 0/3] usb:gadget:composite: Support for composite gadget framework

2012-04-25 Thread Lukasz Majewski
Hi Marek, > This patch set provides support for composite gadget framework. > Files from Linux kernel (2.6.36) - namely composite.{c|h} have been > ported to u-boot. > > Code supporting this framework has been added to gadget.h and > Samsung's UDC driver as well. > > --- > Changes for v2: >

[U-Boot] PATCH 4/4] patman: Handle searching of patman config

2012-04-25 Thread Vikram Narayanan
patman shouts when it couldn't find a $(HOME)/.config/patman file. Also, it couldn't create patch files without the above config file. Handle it in a sane way by creating a new one for the user. Signed-off-by: Vikram Narayanan Cc: Simon Glass --- tools/patman/settings.py | 26 +++

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

2012-04-25 Thread Vikram Narayanan
Signed-off-by: Vikram Narayanan Cc: Simon Glass --- tools/patman/README |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/patman/README b/tools/patman/README index d98f081..4913510 100644 --- a/tools/patman/README +++ b/tools/patman/README @@ -93,17 +93,17 @@ H

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

2012-04-25 Thread Vikram Narayanan
Signed-off-by: Vikram Narayanan Cc: Simon Glass --- tools/patman/README |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/patman/README b/tools/patman/README index d9820ab..d98f081 100644 --- a/tools/patman/README +++ b/tools/patman/README @@ -132,16 +132,15

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

2012-04-25 Thread Vikram Narayanan
Signed-off-by: Vikram Narayanan Cc: Simon Glass --- tools/patman/README |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/patman/README b/tools/patman/README index 587c97f..d9820ab 100644 --- a/tools/patman/README +++ b/tools/patman/README @@ -197,7 +197,7 @@ patch

[U-Boot] [PATCH 0/4] Cleanups/fixes in patman tool

2012-04-25 Thread Vikram Narayanan
Vikram Narayanan (4): patman: Fix a typo error patman: Add meaningful statements instead of blah blah patman: Change the location of patman path in README patman: Handle searching of patman config tools/patman/README | 17 - tools/patman/settings.py | 26

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

2012-04-25 Thread Mike Frysinger
On Wednesday 25 April 2012 04:11:41 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. > > Signed-off-by: M

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

2012-04-25 Thread Scott Wood
On 04/24/2012 11:05 PM, Andy Fleming wrote: On Tue, Apr 24, 2012 at 10:48 PM, Prabhakar Kushwaha wrote: Hi, On Wednesday 25 April 2012 02:50 AM, Andy Fleming wrote: On Tue, Apr 24, 2012 at 4:10 PM, Scott Wood wrote: On 04/24/2012 03:45 PM, Andy Fleming wrote: On Mon, Mar 26, 2012 at

[U-Boot] [STATUS] v2012.04.01 released

2012-04-25 Thread Wolfgang Denk
Hello, U-Boot v2012.04.01 has been released and is available from the git repository and the FTP server. Please update and use this bug fix release instead of v2012.04. It fixes a nasty bug in the command line processing, which can cause incorrect execution of commands and scripts. Thanks. Best

Re: [U-Boot] Porting u-boot for MPC8280 based board.

2012-04-25 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > > Yes These frequency and flash base address are correct to my board. > SMC2 pins PA9-TX and PA8-Rx, > I Checked BRG and clock routing is matching to board. Then you need a debugger. > I have BDI 2000 tool, but its not connecting to board. Th

Re: [U-Boot] [u-boot][PATCH 0/2] igep00x0: updates for IGEP boards

2012-04-25 Thread Anatolij Gustschin
Hello, On Wed, 25 May 2011 16:19:17 +0200 Enric Balletbo i Serra wrote: > Hello, > > This is a couple of patches to update the support for IGEP boards, please > consider to adding. Sorry for very long delay. These patches needed rebasing, I've included Tom in Cc for v2, so these patches hopefu

[U-Boot] [PATCH v2 2/2] igep00x0: change mpurate from 500 to auto

2012-04-25 Thread Anatolij Gustschin
From: Enric Balletbo i Serra This patch changes the default mpurate variable from 500 to auto on all IGEP boards, with this the default rate is autoselected. Signed-off-by: Enric Balletbo i Serra Signed-off-by: Anatolij Gustschin --- v2: - rebased on u-boot-ti/master. include/configs/igep00

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-25 Thread Wolfgang Denk
Dear Daniel Stodden, In message <1335325799.8304.15.camel@ramone> you wrote: > > > Why not use something like: > > > > BIN_FILES-$(CONFIG_KIRKWOOD) += kwboot$(SFX) > > Huh? > > I don't know u-boot's build system very well, but normally CONFIG items > are employed to keep the target lean. Where

[U-Boot] [PATCH v2 1/2] igep00x0: enable the use of a plain text file

2012-04-25 Thread Anatolij Gustschin
From: Enric Balletbo i Serra Based on commit cf073e49bc3502be1b48a0e3faf0cde9edbb89db for beagleboard Using the new env import command it is possible to use plain text files instead of script-images. Plain text files are much easier to handle. E.g. If your boot.scr contains the following:

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

2012-04-25 Thread Joakim Tjernlund
> > 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. Hi We are trying to bring up our custom P2010 RDB based board. boo

[U-Boot] [PATCH] TRATS: initialize panel_info data structure in board file

2012-04-25 Thread Donghwa Lee
panel_info data structure is global variable, so, I have initialized it in board file. If it is initialized in init_panel_info() like existing, it can't be used in drv_lcd_init() in common/lcd.c because init_panel_info() is called after drv_lcd_init(). Signed-off-by: Donghwa Lee Signed-off-by: Ky

Re: [U-Boot] [PATCH 2/2] P4080/PBL: add tool to support pbl image build.

2012-04-25 Thread Anatolij Gustschin
Hi, On Wed, 16 Mar 2011 10:11:03 +0800 Shaohui Xie wrote: > The tool can build u-boot image which can be used by PBL, > run "make P4080DS_RAMBOOT_PBL" can make all works done, > the default output image is u-boot.pbl, for more details > please refer to doc/README.pblimage. > > Signed-off-by: Sh

[U-Boot] [PATCH] Remove remaining mdelay() macros

2012-04-25 Thread Anatolij Gustschin
Drop mdelay() macros since we already have a common mdelay() func. Signed-off-by: Anatolij Gustschin --- drivers/block/sata_sil.c |1 - drivers/video/da8xx-fb.c |1 - 2 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/block/sata_sil.c b/drivers/block/sata_sil.c index

[U-Boot] [PATCH] powerpc/mpc85xx:Add debugger support for P1010 and P1014

2012-04-25 Thread Prabhakar Kushwaha
P1010 and P1014 SoC has e500v2 processor. And 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

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

2012-04-25 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 3/4][v4] powerpc/85xx:Make debug exception vector accessible

2012-04-25 Thread Prabhakar Kushwaha
Debugging of e500 and e500v1 processer requires debug exception vecter (IVPR + IVOR15) to have valid and fetchable OP code. 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 fro

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

2012-04-25 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 1/4][v4] doc:Add documentation for e500 external debugger support

2012-04-25 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

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

2012-04-25 Thread Albert ARIBAUD
Hi Andy, Le 25/04/2012 07:33, Andy Fleming a écrit : 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 happen to have a many-core server, your builds will l

Re: [U-Boot] [PATCH] LCD: change s6e8ax0 panel gamma value

2012-04-25 Thread Anatolij Gustschin
Hi, On Wed, 25 Apr 2012 17:04:39 +0900 Donghwa Lee wrote: > s6e8ax0 panel init gamma value is changed because existing it was not > proper value for this panel. > > Signed-off-by: Donghwa Lee > Signed-off-by: Kyungmin Park > Signed-off-by: Inki Dae > --- > drivers/video/s6e8ax0.c |8 +++

Re: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a serial link.

2012-04-25 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot- > boun...@lists.denx.de] On Behalf Of Daniel Stodden > Sent: 24 April 2012 11:37 > To: U-Boot > Subject: [U-Boot] [PATCH] kwboot: Boot Marvell Kirkwood SoCs over a > serial link. Hi Daniel Pls maintain change log,

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

2012-04-25 Thread Anatolij Gustschin
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. Signed-off-by: Mike Frysinger Signed-off-by: Anatolij Gustschin --- v2: - fix build breakag

[U-Boot] [PATCH] LCD: change s6e8ax0 panel gamma value

2012-04-25 Thread Donghwa Lee
s6e8ax0 panel init gamma value is changed because existing it was not proper value for this panel. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- drivers/video/s6e8ax0.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers

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

2012-04-25 Thread Minkyu Kang
Dear Albert, The following changes since commit 6e7c76a15753f3a5e1b94df372392a08e4b11b02: arm: ea20: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT (2012-04-23 09:15:23 -0700) are available in the git repository at: git://git.denx.de/u-boot-samsung master Chander Kashyap (1):

Re: [U-Boot] [PATCH] EXYNOS: Change bits per pixel value proper for u-boot.

2012-04-25 Thread Minkyu Kang
On 24 April 2012 20:44, Anatolij Gustschin wrote: > Hi, > > On Tue, 24 Apr 2012 10:37:05 +0900 > Donghwa Lee wrote: > >> vl_bpix of vidinfo_t was changed proper value for u-boot. >> It is used to multiple of 2 by using NBITS() macro. >> >> Signed-off-by: Donghwa Lee >> Signed-off-by: Kyungmin Pa

Re: [U-Boot] [RESEND 0/2] mmc:fix: MMC fixes for generic mmc driver running at GONI

2012-04-25 Thread Lukasz Majewski
Hi Andy, > Those two patches have been combined together for easier review. > > Both fixes corner cases caught on the Samsung's GONI target. > Namely: > - lack of call to mmc_init with fat handling > - Not setting MMC capabilities according to host capabilities > > > Lukasz Majewski (2): > mm

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

2012-04-25 Thread Albert ARIBAUD
Hi Tom, Le 23/04/2012 19:19, Tom Rini a écrit : Hello, The following changes since commit 5697158fd27c9cc938eb3e3308e3c1483a2a1ef8: Tom Rini (1): include/configs: Remove CONFIG_SYS_64BIT_STRTOUL are available in the git repository at: git://git.denx.de/u-boot-ti master Nikita