Re: [U-Boot] net, tsec: add micrel ksz804 phy

2010-07-12 Thread Ben Warren
Hi Heiko, On 7/5/2010 3:23 AM, Heiko Schocher wrote: > net, tsec: add micrel ksz804 phy > > Signed-off-by: Heiko Schocher > --- > drivers/net/tsec.c | 22 ++ > 1 files changed, 22 insertions(+), 0 deletions(-) Applied to net repo, after cleaning up patch title. thanks,

Re: [U-Boot] [PATCH 14/35] Blackfin: bfin_mac: convert to portmux framework

2010-07-12 Thread Ben Warren
Hi Mike, On 7/11/2010 11:52 PM, Ben Warren wrote: > Hi Mike, > > On 7/5/2010 2:30 AM, Mike Frysinger wrote: >> Rather than bang MMRs directly, use the new portmux framework to handle >> the details. While we're doing this, let boards declare the exact list >> of pins they need in case there is

Re: [U-Boot] [PATCH V2] kirkwood_egiga: bugfix: add DMA sequence points

2010-07-12 Thread Ben Warren
Hi Albert, On 7/10/2010 6:41 AM, Albert Aribaud wrote: > Insert isb() sequence points to ensure DMA descriptors > are filled in and set up before actual DMA occurs. > > Signed-off-by: Albert Aribaud > --- > PATCHSET HISTORY > > V1: initial submit > V2: fixed badly placed isb() > > drivers/net/

Re: [U-Boot] [PATCH v5 06/18] SPEAr : Network driver support added

2010-07-12 Thread Ben Warren
Hi Vipin, On 6/28/2010 10:23 PM, Vipin KUMAR wrote: > From: Vipin KUMAR > > Designware network driver support added. > This is a Synopsys ethernet controller > > Signed-off-by: Vipin Kumar > --- Applied to net repo. thanks, Ben ___ U-Boot mailing list

Re: [U-Boot] [PATCH] kirkwood_egiga: updates: fix DRAM mapping and typo

2010-07-12 Thread Ben Warren
Hi Albert, On 7/5/2010 11:15 AM, Albert Aribaud wrote: > DRAM window mapping uses kirkwood-provided functions instead > of global gd as do other drivers--fix this. > > Also, fix a typo in a comment > > Signed-off-by: Albert Aribaud > --- > drivers/net/kirkwood_egiga.c | 10 ++ > 1 f

[U-Boot] Pull request - net

2010-07-12 Thread Ben Warren
Wolfgang, The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934: Wolfgang Denk (1): Make sure that argv[] argument pointers are not modified. are available in the git repository at: git://git.denx.de/u-boot-net.git master Albert Aribaud (2): kirkwoo

Re: [U-Boot] [PATCH V3 3/4] orion5x: add support for cmd_ide.c

