Re: [U-Boot] 83xx, uec: adjust enet_interface settings on the fly.

2010-01-08 Thread Heiko Schocher
Hello Liu, Liu Dave-R63238 wrote: >>> I don't remember why I added the eth_type==GIGA_ETH condition. >>> If it is possible, please refactor it as Kim. >> Hmm.. while looking at this code, a question comes in mind: >> Did this code (eth_type==GIGA_ETH) work correctly? > > Yes, It worked correctly.

Re: [U-Boot] 83xx, uec: adjust enet_interface settings on the fly.

2010-01-08 Thread Liu Dave-R63238
> > The code was assuming the initial speed is 1000Mbps, so the >> 1000 case did nothing. > > Hmm.. but what happend, if you connect a 100Mbps, and then > back to the 1000Mpbs? The ethernet port may be broken :) ___ U-Boot mailing list U-Boot@lists.de

Re: [U-Boot] [PATCH 0/2] omap3: Optimize detection of cpu revision

2010-01-08 Thread Premi, Sanjeev
> -Original Message- > From: Paulraj, Sandeep > Sent: Thursday, January 07, 2010 9:02 PM > To: Premi, Sanjeev; u-boot@lists.denx.de > Subject: RE: [PATCH 0/2] omap3: Optimize detection of cpu revision > > > > > > > -Original Message- > > > From: Premi, Sanjeev > > > Sent: Tuesda

[U-Boot] [PATCH] musb: Add host support for DM365 EVM

2010-01-08 Thread Prathap Srinivas
Add support for musb host on DM365 EVM. Signed-off-by: Prathap Srinivas --- drivers/usb/musb/davinci.c | 18 +++- drivers/usb/musb/davinci.h |1 + include/configs/davinci_dm365evm.h | 40 3 files changed, 58 insertions(+),

Re: [U-Boot] [RFC PATCH] fix compilation issue in arm cortex a8

2010-01-08 Thread Michael Trimarchi
Tom wrote: > Michael Trimarchi wrote: >> Hi, >> >> this patch fix the compilation issue. Step to reproduce: >> >> add CONFIG_YAFFS2 in overo defconfig and compile u-boot >> >> Regards >> Michael >> >> > > This is not an OMAP specific problem. > This problem will happen on all ARM platforms. > > It

[U-Boot] [PATCH] jffs2: fix hangs/crashs when not using CONFIG_JFFS2_PART_SIZE

2010-01-08 Thread Mike Frysinger
Commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042 caused the sector_size to be calculated incorrectly when the part size was not hardcoded. This is because the new code relied on part->size but tried to do the calculation before it was initialized properly, and it did not take into consideration the

Re: [U-Boot] [PATCH v2 0/9] Added support for SPEAr SoCs

2010-01-08 Thread Vipin KUMAR
Hello Tom, > > This patch set is a reworked patch which incorporates all review > feedbacks from > > earlier earlier mails > > > > This patch set contains the support for 4 SoCs > > SPEAr600 > > SPEAr300 > > SPEAr310 > > SPEAr320 > > > > SPEAr is an ARM based SoC which supports rich set of periphe

Re: [U-Boot] [PATCH v2 0/9] Added support for SPEAr SoCs

2010-01-08 Thread Vipin KUMAR
> On Thu, 2010-01-07 at 17:26 +0530, Vipin KUMAR wrote: > > This patch set is a reworked patch which incorporates all review > feedbacks from > > earlier earlier mails > > > > This patch set contains the support for 4 SoCs > > SPEAr600 > > SPEAr300 > > SPEAr310 > > SPEAr320 > > > > SPEAr is an ARM

[U-Boot] [PATCH v3 00/11] SPEAr : Adding support for SPEAr SoCs

