Re: [U-Boot] Query: Does Uboot support CFI flash driver forM29W128GH

2009-10-28 Thread prakash bedge
Hi Stefan, Thanks for information. Can you please send me the patch details to fixup the CFI query related bug for M29W128GH? In the code for each header file there is a macro named CONFIG_FLASH_CFI_DRIVER defined in each board specific header file in folder /include/configs. But I am not seeing

Re: [U-Boot] [PATCH] Make the generic unaligned access code safe for unaligned access

2009-10-28 Thread Stefan Roese
Hi Remy, On Wednesday 28 October 2009 22:13:38 Remy Bohmer wrote: > The current generic code for handling unaligned access assumes that > the processor can properly handle unaligned accesses itself. > This is at least not the case for ARM, which results in runtime > errors. > > Rewrite it such th

Re: [U-Boot] [PATCH v3 1/2] NET: Move MDIO regs out of TSEC Space

2009-10-28 Thread Kumar Gopalpet-B05799
>-Original Message- >From: Phillips Kim-R1AAHA >Sent: Thursday, October 29, 2009 1:36 AM >To: Kumar Gopalpet-B05799 >Cc: u-boot@lists.denx.de >Subject: Re: [PATCH v3 1/2] NET: Move MDIO regs out of TSEC Space > >On Wed, 28 Oct 2009 14:19:18 +0530 >Sandeep Gopalpet wrote: > >> Moved the

[U-Boot] [PATCH] ppc/85xx: Clean up mpc8536DS PCI setup code

2009-10-28 Thread Mingkai Hu
Use new fsl_pci_init_port() that reduces amount of duplicated code in the board ports, use IO accessors and clean up printing of status info. Signed-off-by: Mingkai Hu --- board/freescale/mpc8536ds/mpc8536ds.c | 252 + 1 files changed, 64 insertions(+), 188 delet

Re: [U-Boot] [PATCH] Fix Compliation warning for TNY-A9260 and TNY-A9G20

2009-10-28 Thread Tom
Wolfgang Denk wrote: > Dear s-paul...@ti.com, > > In message <1256742303-17029-1-git-send-email-s-paul...@ti.com> you wrote: >> From: Sandeep Paulraj >> >> The patch fixes a compilation warning by defining >> CONFIG_SYS_64BIT_VSPRINTF in the config file >> >> Signed-off-by: Sandeep Paulraj >> --

Re: [U-Boot] [PATCH] Fix Compliation warning for SBC35-A9G20 board

2009-10-28 Thread Tom
Wolfgang Denk wrote: > Dear s-paul...@ti.com, > > In message <1256742293-17000-1-git-send-email-s-paul...@ti.com> you wrote: >> From: Sandeep Paulraj >> >> The patch fixes a compilation warning by defining >> CONFIG_SYS_64BIT_VSPRINTF in the config file >> >> Signed-off-by: Sandeep Paulraj >> --

[U-Boot] [PATCH] Fix for Void function returning value in sbc35-a9g20

2009-10-28 Thread s-paulraj
From: Sandeep Paulraj Void function was returning 0 in the m41t94 rtc driver. This makes it similar to m41t62 rtc driver. Signed-off-by: Sandeep Paulraj --- drivers/rtc/m41t94.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/drivers/rtc/m41t94.c b/drivers/rtc/m41t94.c

Re: [U-Boot] [PATCH] sbc8349: fix incorrect comment

2009-10-28 Thread Paul Gortmaker
On Wed, Oct 28, 2009 at 5:11 PM, Wolfgang Denk wrote: > The comment for the BR0_PRELIM port size initialization incorrectly > stated 32 bit, while it's actually 16 bit. The code is correct. Thanks -- at some point I'll go and change them all to use the more human readable BR_PS_16 and similar. P

Re: [U-Boot] [PATCH] Enable port-mapped access to 16550 UART

2009-10-28 Thread Graeme Russ
Detlev, Thanks for havnig a look at this On Thu, Oct 29, 2009 at 3:13 AM, Detlev Zundel wrote: > Hello Graeme, > >> This patch does two things: >> - Changes default behaviour to use proper memory accessors >> - Allows port-mapped access (using inb/outb) for the x86 architecture >> >> Signed-

[U-Boot] [PATCH] Repair build failure in case PPC is not defined and FIT is beng used.

