Re: [U-Boot] [PATCH v2 1/4] mmc: dw-mmc: support DesignWare MMC Controller

2012-10-15 Thread Albert ARIBAUD
Hi Jaehoon, > >> + desc->des0 = des0; > >> + desc->des1 = des1; > >> + desc->des2 = des2; > >> + desc->des3 = (unsigned int)desc + sizeof(struct dwmci_idmac); > > > > > > Also, is there a reason that you've decided to label the 4 fields of > > your descriptor (which appea

Re: [U-Boot] Pull request: u-boot-arm/master to u-boot/master

2012-10-15 Thread Albert ARIBAUD
On Mon, 15 Oct 2012 07:58:38 +0200, Albert ARIBAUD wrote: > Hi Minkyu, > > On Mon, 15 Oct 2012 10:10:33 +0900, Minkyu Kang > wrote: > > > Hi Albert, > > > > The following changes since commit 28e5ac2d974547bde0c72aa0c1d66fd22c6ef3ad: > > > > arm: armv7: temporarily set -mno-unaligned-acces

[U-Boot] [PATCH] powerpc/boot: Change the compile macro for SRIO & PCIE boot master module

2012-10-15 Thread Liu Gang
Currently, the SRIO and PCIE boot master module will be compiled into the u-boot image if the macro "CONFIG_FSL_CORENET" has been defined. And this macro has been included by all the corenet architecture platform boards. But in fact, it's uncertain whether all corenet platform boards support this f

Re: [U-Boot] [PATCH V6] [RESEND] ARM: prevent misaligned array inits

2012-10-15 Thread Albert ARIBAUD
Hi Tom, On Sun, 14 Oct 2012 22:05:15 -0700, Tom Rini wrote: > On Sun, Oct 14, 2012 at 1:48 AM, Albert ARIBAUD > wrote: > > On Tue, 9 Oct 2012 21:28:15 +0200, Albert ARIBAUD > > wrote: > > > >> Under option -munaligned-access, gcc can perform local char > >> or 16-bit array initializations usi

Re: [U-Boot] [PATCH 0/6] EXYNOS: Add support for Exynos4x10

2012-10-15 Thread Piotr Wilczek
Dear Minkyu, Yes, I checked these patches. Actually I do the same, just for Exynos 4x10. My patches depend on Chander's first patch. Best regards, Piotr Wilczek > -Original Message- > From: Minkyu Kang [mailto:proms...@gmail.com] > Sent: Friday, October 12, 2012 6:15 PM > To: Piotr Wilc

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

2012-10-15 Thread Ивайло Димитров
Hi Marek, as part of the code is written by me I will answer to a couple of the questions >Dear Pali Rohár, > >> Based on previous work by: Alistair Buxton >> >> Signed-off-by: Pali Rohár >> Cc: Ивайло Димитров > >Can we please stick to ASCII instead of UTF8? > >Cc: Ivaylo Dimitro

[U-Boot] R: Configure a MICRON DDR2 SDRAM MT47H512M4 - 64 Meg x 4 x 8 on MPC8323 custom board

2012-10-15 Thread SETTE AGOSTINO - technolabs
Hi all, first of all I made a mistake: I have two devices DDR2 128Mbitsx16 (2Gbits * 2 devices) on my own hw. I solved the problem changing these in the MPC8323TL.h file under u-boot/include/configs >> diff MPC8323TL.h u-boot/include/configs/MPC8323TL.h 84a85 > #define CONFIG_MAX_MEM_MAPPED

Re: [U-Boot] [PATCH v2 5/6] ARM: Add SPL target to arm1136

2012-10-15 Thread Stefano Babic
Am 14/10/2012 11:17, schrieb Albert ARIBAUD: > Hi Stefano, > Hi Albert, > Nitpick: this patch also removes SPL build files in the clobber rule, > but the commit message does not say so. Can you just update the comment? Right, I fix it in V3, thanks. Stefano -- ==

Re: [U-Boot] [PATCH v2 1/4] mmc: dw-mmc: support DesignWare MMC Controller

2012-10-15 Thread Jaehoon Chung
Hi Albert, On 10/15/2012 04:01 PM, Albert ARIBAUD wrote: > Hi Jaehoon, > + desc->des0 = des0; + desc->des1 = des1; + desc->des2 = des2; + desc->des3 = (unsigned int)desc + sizeof(struct dwmci_idmac); >>> >>> >>> Also, is there a reason that you've decid

[U-Boot] [PATCH v2] EXYNOS: Clock: Add common function for pll rate calculation

2012-10-15 Thread Chander Kashyap
From: Minkyu Kang Moved the common code to calculate pll clock rate to new function exynos_get_pll_clk(). Signed-off-by: Chander Kashyap --- Changes from v1: - Author name changed arch/arm/cpu/armv7/exynos/clock.c | 102 ++--- 1 file changed, 38 inserti

[U-Boot] [PATCH v2] ARCH: EXYNOS: add support to match product id

2012-10-15 Thread Chander Kashyap
From: Minkyu Kang Based upon single SoC there can be multiple varients. This patch add support to match the complete product ID. Signed-off-by: Chander Kashyap --- Changes from v1: - Author name changed arch/arm/include/asm/arch-exynos/cpu.h |9 + 1 file changed, 9 insertio

Re: [U-Boot] [PATCH v2] ARCH: EXYNOS: add support to match product id

