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

2012-04-26 Thread Joakim Tjernlund
Scott Wood wrote on 2012/04/25 20:59:22: > > 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 > alway

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

2012-04-26 Thread Lukasz Majewski
On Thu, 26 Apr 2012 00:53:01 +0200 Marek Vasut wrote: > 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 > > ./

[U-Boot] [PATCH] Exynos: fix cpuinfo and cpu detecting

2012-04-26 Thread Minkyu Kang
Since Exynos architecture have new SoCs, need to fix cpuinfo correctly. Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park Tested-by: Jaehoon Chung Cc: Chander Kashyap --- arch/arm/cpu/armv7/s5p-common/cpu_info.c |5 ++- arch/arm/include/asm/arch-exynos/cpu.h | 42 +++

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

2012-04-26 Thread Anatolij Gustschin
Hi, On Thu, 26 Apr 2012 08:29:39 +0900 Donghwa Lee wrote: > 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 calle

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

2012-04-26 Thread Donghwa Lee
This patch supports drawing 32bpp decompressed bitmap image. change of v1: - use lcd_line_length variable - convert RGB to BGR because BMP data format aligned BGR. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- common/lcd.c | 27 --- 1 files changed, 24

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

2012-04-26 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(). change of v1

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

2012-04-26 Thread Thirumalesha N
> > 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. > > This is a problem that should be fi

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

2012-04-26 Thread Anatolij Gustschin
Hi Lukasz, On Wed, 25 Apr 2012 17:58:51 +0200 Lukasz Majewski wrote: > 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

[U-Boot] [PATCH] misc:pmic:trats: Correct procedure of enabling/disabling USB regulators

2012-04-26 Thread Lukasz Majewski
In the MAX8997, LDO regulators needs to preserve previously set voltage values. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang --- board/samsung/trats/trats.c | 15 +++ 1 files changed, 11 insertions(+), 4 deletions(-) diff --git a/board/samsung/trat

Re: [U-Boot] [PATCH] i.MX25: Prepare for LCD driver in board adaptation

2012-04-26 Thread Anatolij Gustschin
Hi Timo, sorry for my late reply. On Fri, 20 Apr 2012 14:01:48 +0300 "Timo Ketola" wrote: > Dear Stefano, Anatolij, Scott, > > On 18.04.2012 13:47, Stefano Babic wrote: > > On 18/04/2012 10:54, Timo Ketola wrote: > >> Signed-off-by: Timo Ketola > ... > >> diff --git a/drivers/video/mx2fb.c b/

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

2012-04-26 Thread Marek Vasut
Dear 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 d

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

2012-04-26 Thread Simon Glass
Hi Thierry, On Thu, Apr 26, 2012 at 6:18 PM, Thierry Reding < thierry.red...@avionic-design.de> wrote: > * 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 whe

[U-Boot] [PATCH] powerpc/p1010rdb: update mux config of p1010rdb board

2012-04-26 Thread Shengzhou Liu
On p1010rdb some signals are muxed for tdm/can/uart/flash. If we don't set fsl_p1010mux:tdm_can to "can" or "tdm" explicitly, defaultly we keep spi chip selection to spi-flash instead of to tdm/slic and disable uart1 when not using flexcan, as well disable sdhc. Signed-off-by: Shengzhou Liu --- b

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

2012-04-26 Thread Lukasz Majewski
Hi Anatolij, > > 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 incl

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

2012-04-26 Thread Thierry Reding
* Simon Glass wrote: > Hi Thierry, > > On Thu, Apr 26, 2012 at 6:18 PM, Thierry Reding < > thierry.red...@avionic-design.de> wrote: > > > * 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 comp

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

2012-04-26 Thread 吳志峰
Dear all: I'd solved this problem. I define a global symbol at link script and used this global symbol to set up stack pointer. This global symbol indicated the end address of U-boot. I also changed the globla gd pointer address and memory allocation address. Thanks -Original Message--

[U-Boot] read command

2012-04-26 Thread Haneef Mohamed
Hi, Is there a way to get input for a script file from console(hush), so as to make the script file interactive. like in linux there is a read command which the shell scripts make use of to read inputs from console. Thanks Haneef ___ U-Boot maili

Re: [U-Boot] [PATCH v3 0/7] tegra: Add NAND flash support

2012-04-26 Thread Thierry Reding
* Simon Glass wrote: > This series adds NAND flash support to Tegra and enables it on Seaboard. > > Included here is a proposed device tree binding with most of the properties > private to "nvidia,". The binding includes information about the NAND > controller as well as the connected NAND device.

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