2009-10-28 Thread Remy Bohmer
Signed-off-by: Remy Bohmer --- common/cmd_bootm.c |2 +- common/image.c |2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 8f83598..32fd9bb 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -524,7 +524,7 @@ int

[U-Boot] [PATCH] Repair the 'netry=once' option.

2009-10-28 Thread Remy Bohmer
'netretry = once' does the same as 'netretry = yes', because it is not stored when it was tried once. Signed-off-by: Remy Bohmer --- net/net.c | 34 +- 1 files changed, 25 insertions(+), 9 deletions(-) diff --git a/net/net.c b/net/net.c index cab4b2d..fd13cd9 1

[U-Boot] [PATCH] Make the generic unaligned access code safe for unaligned access

2009-10-28 Thread Remy Bohmer
The current generic code for handling unaligned access assumes that the processor can properly handle unaligned accesses itself. This is at least not the case for ARM, which results in runtime errors. Rewrite it such that it works for ARM as well. Signed-off-by: Remy Bohmer --- include/linux/un

[U-Boot] [PATCH] Add error codes/handling for TFTP-server

2009-10-28 Thread Remy Bohmer
Signed-off-by: Remy Bohmer --- net/tftp.c | 32 +--- 1 files changed, 29 insertions(+), 3 deletions(-) diff --git a/net/tftp.c b/net/tftp.c index cc60a3b..d254f49 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -47,6 +47,16 @@ static int TftpTimeoutCountMax = TIMEOUT_CO

[U-Boot] [PATCH] Fix mingw tools build

2009-10-28 Thread Remy Bohmer
mkimage does not build due to missing strtok_r() and getline() implementation Signed-off-by: Remy Bohmer --- tools/mingw_support.c | 157 + tools/mingw_support.h |2 + 2 files changed, 159 insertions(+), 0 deletions(-) diff --git a/tools/ming

[U-Boot] [PATCH] Add support for CS2 dataflash for Atmel-SPI.

2009-10-28 Thread Remy Bohmer
The only missing chipselect line support is CS2, and I need it on CS2... Signed-off-by: Remy Bohmer --- drivers/spi/atmel_dataflash_spi.c | 18 -- 1 files changed, 16 insertions(+), 2 deletions(-) diff --git a/drivers/spi/atmel_dataflash_spi.c b/drivers/spi/atmel_dataflash_sp

[U-Boot] [PATCH] Building of FIT images does not work.

2009-10-28 Thread Remy Bohmer
The type is not set for generation of the FIT images, resulting in no images being created without printing or returning an error Signed-off-by: Remy Bohmer --- tools/mkimage.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tools/mkimage.c b/tools/mkimage.c index ab6ea3

[U-Boot] [PATCH] sbc8349: fix incorrect comment

2009-10-28 Thread Wolfgang Denk
The comment for the BR0_PRELIM port size initialization incorrectly stated 32 bit, while it's actually 16 bit. The code is correct. Reported-by: Guenter Koellner Signed-off-by: Wolfgang Denk --- include/configs/sbc8349.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/

Re: [U-Boot] Please pull u-boot-cfi-flash/master

2009-10-28 Thread Wolfgang Denk
Dear Stefan Roese, In message <200910281140.07642...@denx.de> you wrote: > Hi Wolfgang, > > please pull this update. Thanks. > > The following changes since commit 4946775c6db52dba28f72ba3525764b54f1d4593: > Wolfgang Denk (1): > Coding Style cleanup; update CHANGELOG, prepare -rc1 > >

Re: [U-Boot] Pull request: u-boot-sparc

2009-10-28 Thread Wolfgang Denk
Dear Daniel Hellstrom, In message <4ae80a59.9090...@gaisler.com> you wrote: > Sorry, please pull from the master branch. Understood. > The following changes since commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f: > Matthias Fuchs (1): > License cleanup: Fix license header for some esd d

Re: [U-Boot] [PATCH] Fix Compliation warning for TNY-A9260 and TNY-A9G20

2009-10-28 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message <1256742303-17029-1-git-send-email-s-paul...@ti.com> you wrote: > From: Sandeep Paulraj > > The patch fixes a compilation warning by defining > CONFIG_SYS_64BIT_VSPRINTF in the config file > > Signed-off-by: Sandeep Paulraj > --- > include/configs/tny_a9260.h

Re: [U-Boot] [PATCH] Fix Compliation warning for SBC35-A9G20 board

