[U-Boot] [PATCH] net: altera_tse: add write_hwaddr support

2010-04-27 Thread Thomas Chou
Signed-off-by: Thomas Chou tho...@wytron.com.tw --- drivers/net/altera_tse.c | 63 ++--- 1 files changed, 36 insertions(+), 27 deletions(-) diff --git a/drivers/net/altera_tse.c b/drivers/net/altera_tse.c index 5927904..0cf23d6 100644 ---

[U-Boot] [PATCH] bootdelay can be an environemt variable

2010-04-27 Thread Matthias Weisser
This patch allows the bootdelay variable contain the name of another variable holding the actual bootdelay value. Signed-off-by: Matthias Weisser weiss...@arcor.de --- common/main.c |9 - 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/common/main.c b/common/main.c

Re: [U-Boot] [PATCH v4] Program net device MAC addresses after initializing

2010-04-27 Thread Thomas Chou
On 04/27/2010 02:23 AM, Ben Warren wrote: Add a new function to the eth_device struct for programming a network controller's hardware address. After all network devices have been initialized and the proper MAC address for each has been determined, make a device driver call to program the

Re: [U-Boot] [PATCH] net: altera_tse: add write_hwaddr support

2010-04-27 Thread Ben Warren
Hi Thomas, On 4/26/2010 11:11 PM, Thomas Chou wrote: Signed-off-by: Thomas Choutho...@wytron.com.tw --- drivers/net/altera_tse.c | 63 ++--- 1 files changed, 36 insertions(+), 27 deletions(-) snip static int tse_eth_init(struct

Re: [U-Boot] [PATCH] MX31: Added LCD support for QONG module

2010-04-27 Thread Anatolij Gustschin
On Wed, 21 Apr 2010 09:56:31 +0200 Stefano Babic sba...@denx.de wrote: Added support for LCD and splash image to the QONG module. The supported display is VBEST-VGG322403. Signed-off-by: Stefano Babic sba...@denx.de --- drivers/video/mx3fb.c | 17 +

[U-Boot] dual port RAM size in MPC8272 family processor

2010-04-27 Thread Faustino Frechilla
Hi all, I have found something I don't undertand in the codebase, and I hope someone here can help me out a bit. I am currently working in a board which uses a MPC8247 processor (which belongs to the 8272 family) and I was trying to allocate space from the built-in dual port RAM when I found out

Re: [U-Boot] [PATCH] bootdelay can be an environemt variable

2010-04-27 Thread Matthias Weißer
Am 27.04.2010 10:19, schrieb Wolfgang Denk: Dear Matthias Weisser, In message1272348834-30161-1-git-send-email-weiss...@arcor.de you wrote: This patch allows the bootdelay variable contain the name of another variable holding the actual bootdelay value. Why make the bootdelay variable in

[U-Boot] Tonifícate con Slendertone

2010-04-27 Thread Productos de tonificación y Fitness
Productos de tonificación y Fitness – Tonifícate con Slendertone Slendertone – el líder mundial en productos de tonificación muscular. Los productos de tonificación y fitness Slendertone utilizan la tecnología de la electroestimulación para ejercitar y desarrollar los músculos de las mujeres y

[U-Boot] [PATCH v2] ppc4xx: Add support for ICON board (PPC440SPe)

2010-04-27 Thread Stefan Roese
This patch adds support for the Mosaix Technologies, Inc. ICON board, based on the AppliedMicro (AMCC) PPC440SPe. It's equipped with an SODIMM (512MB standard) and 64MByte of NOR FLASH. Support for the onboard SM502 will be added later. Signed-off-by: Stefan Roese s...@denx.de --- v2: - Updated

Re: [U-Boot] [PATCH] bootdelay can be an environemt variable

2010-04-27 Thread Wolfgang Denk
Dear Matthias Weißer, In message 4bd6aef4.7080...@arcor.de you wrote: It was an attempt to get the bootdelay in an environment variable which can be overridden by board specific code. You can #define BOOTDELAY in your board config file ? With this I tried to follow your suggestion in

Re: [U-Boot] Query: NAND Flash support

2010-04-27 Thread Mohamed Thalib H
On Monday 26 April 2010 08:29 PM, Paulraj, Sandeep wrote: DM355 support is present in U-Boot. If you have not made any changes to the EMIF NAND on your board compared to the DM355 EVM, the NAND driver present in U-Boot will work. If you have made changes then you might have to modify the

[U-Boot] [PATCH v2] net: altera_tse: add write_hwaddr support

2010-04-27 Thread Thomas Chou
Signed-off-by: Thomas Chou tho...@wytron.com.tw --- v2 remove set mac address from init. drivers/net/altera_tse.c | 63 + 1 files changed, 35 insertions(+), 28 deletions(-) diff --git a/drivers/net/altera_tse.c b/drivers/net/altera_tse.c index

[U-Boot] [PATCH v2] net: ethoc: add write_hwaddr support

2010-04-27 Thread Thomas Chou
Signed-off-by: Thomas Chou tho...@wytron.com.tw --- v2 remove set mac address from init. drivers/net/ethoc.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/ethoc.c b/drivers/net/ethoc.c index b912e44..34cc47f 100644 --- a/drivers/net/ethoc.c +++

[U-Boot] Adding a new file transfer protocol to Uboot

2010-04-27 Thread maggi9999
hi all, i'm very new to uboot.i would like to add new file transfer protocol like tftp. Server sends the file as chunks and uboot has to receive and reconstruct it.for that in uboot can i add the new protocol in /net folder or is there any folder in uboot which can hold it?Is adding new protocol

Re: [U-Boot] Adding a new file transfer protocol to Uboot

2010-04-27 Thread Ben Warren
Hello Maggi, On Tue, Apr 27, 2010 at 6:27 AM, maggi maggi9...@gmail.com wrote: hi all, i'm very new to uboot.i would like to add new file transfer protocol like tftp. Server sends the file as chunks and uboot has to receive and reconstruct it.for that in uboot can i add the new

Re: [U-Boot] [PATCH] powerpc: Consolidate bootcount_{store|load} for PowerPC

2010-04-27 Thread Detlev Zundel
Hi Stefan, This patch consolidates bootcount_{store|load} for PowerPC by implementing a common version in arch/powerpc/lib/bootcount.c. This code is now used by all PowerPC variants that currently have these functions implemented. The functions now use the proper IO-accessor functions to

Re: [U-Boot] [PATCH] powerpc: Consolidate bootcount_{store|load} for PowerPC

2010-04-27 Thread Stefan Roese
Hi Detlev, On Tuesday 27 April 2010 16:01:11 Detlev Zundel wrote: This patch consolidates bootcount_{store|load} for PowerPC by implementing a common version in arch/powerpc/lib/bootcount.c. This code is now used by all PowerPC variants that currently have these functions implemented.

[U-Boot] [PATCH V2] POST cleanup V2 (incremental)

2010-04-27 Thread Michael Zaidman
The patch implements step#3 of the POST framework cleanup suggested by Wolfgang Denk in the http://lists.denx.de/pipermail/u-boot/2010-April/070400.html This is an incremental patch, should be applied above its initial version. http://lists.denx.de/pipermail/u-boot/2010-April/070559.html

Re: [U-Boot] [PATCH] powerpc: Consolidate bootcount_{store|load} for PowerPC

2010-04-27 Thread Michael Zaidman
Hi Stefan, Good work, you obviously dived dipper than my patch did. Please see my comments below. On Mon, Apr 26, 2010 at 5:28 PM, Stefan Roese s...@denx.de wrote: This patch consolidates bootcount_{store|load} for PowerPC by implementing a common version in arch/powerpc/lib/bootcount.c. This

Re: [U-Boot] [PATCH] Fixup native builds on powerpc

2010-04-27 Thread Scott Wood
On Mon, Apr 26, 2010 at 10:57:51PM -0500, Kumar Gala wrote: When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the same way. We use HOSTARCH == ARCH to determine if a build is native. Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- Makefile |5 ++--- 1 files

Re: [U-Boot] [PATCH] Fixup native builds on powerpc

2010-04-27 Thread Kumar Gala
On Apr 27, 2010, at 11:19 AM, Scott Wood wrote: On Mon, Apr 26, 2010 at 10:57:51PM -0500, Kumar Gala wrote: When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the same way. We use HOSTARCH == ARCH to determine if a build is native. Signed-off-by: Kumar Gala

[U-Boot] [PATCH v2] Fixup native builds on powerpc

2010-04-27 Thread Kumar Gala
When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the same way. We use HOSTARCH == ARCH to determine if a build is native. Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- * Added ppc - powerpc per Scott W. Makefile |6 +++--- 1 files changed, 3 insertions(+), 3

Re: [U-Boot] [PATCH] Fixup native builds on powerpc

2010-04-27 Thread Scott Wood
Kumar Gala wrote: On Apr 27, 2010, at 11:19 AM, Scott Wood wrote: On Mon, Apr 26, 2010 at 10:57:51PM -0500, Kumar Gala wrote: When we changed ARCH from ppc to powerpc we need to treat HOSTARCH the same way. We use HOSTARCH == ARCH to determine if a build is native. Signed-off-by: Kumar

Re: [U-Boot] dual port RAM size in MPC8272 family processor

2010-04-27 Thread Scott Wood
On Tue, Apr 27, 2010 at 10:44:23AM +0200, Faustino Frechilla wrote:   79 /* Dual Port RAM addresses.  The first 16K is available for almost   80  * any CPM use, so we put the BDs there.  The first 128 bytes are   81  * used for SMC1 and SMC2 parameter RAM, so we start allocating   82  * BDs

Re: [U-Boot] [PATCH v4] Program net device MAC addresses after initializing

2010-04-27 Thread Ben Warren
On 4/26/2010 11:23 AM, Ben Warren wrote: Add a new function to the eth_device struct for programming a network controller's hardware address. After all network devices have been initialized and the proper MAC address for each has been determined, make a device driver call to program the

Re: [U-Boot] [PATCH] net: fec_mxc: add write_hwaddr support

2010-04-27 Thread Ben Warren
Heiko, On 4/26/2010 10:43 PM, Heiko Schocher wrote: tested on the magnesium board. Signed-off-by: Heiko Schocherh...@denx.de --- Patch from Ben must be applied before, see this patch here: http://lists.denx.de/pipermail/u-boot/2010-April/070691.html drivers/net/fec_mxc.c |2 +- 1

Re: [U-Boot] [PATCH v2] net: altera_tse: add write_hwaddr support

2010-04-27 Thread Ben Warren
Thomas, On 4/27/2010 5:15 AM, Thomas Chou wrote: Signed-off-by: Thomas Choutho...@wytron.com.tw --- v2 remove set mac address from init. drivers/net/altera_tse.c | 63 + 1 files changed, 35 insertions(+), 28 deletions(-) Applied to net

Re: [U-Boot] [PATCH v2] net: ethoc: add write_hwaddr support

2010-04-27 Thread Ben Warren
Thomas, On 4/27/2010 5:20 AM, Thomas Chou wrote: Signed-off-by: Thomas Choutho...@wytron.com.tw --- v2 remove set mac address from init. drivers/net/ethoc.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Applied to net repo. Please ignore similar message about V1,

[U-Boot] [PATCH] fdt: move fsl specific code from common fdt area to mpc8xxx/fdt.c

2010-04-27 Thread Kim Phillips
Signed-off-by: Kim Phillips kim.phill...@freescale.com --- unnecessarily introducing mpc83xx-specific conditions in the mpc8xxx Makefile due to current development logistics is ugly IMHO, but it sounds like this is what the people want anyway. Makefile |1 +

Re: [U-Boot] [PATCH 2/2] add support of arm/pxa270 board made by voipac [rev 2]

2010-04-27 Thread Marek Vasut
Dne So 10. dubna 2010 00:39:41 Wolfgang Denk napsal(a): Dear Mikhail Kshevetskiy, In message 20100407154936.474d5...@laska.campus-ws.pu.ru you wrote: This patch is based on custom u-boot-1.1.2 version produced by voipac (http://www.voipac.com) and board/trizepsiv files from current u-boot.

[U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Mike Frysinger
Signed-off-by: Mike Frysinger vap...@gentoo.org --- drivers/net/bfin_mac.c | 28 +++- drivers/net/bfin_mac.h |3 +-- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/drivers/net/bfin_mac.c b/drivers/net/bfin_mac.c index ec45b63..720e126 100644 ---

[U-Boot] [PATCH] update include/asm/ gitignore after move

2010-04-27 Thread Mike Frysinger
With the cpu include paths moved, the gitignore paths need updating. Signed-off-by: Mike Frysinger vap...@gentoo.org --- arch/.gitignore|2 ++ include/.gitignore |2 -- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 arch/.gitignore diff --git a/arch/.gitignore

[U-Boot] [PATCH] update include/asm/ gitignore after move

2010-04-27 Thread Mike Frysinger
With the cpu include paths moved, the gitignore paths need updating. Signed-off-by: Mike Frysinger vap...@gentoo.org --- arch/.gitignore|2 ++ include/.gitignore |2 -- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 arch/.gitignore diff --git a/arch/.gitignore

Re: [U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Ben Warren
Hi Mike, On 4/27/2010 11:15 AM, Mike Frysinger wrote: Signed-off-by: Mike Frysingervap...@gentoo.org --- drivers/net/bfin_mac.c | 28 +++- drivers/net/bfin_mac.h |3 +-- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/drivers/net/bfin_mac.c

Re: [U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Mike Frysinger
On Tuesday 27 April 2010 14:33:09 Ben Warren wrote: On 4/27/2010 11:15 AM, Mike Frysinger wrote: - bfin_EMAC_setup_addr(dev-enetaddr); + bfin_EMAC_setup_addr(dev); Are you sure you still want to program it on every init() call? There's nothing wrong with that, BTW... that's the

Re: [U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Ben Warren
On 4/27/2010 11:42 AM, Mike Frysinger wrote: On Tuesday 27 April 2010 14:33:09 Ben Warren wrote: On 4/27/2010 11:15 AM, Mike Frysinger wrote: - bfin_EMAC_setup_addr(dev-enetaddr); + bfin_EMAC_setup_addr(dev); Are you sure you still want to program it on every init()

Re: [U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Mike Frysinger
On Tuesday 27 April 2010 14:46:34 Ben Warren wrote: On 4/27/2010 11:42 AM, Mike Frysinger wrote: On Tuesday 27 April 2010 14:33:09 Ben Warren wrote: On 4/27/2010 11:15 AM, Mike Frysinger wrote: - bfin_EMAC_setup_addr(dev-enetaddr); + bfin_EMAC_setup_addr(dev); Are you sure you still

Re: [U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Ben Warren
On 4/27/2010 12:32 PM, Mike Frysinger wrote: On Tuesday 27 April 2010 14:46:34 Ben Warren wrote: On 4/27/2010 11:42 AM, Mike Frysinger wrote: On Tuesday 27 April 2010 14:33:09 Ben Warren wrote: On 4/27/2010 11:15 AM, Mike Frysinger wrote: -

Re: [U-Boot] [PATCH] Blackfin: bfin_mac: hook up new write_hwaddr function

2010-04-27 Thread Mike Frysinger
On Tuesday 27 April 2010 16:07:21 Ben Warren wrote: On 4/27/2010 12:32 PM, Mike Frysinger wrote: your v4 patch writes the env to the hardware in the initialize() step, not the init() step. if someone changes ethaddr on the fly, the common net funcs sync env-eth_device, but it does not call

[U-Boot] [PULL] Please pull u-boot-mpc5xxx.git

2010-04-27 Thread Wolfgang Denk
The following changes since commit fbb0030e3894119c089256f16626edd166c7629c: Anatolij Gustschin (1): serial: struct serial_device: add uninit() entry for drivers are available in the git repository at: git://git.denx.de/u-boot-mpc5xxx.git master Anatolij Gustschin (7):

Re: [U-Boot] [Nios] Pull Request

2010-04-27 Thread Wolfgang Denk
Dear Scott McNutt, In message 4bd3712b.10...@psyent.com you wrote: Dear Wolfgang, The following changes since commit 6e5fb4eec3702a13770769a5a48a9423aa68ee9c: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mmc are available in the git repository at:

Re: [U-Boot] Please pull u-boot-mpc85xx

2010-04-27 Thread Wolfgang Denk
Dear Kumar Gala, In message pine.lnx.4.64.1004262242320.2...@localhost.localdomain you wrote: The following changes since commit 6e5fb4eec3702a13770769a5a48a9423aa68ee9c: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mmc are available in the git repository

[U-Boot] Please pull u-boot-mpc83xx.git

2010-04-27 Thread Kim Phillips
Wolfgang Denk, Please pull: The following changes since commit a47a12becf66f02a56da91c161e2edb625e9f20c: Stefan Roese (1): Move arch/ppc to arch/powerpc are available in the git repository at: git://git.denx.de/u-boot-mpc83xx.git master Kim Phillips (3): mpc83xx: use A

Re: [U-Boot] [PATCH v2 10/17] SPEAr : FSMC driver support added

2010-04-27 Thread Scott Wood
On Mon, Apr 26, 2010 at 08:26:43AM +0530, Vipin KUMAR wrote: Flexible static memory controller is an IP which controls the access to NAND chips along with many other memory device chips eg NOR, SRAM. This is an ST peripheral. This patch adds the driver support for FSMC controller interfacing

Re: [U-Boot] [PATCH v2 11/17] SPEAr : Configuring FSMC driver for NAND interface

2010-04-27 Thread Scott Wood
On Mon, Apr 26, 2010 at 08:26:44AM +0530, Vipin KUMAR wrote: Since FSMC is a standard IP and it supports different memory interfaces the FSMC is supported independent of spear platform and spear is configured to use that driver for interfacing with the NAND device Signed-off-by: Vipin

[U-Boot] Please pull u-boot-video

2010-04-27 Thread Anatolij Gustschin
Dear Wolfgang, The following changes since commit 8e98f5f70b269a77416a990b90ad8d853c5a0d73: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc5xxx are available in the git repository at: git://git.denx.de/u-boot-video.git master Stefano Babic (1): MX31:

Re: [U-Boot] Please pull u-boot-mpc83xx.git

2010-04-27 Thread Wolfgang Denk
Dear Kim Phillips, In message 20100427161706.735010ff.kim.phill...@freescale.com you wrote: Wolfgang Denk, Please pull: The following changes since commit a47a12becf66f02a56da91c161e2edb625e9f20c: Stefan Roese (1): Move arch/ppc to arch/powerpc are available in the git

Re: [U-Boot] Please pull u-boot-video

2010-04-27 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message 20100427233132.5d8a9...@wker you wrote: Dear Wolfgang, The following changes since commit 8e98f5f70b269a77416a990b90ad8d853c5a0d73: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc5xxx are available in the git

[U-Boot] Read-only env variables

2010-04-27 Thread Joe Hershberger
Hi u-boot, I see u-boot supports readonly serial# and ethaddr, but I have a few other variables that I need to be read-only. I'm planning to implement a generic list of variables that cannot be changed or deleted. I'm interested to know what sort of specification people would find most

[U-Boot] [PATCH v9] spi: add altera spi controller support

2010-04-27 Thread Thomas Chou
This patch adds the driver of altera spi controller, which is also used as epcs/spi flash controller. It also works with mmc_spi driver. This driver support more than one spi bus, with base list declared #define CONFIG_SYS_ALTERA_SPI_LIST { BASE_0,BASE_1,... } Signed-off-by: Thomas Chou

[U-Boot] [PATCH v4] mmc: add generic mmc spi driver

2010-04-27 Thread Thomas Chou
This patch supports mmc/sd card with spi interface. It is based on the generic mmc framework. It works with SDHC and supports write. The crc7 lib func is merged from linux and used to compute mmc command checksum. There is a subcomamnd mmc_spi to setup spi bus and cs at run time. Signed-off-by:

[U-Boot] [PATCH v2] nios2: add epcs, gpio led and mmc_spi to nios2-generic

2010-04-27 Thread Thomas Chou
Since Wolfgang requests that new driver should be used with a board, these peripherals are added to the nios2-generic board. It will exercise drivers in these outstanding patches, 04/17 [PATCH v4] nios2: add gpio support 04/21 [PATCH v2] misc: add gpio based status led driver 04/28 [PATCH v9]

Re: [U-Boot] [PATCH v3] mmc: add generic mmc spi driver

2010-04-27 Thread Thomas Chou
Hi Mike, On 04/28/2010 12:49 AM, Mike Frysinger wrote: On Monday 26 April 2010 23:27:16 Thomas Chou wrote: --- /dev/null +++ b/common/cmd_mmc_spi.c +struct mmc *mmc = NULL; useless assignment since mmc gets set shortly after OK. +struct mmc_spi_priv *priv; +

Re: [U-Boot] [PATCH v2] misc: add gpio based status led driver

2010-04-27 Thread Thomas Chou
On 04/26/2010 02:14 AM, Wolfgang Denk wrote: As long as no board actually uses this code we should put that patch on hold. Please resubmit it as part of the patch series that adds the first board that uses this code. Thanks. Hi Wolfgang, I sent a patch to enable some peripherals on the

[U-Boot] Uboot application problem

2010-04-27 Thread robin
Hi, I have a couple of custom application for uboot. I am able to build and run the application individually If i power up the board and run the first application, It executes without powering off the board if i load second application to same location, the system hangs. Both the application has

Re: [U-Boot] Uboot application problem

2010-04-27 Thread Wolfgang Denk
Dear robin, In message 1272431200.2567.0.ca...@ubuntu-desktop you wrote: I have a couple of custom application for uboot. I am able to build and run the application individually If i power up the board and run the first application, It executes without powering off the board if i load

Re: [U-Boot] [PATCH 1/2] The bootcount_{store|load} moved to arch specific generic locations.

2010-04-27 Thread Michael Zaidman
This patch may be replaced by the http://lists.denx.de/pipermail/u-boot/2010-April/070683.html patch what should not break an application of the POST cleanup V2 incremental patch http://lists.denx.de/pipermail/u-boot/2010-April/070729.html Regards, Michael