2012-10-15 Thread Albert ARIBAUD
Hi Chander, On Mon, 15 Oct 2012 17:28:23 +0530, Chander Kashyap wrote: > From: Minkyu Kang > > Based upon single SoC there can be multiple varients. Typo here (varients => variants) > This patch add support to match the complete product ID. > > Signed-off-by: Chander Kashyap > --- > Change

Re: [U-Boot] [PATCH v2] ARCH: EXYNOS: add support to match product id

2012-10-15 Thread Chander Kashyap
Hi Albert, Thanks. On 15 October 2012 17:58, Albert ARIBAUD wrote: > Hi Chander, > > On Mon, 15 Oct 2012 17:28:23 +0530, Chander Kashyap > wrote: > >> From: Minkyu Kang >> >> Based upon single SoC there can be multiple varients. > > Typo here (varients => variants) I will fix it. -- with warm

[U-Boot] [PATCH v3] ARCH: EXYNOS: add support to match product id

2012-10-15 Thread Chander Kashyap
From: Minkyu Kang Based upon single SoC there can be multiple variants. This patch add support to match the complete product ID. Signed-off-by: Chander Kashyap --- Changes from v1: - Author name changed Changes from v2: - Fixed typo arch/arm/include/asm/arch-exynos/cpu.h |9

Re: [U-Boot] [PATCH 5/7] disk: Allow alternate EFI partition signature

2012-10-15 Thread Stephen Warren
On 10/12/2012 06:26 PM, Simon Glass wrote: > From: Stefan Reinauer > > ChromeOS uses a GPT partition table to partition the disk. > However, Windows will refuse to install on a GPT partitioned > disk if there is no EFI available (Even if there is an MBR, too) > To hide the GPT partition table fro