2009-10-28 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message <1256742293-17000-1-git-send-email-s-paul...@ti.com> you wrote: > From: Sandeep Paulraj > > The patch fixes a compilation warning by defining > CONFIG_SYS_64BIT_VSPRINTF in the config file > > Signed-off-by: Sandeep Paulraj > --- > include/configs/sbc35_a9g20

Re: [U-Boot] [PATCH v3 1/2] NET: Move MDIO regs out of TSEC Space

2009-10-28 Thread Kim Phillips
On Wed, 28 Oct 2009 14:19:18 +0530 Sandeep Gopalpet wrote: > Moved the mdio regs out of the tsec structure,and > provided different offsets for tsec base and mdio > base so that provision for etsec2.0 can be provided. > > This patch helps in providing the support for etsec2.0 > In etsec2.0, the

Re: [U-Boot] [PATCH 0/6] ppc4xx: Linker script consolidation

2009-10-28 Thread Niklaus Giger
Hi Stefan Thanks for your work. I tested in on two of my three boards and both compile and start up fine. Best regards Niklaus Am Dienstag 27 Oktober 2009 16:41:35 schrieb Stefan Roese: > This patchset will consolidate the linker scripts for PPC4xx. > My plan is to push this in the next merge

Re: [U-Boot] medical profession listings

2009-10-28 Thread Carlo Thomas
Beat the Recession - get more new clients now. Medical Community Contact Lists that will generate results: Doctors, Dentists, Chiropractors, Hospitals etc.. Drop me a line here for more info & samples: vi...@listexperts.us send an email to e...@listexperts.us to be taken off future mai

Re: [U-Boot] [PATCH] Enable port-mapped access to 16550 UART

2009-10-28 Thread Detlev Zundel
Hello Graeme, > This patch does two things: > - Changes default behaviour to use proper memory accessors > - Allows port-mapped access (using inb/outb) for the x86 architecture > > Signed-off-by: Graeme Russ > --- > drivers/serial/ns16550.c | 69 > ++---

Re: [U-Boot] [STATUS] v2009.11-rc1 is out

2009-10-28 Thread Paulraj, Sandeep
> > > > > > > 2) TNY_A9260.ERR, TNY_A9G20.ERR: > > > > > > nand_util.c:45:2: warning: #warning Please define > > > CONFIG_SYS_64BIT_VSPRINTF for correct output! > > > > Same here, I can submit simple 1 line patches for these > > Thanks, but this is also Albin's bailiwick. I submitted two 1

Re: [U-Boot] [STATUS] v2009.11-rc1 is out

2009-10-28 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d93957...@dlee01.ent.ti.com> you wrote: > > > ARM: lots of issues: > > = > > > > 1) SBC35_A9G20: > > > > nand_util.c:45:2: warning: #warning Please define > > CONFIG_SYS_64BIT_VSPRINTF for correct output! > > m41

Re: [U-Boot] [PATCH 1/2]: common: Add a watchdog CLI command

2009-10-28 Thread Wolfgang Denk
Dear Simon Kagstrom, In message <20091028154925.1dd1a...@marrow.netinsight.se> you wrote: > > > Can we check for some error code here from lower layer and dump some error > > message? > > For ex. Specified timeout value may be invalid for specific h/w > > We could, but I'd like to keep the inter

Re: [U-Boot] [PATCH 2/2]: arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Wednesday, October 28, 2009 7:46 PM > To: U-Boot ML; Prafulla Wadaskar > Subject: [PATCH 2/2]: arm:kirkwood: Add hardware watchdog > support for Marvell Kirkwood boards > > Initialize by calling

[U-Boot] [PATCH] Fix Compliation warning for TNY-A9260 and TNY-A9G20

2009-10-28 Thread s-paulraj
From: Sandeep Paulraj The patch fixes a compilation warning by defining CONFIG_SYS_64BIT_VSPRINTF in the config file Signed-off-by: Sandeep Paulraj --- include/configs/tny_a9260.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/tny_a9260.h b/include/con

[U-Boot] [PATCH] Fix Compliation warning for SBC35-A9G20 board

2009-10-28 Thread s-paulraj
From: Sandeep Paulraj The patch fixes a compilation warning by defining CONFIG_SYS_64BIT_VSPRINTF in the config file Signed-off-by: Sandeep Paulraj --- include/configs/sbc35_a9g20.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/sbc35_a9g20.h b/include

Re: [U-Boot] [PATCH v3 1/2] NET: Move MDIO regs out of TSEC Space