2012-04-26 Thread Anatolij Gustschin
Hi Lukasz, On Thu, 26 Apr 2012 12:32:40 +0200 Lukasz Majewski wrote: ... > > Now I see another issue. In this 4/4 patch we are removing kmalloc: > > > > -#define kmalloc(size, type) memalign(CONFIG_SYS_CACHELINE_SIZE, size) > > > > linux/compat.h defines kmalloc() to be malloc(), so the gadget

Re: [U-Boot] [PATCH] kirkwood: add support for D-Link DNS-320

2012-04-26 Thread Prafulla Wadaskar
Hi Jamie > -Original Message- > From: Jamie Lentin [mailto:j...@lentin.co.uk] > Sent: 26 April 2012 15:54 > To: u-boot@lists.denx.de > Cc: Jamie Lentin; Prafulla Wadaskar; albert.u.b...@aribaud.net > Subject: [PATCH] kirkwood: add support for D-Link DNS-320 May you please post here a lin

[U-Boot] [PATCH] kirkwood: add support for D-Link DNS-320

2012-04-26 Thread Jamie Lentin
This patch adds support for D-Link DNS-320 ShareCenter NAS. Signed-off-by: Jamie Lentin Cc: prafu...@marvell.com Cc: albert.u.b...@aribaud.net --- This patch is heavily based on Stefan's work for the DNS-325 port, the main difference being the memory timings. I've tested this on my board against

Re: [U-Boot] [PATCH] i.MX25: Prepare for LCD driver in board adaptation

2012-04-26 Thread Timo Ketola
On 26.04.2012 12:57, Anatolij Gustschin wrote: ... > On Fri, 20 Apr 2012 14:01:48 +0300 "Timo Ketola" > wrote: ... >> What if I implement the driver in my board folder instead? ... > I would prefer not including the driver in the board code. The > disadvantage of using the video API is increased

Re: [U-Boot] [PATCH] i.MX2: Support splash screen

2012-04-26 Thread Anatolij Gustschin
On Wed, 18 Apr 2012 11:54:21 +0300 "Timo Ketola" wrote: > Signed-off-by: Timo Ketola > --- > arch/arm/include/asm/arch-mx25/imx-regs.h | 29 + > drivers/video/Makefile|1 + > drivers/video/mx2fb.c | 92 > + > i

[U-Boot] [PATCH 6/8] powerpc: Update gdsys board configurations

2012-04-26 Thread Dirk Eibach
Signed-off-by: Dirk Eibach --- include/configs/gdppc440etx.h |4 include/configs/intip.h |4 ++-- include/configs/io.h |6 +- include/configs/io64.h|2 +- include/configs/iocon.h |6 +- 5 files changed, 17 insertions(+), 5 deletions(-)

[U-Boot] [PATCH 4/8] powerpc: Support gdsys dlvision-10g hardware 1.20

2012-04-26 Thread Dirk Eibach
In hardware revision 1.20 one more fan controller is added to dlvision-10g. Signed-off-by: Dirk Eibach --- board/gdsys/405ep/dlvision-10g.c | 12 +++- include/configs/dlvision-10g.h |4 ++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/board/gdsys/405ep/dlvisio

[U-Boot] [PATCH 2/8] ppc4xx: Make gdsys 405ep boards reset more generic

2012-04-26 Thread Dirk Eibach
In order to add boards that have different hardware for fpga reset, any 405ep gdsys board now provides these functions: void gd405ep_init(void); void gd405ep_set_fpga_reset(unsigned state); void gd405ep_setup_hw(void); int gd405ep_get_fpga_done(unsigned fpga); Signed-off-by: Dirk Eibach --- boa

[U-Boot] [PATCH 8/8] powerpc: Add sdcard and spi boot support to P1022DS