[U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Tom Rini
Hey all, U-Boot v2012.10 has been released and uploaded to git. I expect to see it on the ftp server soon. The merge window is now open until November 3rd and the next release, v2013.01 is scheduled for release on January 15th 2013. I don't have Wolfgang's stats tools, so I hope he is able to r

[U-Boot] [PATCH 1/3] mx5: lowlevel_init.S: Split init_clock macro

2012-10-15 Thread Fabio Estevam
init_clock is currently shared between mx51 and mx53 and it contains lots of ifdef's which makes it really hard to follow the code. Split the init_clock between mx51 and mx53 to allow easier readability. No functional changes are made. Signed-off-by: Fabio Estevam --- arch/arm/cpu/armv7/mx5/lo

[U-Boot] [PATCH 2/3] mx5: lowlevel_init.S: Fix PLL settings for mx53

2012-10-15 Thread Fabio Estevam
Currently PLL2 is not explicitely configured for mx53 and it runs at 333MHz. Since PLL2 is the parent clock for DDR2, IPU, VPU, we should set it at 400MHz instead. Without doing so, it is not possible to use a 2.6.35 FSL kernel and display HDMI at 1080p because the IPU clock cannot reach the req

[U-Boot] [PATCH 3/3] mx53loco: Adapt the IPU clock

2012-10-15 Thread Fabio Estevam
Since PLL2 now has changed, it is necessary to adapt the CONFIG_IPUV3_CLK accordingly. Signed-off-by: Fabio Estevam --- include/configs/mx53loco.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 6a6aaa1..2ecfbd6

Re: [U-Boot] [RFC PATCH 2/2] fs: add partition switch libary, implement ls and fsload commands

2012-10-15 Thread Stephen Warren
On 10/13/2012 01:26 PM, Pavel Herrmann wrote: > Hi > > On Wednesday 10 October 2012 18:05:07 Stephen Warren wrote: >> ...snip... >> Makefile|3 +- >> common/Makefile |2 + >> common/cmd_fs.c | 86 ++ >> fs/Makefile | 47 >> fs/fs.c

[U-Boot] [PATCH] ARM: Remove unused CONFIG_DRIVER_SMC91111, CONFIG_DRIVER_LAN91C96

2012-10-15 Thread Ashok Kumar Reddy
Remove unused CONFIG_DRIVER_SMC9,CONFIG_DRIVER_LAN91C96, if required implement smc_set_mac_add() in board init. Signed-off-by: Ashok Kumar Reddy --- arch/arm/lib/board.c | 17 - 1 file changed, 17 deletions(-) diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index

[U-Boot] [PATCH] README : Rename CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111, CONFIG_DRIVER_LAN91C96 to CONFIG_LAN91C96

2012-10-15 Thread Ashok Kumar Reddy
Rename CONFIG_DRIVER_SMC9 to CONFIG_SMC9, CONFIG_DRIVER_LAN91C96 to CONFIG_LAN91C96 Signed-off-by: Ashok Kumar Reddy --- README |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index dd250a0..f360b62 100644 --- a/README +++ b/README @@ -1084,7 +

[U-Boot] [PATCH] omap2424:Rename CONFIG_DRIVER_LAN91C96 to CONFIG_LAN91C96 as CONFIG_DRIVER_LAN91C96 is obsolete.

2012-10-15 Thread Ashok Kumar Reddy
Rename CONFIG_DRIVER_LAN91C96 to CONFIG_LAN91C9 as CONFIG_DRIVER_LAN91C96 is obsolete. Signed-off-by: Ashok Kumar Reddy --- board/ti/omap2420h4/omap2420h4.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/ti/omap2420h4/omap2420h4.c b/board/ti/omap2420h4/omap2420h4

Re: [U-Boot] U-Boot git usage model

2012-10-15 Thread Stephen Warren
On 10/13/2012 01:17 PM, Wolfgang Denk wrote: > Dear Stephen Warren, > > In message <50770155.20...@wwwdotorg.org> you wrote: >> >> and in particular, the following parts of that doc is what tells me that >> committers should always add S-o-b even if the commit didn't change: >> >>> Develop

Re: [U-Boot] [PATCH V2 3/3] fs: add partition switch libary, implement ls and fsload commands

2012-10-15 Thread Rob Herring
On 10/11/2012 01:59 PM, Stephen Warren wrote: > From: Stephen Warren > > Implement "ls" and "fsload" commands that act like {fat,ext2}{ls,load}, > and transparently handle either file-system. This scheme could easily be > extended to other filesystem types; I only didn't do it for zfs because > I

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Stefano Babic
Am 15/10/2012 17:30, schrieb Tom Rini: > Hey all, > > U-Boot v2012.10 has been released and uploaded to git. I expect to > see it on the ftp server soon. > > The merge window is now open until November 3rd and the next > release, v2013.01 is scheduled for release on January 15th 2013. > > I don

Re: [U-Boot] [PATCH V3 2/4] FAT: make use of disk_partition_t.part

2012-10-15 Thread Stephen Warren
On 10/13/2012 01:38 PM, Pavel Herrmann wrote: > Hi > > On Wednesday 10 October 2012 12:14:00 Stephen Warren wrote: >> From: Stephen Warren >> >> This removes the standalone cur_part_nr variable, opening the way to >> replacing fat_register_device() with fat_set_blk_dev(). >> >> Note that when get

Re: [U-Boot] [PATCH V2 3/3] fs: add partition switch libary, implement ls and fsload commands

2012-10-15 Thread Stephen Warren
On 10/15/2012 10:33 AM, Rob Herring wrote: > On 10/11/2012 01:59 PM, Stephen Warren wrote: >> From: Stephen Warren >> >> Implement "ls" and "fsload" commands that act like {fat,ext2}{ls,load}, >> and transparently handle either file-system. This scheme could easily be >> extended to other filesyst

[U-Boot] [PATCH v1] ARM : Remove unused CONFIG_DRIVER_SMC91111, CONFIG_DRIVER_LAN91C96

2012-10-15 Thread Ashok Kumar Reddy
Remove unused CONFIG_DRIVER_SMC9,CONFIG_DRIVER_LAN91C96, if required implement smc_set_mac_addr() in board init. Signed-off-by: Ashok Kumar Reddy --- Changes from v1: - Fixed typo arch/arm/lib/board.c | 17 - 1 file changed, 17 deletions(-) diff --git a/arch/arm/

Re: [U-Boot] Problem with first use of patman [FIXED]

2012-10-15 Thread Simon Glass
Hi Albert, On Sun, Oct 14, 2012 at 10:45 PM, Albert ARIBAUD wrote: > Hi Simon, > > On Sun, 14 Oct 2012 16:53:03 -0700, Simon Glass > wrote: > >> Hi Albert, >> >> On Sun, Oct 14, 2012 at 11:52 AM, Albert ARIBAUD >> wrote: >> > Hello Simon and the list, >> > >> > I'm trying to start using patman,

Re: [U-Boot] [PATCH] patman: force git log commands to not use color

2012-10-15 Thread Simon Glass
Hi Albert, On Sun, Oct 14, 2012 at 10:47 PM, Albert ARIBAUD wrote: > Colored logs confuse patman when analyzing logs. > Add --no-color option in git log commands in case > the default config has color. > > Signed-off-by: Albert ARIBAUD > --- > tools/patman/gitutil.py |2 +- > tools/patm

[U-Boot] [PATCH 2/3] configs: mx51evk: Remove CONFIG_HAS_ETH1

2012-10-15 Thread Fabio Estevam
mx51evk has only one Ethernet port, so remove CONFIG_HAS_ETH1 option. Signed-off-by: Fabio Estevam --- include/configs/mx51evk.h |1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index 34b0783..d3edcba 100644 --- a/include/configs/mx51evk

[U-Boot] [PATCH 1/3] configs: mx53loco: Remove CONFIG_HAS_ETH1

2012-10-15 Thread Fabio Estevam
mx53loco has only one Ethernet port, so remove CONFIG_HAS_ETH1 option. Signed-off-by: Fabio Estevam --- include/configs/mx53loco.h |1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 2ecfbd6..0658dd3 100644 --- a/include/configs/mx5

[U-Boot] [PATCH 3/3] configs: mx53evk: Remove CONFIG_HAS_ETH1

2012-10-15 Thread Fabio Estevam
mx53evk has only one Ethernet port, so remove CONFIG_HAS_ETH1 option. Signed-off-by: Fabio Estevam --- include/configs/mx53evk.h |1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h index 832050e..8fc415e 100644 --- a/include/configs/mx53evk

[U-Boot] [PATCH v6] h2200: Add support for iPAQ h2200 palmtop

2012-10-15 Thread Lukasz Dalek
Add basic support for HP iPAQ h2200 palmtop. h2200 palmtop was targeted to general consumers. It has 64 MB of RAM, 32 MB flash. No intergrated Wi-Fi nor Ethernet. Based on Intel PXA255 processor. It was shipped with Windows CE 4.2 operating system. Signed-off-by: Lukasz Dalek --- Changes for v6:

Re: [U-Boot] U-Boot git usage model

2012-10-15 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 10/13/12 15:25, Wolfgang Denk wrote: > Dear Tom, > > In message <5079d95e.4070...@ti.com> you wrote: >> >> While also IANAL (and I try and stay out of these discussions), >> paging around in the kernel log it sure seems like Linus and >> akpm bot

[U-Boot] Fwd: u-boot fails at Start.S in P2020

2012-10-15 Thread vidya Krishnamoorthy
Hi , I am using a custom board(VPX Based P2020 board) and try to port latest uboot in it . The board is similar to xpedite550x board and the technical specification is shown below ->Processor Freescale QorIQ P2020 processor Dual PowerPC e500v2 cores at up to 1.2 GHz 512 kB of shared

Re: [U-Boot] [PATCH 5/7] disk: Allow alternate EFI partition signature

2012-10-15 Thread Stefan Reinauer
On Mon, Oct 15, 2012 at 8:19 AM, Stephen Warren wrote: > On 10/12/2012 06:26 PM, Simon Glass wrote: > > From: Stefan Reinauer > > > > ChromeOS uses a GPT partition table to partition the disk. > > However, Windows will refuse to install on a GPT partitioned > > disk if there is no EFI available (

Re: [U-Boot] [PATCH] README : Rename CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111, CONFIG_DRIVER_LAN91C96 to CONFIG_LAN91C96

2012-10-15 Thread Tom Rini
On Mon, Oct 15, 2012 at 09:50:47PM +0530, Ashok Kumar Reddy wrote: > Rename CONFIG_DRIVER_SMC9 to CONFIG_SMC9, > CONFIG_DRIVER_LAN91C96 to CONFIG_LAN91C96 > > Signed-off-by: Ashok Kumar Reddy This is fine, they were missed in the conversion of the variables that happened in 2009. Revie

Re: [U-Boot] [PATCH v1] ARM : Remove unused CONFIG_DRIVER_SMC91111, CONFIG_DRIVER_LAN91C96

2012-10-15 Thread Tom Rini
On Mon, Oct 15, 2012 at 10:30:14PM +0530, Ashok Kumar Reddy wrote: > Remove unused CONFIG_DRIVER_SMC9,CONFIG_DRIVER_LAN91C96, > if required implement smc_set_mac_addr() in board init. > > Signed-off-by: Ashok Kumar Reddy > --- > Changes from v1: > - Fixed typo Note that you should cha

Re: [U-Boot] [PATCH V3 2/4] FAT: make use of disk_partition_t.part

2012-10-15 Thread Pavel Herrmann
On Monday 15 of October 2012 10:40:25 Stephen Warren wrote: > On 10/13/2012 01:38 PM, Pavel Herrmann wrote: > > Hi > > > > On Wednesday 10 October 2012 12:14:00 Stephen Warren wrote: > >> From: Stephen Warren > >> > >> This removes the standalone cur_part_nr variable, opening the way to > >> rep

Re: [U-Boot] Add support for eco5-pk ARM board

2012-10-15 Thread Tom Rini
On Mon, Jul 16, 2012 at 09:31:36AM -, Raphael Assenat wrote: > This patch adds support for the 8D Technologies ECO5-PK board which is > based on the TI AM3505 ARM SOC. > > Signed-off-by: Raphael Assenat Sorry for the late reply, please add a MAINTAINERS entry. -- Tom signature.asc Descr

Re: [U-Boot] [PATCH V6] [RESEND] ARM: prevent misaligned array inits

2012-10-15 Thread Tom Rini
On Tue, Oct 09, 2012 at 09:28:15PM +0200, Albert ARIBAUD wrote: > Under option -munaligned-access, gcc can perform local char > or 16-bit array initializations using misaligned native > accesses which will throw a data abort exception. Fix files > where these array initializations were unneeded, an

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Wolfgang Denk
Dear Tom, In message <20121015153045.GA25082@bill-the-cat> you wrote: > > U-Boot v2012.10 has been released and uploaded to git. I expect to see > it on the ftp server soon. Done. > I don't have Wolfgang's stats tools, so I hope he is able to reply to > this message with that kind of informati

Re: [U-Boot] U-Boot git usage model

2012-10-15 Thread Wolfgang Denk
Dear Stephen Warren, In message <507c3aa4.6050...@wwwdotorg.org> you wrote: > > Irrespective of the documentation (which I obviously read the way I > describe anyway...), the kernel practice is that everyone who writes or > commits a patch adds their S-o-b line, and everyone who simply merges a I

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Wolfgang Denk
Dear Stefano Babic, In message <507c3b70.4060...@denx.de> you wrote: > > Hopefully I do nid run Jonathan Corbet's gitdm in a wrong way (git log > -p -M v2012.07..v2012.10 | gitdm -u -s -a -o /tmp/results -h > /tmp/results.html) > > Processed 925 csets from 135 developers > 14 employers found > A

Re: [U-Boot] U-Boot git usage model

2012-10-15 Thread Wolfgang Denk
Dear Tom Rini, In message <507c4e37.8000...@ti.com> you wrote: > > I will not claim the kernel practice to be 100% consistent, but yes. > git am --signoff, git pull/merge and no -s in merge commits seems to > be the practice. Perhaps we should stop saying we follow the kernel > process, link to i

Re: [U-Boot] USB Host driver for ISP1362?

2012-10-15 Thread Wolfgang Denk
Dear Steve Strobel, In message you wrote: > I am working on a embedded board that uses a BF537 (Blackfin) and > ISP1362 USB controller. I want to access a USB flash drive from > U-Boot. But I haven't been able to find the drivers for the ISP1362. > I have found two other U-Boot target platform

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Joe Hershberger
Hi Wolfgang, On Mon, Oct 15, 2012 at 1:57 PM, Wolfgang Denk wrote: > Dear Stefano Babic, > > In message <507c3b70.4060...@denx.de> you wrote: >> >> Hopefully I do nid run Jonathan Corbet's gitdm in a wrong way (git log >> -p -M v2012.07..v2012.10 | gitdm -u -s -a -o /tmp/results -h >> /tmp/result

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Otavio Salvador
On Mon, Oct 15, 2012 at 4:18 PM, Joe Hershberger wrote: > Hi Wolfgang, > Can you also add National Instruments (ni.com) to your list of employers? Please add O.S. Systems (ossystems.com.br) too. -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Benoît Thébaudeau
Dear Wolfgang Denk, On Monday, October 15, 2012 9:28:13 PM, Otavio Salvador wrote: > On Mon, Oct 15, 2012 at 4:18 PM, Joe Hershberger > wrote: > > Hi Wolfgang, > > Can you also add National Instruments (ni.com) to your list of > > employers? > > Please add O.S. Systems (ossystems.com.br) too. P

[U-Boot] [PATCH v2] patman: force git log commands to not use color

2012-10-15 Thread Albert ARIBAUD
Colored logs confuse patman when analyzing logs. Add --no-color option in git log commands in case the default config has color. Signed-off-by: Albert ARIBAUD --- Changes in v2: - fixed line longer than 80 characters tools/patman/gitutil.py |2 +- tools/patman/patchstream.py |3 ++-

Re: [U-Boot] [PATCH] patman: force git log commands to not use color

2012-10-15 Thread Albert ARIBAUD
Hi Simon, On Mon, 15 Oct 2012 10:20:59 -0700, Simon Glass wrote: > Hi Albert, > > On Sun, Oct 14, 2012 at 10:47 PM, Albert ARIBAUD > wrote: > > Colored logs confuse patman when analyzing logs. > > Add --no-color option in git log commands in case > > the default config has color. > > > > Signe

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Albert ARIBAUD
Hi all, On Mon, 15 Oct 2012 08:30:45 -0700, Tom Rini wrote: > Hey all, > > U-Boot v2012.10 has been released and uploaded to git. I expect to see > it on the ftp server soon. > > The merge window is now open until November 3rd and the next release, > v2013.01 is scheduled for release on Janua

Re: [U-Boot] [PATCH v2] patman: force git log commands to not use color

2012-10-15 Thread Simon Glass
On Mon, Oct 15, 2012 at 12:55 PM, Albert ARIBAUD wrote: > Colored logs confuse patman when analyzing logs. > Add --no-color option in git log commands in case > the default config has color. > > Signed-off-by: Albert ARIBAUD Acked-by: Simon Glass Thanks for the fix. > --- > Changes in v2: > -

Re: [U-Boot] [PATCH v2] tegra: nand: make ONFI detection work

2012-10-15 Thread Scott Wood
On 10/14/2012 10:32:52 AM, Lucas Stach wrote: Scott, can I have your Acked-by for this, so Tom can take it through the Tegra tree? Thanks, Lucas Am Sonntag, den 07.10.2012, 23:29 +0200 schrieb Lucas Stach: > Add the missing bits to the Tegra NAND driver to make ONFI detection work > proper

Re: [U-Boot] [PATCH 1/2] mmc: pxa: Flip over the remaining boards to pxa_mmc_generic

2012-10-15 Thread Andy Fleming
On Sun, Sep 30, 2012 at 3:09 PM, Marek Vasut wrote: > Some of the boards still used the old PXA_MMC driver instead of the > new generic one. Use the new one instead so the old can be removed > and the generic MMC framework can be properly used. > > Signed-off-by: Marek Vasut > Cc: Andy Fleming >

Re: [U-Boot] [PATCH 1/2] mmc: pxa: Flip over the remaining boards to pxa_mmc_generic

2012-10-15 Thread Marek Vasut
Dear Andy Fleming, > On Sun, Sep 30, 2012 at 3:09 PM, Marek Vasut wrote: > > Some of the boards still used the old PXA_MMC driver instead of the > > new generic one. Use the new one instead so the old can be removed > > and the generic MMC framework can be properly used. > > > > Signed-off-by: M

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Wolfgang Denk
Dear Joe Hershberger, In message you wrote: > > > Processed 925 csets from 135 developers > > 22 employers found > > A total of 88011 lines added, 36373 removed (delta 51638) > > Can you also add National Instruments (ni.com) to your list of employers? Sure I can. This makes it: Pro

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Wolfgang Denk
Dear Otavio Salvador, In message you wrote: > > > Can you also add National Instruments (ni.com) to your list of employers? > > Please add O.S. Systems (ossystems.com.br) too. Done: 24 employers found Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Wolfgang Denk
Dear Benoît Thébaudeau, In message <950821917.6855188.1350329929641.javamail.r...@advansee.com> you wrote: > > > > Can you also add National Instruments (ni.com) to your list of > > > employers? > > > > Please add O.S. Systems (ossystems.com.br) too. > > Please add ADVANSEE (advansee.com) too.

Re: [U-Boot] U-Boot git usage model

2012-10-15 Thread Stephen Warren
On 10/15/2012 12:55 PM, Wolfgang Denk wrote: > Dear Stephen Warren, > > In message <507c3aa4.6050...@wwwdotorg.org> you wrote: >> >> Irrespective of the documentation (which I obviously read the way I >> describe anyway...), the kernel practice is that everyone who writes or >> commits a patch add

[U-Boot] [PATCH] arm: arm925t: remove SX1 board

2012-10-15 Thread Albert ARIBAUD
SX1 does not build properly by itself, is not built as part of MAKEALL arm or MAKEALL -a arm, and is only present in Makefile, not boards.cfg. As it also has no entry in MAINTAINERS, it is orphan and non-functional. Remove it. Signed-off-by: Albert ARIBAUD --- Makefile | 14 --

Re: [U-Boot] [PATCH] arm: arm925t: remove SX1 board

2012-10-15 Thread Anatolij Gustschin
Hi Albert, On Mon, 15 Oct 2012 23:53:03 +0200 Albert ARIBAUD wrote: > SX1 does not build properly by itself, is not built > as part of MAKEALL arm or MAKEALL -a arm, and is only > present in Makefile, not boards.cfg. As it also has no > entry in MAINTAINERS, it is orphan and non-functional. > Re

Re: [U-Boot] [PATCH] arm: arm925t: remove SX1 board

2012-10-15 Thread Albert ARIBAUD
Hi Anatolij, On Tue, 16 Oct 2012 00:00:12 +0200, Anatolij Gustschin wrote: > Hi Albert, > > On Mon, 15 Oct 2012 23:53:03 +0200 > Albert ARIBAUD wrote: > > > SX1 does not build properly by itself, is not built > > as part of MAKEALL arm or MAKEALL -a arm, and is only > > present in Makefile, n

[U-Boot] [STATUS] next moved into master

2012-10-15 Thread Tom Rini
Subject says it all. -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2012-10-15 Thread Tom Rini
On Thu, Oct 11, 2012 at 09:34:47PM +0200, Anatolij Gustschin wrote: > Hi Tom, > > The following changes since commit 221953d41dea8dce027b9ce6beee700d97ac2c83: > > Prepare v2012.10-rc2 (2012-10-01 09:41:10 -0700) > > are available in the git repository at: > git://git.denx.de/u-boot-staging.

Re: [U-Boot] tools/env: Fix build failure from missing header include

2012-10-15 Thread Tom Rini
On Fri, Oct 12, 2012 at 10:23:37AM -, Joe Hershberger wrote: > This was introduced in: > 8679d0ffdcc0beafea8e6942c0c67cf859afa18e - > COMMON: Use __stringify() instead of MK_STR() > > The header is now needed since common.h is not included in this tool. > > Signed-off-by: Joe Hershberg

Re: [U-Boot] config.mk:Update DBGFLAGS with dwarf information

2012-10-15 Thread Tom Rini
On Tue, Feb 14, 2012 at 10:55:31PM -, Prabhakar Kushwaha wrote: > Built u-boot elf file does not contain any dwarf informations by default. This > information is required for debugging. > > Add dwarf ver 2 flag in DBGFLAGS. > > Signed-off-by: Radu Lazarescu > Signed-off-by: Prabhakar Kushwa

Re: [U-Boot] [PATCH v2] tegra: nand: make ONFI detection work

2012-10-15 Thread Tom Warren
Lucas/Scott, > -Original Message- > From: Scott Wood [mailto:scottw...@freescale.com] > Sent: Monday, October 15, 2012 1:06 PM > To: Lucas Stach > Cc: u-boot@lists.denx.de; Tom Warren > Subject: Re: [U-Boot] [PATCH v2] tegra: nand: make ONFI detection work > > On 10/14/2012 10:32:52 AM, L

[U-Boot] [PATCH v2 1/5] mx25pdk: Include CONFIG_MX25

2012-10-15 Thread Fabio Estevam
From: Fabio Estevam It is necessary to include CONFIG_MX25 as several i.mx drivers handle the SoC differences based on the this config option. Signed-off-by: Fabio Estevam --- Changes since v1: - No changes include/configs/mx25pdk.h |1 + 1 file changed, 1 insertion(+) diff --git a/includ

[U-Boot] [PATCH v2 2/5] mx25pdk: Add esdhc support

2012-10-15 Thread Fabio Estevam
From: Fabio Estevam mx25pdk has a SD/MMC slot connected to esdhc1. Add support for it and allow the environment variables to be saved into SD/MMC. Signed-off-by: Fabio Estevam --- Changes since v2: - Use "esdhc_cfg[0].sdhc_clk" board/freescale/mx25pdk/mx25pdk.c | 53 +++

[U-Boot] [PATCH v2 4/5] pmic: Add support for mc34704

2012-10-15 Thread Fabio Estevam
From: Fabio Estevam Add the register layout for the MC34704 PMIC from Freescale. Signed-off-by: Fabio Estevam --- Changes since v2: - No changes. Newly introduced in this series include/mc34704.h | 49 + 1 file changed, 49 insertions(+) creat

[U-Boot] [PATCH v2 3/5] pmic_fsl: Introduce CONFIG_SYS_FSL_PMIC_I2C_LENGTH

2012-10-15 Thread Fabio Estevam
From: Fabio Estevam Introduce CONFIG_SYS_FSL_PMIC_I2C_LENGTH to configure the number of bytes that are used to communicate with the PMIC via I2C. Instead of hardcoding the value, pass the number via a config option. This will be useful for adding support for PMIC MC34704 from Freescale, which

[U-Boot] [PATCH v2 5/5] mx25pdk: Add Ethernet support

2012-10-15 Thread Fabio Estevam
From: Fabio Estevam mx25pdk has a Ethernet port that is connected to its internal FEC controller. In order to power up the Ethernet PHY (DP83640) it is necessary to communicate with the MC34704 PMIC via I2C. Make the FEC ethernet port functional. Signed-off-by: Fabio Estevam --- Changes since

Re: [U-Boot] [PATCH] ZFS: fix some warnings, cleanup

2012-10-15 Thread Tom Rini
On Wed, Sep 19, 2012 at 05:32:36PM +0200, Pavel Herrmann wrote: > Fix warnings about type mismatch in cmd_zfs. > Dont use a global block_dev_desc, instead use a local one in each cmd. > > Signed-off-by: Pavel Herrmann [snip] > -static int do_zfs_load(cmd_tbl_t *cmdtp, int flag, int argc, char *

Re: [U-Boot] [PATCH v4] tools/env: add posibility to inject configuration

2012-10-15 Thread Joe Hershberger
Hi Andreas, On Tue, Jan 24, 2012 at 3:10 AM, Andreas Bießmann wrote: > From: Andreas Bießmann > > If one want to use fw_printenv/fw_setenv in special variants (eg compiled in > MTD parameters without configuration file) he need to change the sources. > This patch add the posibillity to change th

Re: [U-Boot] [PATCH v2] Add support for MMC to fw_printenv/setenv

2012-10-15 Thread Joe Hershberger
Hi Christian, On Thu, Jan 5, 2012 at 6:30 PM, Christian Daudt wrote: > Changes from previous: > - Changed // to /* */ > - Ran through checkpatch.pl, cleaned up a number of line-too-big and > extra space in the code that was shifted due to being in the new 'if'. Your patch appears to be corrupt.

[U-Boot] Patchwork status

2012-10-15 Thread Tom Rini
Hey all, I spent much of today reading patchwork patches and updating status of things that seemed obvious to me. I've also taken a first stab at assigning patches to folks. If you've registered with patchwork and are a custodian you probably have a TODO list now. If you can please take a look

Re: [U-Boot] [PATCH v2] Add support for MMC to fw_printenv/setenv

2012-10-15 Thread Joe Hershberger
Hi Christian, On Thu, Jan 5, 2012 at 6:30 PM, Christian Daudt wrote: > Changes from previous: > - Changed // to /* */ > - Ran through checkpatch.pl, cleaned up a number of line-too-big and > extra space in the code that was shifted due to being in the new 'if'. > > Thanks, > csd > > > Subjec

[U-Boot] [PATCH 1/2] tools/env: Fix variable delete operation

2012-10-15 Thread Joe Hershberger
Fix crash introduced by a073d63a36524453a817ab029fad5b188f46127e when attempting to delete a variable. Signed-off-by: Joe Hershberger --- tools/env/fw_env.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index 520ce3f..906ccbf 100

[U-Boot] [PATCH 2/2] tools/env: Improve debug prints

2012-10-15 Thread Joe Hershberger
Provide more information when using redundant environments Consistently print debug info to stderr Signed-off-by: Joe Hershberger --- tools/env/fw_env.c | 27 ++- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/tools/env/fw_env.c b/tools/env/fw_env.c index

Re: [U-Boot] Pull request: u-boot-arm/master to u-boot/master

2012-10-15 Thread Minkyu Kang
On 15 October 2012 16:04, Albert ARIBAUD wrote: > On Mon, 15 Oct 2012 07:58:38 +0200, Albert ARIBAUD > wrote: > >> Hi Minkyu, >> >> On Mon, 15 Oct 2012 10:10:33 +0900, Minkyu Kang >> wrote: >> >> > Hi Albert, >> > >> > The following changes since commit >> > 28e5ac2d974547bde0c72aa0c1d66fd22c6e

Re: [U-Boot] [PATCH - resend due to bounce] libfdt: Add fdt functionality for more intuitive

2012-10-15 Thread Jerry Van Baren
Hi Peter, On 05/07/2012 09:52 AM, Peter Feuerer wrote: > libfdt: Add fdt functionality for more intuitive fdt handling > > New functions: > fdt_read - retrieve the value of a property by full path > fdt_write - create or change a property with full path and create subnodes if > needed > fdt_crea

Re: [U-Boot] [STATUS] v2012.10 released, Merge Window is OPEN

2012-10-15 Thread Simon Glass
Hi Wolfgang, On Mon, Oct 15, 2012 at 2:08 PM, Wolfgang Denk wrote: > Dear Benoît Thébaudeau, > > In message <950821917.6855188.1350329929641.javamail.r...@advansee.com> you > wrote: >> >> > > Can you also add National Instruments (ni.com) to your list of >> > > employers? >> > >> > Please add O.

Re: [U-Boot] [PATCH v3 00/10] i2c for R-mobile

2012-10-15 Thread Heiko Schocher
Hello Tetsuyuki Kobayashi, On 14.09.2012 07:07, Tetsuyuki Kobayashi wrote: Iwamatu-san, thank you for review. This is v3 patch for sh_i2c. Changes for v3: - call i2c_finish before returning i2c_probe, i2c_read, i2c_write even if error occured. Without this, it fails to boot Linux kernel after

Re: [U-Boot] [PATCH] common/i2c: Add i2c write command

2012-10-15 Thread Heiko Schocher
Hello York Sun, On 16.09.2012 20:02, York Sun wrote: Add i2c write command to write data from memory to i2c devices. Signed-off-by: York Sun --- common/cmd_i2c.c | 50 ++ 1 file changed, 50 insertions(+) Applied to u-boot-i2c master Thanks

Re: [U-Boot] [PATCH] i2c_probe: update for use in scripting

2012-10-15 Thread Heiko Schocher
Hello Eric Nelson, On 23.09.2012 22:12, Eric Nelson wrote: Allow the use of an I2C address to test and return success if one or more devices is found. This allows device presence to alter the flow of a script. e.g. if i2c probe 0x04 ; then echo found Hannstar touch ; fi Signed-

[U-Boot] [PATCH 2/2] ARM: rpi_b: use bcm2835 mbox driver to get memory size

2012-10-15 Thread Stephen Warren
The firmware running on the bcm2835 SoC's VideoCore CPU determines how much of the system RAM is available for use by the ARM CPU. Previously, U-Boot assumed that only 128MB was available, since this was the smallest value configured by any public firmware. However, we can now query the actual valu

[U-Boot] [PATCH 1/2] ARM: bcm2835: add mailbox driver

2012-10-15 Thread Stephen Warren
The BCM2835 SoC contains (at least) two CPUs; the VideoCore (a/k/a "GPU") and the ARM CPU. The ARM CPU is often thought of as the main CPU. However, the VideoCore actually controls the initial SoC boot, and hides much of the hardware behind a protocol. This protocol is transported using the SoC's m

[U-Boot] [PATCH v3 2/2] EXYNOS: mmc: support DesignWare Controller for Samsung-SoC

2012-10-15 Thread Jaehoon Chung
Support DesignWare MMC Controller for Samsung Specific. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Signed-off-by: Rajeshawari Shinde --- Changelog V3: - Removed the unnecessary code. Changelog V2: - Nothing --- arch/arm/include/asm/arch-exynos/dwmmc.h | 36

[U-Boot] [PATCH v3 1/2] mmc: dw-mmc: support DesignWare MMC Controller

2012-10-15 Thread Jaehoon Chung
Support the DesginWare MMC Controller. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Signed-off-by: Rajeshawari Shinde --- Changelog V3: - Modified the code with Andy's comments. - Use the Label for descriptor - Not include the board specific patch --- drive

[U-Boot] [PULL] u-boot-pxa/master

2012-10-15 Thread Marek Vasut
The following changes since commit bd23b22badadcdc414a900828253961fc5ec6c39: Merge branch 'ag...@denx.de-next' of git://git.denx.de/u-boot-staging (2012-10-15 13:37:22 -0700) are available in the git repository at: git://git.denx.de/u-boot-pxa.git master for you to fetch changes up to 34c

Re: [U-Boot] [PATCH v4 3/3] musb_udc : Fix compile warning.

2012-10-15 Thread Marek Vasut
Dear Harman Sohanpal, > Fix the compile warning : > implicit declaration of musb_platform_init > when CONFIG_MUSB_UDC is defined. > The extern musb_platform_init was declared in musb_hcd.h > but no such extern function was declared for musb_udc. > So a common function has been declared in musb_cor

Re: [U-Boot] [PATCH] powerpc/usb: fix bug of CPU halt when missing USB PHY clock

2012-10-15 Thread Marek Vasut
Dear Liu Shengzhou-B36685, > Hello guys, > > I didn't get an explicit list from silicon team to point out which > platforms contain this PHY_CLK_VALID bit or not, Someone said all > platforms have this bit, it's not true, at least we found P4080 and P1022 > no this bit. I'll trace it later. > >

Re: [U-Boot] [PATCH V2] USB:gadget:designware USB OTG implementation

2012-10-15 Thread Marek Vasut
Dear Amit Virdi, [...] Did we get any further with this patch please? Best regards, Marek Vasut ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 4/9] ppc4xx: Fix strict-aliasing warnings in usb_ohci.c

2012-10-15 Thread Marek Vasut
Dear Simon Glass, > This fixes warnings seen with my gcc 4.6. > > usb_ohci.c: In function 'submit_control_msg': > usb_ohci.c:1046: warning: dereferencing pointer 'data_buf.70' does break > strict-aliasing rules > usb_ohci.c:1046: note: initialized from here > usb_ohci.c:1048: warning: dereferenci

Re: [U-Boot] [PATCH] Prevent malloc with size 0

2012-10-15 Thread Marek Vasut
Dear Graeme Russ, > On 04/03/2012 09:35 AM, Graeme Russ wrote: > > Hi Jocke > > > > And I really need to check, but I have a sneaking suspicion that as the > > code currently stands in U-Boot/x86 dereferencing a NULL pointer won't > > cause an exception. In x86, U-Boot configures all protected mo

Re: [U-Boot] [PATCH V2] USB:gadget:designware USB OTG implementation

2012-10-15 Thread Marek Vasut
Dear Amit Virdi, > Dear Marek, > > On 10/16/2012 11:54 AM, Marek Vasut wrote: > > Dear Amit Virdi, > > > > [...] > > > > Did we get any further with this patch please? > > Vipin shall send V3 on this soon. Thanks! Best regards, Marek Vasut ___ U-Bo