2010-01-08 Thread Vipin KUMAR
The patch set contains the review feedbacks recieved on PATCH v2 The patch set has been recreated to make sure that the dependencies do not exist. i.e all subpatches depend only on preceeding subpatches Also removed build error which came with BUILD_DIR option Chekckpatch error removed Vipin (11

[U-Boot] [PATCH v3 01/11] SPEAr : Adding README.spear in doc

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- doc/README.spear | 53 + 1 files changed, 53 insertions(+), 0 deletions(-) create mode 100644 doc/README.spear diff --git a/doc/README.spear b/doc/README.spear new file mode 100644 index 000..db90a7b --- /dev/nu

[U-Boot] [PATCH v3 03/11] SPEAr : Adding basic support for SPEAr300

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- MAKEALL |1 + Makefile|1 + board/spear/spear300/Makefile | 51 +++ board/spear/spear300/config.mk | 28 + board/spear/spear300/spear300.c | 31 ++

[U-Boot] [PATCH v3 02/11] SPEAr : Adding basic support for SPEAr600

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- MAKEALL|1 + Makefile |3 + board/spear/common/Makefile| 54 +++ board/spear/common/spr_lowlevel_init.S | 197 board/spear/co

[U-Boot] [PATCH v3 04/11] SPEAr : Adding basic support for SPEAr310

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- MAKEALL |1 + Makefile|1 + board/spear/spear310/Makefile | 51 +++ board/spear/spear310/config.mk | 28 + board/spear/spear310/spear310.c | 32 ++

[U-Boot] [PATCH v3 05/11] SPEAr : Adding basic support for SPEAr320

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- MAKEALL |1 + Makefile|1 + board/spear/spear320/Makefile | 51 +++ board/spear/spear320/config.mk | 28 + board/spear/spear320/spear320.c | 32 ++

[U-Boot] [PATCH v3 09/11] SPEAr : Support for nand driver

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- board/spear/spear300/config.mk|7 ++ board/spear/spear300/spear300.c | 26 +++ board/spear/spear310/config.mk|7 ++ board/spear/spear310/spear310.c | 26 +++ board/spear/spear320/config.mk|7 ++ board/spear/spea

[U-Boot] [PATCH v3 07/11] SPEAr : Support for HW macid read/write from i2c memory

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- board/spear/common/spr_misc.c | 70 - 1 files changed, 69 insertions(+), 1 deletions(-) diff --git a/board/spear/common/spr_misc.c b/board/spear/common/spr_misc.c index 3fbeba7..c4e3a1a 100755 --- a/board/spear/common/spr_misc.c

[U-Boot] [PATCH v3 08/11] SPEAr : Support for serial memory interface driver and serial NOR flash

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- drivers/mtd/Makefile |1 + drivers/mtd/spr_smi.c| 530 ++ include/asm-arm/arch-spear/spr_smi.h | 117 include/configs/spear.h | 35 ++- 4 files changed, 681 insertions(+), 2 del

[U-Boot] [PATCH v3 11/11] SPEAr : Support for cfi driver and parallel NOR flash

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- board/spear/common/spr_misc.c| 60 + include/asm-arm/arch-spear/spr_emi.h | 54 ++ include/configs/spear.h | 82 ++--- 3 files changed, 188 insertions(+), 8 deletions(-) c

[U-Boot] [PATCH v3 06/11] SPEAr : i2c driver support addded

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- drivers/i2c/Makefile |1 + drivers/i2c/spr_i2c.c| 340 ++ include/asm-arm/arch-spear/spr_i2c.h | 146 +++ include/configs/spear.h | 11 + 4 files changed, 498 insertions(+),

[U-Boot] [PATCH v3 10/11] SPEAr : Support for usbd driver and usbtty support

2010-01-08 Thread Vipin KUMAR
Signed-off-by: Vipin --- board/spear/common/spr_misc.c |6 + board/spear/spear300/config.mk |4 + board/spear/spear310/config.mk |9 + board/spear/spear320/config.mk |9 + board/spear/spear600/config.mk |4 + drivers/serial/usbtty.h|2 + drivers/usb/gadget/Makefi

Re: [U-Boot] [PATCH v5] TI DaVinci: Driver for the davinci SPI controller

2010-01-08 Thread Tom
Sudhakar Rajashekhara wrote: > From: Sekhar Nori > > This adds a driver for the SPI controller found on davinci > based SoCs from Texas Instruments. > > Signed-off-by: Sekhar Nori > Signed-off-by: Sudhakar Rajashekhara > --- > From the previous version, following are the modifications: > 1. A

Re: [U-Boot] TI:OMAP: Following patches adds support for Beagle REV C4

2010-01-08 Thread Khasim Syed Mohammed
Sandeep, I have incorporated few review comments and corrected errors and warnings reported by checkpatch. I am hereby resubmitting the patch sequence along with new display driver for OMAP3. NOTE: 1,2,3 were reviewed only the dss driver will have to wait for review. Regards, Khasim On Tue, Ja

[U-Boot] TI:OMAP: [PATCH 1/4] OMAP3 Beagle Update revision detection

2010-01-08 Thread Khasim Syed Mohammed
>From 15fbe5ff9ee2fd2f8da4c16805d6c7ccf7244bae Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Fri, 8 Jan 2010 20:13:47 +0530 Subject: [PATCH] OMAP3 Beagle Update revision detection New BeagleBoard revision C4 uses a new ID. Update revision detection. Signed-off-by: Dirk Behme Signed-

[U-Boot] TI:OMAP: [PATCH 2/4] Enable I2C bus switching

2010-01-08 Thread Khasim Syed Mohammed
>From 9045377f255e8a59450a6957e63366b4963281ae Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Fri, 8 Jan 2010 20:20:41 +0530 Subject: [PATCH] Enable I2C bus switching OMAP3 supports Multiple I2C channels, this patch allows us to use i2c dev command to switch between busses. Signed-of

[U-Boot] TI:OMAP: [PATCH 3/4] Support 720Mhz configuration for OMAP35xx

2010-01-08 Thread Khasim Syed Mohammed
>From bba669562fa208d12f4c7cd8188446e8576cd6ee Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Fri, 8 Jan 2010 20:34:37 +0530 Subject: [PATCH] Support 720Mhz configuration for OMAP35xx Adds a new API "twl4030_pmrecv_vsel_cfg" to select voltage and group Adds support for 720Mhz in clock.

[U-Boot] TI:OMAP: [PATCH 4/4] Minimal Display driver for OMAP3

2010-01-08 Thread Khasim Syed Mohammed
>From 239c47a4180fb4d5b5217f892955524d476916cf Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Fri, 8 Jan 2010 21:01:44 +0530 Subject: [PATCH] Minimal Display driver for OMAP3 Supports dynamic configuration of Panel and Video Encoder Supports Background color on DVID Supports Color bar

Re: [U-Boot] [PATCH v2 0/9] Added support for SPEAr SoCs

2010-01-08 Thread Peter Tyser
On Fri, 2010-01-08 at 10:05 +0530, Vipin KUMAR wrote: > Hello Peter, > > > > This patch set is a reworked patch which incorporates all review > > feedbacks from > > > earlier earlier mails > > > > > > This patch set contains the support for 4 SoCs > > > SPEAr600 > > > SPEAr300 > > > SPEAr310 > > >

Re: [U-Boot] [PATCH v2 0/9] Added support for SPEAr SoCs

2010-01-08 Thread Tom
Peter Tyser wrote: > On Fri, 2010-01-08 at 10:05 +0530, Vipin KUMAR wrote: >> Hello Peter, >> >>> >> I am planning to keep the patch order as it is but I would remove >> dependencies eg. SPEAr600 would not contain code that depends on >> a driver added later and so on. >> >> This should also be O

Re: [U-Boot] [beagleboard] TI:OMAP: [PATCH 3/4] Support 720Mhz configuration for OMAP35xx

2010-01-08 Thread Nishanth Menon
On Fri, Jan 8, 2010 at 9:40 AM, Khasim Syed Mohammed wrote: > > From bba669562fa208d12f4c7cd8188446e8576cd6ee Mon Sep 17 00:00:00 2001 > From: Syed Mohammed Khasim > Date: Fri, 8 Jan 2010 20:34:37 +0530 > Subject: [PATCH] Support 720Mhz configuration for OMAP35xx > > Adds a new API "twl4030_pmrec

Re: [U-Boot] [beagleboard] TI:OMAP: [PATCH 4/4] Minimal Display driver for OMAP3

2010-01-08 Thread Nishanth Menon
On Fri, Jan 8, 2010 at 9:40 AM, Khasim Syed Mohammed wrote: > From 239c47a4180fb4d5b5217f892955524d476916cf Mon Sep 17 00:00:00 2001 > From: Syed Mohammed Khasim > Date: Fri, 8 Jan 2010 21:01:44 +0530 > Subject: [PATCH] Minimal Display driver for OMAP3 > > Supports dynamic configuration of Panel

[U-Boot] [PATCH] Call gentenv_IPaddr only if CONFIG_CMD_NET set

2010-01-08 Thread Albert Aribaud
ARM Boards for which CONFIG_CMD_NET is unset still call getenv_IPaddr from lib_arm/board.c even though net/net.c (which defines gentenv_IPaddr) will not be compiled and linked. This patch fixes this by making the call conditional to CONFIG_CMD_NET. Signed-off-by: Albert Aribaud --- lib_arm/board

Re: [U-Boot] [PATCH] Call gentenv_IPaddr only if CONFIG_CMD_NET set

2010-01-08 Thread Albert ARIBAUD
Albert Aribaud a écrit : > ARM Boards for which CONFIG_CMD_NET is unset still > call getenv_IPaddr from lib_arm/board.c even though > net/net.c (which defines gentenv_IPaddr) will not > be compiled and linked. This patch fixes this by > making the call conditional to CONFIG_CMD_NET. > > Signed-of

Re: [U-Boot] [PATCH] Call gentenv_IPaddr only if CONFIG_CMD_NET set

2010-01-08 Thread Ben Warren
Hi Albert, Albert Aribaud wrote: > ARM Boards for which CONFIG_CMD_NET is unset still > call getenv_IPaddr from lib_arm/board.c even though > net/net.c (which defines gentenv_IPaddr) will not > be compiled and linked. This patch fixes this by > making the call conditional to CONFIG_CMD_NET. > T

Re: [U-Boot] [PATCH] Call gentenv_IPaddr only if CONFIG_CMD_NET set

2010-01-08 Thread Albert ARIBAUD
Ben Warren a écrit : > Hi Albert, > > Albert Aribaud wrote: >> ARM Boards for which CONFIG_CMD_NET is unset still >> call getenv_IPaddr from lib_arm/board.c even though >> net/net.c (which defines gentenv_IPaddr) will not >> be compiled and linked. This patch fixes this by >> making the call condi

Re: [U-Boot] [PATCH] Call gentenv_IPaddr only if CONFIG_CMD_NET set

2010-01-08 Thread Ben Warren
Albert ARIBAUD wrote: > Ben Warren a écrit : >> Hi Albert, >> >> Albert Aribaud wrote: >>> ARM Boards for which CONFIG_CMD_NET is unset still >>> call getenv_IPaddr from lib_arm/board.c even though >>> net/net.c (which defines gentenv_IPaddr) will not >>> be compiled and linked. This patch fixes th

Re: [U-Boot] [PATCH] Call gentenv_IPaddr only if CONFIG_CMD_NET set

2010-01-08 Thread Albert ARIBAUD
Ben Warren a écrit : >> Does its being "in the queue" (but obviously not committed yet as I'd >> pulled and checked before posting) allow me to submit patches >> dependent on it? >> > I've asked WD to apply the patch, but he hasn't acted yet. Do your > patches affect the files touched by this

Re: [U-Boot] [PATCH 1/3] Monahan/PXA3xx: integrate Linux NAND controller driver

2010-01-08 Thread Marcel Ziswiler
On Thu, 2010-01-07 at 13:44 -0600, Scott Wood wrote: > I don't think we need this. > > In fact, it could make it harder to spot conflicts when merging new versions > of the file from linux, since patch could find the context it's looking for > in the middle of an #ifndef __U_BOOT__ section when th

Re: [U-Boot] [PATCH 1/3] Monahan/PXA3xx: integrate Linux NAND controller driver

2010-01-08 Thread Scott Wood
Marcel Ziswiler wrote: > On Thu, 2010-01-07 at 13:44 -0600, Scott Wood wrote: >> I don't think we need this. >> >> In fact, it could make it harder to spot conflicts when merging new versions >> of the file from linux, since patch could find the context it's looking for >> in the middle of an #ifnd

Re: [U-Boot] [beagleboard] TI:OMAP: [PATCH 4/4] Minimal Display driver for OMAP3

2010-01-08 Thread Khasim Syed Mohammed
On Sat, Jan 9, 2010 at 1:31 AM, Nishanth Menon wrote: > On Fri, Jan 8, 2010 at 9:40 AM, Khasim Syed Mohammed > wrote: >> From 239c47a4180fb4d5b5217f892955524d476916cf Mon Sep 17 00:00:00 2001 >> From: Syed Mohammed Khasim >> Date: Fri, 8 Jan 2010 21:01:44 +0530 >> Subject: [PATCH] Minimal Displa

Re: [U-Boot] [beagleboard] TI:OMAP: [PATCH 3/4] Support 720Mhz configuration for OMAP35xx

2010-01-08 Thread Khasim Syed Mohammed
On Sat, Jan 9, 2010 at 1:22 AM, Nishanth Menon wrote: > On Fri, Jan 8, 2010 at 9:40 AM, Khasim Syed Mohammed > wrote: >> >> From bba669562fa208d12f4c7cd8188446e8576cd6ee Mon Sep 17 00:00:00 2001 >> From: Syed Mohammed Khasim >> Date: Fri, 8 Jan 2010 20:34:37 +0530 >> Subject: [PATCH] Support 720

Re: [U-Boot] TI:OMAP: Following patches adds support for Beagle REV C4

2010-01-08 Thread Khasim Syed Mohammed
On Fri, Jan 8, 2010 at 9:06 PM, Khasim Syed Mohammed wrote: > Sandeep, > > I have incorporated few review comments and corrected errors and > warnings reported by checkpatch. > > I am hereby resubmitting the patch sequence along with new display > driver for OMAP3. > > NOTE: 1,2,3 were reviewed on

[U-Boot] TI:OMAP: [PATCH] API to select twl4030 voltage and dev group

2010-01-08 Thread Khasim Syed Mohammed
>From cc1b24cb290d428f2e1aefec9c7878b46380f592 Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Sat, 9 Jan 2010 09:28:03 +0530 Subject: [PATCH] API to select twl4030 voltage and dev group Adds a new API "twl4030_pmrecv_vsel_cfg" to select voltage and its device group Signed-off-by: Syed

[U-Boot] TI:OMAP: [PATCH] Add support for 720Mhz

2010-01-08 Thread Khasim Syed Mohammed
>From 3ce16a34751437f67b349e5aaff0fcc9f1620f1a Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Sat, 9 Jan 2010 09:31:15 +0530 Subject: [PATCH] Add support for 720Mhz A New API to allow setting M value to support 720Mhz Signed-off-by: Syed Mohammed Khasim --- cpu/arm_cortexa8/omap3/cl

[U-Boot] TI:OMAP: [PATCH] Add DSS driver for OMAP3

2010-01-08 Thread Khasim Syed Mohammed
>From d5458136b410c85ce6ae62460d4cafcf41703e0c Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Sat, 9 Jan 2010 09:37:14 +0530 Subject: [PATCH] Add DSS driver for OMAP3 Supports dynamic panel configuration Supports dynamic tv standard selection Adds support for DSS register access throug

[U-Boot] TI:OMAP: [PATCH] Add 720Mhz support for Beagle Rev C4

2010-01-08 Thread Khasim Syed Mohammed
>From e28c5e917f9504b724b6587287ad9e1eb0682b11 Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Sat, 9 Jan 2010 09:40:32 +0530 Subject: [PATCH] Add 720Mhz support for Beagle Rev C4 Use the Generic TWL and Clock APIs to get beagle Rev C4 running at 720Mhz Signed-off-by: Syed Mohammed Kha

[U-Boot] TI:OMAP: [PATCH] Enable DSS driver for Beagle

2010-01-08 Thread Khasim Syed Mohammed
>From 25f5e58c81074b2325076923856c0b8fd243312d Mon Sep 17 00:00:00 2001 From: Syed Mohammed Khasim Date: Sat, 9 Jan 2010 09:45:03 +0530 Subject: [PATCH] Enable DSS driver for Beagle Configures DSS to display color bar on Svideo Configures DSS to display background color on DVID Signed-off-by: Sy