2009-10-28 Thread Kumar Gala
On Oct 28, 2009, at 3:49 AM, Sandeep Gopalpet wrote: > Moved the mdio regs out of the tsec structure,and > provided different offsets for tsec base and mdio > base so that provision for etsec2.0 can be provided. > > This patch helps in providing the support for etsec2.0 > In etsec2.0, the MDIO re

Re: [U-Boot] [STATUS] v2009.11-rc1 is out

2009-10-28 Thread Paulraj, Sandeep
> ARM: lots of issues: > = > > 1) SBC35_A9G20: > > nand_util.c:45:2: warning: #warning Please define > CONFIG_SYS_64BIT_VSPRINTF for correct output! > m41t94.c: In function 'rtc_reset': > m41t94.c:123: warning: 'return' with a value, in function returning > void Wolfgang, th

Re: [U-Boot] [PATCH 1/2]: common: Add a watchdog CLI command

2009-10-28 Thread Simon Kagstrom
On Wed, 28 Oct 2009 07:29:35 -0700 Prafulla Wadaskar wrote: > > +static int do_watchdog(cmd_tbl_t *cmdtp, int flag, int argc, > > > > + if (timeout < 0) > > + goto usage; > > How about passing zero value here, will it be a correct input for > watchdog_enable? Good point, I'll upda

Re: [U-Boot] [PATCH V2] ARM AT91 new board EB+CPUx9K2

2009-10-28 Thread Wolfgang Denk
Dear Jens Scharsig, In message you wrote: > This patch adds a new ARM AT91RM9200 board, named EB+CPUx9K2. > > * support for EB+CPUx9K2 board by BuS Elektronik GmbH & Co. KG > * select via make eb_cpux9k2_config > > Signed-off-by: Jens Scharsig > --- > This patch needs the [PATCH] AT91RM920

Re: [U-Boot] [PATCH] AT91RM9200: real pointer variable for PORT A to D configuration

2009-10-28 Thread Wolfgang Denk
Dear Jens Scharsig, In message <4ae832f4.2090...@bus-elektronik.de> you wrote: > adds real pointer variable for use with use I/O accessors > > * defines for PORT A to D configuration registers > * defines for SMC configuration registers > > Signed-off-by: Jens Scharsig > --- NAK. > diff --g

Re: [U-Boot] [PATCH V2] ARM AT91 new board EB+CPUx9K2

2009-10-28 Thread Jens Scharsig
This patch adds a new ARM AT91RM9200 board, named EB+CPUx9K2. * support for EB+CPUx9K2 board by BuS Elektronik GmbH & Co. KG * select via make eb_cpux9k2_config Signed-off-by: Jens Scharsig --- This patch needs the [PATCH] AT91RM9200: real pointer variable for PORT A to D configuration By d

[U-Boot] [PATCH] galaxy5200: Add default environment variables

2009-10-28 Thread Eric Millbrandt
Extend bootdelay to 10 seconds. Set boot retry time to 120 seconds and use reset to retry. Define default bootcommand and bootargs for production. Signed-off-by: Eric Millbrandt --- include/configs/galaxy5200.h | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/i

Re: [U-Boot] [PATCH] ARM AT91 new board EB+CPUx9K2

2009-10-28 Thread Wolfgang Denk
Dear Jens Scharsig, In message <4ae81893.30...@bus-elektronik.de> you wrote: > > > Close, but please also get rid of this "((AT91PS_PIO) AT91C_BASE_PIOA)" > > thing, especialy the cast is nasty. Declare a real pointer variable to > > the respective data structure, and use that. > > > > I, think

Re: [U-Boot] [PATCH 1/2]: common: Add a watchdog CLI command

2009-10-28 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Wednesday, October 28, 2009 7:44 PM > To: U-Boot ML; Prafulla Wadaskar > Subject: [PATCH 1/2]: common: Add a watchdog CLI command > > A watchdog command to enable the watchdog with a timeout or d

Re: [U-Boot] u-boot.bin

2009-10-28 Thread Jerry Van Baren
Hi David, David Kaplan wrote: > What sort of generated file size should i expect for the u-boot.bin file? I > know it's impossible for anyone to tell me exactly, but in what region of > sizes are we talking? 256K...384K. If you are looking at a multi-mega/gigabyte .bin file, it is usually becau

[U-Boot] u-boot.bin

2009-10-28 Thread David Kaplan
What sort of generated file size should i expect for the u-boot.bin file? I know it's impossible for anyone to tell me exactly, but in what region of sizes are we talking? ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/

[U-Boot] [PATCH] allow MCF532x to use CONFIG_MONITOR_IS_IN_RAM

2009-10-28 Thread Wolfgang Wegner
CONFIG_MONITOR_IS_IN_RAM is broken for MCF532x (and all other processors having RAM located above the FLASH area). This patch fixes this by conditionally - removing the vector table at the beginning of code (MCF532x) - not overwriting the vector base register (MCF532x) - removing the code to re-set

[U-Boot] [PATCH] MCF532x: make icache_enable use CONFIG_SYS_SDRAM_SIZE

2009-10-28 Thread Wolfgang Wegner
in cpu/mcf532x/start.S, the function icache_enable enables the cache for a fixed 32MB region starting at the SDRAM start address; this patch changes the function to cover the region defined by CONFIG_SYS_SDRAM_SIZE Signed-off-by: Wolfgang Wegner --- cpu/mcf532x/start.S |2 +- 1 files changed

[U-Boot] [PATCH 2/2]: arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Simon Kagstrom
Initialize by calling the generic API watchdog_enable() with the number of seconds for the watchdog to timeout. It's not possible to disable the watchdog once it's on. Signed-off-by: Simon Kagstrom --- ChangeLog: v2: (Some of the comments from Prafulla) * Use readl/writel * Rename WATCHDO

[U-Boot] [PATCH 1/2]: common: Add a watchdog CLI command

2009-10-28 Thread Simon Kagstrom
A watchdog command to enable the watchdog with a timeout or disable it can sometimes be useful. Add that. This also adds a common API for enabling or disabling watchdogs. The API is simple: void watchdog_enable(unsigned int timeout); void watchdog_disable(void); disabling the watc

[U-Boot] [PATCH 0/2]: Watchdog support from the command line

2009-10-28 Thread Simon Kagstrom
Hi! These two patches add a generic watchdog CLI command and a driver for the watchdog on Marvell Kirkwood that uses it. The command usage is watchdog - Watchdog commands Usage: watchdog - start the watchdog with `timeout' seconds timeout watchdog off - stop the watchdog (c

[U-Boot] [PATCH] 85xx: Add support for e500mc cache stashing

2009-10-28 Thread Kumar Gala
The e500mc core supports the ability to stash into the L1 or L2 cache, however we need to uniquely identify the caches with an id. We use the following equation to set the various stash-ids: 32 + coreID*2 + 0(L1) or 1(L2) The 0 (for L1) or 1 (for L2) matches the CT field used be various cache co

[U-Boot] [PATCH] ppc/p4080: Added p4080 SERDES registers & USB offset

2009-10-28 Thread Kumar Gala
Added immap definition for SERDES registers on p4080, the USB offset (since it was missing) and a GPL header. Signed-off-by: Li Yang Signed-off-by: Kumar Gala --- include/asm-ppc/immap_85xx.h | 83 ++ 1 files changed, 83 insertions(+), 0 deletions(-) d

[U-Boot] NAND and new board

2009-10-28 Thread David Kaplan
I'm trying to add config for a new board (custom board with s3c2410). I am confused about how to define NAND mem. The chip in question is a Samsung K9F5608U0D (32M NAND). I have noticed various nand.c files in board/*. Are any of those good enough for me (and I can add to my board) or do I need to

[U-Boot] [STATUS] v2009.11-rc1 is out

2009-10-28 Thread Wolfgang Denk
Helleo all, just in case you did not notice yet: U-Boot v2009.11-rc1 was released last night. Summary of state: ARM: lots of issues: = 1) SBC35_A9G20: nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output! m41t94.c: In function 'rtc

[U-Boot] [PATCH] omap3evm: musb: add USB config

2009-10-28 Thread Ajay Kumar Gupta
Added USB host and device config for host (MSC, Keyboard) and device (ACM) functionalities. Signed-off-by: Ajay Kumar Gupta --- This patch is intended to be applied on top of recent OMAP3 musb patches from Tom Rix. include/configs/omap3_evm.h | 39 +++ 1 fi

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Simon Kagstrom
On Wed, 28 Oct 2009 05:57:34 -0700 Prafulla Wadaskar wrote: > > Sure, but WATCHDOG_RESET() will be called anyway (and probably before > > my code), so it will be enabled anyhow in that case. My point is that > > sometimes you don't want the watchdog to get started directly, hence > > the function

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Wednesday, October 28, 2009 6:14 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de > Subject: Re: [PATCH] arm:kirkwood: Add hardware watchdog > support for Marvell Kirkwood boards > > On Wed

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Simon Kagstrom
On Wed, 28 Oct 2009 04:34:10 -0700 Prafulla Wadaskar wrote: > >#define CNTMR_VAL_REG(tmrnum) > > &kwtmr_regs->tmr[tmrnum].val > > > > and used for the regular timer support. I'm not sure I like that, but > > at least the file should be internally consistent. > > You can update t

Re: [U-Boot] [PATCH V3 1/4] add TI DA8xx support: DA8xx includes

2009-10-28 Thread Tom
Nick Thompson wrote: > Wolfgang Denk wrote: >> Dear Nick Thompson, >> >> In message <4ae5dffd.2090...@gefanuc.com> you wrote: >>> Provides initial support for TI OMAP-L1x/DA8xx SoC devices. >>> See http://www.ti.com >>> >>> The DA8xx devices are similar to DaVinci devices but have a differing >>> m

Re: [U-Boot] [PATCH] AT91RM9200: real pointer variable for PORT A to D configuration

2009-10-28 Thread Jens Scharsig
> adds real pointer variable for use with use I/O accessors > > * defines for PORT A to D configuration registers > * defines for SMC configuration registers > > Signed-off-by: Jens Scharsig This includes all changes from [PATCH] AT91RM9200 BGA port D defines Best regards Jens Scharsig __

[U-Boot] [PATCH] AT91RM9200: real pointer variable for PORT A to D configuration

2009-10-28 Thread Jens Scharsig
adds real pointer variable for use with use I/O accessors * defines for PORT A to D configuration registers * defines for SMC configuration registers Signed-off-by: Jens Scharsig --- diff --git a/include/asm-arm/arch-at91rm9200/AT91RM9200.h b/include/asm-arm/arch-at91rm9200/AT91RM9200.h index

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Wednesday, October 28, 2009 3:23 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de > Subject: Re: [PATCH] arm:kirkwood: Add hardware watchdog > support for Marvell Kirkwood boards > > Thanks

[U-Boot] Please pull u-boot-cfi-flash/master

2009-10-28 Thread Stefan Roese
Hi Wolfgang, please pull this update. Thanks. The following changes since commit 4946775c6db52dba28f72ba3525764b54f1d4593: Wolfgang Denk (1): Coding Style cleanup; update CHANGELOG, prepare -rc1 are available in the git repository at: git://www.denx.de/git/u-boot-cfi-flash.git maste

Re: [U-Boot] [PATCH] cfi: Add weak default function for flash_cmd_reset()

2009-10-28 Thread Stefan Roese
On Tuesday 27 October 2009 15:24:50 Stefan Roese wrote: > Currently the CFI driver issues both AMD and Intel reset commands. > This is because the driver doesn't know yet which chips are connected. > This dual reset seems to cause problems with the M29W128G chips as > reported by Richard Retanubun.

Re: [U-Boot] [PATCH] ARM AT91 new board EB+CPUx9K2

2009-10-28 Thread Jens Scharsig
Dear Wolfgang Denk, >> writel(AT91C_PA23_TXD2, ((AT91PS_PIO) AT91C_BASE_PIOA)->PIO_OER); >> >> like notation > > Close, but please also get rid of this "((AT91PS_PIO) AT91C_BASE_PIOA)" > thing, especialy the cast is nasty. Declare a real pointer variable to > the respective data structure, and use

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Simon Kagstrom
Thanks for the comments! On Wed, 28 Oct 2009 02:24:43 -0700 Prafulla Wadaskar wrote: > > > > > > #define UBOOT_CNTR 0 /* counter to use for uboot timer */ > > > +#define WATCHDOG_CNTR2 > > BTW, this declaration will not be required if you see struct kwtmr_register Well, to

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Wednesday, October 28, 2009 1:47 PM > To: Prafulla Wadaskar; u-boot@lists.denx.de > Subject: Re: [PATCH] arm:kirkwood: Add hardware watchdog > support for Marvell Kirkwood boards > > Hi again Pr

Re: [U-Boot] Pull request: u-boot-sparc

2009-10-28 Thread Daniel Hellstrom
Sorry, please pull from the master branch. Thank you, Daniel The following changes since commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f: Matthias Fuchs (1): License cleanup: Fix license header for some esd display configurations are available in the git repository at: git://www.d

Re: [U-Boot] [PATCH V3 1/4] add TI DA8xx support: DA8xx includes

2009-10-28 Thread Nick Thompson
Wolfgang Denk wrote: > Dear Nick Thompson, > > In message <4ae5dffd.2090...@gefanuc.com> you wrote: >> Provides initial support for TI OMAP-L1x/DA8xx SoC devices. >> See http://www.ti.com >> >> The DA8xx devices are similar to DaVinci devices but have a differing >> memory map and updated peripher

Re: [U-Boot] [PATCH 6/8] OMAP3 beagle Add usbtty configuration

2009-10-28 Thread Gupta, Ajay Kumar
Tom, > > > > We can either define CONFIG_MUSB_UDC or CONFIG_MUSB_HCD (host support), > so I think it's better to move host and device specific definitions within > > CONFIG_MUSB_UDC or CONFIG_MUSB_HCD. > > > > #ifdef CONFIG_USB_OMAP3 > > > > #ifdef CONFIG_MUSB_HCD > > > > #endif > > > > #ifdef C

Re: [U-Boot] [PATCH 4/8] OMAP3 Add usb device support

2009-10-28 Thread Gupta, Ajay Kumar
Tom, > > > > OMAP3EVM uses ISP1504 phy and so twl4030 related init is not required. > > Can we move this within #ifdef like, > > > > #ifndef CONFIG_OMAP3_EVM > > + if (twl4030_usb_ulpi_init()) { > > ... > > ... > > #endif > > > > > > -Ajay > > I will include this in the next revision.

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-10-28 Thread Simon Kagstrom
Hi again Prafulla and the list! On Mon, 28 Sep 2009 09:06:26 +0200 Simon Kagstrom wrote: > Initialize by calling kw_watchdog_init() with the number of seconds for > the watchdog to timeout. > > Signed-off-by: Simon Kagstrom Were there any particular problems with this patch that I should rewo

Re: [U-Boot] Query: Does Uboot support CFI flash driver forM29W128GH

2009-10-28 Thread Stefan Roese
Hi Prakash, On Wednesday 28 October 2009 07:23:31 prakash bedge wrote: > Thanks. I have seen that patch work and I will try it and hope it will work > for M29W128GH (ST make). > > But why I am not seeing the chip name and any instance of M29W128GH in > Uboot source code? > Is it because the chip

Re: [U-Boot] [PATCH] makefiles: fixes/cleanup for building build tools

2009-10-28 Thread Mike Frysinger
On Tuesday 27 October 2009 15:34:10 Scott Wood wrote: > On Mon, Oct 26, 2009 at 07:57:50PM -0400, Mike Frysinger wrote: > > perhaps it would make more sense to create a HOSTCOMPILE/HOSTLINK (or > > whatever) variable so this kind of thing isnt missed ? > > HOSTCOMPILE = $(HOSTCC) $(HOSTCFLAGS) > >

[U-Boot] [PATCH v3 2/2] NET: Base support for etsec2.0

2009-10-28 Thread Sandeep Gopalpet
1. Modified the tsec_mdio structure to include the new regs 2. Modified the MDIO_BASE_ADDR so that it will handle both older version and new version of etsec. Signed-off-by: Sandeep Gopalpet --- include/asm-ppc/immap_85xx.h |7 ++- include/configs/P1_P2_RDB.h |5 + include/tsec.

[U-Boot] [PATCH v3 1/2] NET: Move MDIO regs out of TSEC Space

2009-10-28 Thread Sandeep Gopalpet
Moved the mdio regs out of the tsec structure,and provided different offsets for tsec base and mdio base so that provision for etsec2.0 can be provided. This patch helps in providing the support for etsec2.0 In etsec2.0, the MDIO register space and the etsec reg space are different. Also, moved t

Re: [U-Boot] [PATCH] NET: Move MDIO regs out of TSEC Space

2009-10-28 Thread Kumar Gopalpet-B05799
>-Original Message- >From: Phillips Kim-R1AAHA >Sent: Wednesday, October 28, 2009 2:24 AM >To: Kumar Gopalpet-B05799 >Cc: u-boot@lists.denx.de >Subject: Re: [U-Boot] [PATCH] NET: Move MDIO regs out of TSEC Space > >On Sat, 24 Oct 2009 23:39:36 +0530 >Sandeep Gopalpet wrote: > >> @@ -30