2012-04-26 Thread Dirk Eibach
Signed-off-by: Dirk Eibach --- board/freescale/p1022ds/p1022ds.c |4 ++ board/freescale/p1022ds/tlb.c | 10 ++ boards.cfg|4 ++ include/configs/P1022DS.h | 63 ++--- 4 files changed, 76 insertions(+), 5 deletions(

[U-Boot] [PATCH 1/8] ppc4xx: Adjust environment size on neo

2012-04-26 Thread Dirk Eibach
Environment size on neo has to be 0x2 for compatibilty reasons. Signed-off-by: Dirk Eibach --- include/configs/neo.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/neo.h b/include/configs/neo.h index 8de5aaf..6559353 100644 --- a/include/configs/neo

[U-Boot] [PATCH 7/8] powerpc: Fix typo in gdsys_fpga.h

2012-04-26 Thread Dirk Eibach
Signed-off-by: Dirk Eibach --- include/gdsys_fpga.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/gdsys_fpga.h b/include/gdsys_fpga.h index 555fbe2..bfa656f 100644 --- a/include/gdsys_fpga.h +++ b/include/gdsys_fpga.h @@ -115,7 +115,7 @@ typedef struct ihs_fpga

[U-Boot] [PATCH 3/8] powerpc: Adapt gdsys 405ep boards to platform changes

2012-04-26 Thread Dirk Eibach
Print fpga info at last_stage_init on gdsys 405ep boards. Use dtt_init() to startup fans. Signed-off-by: Dirk Eibach --- board/gdsys/405ep/dlvision-10g.c | 28 - board/gdsys/405ep/io.c | 41 + board/gdsys/405ep/iocon.c

[U-Boot] [PATCH 5/8] Consider CONFIG_ZERO_BOOTDELAY_CHECK when CONFIG_AUTOBOOT_KEYED is set

2012-04-26 Thread Dirk Eibach
When CONFIG_ZERO_BOOTDELAY_CHECK is not defined, bootdelay==0 prevents the check for console input (as stated in README.autoboot). This must also work in CONFIG_AUTOBOOT_KEYED mode. Signed-off-by: Dirk Eibach --- common/main.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff

Re: [U-Boot] [PATCH] i.MX25: lcdc: Add register definitions

2012-04-26 Thread Anatolij Gustschin
On Fri, 20 Apr 2012 14:01:49 +0300 "Timo Ketola" wrote: > Signed-off-by: Timo Ketola > --- > arch/arm/include/asm/arch-mx25/imx-regs.h | 32 > + > 1 files changed, 32 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/include/asm/arch-mx25/imx-regs.h > b/ar

Re: [U-Boot] [PATCH] i.MX25: Prepare for LCD driver in board adaptation

2012-04-26 Thread Anatolij Gustschin
On Thu, 26 Apr 2012 14:18:29 +0300 Timo Ketola wrote: ... > Then I might resubmit the original patch. Is there basically anything > else than the lack of proper attributions? Some minor coding style issues. I've sent my comments to both patches. Thanks, Anatolij _

[U-Boot] Undefined results when building highbank board

2012-04-26 Thread Wolfgang Denk
Dear Rob, arch/arm/cpu/armv7/highbank/config.mk contains this setting: PLATFORM_CPPFLAGS += -march=armv7-a This results in code bueing built with the follwoing compiler options: ... -march=armv5 -march=armv7-a ... This is a bad idea - dependign on tool chain used, this may resu

[U-Boot] Can't read kernel if bad blocks are present in partition

2012-04-26 Thread Alexandre Gambier
Hi, I'm working on a STM chip under linux and U-Boot 1.3.1. Here's my problem. To boot linux up I load the kernel stored in a NAND device. If a bad block is present in the nand I can't load the kernel. To store the kernel I first erase the partition and write the kernel image. During the eras

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

2012-04-26 Thread Wolfgang Denk
Dear Graeme Russ, In message you wrote: > > > Any plan to add Kconfig or any other way to configure u-boot? > > Not that I am aware of, but I would support anyone who submitted > patches to add Kconfig support Well, please talk to Marek, then... > (it would be great to get U-Boot added to bu

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

2012-04-26 Thread Wolfgang Denk
Dear Charles Manning, In message <201204261028.44543.mannin...@actrix.gen.nz> you wrote: > > yaffs went through a large reformat a while ago meaning that the current code > does not diff well against the old code. Future changes shuld be a lot easier > to handle with direct patching. > > yaffs

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

2012-04-26 Thread Graeme Russ
Hi Wolfgang, On 04/26/2012 10:18 PM, Wolfgang Denk wrote: > Dear Graeme Russ, > > In message > you > wrote: >> >>> Any plan to add Kconfig or any other way to configure u-boot? >> >> Not that I am aware of, but I would support anyone who submitted >> patches to add Kconfig support > > Well, p

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

2012-04-26 Thread Wolfgang Denk
Dear Thirumalesha N, In message you wrote: > > > > I have BDI 2000 tool, but its not connecting to board. > > > > This is a problem that should be fixable. Keep in mind that the > > MPC82xx can come up in different modes, depending on if there is a > > valid HRCW in flash or not. This can c

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

2012-04-26 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. Additionally use memalign() directly as the lin_gadget specific kmalloc() macro is removed fr

Re: [U-Boot] read command

2012-04-26 Thread Wolfgang Denk
Dear Haneef Mohamed, In message <1335434285.83714.yahoomail...@web193302.mail.sg3.yahoo.com> you wrote: > > Is there a way to get input for a script file from console(hush), so > as to make the script file interactive. like in linux there is a read > command which the shell scripts make use of t

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

2012-04-26 Thread Wolfgang Denk
Dear Donghwa Lee, In message <4f99057f.5040...@samsung.com> you wrote: > This patch is 32bpp BMP image data that is converted to header > after gzip. I had agonized about where these data located. > I think TIZEN is not specific on board and SoC, so I determined > that position is proper in includ

Re: [U-Boot] [PATCH 1/4] gunzip: rename z{alloc, free} to gz{alloc, free}

2012-04-26 Thread Anatolij Gustschin
On Mon, 9 Apr 2012 19:39:53 -0400 Mike Frysinger wrote: > This allows us to add a proper zalloc() func (one that does a zeroing > alloc), and removes duplicate prototypes. > > Signed-off-by: Mike Frysinger > --- > fs/cramfs/uncompress.c |7 ++- > include/u-boot/zlib.h |3 +++ > l

Re: [U-Boot] [PATCH 2/4] lin_gadget: use common mdelay

2012-04-26 Thread Anatolij Gustschin
On Mon, 9 Apr 2012 19:39:54 -0400 Mike Frysinger wrote: > No need to provide our own mdelay() macro when we have a func for it. > > Signed-off-by: Mike Frysinger > --- > include/usb/lin_gadget_compat.h |1 - > 1 files changed, 0 insertions(+), 1 deletions(-) Applied to u-boot-staging/ag.

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

2012-04-26 Thread Thierry Reding
* 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 blocks into one rea

Re: [U-Boot] Undefined results when building highbank board

2012-04-26 Thread Rob Herring
On 04/26/2012 07:03 AM, Wolfgang Denk wrote: > Dear Rob, > > arch/arm/cpu/armv7/highbank/config.mk contains this setting: > > PLATFORM_CPPFLAGS += -march=armv7-a > > This results in code bueing built with the follwoing compiler options: > > ... -march=armv5 -march=armv7-a ... > >

Re: [U-Boot] [PATCH 3/4] linux/compat.h: rename from linux/mtd/compat.h

2012-04-26 Thread Anatolij Gustschin
On Mon, 9 Apr 2012 19:39:55 -0400 Mike Frysinger wrote: > This lets us use it in more places than just mtd code. > > Signed-off-by: Mike Frysinger > --- > board/samsung/smdkc100/onenand.c|2 +- > common/cmd_onenand.c|2 +- > common/env_onenand.c|

Re: [U-Boot] [PATCH 3/8] powerpc: Adapt gdsys 405ep boards to platform changes

2012-04-26 Thread Stefan Roese
Hi Dirk, On Thursday 26 April 2012 13:49:31 Dirk Eibach wrote: > Print fpga info at last_stage_init on gdsys 405ep boards. > Use dtt_init() to startup fans. Your patchset is not organized optimally. You sent 8 patches in one patchset, from a quick glance 6 patches are ppc4xx related (4xx board c

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

2012-04-26 Thread Dirk Eibach
Environment size on neo has to be 0x2 for compatibilty reasons. Signed-off-by: Dirk Eibach Cc: Stefan Roese --- Changes in v2: - add Cc - split up original patch series include/configs/neo.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/neo.h b/i

[U-Boot] [PATCH 0/6] Various gdsys ppc4xx boards revised

2012-04-26 Thread Dirk Eibach
Dirk Eibach (6): powerpc/ppc4xx: Adjust environment size on neo powerpc/ppc4xx: Make gdsys 405ep boards reset more generic powerpc/ppc4xx: Adapt gdsys 405ep boards to platform changes powerpc/ppc4xx: Support gdsys dlvision-10g hardware 1.20 powerpc/ppc4xx: Update gdsys board configuration

[U-Boot] [PATCH v2 5/6] powerpc/ppc4xx: Update gdsys board configurations

2012-04-26 Thread Dirk Eibach
Signed-off-by: Dirk Eibach Cc: Stefan Roese --- Changes in v2: - add Cc - split up original patch series include/configs/gdppc440etx.h |4 include/configs/intip.h |4 ++-- include/configs/io.h |6 +- include/configs/io64.h|2 +- include/configs/io

[U-Boot] [PATCH v2 6/6] powerpc/ppc4xx: Fix typo in gdsys_fpga.h

2012-04-26 Thread Dirk Eibach
Signed-off-by: Dirk Eibach Cc: Stefan Roese --- Changes in v2: - add Cc - split up original patch series include/gdsys_fpga.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/gdsys_fpga.h b/include/gdsys_fpga.h index 555fbe2..bfa656f 100644 --- a/include/gdsys_f

[U-Boot] [PATCH v2 2/6] powerpc/ppc4xx: Make gdsys 405ep boards reset more generic

2012-04-26 Thread Dirk Eibach
In order to add boards that have different hardware for fpga reset, any 405ep gdsys board now provides these functions: void gd405ep_init(void); void gd405ep_set_fpga_reset(unsigned state); void gd405ep_setup_hw(void); int gd405ep_get_fpga_done(unsigned fpga); Signed-off-by: Dirk Eibach Cc: Stef

[U-Boot] [PATCH v2 3/6] powerpc/ppc4xx: Adapt gdsys 405ep boards to platform changes

2012-04-26 Thread Dirk Eibach
Print fpga info at last_stage_init on gdsys 405ep boards. Use dtt_init() to startup fans. Signed-off-by: Dirk Eibach Cc: Stefan Roese --- Changes in v2: - add Cc - split up original patch series board/gdsys/405ep/dlvision-10g.c | 28 - board/gdsys/405ep/io.c

[U-Boot] [PATCH v2 4/6] powerpc/ppc4xx: Support gdsys dlvision-10g hardware 1.20

2012-04-26 Thread Dirk Eibach
In hardware revision 1.20 one more fan controller is added to dlvision-10g. Signed-off-by: Dirk Eibach Cc: Stefan Roese --- Changes in v2: - add Cc - split up original patch series board/gdsys/405ep/dlvision-10g.c | 12 +++- include/configs/dlvision-10g.h |4 ++-- 2 files chang

[U-Boot] [PATCH v2] powerpc/p1022ds: Add sdcard and spi boot support to P1022DS

2012-04-26 Thread Dirk Eibach
Signed-off-by: Dirk Eibach Cc: Timur Tabi --- Changes in v2: - add Cc - split up original patch series board/freescale/p1022ds/p1022ds.c |4 ++ board/freescale/p1022ds/tlb.c | 10 ++ boards.cfg|4 ++ include/configs/P1022DS.h | 63

[U-Boot] [PATCH v2] Consider CONFIG_ZERO_BOOTDELAY_CHECK when CONFIG_AUTOBOOT_KEYED is set

2012-04-26 Thread Dirk Eibach
When CONFIG_ZERO_BOOTDELAY_CHECK is not defined, bootdelay==0 prevents the check for console input (as stated in README.autoboot). This must also work in CONFIG_AUTOBOOT_KEYED mode. Signed-off-by: Dirk Eibach --- Changes in v2: - split up original patch series common/main.c |5 + 1 fi

Re: [U-Boot] [PATCH] kirkwood: add support for D-Link DNS-320

2012-04-26 Thread Jamie Lentin
On Thu, 26 Apr 2012 11:57:36 +0100, Prafulla Wadaskar wrote: Hi Jamie -Original Message- From: Jamie Lentin [mailto:j...@lentin.co.uk] Sent: 26 April 2012 15:54 To: u-boot@lists.denx.de Cc: Jamie Lentin; Prafulla Wadaskar; albert.u.b...@aribaud.net Subject: [PATCH] kirkwood: add su

Re: [U-Boot] [PATCH] i.MX2: Support splash screen

2012-04-26 Thread Timo Ketola
Dear Anatolij, Thanks for the review. Everything else is clear, but... On 26.04.2012 14:51, Anatolij Gustschin wrote: ... >> +++ b/drivers/video/mx2fb.c >> @@ -0,0 +1,92 @@ > > Please add Copyright info here. ... >> +++ b/include/mx2fb.h ... > Please consider Stefano's comment regarding copyrigh

Re: [U-Boot] [PATCH v3 0/7] tegra: Add NAND flash support

2012-04-26 Thread Stephen Warren
On 04/26/2012 04:50 AM, Thierry Reding wrote: > * Simon Glass wrote: >> This series adds NAND flash support to Tegra and enables it on Seaboard. >> >> Included here is a proposed device tree binding with most of the properties >> private to "nvidia,". The binding includes information about the NAND

Re: [U-Boot] [PATCH] i.MX2: Support splash screen

2012-04-26 Thread Anatolij Gustschin
Hi Timo, On Thu, 26 Apr 2012 17:37:31 +0300 Timo Ketola wrote: ... > Thanks for the review. Everything else is clear, but... > > On 26.04.2012 14:51, Anatolij Gustschin wrote: > ... > >> +++ b/drivers/video/mx2fb.c > >> @@ -0,0 +1,92 @@ > > > > Please add Copyright info here. > ... > >> +++ b/i

Re: [U-Boot] [PATCH v2 2/6] powerpc/ppc4xx: Make gdsys 405ep boards reset more generic

2012-04-26 Thread Stefan Roese
HI Dirk, On Thursday 26 April 2012 15:54:22 Dirk Eibach wrote: > In order to add boards that have different hardware for fpga reset, > any 405ep gdsys board now provides these functions: > > void gd405ep_init(void); > void gd405ep_set_fpga_reset(unsigned state); > void gd405ep_setup_hw(void); > i

Re: [U-Boot] Can't read kernel if bad blocks are present in partition

2012-04-26 Thread Peter Barada
On 04/26/2012 07:27 AM, Alexandre Gambier wrote: > Hi, > > I'm working on a STM chip under linux and U-Boot 1.3.1. > > Here's my problem. > To boot linux up I load the kernel stored in a NAND device. If a bad > block is present in the nand I can't load the kernel. > > To store the kernel I first e

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

2012-04-26 Thread Simon Glass
On Thu, Apr 26, 2012 at 3:45 AM, Vikram Narayanan wrote: > > Signed-off-by: Vikram Narayanan > Cc: Simon Glass > Acked-by: Simon Glass > --- > tools/patman/README |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/tools/patman/README b/tools/patman/README > index

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

2012-04-26 Thread Simon Glass
Hi Vikram, On Thu, Apr 26, 2012 at 3:45 AM, Vikram Narayanan wrote: > Signed-off-by: Vikram Narayanan > Cc: Simon Glass > It would be better if you added a commit message for each of these patches, even a brief one. Otherwise: Acked-by: Simon Glass > --- > tools/patman/README |9 -

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

2012-04-26 Thread Simon Glass
Hi Vikram, On Thu, Apr 26, 2012 at 3:45 AM, Vikram Narayanan wrote: > 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..4

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

2012-04-26 Thread Simon Glass
Hi Vikram, On Thu, Apr 26, 2012 at 3:45 AM, Vikram Narayanan wrote: > 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. > > The title of this patch

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

2012-04-26 Thread Simon Glass
Hi Vikram, On Thu, Apr 26, 2012 at 3:44 AM, Vikram Narayanan wrote: > > 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 > Thanks for se

Re: [U-Boot] [PATCH v3 0/7] tegra: Add NAND flash support

2012-04-26 Thread Thierry Reding
* Stephen Warren wrote: > Yes, I'd recommend not putting information in DT that can be easily > extracted from the partition table on the device itself. The problem is that neither the format of the BCT nor that of the PT is documented anywhere. It seems like the BCT contains a reference to where

Re: [U-Boot] [PATCH v3 0/7] tegra: Add NAND flash support

2012-04-26 Thread Stephen Warren
On 04/26/2012 12:32 PM, Thierry Reding wrote: > * Stephen Warren wrote: >> Yes, I'd recommend not putting information in DT that can be easily >> extracted from the partition table on the device itself. > > The problem is that neither the format of the BCT nor that of the PT is > documented anywhe

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

2012-04-26 Thread Scott Wood
On 04/25/2012 09:07 PM, li guohu wrote: > > 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

Re: [U-Boot] Can't read kernel if bad blocks are present in partition

2012-04-26 Thread Scott Wood
On 04/26/2012 12:11 PM, Peter Barada wrote: > On 04/26/2012 07:27 AM, Alexandre Gambier wrote: >> Hi, >> >> I'm working on a STM chip under linux and U-Boot 1.3.1. >> >> Here's my problem. >> To boot linux up I load the kernel stored in a NAND device. If a bad >> block is present in the nand I can

Re: [U-Boot] Using sata on mx6qsabrelite

2012-04-26 Thread Fabio Estevam
Pete, On Thu, Apr 26, 2012 at 5:10 PM, Pinewski Pete-RYLV50 wrote: > Eric, Fabio, > I just cloned the master tree, applied the patches (no problems), built > u-boot ("make mx6qsabrelite") and tried to flash the u-boot.bin into the > sabrelite board but I am having issues. > Is there a trick to

Re: [U-Boot] Undefined results when building highbank board

2012-04-26 Thread Wolfgang Denk
Dear Rob Herring, In message <4f99459f.4060...@gmail.com> you wrote: > > > Can you please provide a fix? Thanks! > > The issue is I require a wfi assembly instruction for reset, so I would > have to hard code the machine code to work on all compilers. If it's only for this single instruction th

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

2012-04-26 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into arm master. Thanks! The following changes since commit 6e7c76a15753f3a5e1b94df372392a08e4b11b02: Nobuhiro Iwamatsu (1): arm: ea20: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT are available in the git repository at: git://g

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

2012-04-26 Thread Scott Wood
On 04/26/2012 01:53 AM, Joakim Tjernlund wrote: > 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. > >> >>>

Re: [U-Boot] [PATCH 05/14] cfb_console: Fix function console_scrollup

2012-04-26 Thread Anatolij Gustschin
Hi, On Tue, 24 Jan 2012 15:28:02 +0100 Pali Rohár wrote: > * Use correct buffer size, do not damage screen output It seems that I can reproduce similar problem on the beagleboard now. Will try to debug and find a solution for it. Thanks, Anatolij __

Re: [U-Boot] [PATCH 05/14] cfb_console: Fix function console_scrollup

2012-04-26 Thread Pali Rohár
On Thursday 26 April 2012 23:45:52 Anatolij Gustschin wrote: > Hi, > > On Tue, 24 Jan 2012 15:28:02 +0100 > > Pali Rohár wrote: > > * Use correct buffer size, do not damage screen output > > It seems that I can reproduce similar problem on the > beagleboard now. Will try to debug and find a solut

Re: [U-Boot] [PATCH v2 08/21] net: Move RARP receive logic out of net.c

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > Just a few nits, but otherwise: Acked-by: Simon Glass > --- > Changes for v2: > - Moved void to the same line as function >

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

2012-04-26 Thread Charles Manning
On Friday 27 April 2012 00:25:55 Wolfgang Denk wrote: > Dear Charles Manning, > > In message <201204261028.44543.mannin...@actrix.gen.nz> you wrote: > > yaffs went through a large reformat a while ago meaning that the current > > code does not diff well against the old code. Future changes shuld be

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

2012-04-26 Thread Graeme Russ
Hi Charles, On Fri, Apr 27, 2012 at 8:59 AM, Charles Manning wrote: > On Friday 27 April 2012 00:25:55 Wolfgang Denk wrote: >> Dear Charles Manning, >> >> In message <201204261028.44543.mannin...@actrix.gen.nz> you wrote: >> > yaffs went through a large reformat a while ago meaning that the curre

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

2012-04-26 Thread Albert ARIBAUD
Hi Minkyu, Le 25/04/2012 09:51, Minkyu Kang a écrit : 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

Re: [U-Boot] [PATCH v2 1/2] CONFIG_SYS_BAUDRATE_TABLE: Add , place there

2012-04-26 Thread Tom Rini
On Thu, Apr 26, 2012 at 3:46 PM, Tom Rini wrote: > We provide a default table of { 9600, 19200, 38400, 57600, 115200 } > in which mkconfig places after in > the generated config file.  This is used when a board has not set its > own table.  A number of boards set values below 9600 but it is my b

Re: [U-Boot] [PATCH v2 09/21] net: cosmetic: Un-typedef IP_t

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > Rename IP header related things to IP_UDP. The existing definition > of IP_t includes UDP header, so name it to accurately describe the > structure. Also add a structure that only contains IP header fields > to be used by function

Re: [U-Boot] [PATCH v2 10/21] net: cosmetic: Un-typedef Ethernet_t

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > Separate the Ethernet header from the 802 header. > Base the size constants on the structs. > > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > How about struct ethernet_hdr? Othe

Re: [U-Boot] [PATCH v2 11/21] net: cosmetic: Un-typedef VLAN_Ethernet_t

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > --- > Changes for v2: > - Split apart from "Un-typedef variables in net" > - Renamed structs from *_t to *_hdr since they are no

Re: [U-Boot] [PATCH v2 12/21] net: cosmetic: Un-typedef ARP_t

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > --- > Changes for v2: > - Split apart from "Un-typedef variables in net" > - Renamed structs from *_t to *_hdr since they are no

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

2012-04-26 Thread Minkyu Kang
Dear Wolfgang Denk, On 26 April 2012 21:43, Wolfgang Denk wrote: > Dear Donghwa Lee, > > In message <4f99057f.5040...@samsung.com> you wrote: >> This patch is 32bpp BMP image data that is converted to header >> after gzip. I had agonized about where these data located. >> I think TIZEN is not spe

Re: [U-Boot] [PATCH v2 14/21] net: cosmetic: Rename parameter len to payload_len

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > This name more explicitly claims that it does not include the > header size > > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > Acked-by: Simon Glass > --- > Changes for v2: >

Re: [U-Boot] [PATCH v2 15/21] net: cosmetic: Add a more explicit comment about 802.2

2012-04-26 Thread Simon Glass
Hi Joe, On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > Acked-by: Simon Glass A general comment - it would be good to have a short commit message on all patches. Regards, Simon > ---

Re: [U-Boot] [PATCH v2 16/21] net: cosmetic: Rename "x" to "eth_proto"

2012-04-26 Thread Simon Glass
On Wed, Mar 28, 2012 at 12:42 PM, Joe Hershberger wrote: > x is a poor variable name > > Signed-off-by: Joe Hershberger > Cc: Joe Hershberger > Cc: Simon Glass > Cc: Mike Frysinger > Acked-by: Simon Glass > --- > Changes for v2: > - Split from "Improve variable names and code readability

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

2012-04-26 Thread Andy Fleming
Argh, forgot to copy the list. >> >> >> Enabling it on individual SoCs based on verification conflicts with >> putting this in the core-specific config area. >> >> Just test with a reasonable sample of SoCs, grep for TLB assignments to >> look for any conflicts, and then enable it in the generic e

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

2012-04-26 Thread Minkyu Kang
On 26 April 2012 17:21, Donghwa Lee wrote: > 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

[U-Boot] [PATCH] LCD: support another s6e8ax0 panel type

2012-04-26 Thread Donghwa Lee
s6e8ax0 panel has many panel of types. This patch support another panel on TIZEN lunchbox board(HWREVISION 2). This panel has reversed panel display type. So, I had added necessary command. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/mipi_dsim.h

Re: [U-Boot] [PATCH v3 0/7] tegra: Add NAND flash support

2012-04-26 Thread Thierry Reding
* Stephen Warren wrote: > On 04/26/2012 12:32 PM, Thierry Reding wrote: > > The problem is that neither the format of the BCT nor that of the PT is > > documented anywhere. It seems like the BCT contains a reference to where in > > the flash the PT starts but I wasn't able to find out where. > > I

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

2012-04-26 Thread Mike Frysinger
On Thursday 26 April 2012 06:34:43 Thierry Reding wrote: > For reference, see sd_change_freq() in drivers/mmc/mmc.c. yes, that shows what we're talking about. int sd_change_freq(struct mmc *mmc) { ... stack vars ... int err; ALLOC_CACHE_ALIGN_BUFFER(uint, scr, 2); s

Re: [U-Boot] [PATCH 4/4] USB: Document the QH and qTD antics in EHCI-HCD

2012-04-26 Thread Mike Frysinger
On Sunday 08 April 2012 23:09:52 Marek Vasut wrote: > The construction of QH and qTD lists in ehci_submit_async() call is cryptic > business, add at least a bit of comments so if someone is reading it, he > can at least reference the intel ehci manual (ehci-r10.pdf). nice -mike signature.asc Des

Re: [U-Boot] [SOT] linker scripts

2012-04-26 Thread Mike Frysinger
On Thursday 26 April 2012 00:16:24 Jason wrote: > 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"). what is it you want to do ? a list

Re: [U-Boot] [PATCH v2 1/2] CONFIG_SYS_BAUDRATE_TABLE: Add , place there

2012-04-26 Thread Mike Frysinger
On Thursday 26 April 2012 18:46:35 Tom Rini wrote: > --- /dev/null > +++ b/include/config_fallbacks.h > @@ -0,0 +1,16 @@ > +/* > + * Copyright 2012 Texas Instruments > + * > + * This file is licensed under the terms of the GNU General Public > + * License Version 2. This file is licensed "as is" wi

Re: [U-Boot] [PATCH v2 2/2] hush.c: Move default CONFIG_SYS_PROMPT_HUSH_PS2 to hush.c

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

  1   2   >