2010-07-12 Thread Albert ARIBAUD
Le 12/07/2010 08:46, Prafulla Wadaskar a écrit : > > >> -Original Message- >> From: u-boot-boun...@lists.denx.de >> [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud >> Sent: Friday, July 09, 2010 12:11 AM >> To: u-boot@lists.denx.de >> Subject: [U-Boot] [PATCH V3 3/4] orion

Re: [U-Boot] [PATCH V3 4/4] edminiv2: add cmd_ide support

2010-07-12 Thread Albert ARIBAUD
Le 12/07/2010 08:46, Prafulla Wadaskar a écrit : >> #define ORION5X_GPIO_OUT_ENABLE0x03fc >> -#define ORION5X_GPIO_OUT_VALUE 0x03fc > > Why did you removed this? This is unused code, actually, which I fixed on-the-fly but has no relationship with IDE support. I will postpone

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Albert ARIBAUD
Le 12/07/2010 08:53, Prafulla Wadaskar a écrit : - struct kwgbe_device *dkwgbe = to_dkwgbe(dev); - struct kwgbe_registers *regs = dkwgbe->regs; + struct mv_egiga_device *dmvegiga = to_mv_egiga(dev); + struct mv_egiga_registers *regs = dmvegiga->regs; >>> I suggest to keep na

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Albert ARIBAUD
Le 12/07/2010 07:49, Prafulla Wadaskar a écrit : > > >> -Original Message- >> From: u-boot-boun...@lists.denx.de >> [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud >> Sent: Sunday, July 11, 2010 1:32 PM >> To: u-boot@lists.denx.de >> Subject: [U-Boot] [PATCH V3 2/5] mv_egi

[U-Boot] [PATCH] kirkwood_egiga: CONFIG_SKIP_LOCAL_MAC_RANDOMIZATION

2010-07-12 Thread Albert Aribaud
This configuration option allows SoCs without random generation capability to fill in local MACs with a fixed rather than random value Signed-off-by: Albert Aribaud --- drivers/net/kirkwood_egiga.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/drivers/net/kir

[U-Boot] Support for SD/MMC for davinci boards ?

2010-07-12 Thread Rupesh Gujare
Hi Sandeep, Any plan to merge SD/MMC support patches [1] for davinci boards? I dont see these patches in u-boot-ti. git tree [2], Please correct me if I am wrong or I have missed any discussions on these patches. [1] http://lists.denx.de/pipermail/u-boot/2010-May/071434.html [2] git://git.de

Re: [U-Boot] Support for SD/MMC for davinci boards ?

2010-07-12 Thread Paulraj, Sandeep
Hi Sandeep, Any plan to merge SD/MMC support patches [1] for davinci boards? I dont see these patches in u-boot-ti. git tree [2], Please correct me if I am wrong or I have missed any discussions on these patches. [1] http://lists.denx.de/pipermail/u-boot/2010-May/071434.html [2] git://git

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Ben Warren
Hi Albert, On Mon, Jul 12, 2010 at 1:53 AM, Albert ARIBAUD wrote: > Le 12/07/2010 08:53, Prafulla Wadaskar a écrit : > >> - struct kwgbe_device *dkwgbe = to_dkwgbe(dev); > > - struct kwgbe_registers *regs = dkwgbe->regs; > + struct mv_egiga_device *dmvegiga = to_mv_e

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Ben Warren
Hi Albert, On Mon, Jul 12, 2010 at 1:56 AM, Albert ARIBAUD wrote: > Le 12/07/2010 07:49, Prafulla Wadaskar a écrit : > > > > > >> -Original Message- > >> From: u-boot-boun...@lists.denx.de > >> [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > >> Sent: Sunday, July 11, 2

Re: [U-Boot] Support for SD/MMC for davinci boards ?

2010-07-12 Thread Rupesh Gujare
On Mon, Jul 12, 2010 at 7:12 PM, Paulraj, Sandeep wrote: > > > > > Hi Sandeep, > > > > Any plan to merge SD/MMC support patches [1] for davinci boards? > > I dont see these patches in u-boot-ti. git tree [2], Please correct me if > I am wrong or I have missed any discussions on these patches

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Albert ARIBAUD
Le 12/07/2010 16:19, Ben Warren a écrit : > I suggest that: > > - I switch the file names from mv_egiga to "mvgbe" (to be consistent > with Prafulla's comment on mv_sata becoming mvsata), and > > - I replace mv_egiga/MV_EGIGA symbols with mvgbe/MVGBE. > > That will retain (as mu

Re: [U-Boot] [PATCH 5/5] PXA: PXA3xx NAND Driver

2010-07-12 Thread Scott Wood
On Sat, Jul 10, 2010 at 12:24:27AM +0200, Marek Vasut wrote: > Dne Pá 9. července 2010 22:04:00 Scott Wood napsal(a): > > On Tue, Jul 06, 2010 at 03:12:49AM +0200, Marek Vasut wrote: > > > From: Compulab uboot > > > > Hmm? > > Well I was unable to figure out who was the author, though the licens

Re: [U-Boot] [PATCH v2] nios2: remove EP1C20, EP1S10, EP1S40 boards

2010-07-12 Thread Scott McNutt
Applied to: git://git.denx.de/u-boot-nios.git next Thanks, --Scott Thomas Chou wrote: > The example configuration files of nios2-generic board can generated > binary to run on the EP1C20, EP1S10, and EP1S40 boards. So the three > boards can be removed. > > With nios2-generic approach, the f

Re: [U-Boot] [PATCH v4] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-07-12 Thread Ben Gardiner
Hi Scott, I was hoping that the env OOB patch [1] would be considered for inclusion into this merge window [2] but I saw that your pull request on friday [3] did not include the patch. There has been no reply by you to version 2-4 of the patch but I believe that I successfully made the modificatio

Re: [U-Boot] [PATCH v4] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-07-12 Thread Scott Wood
On Mon, 12 Jul 2010 12:17:23 -0400 Ben Gardiner wrote: > Hi Scott, > > I was hoping that the env OOB patch [1] would be considered for > inclusion into this merge window [2] but I saw that your pull request > on friday [3] did not include the patch. There has been no reply by > you to version 2-

[U-Boot] [Nios] Pull Request

2010-07-12 Thread Scott McNutt
Dear Wolfgang, The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934: Wolfgang Denk (1): Make sure that argv[] argument pointers are not modified. are available in the git repository at: git://git.denx.de/u-boot-nios.git next Thomas Chou (6): nios2: u

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Albert ARIBAUD
Le 12/07/2010 07:45, Prafulla Wadaskar a écrit : >> --- a/arch/arm/include/asm/arch-kirkwood/kirkwood.h >> +++ b/arch/arm/include/asm/arch-kirkwood/kirkwood.h >> +#if defined (CONFIG_MV_EGIGA) > > I think you don't need ifdef here > >> +#define MV_EGIGA0_BASE KW_EGIGA0_BASE >

Re: [U-Boot] [PATCH v3 0/4] mtdparts: add bad-block skipping

2010-07-12 Thread Ben Gardiner
Hi Wolfgang, I rebased the mtdparts bad block skipping patches and reposted a v3 series [1] in the hopes that it would be considered for inclusion into v2010.09 . I hope that I have addressed the concerns you raised in your reviews [2] [3]. I said this earlier to Scott Wood: I am very much a novi

[U-Boot] [PATCH V4 1/4] net: rename: kirkwood_egiga as mvgbe

2010-07-12 Thread Albert Aribaud
Rename kirkwood_egiga.* to mvgbe.* and adjust makefile and #include accordingly. Signed-off-by: Albert Aribaud --- drivers/net/Makefile |2 +- drivers/net/{kirkwood_egiga.c => mvgbe.c} |2 +- drivers/net/{kirkwood_egiga.h => mvgbe.h} |0 3 files changed, 2 insert

[U-Boot] [PATCH V4 0/4] Marvell GbE multiple SoC support

2010-07-12 Thread Albert Aribaud
NOTES 1) This patchset will only apply above a previously posted and Acked-by patch available on the mailing list archives e.g. at: ("kirkwood_egiga: updates: fix DRAM mapping and typo"). 2) This patchset will build for edminiv2 but re

[U-Boot] [PATCH V4 2/4] mvgbe: support SoCs other than kirkwood

2010-07-12 Thread Albert Aribaud
Rename all references to kirkwood in mvgbe symbols throughout the whole codebase. Signed-off-by: Albert Aribaud --- arch/arm/cpu/arm926ejs/kirkwood/cpu.c |4 +- arch/arm/include/asm/arch-kirkwood/kirkwood.h |3 + drivers/net/Makefile |2 +- drivers/ne

[U-Boot] [PATCH V4 3/4] mvgbe: add support for orion5x GbE controller

2010-07-12 Thread Albert Aribaud
Add definitions and initialization in orion5x for mvgbe. Add orion5x in mvgbe SoC includes. Signed-off-by: Albert Aribaud --- arch/arm/cpu/arm926ejs/orion5x/cpu.c |8 arch/arm/include/asm/arch-kirkwood/kirkwood.h |6 -- arch/arm/include/asm/arch-orion5x/orion5x.h

[U-Boot] [PATCH V4 4/4] edminiv2: add ethernet support

2010-07-12 Thread Albert Aribaud
Add edminiv2 board support for mv_egiga. Add edminiv2 config to enable mv_egiga. Signed-off-by: Albert Aribaud --- board/LaCie/edminiv2/edminiv2.c | 36 ++ board/LaCie/edminiv2/edminiv2.h | 41 +++ include/configs/edminiv2.h

[U-Boot] [PATCH] NAND: formatting cleanups from env.oob support

2010-07-12 Thread Scott Wood
Change if (ok) { bunch of stuff } else { error } to if (error) { get out } proceed with bunch of stuff Plus a few whitespace cleanups. Signed-off-by: Scott Wood --- Applied to u-boot-nand-flash common/cmd_nand.c | 54 +++-

[U-Boot] watchdog not working for PPC

2010-07-12 Thread Mark Maestas
To u-boot list: I have a Canyonlands reference board with the PPC 460Ex processor and I have been trying to enable watchdog support through u-boot. The problem I am seeing is that for some reason when I turn on WD the board will reset before it finishes loading RAM disk and TSR is showing a FI

Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs other than kirkwood

2010-07-12 Thread Prafulla Wadaskar
> -Original Message- > From: Ben Warren [mailto:biggerbadder...@gmail.com] > Sent: Monday, July 12, 2010 7:54 PM > To: Albert ARIBAUD > Cc: Prafulla Wadaskar; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH V3 2/5] mv_egiga: support SoCs > other than kirkwood > > Hi Albert, > >

Re: [U-Boot] [PATCH V4 0/4] Marvell GbE multiple SoC support

2010-07-12 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > Sent: Tuesday, July 13, 2010 1:54 AM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH V4 0/4] Marvell GbE multiple SoC support > > NOTES > > 1) This pat

[U-Boot] Hi All, is anybody involved into Renesas SH development?

2010-07-12 Thread Fabio Giovagnini
Good morning, if any of you is involved in such a develop, I'd like to have discussion if possible about u-boot onto sh architecture Thanks in advance Best regards -- Fabio Giovagnini Aurion s.r.l. P.I e C.F. 00885711200 skype: aurion.giovagnini Tel. +39.051.594.78.24 Cell. +39.335.83.50.919

[U-Boot] Pull request - net *updated*

2010-07-12 Thread Ben Warren
Wolfgang, The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934: Wolfgang Denk (1): Make sure that argv[] argument pointers are not modified. are available in the git repository at: git://git.denx.de/u-boot-net.git master Albert Aribaud (7): kirkwoo

Re: [U-Boot] [PATCH V4 0/4] Marvell GbE multiple SoC support

2010-07-12 Thread Ben Warren
Hi Albert, On 7/12/2010 1:24 PM, Albert Aribaud wrote: > NOTES > > 1) This patchset will only apply above a previously posted and > Acked-by patch available on the mailing list archives e.g. at: > > ("kirkwood_egiga: updates: fix DRAM