Re: [U-Boot] lcd

2009-02-06 Thread Dirk Behme
Anusha Bhat wrote: > Hi, > How to add LCD SUPPORT (CONFIG_LCD) to opma3evm bootcode(u-boot).if i add > CONFIG_LCD in the omap3evm.h it gives error. > Because the display variables and funtions are not defined for omap. > I wanted to display a bmp logo on u-boot up Why do you cross post to omap-li

[U-Boot] lcd

2009-02-06 Thread Anusha Bhat
Hi, How to add LCD SUPPORT (CONFIG_LCD) to opma3evm bootcode(u-boot).if i add CONFIG_LCD in the omap3evm.h it gives error. Because the display variables and funtions are not defined for omap. I wanted to display a bmp logo on u-boot up ___ U-Boot mailing

Re: [U-Boot] U-Boot compile error

2009-02-06 Thread Afzal Nadirshah
Hi Feng, This is the link from which the Resource CD for the 460EX canyonlands evaluation kit, was downloaded : http://www.amcc.com/Embedded/Downloads/download.html?cat=1&family=19&ins=33 The u-boot source code was obtained from this CD. Regards, Afzal Nadirshah

[U-Boot] [PATCH] Nand driver for Nomadik SoC

2009-02-06 Thread Alessandro Rubini
From: Alessandro Rubini This driver implements the ECC algorithm described in the CPU data sheet and uses the OOB layout chosen in already-released development systems (shipped with a custom-made u-boot 1.3.1). Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- cpu/arm926ejs/nomadik/

[U-Boot] PATCH 8/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/include/configs/pdnb3.h b/include/configs/pdnb3.h index 4da401f..9ba0147 100644 --- a/include/configs/pdnb3.h +++ b/include/configs/pdnb3.h @@ -296,11 +296,12 @@ /* enable I2C and select the hardware/software driver */ #undef CONFIG_HARD_I2

[U-Boot] PATCH 7/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/include/configs/TK885D.h b/include/configs/TK885D.h index 14ff62c..cd45b95 100644 --- a/include/configs/TK885D.h +++ b/include/configs/TK885D.h @@ -102,12 +102,12 @@ /* enable I2C and select the hardware/software driver */ #undef CONFIG_HAR

[U-Boot] PATCH 6/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/include/configs/MPC8540ADS.h b/include/configs/MPC8540ADS.h index 0d03b0b..98e3f27 100644 --- a/include/configs/MPC8540ADS.h +++ b/include/configs/MPC8540ADS.h @@ -299,13 +299,13 @@ /* * I2C */ -#define CONFIG_FSL_I2C /* Use FSL co

[U-Boot] PATCH 5/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h index fbcbddb..407a162 100644 --- a/include/configs/IDS8247.h +++ b/include/configs/IDS8247.h @@ -72,10 +72,12 @@ /* enable I2C and select the hardware/software driver */ #undef CONFIG_

[U-Boot] PATCH 4/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c index da6cec1..f0c1771 100644 --- a/drivers/i2c/soft_i2c.c +++ b/drivers/i2c/soft_i2c.c @@ -1,4 +1,8 @@ /* + * Copyright (c) 2009 Sergey Kubushyn + * + * Changes for multibus/multiadapter I2C su

[U-Boot] PATCH 3/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c index da6cec1..f0c1771 100644 --- a/drivers/i2c/soft_i2c.c +++ b/drivers/i2c/soft_i2c.c @@ -1,4 +1,8 @@ /* + * Copyright (c) 2009 Sergey Kubushyn + * + * Changes for multibus/multiadapter I2C su

[U-Boot] PATCH 2/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- diff --git a/common/devices.c b/common/devices.c index 38f1bbc..073d89b 100644 --- a/common/devices.c +++ b/common/devices.c @@ -1,4 +1,8 @@ /* + * Copyright (C) 2009 Sergey Kubushyn + * + * Changes for multibus/multiadapter I2C support. + * * (C) Copyr

[U-Boot] PATCH 1/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
Signed-off-by: Sergey Kubushyn --- board/keymile/common/common.c | 40 ++- board/keymile/mgcoge/mgcoge.c |4 - board/keymile/mgsuvd/mgsuvd.c | 11 - board/lwmon/lwmon.c |2 +- board/lwmon/pcmcia.c|4 +- common/cmd_date.c |9 + common

[U-Boot] PATCH 0/8 Multi-adapter multi-bus I2C

2009-02-06 Thread ksi
This is the first attempt of multi-adapter multi-bus I2C subsystem rework for U-Boot. This batch deals with fsl_i2c and soft_i2c drivers. All (hopefully :) relevant parts are changed -- config files for all boards affected, lib_xxx, board/* etc. Please see illustrative section of MPC8548CDS.h con

Re: [U-Boot] PATCH: Fix MPC8260 with ethernet on SCC

2009-02-06 Thread Ben Warren
k...@koi8.net wrote: > This fixes MPC8260 compilation with ethernet on SCC. Probably was a > typo or something... > > Signed-off-by: Sergey Kubushyn > --- > diff -purN u-boot.orig/cpu/mpc8260/cpu.c u-boot/cpu/mpc8260/cpu.c > --- u-boot.orig/cpu/mpc8260/cpu.c 2009-02-02 13:39:05.0 -0800

[U-Boot] PATCH: Fix MPC8260 with ethernet on SCC

2009-02-06 Thread ksi
This fixes MPC8260 compilation with ethernet on SCC. Probably was a typo or something... Signed-off-by: Sergey Kubushyn --- diff -purN u-boot.orig/cpu/mpc8260/cpu.c u-boot/cpu/mpc8260/cpu.c --- u-boot.orig/cpu/mpc8260/cpu.c 2009-02-02 13:39:05.0 -0800 +++ u-boot/cpu/mpc8260/cpu.c

[U-Boot] [PATCH 2/9 v4] i.MX31: add a simple gpio driver

2009-02-06 Thread Anatolij Gustschin
From: Guennadi Liakhovetski This is a minimal driver, so far only managing output. It will be used by the mxc_spi.c driver. Signed-off-by: Guennadi Liakhovetski Signed-off-by: Anatolij Gustschin --- Changes since v1: alphabetical order, typo in copyright fixed, use ARRAY_SIZE. Changes since v

Re: [U-Boot] [PATCH 1/9 v4] i.MX31: fix SPI driver for shorter than 32 bit

2009-02-06 Thread Anatolij Gustschin
On Saturday 07 February 2009 12:29:06 am Jean-Christophe PLAGNIOL-VILLARD wrote: > On 00:09 Sat 07 Feb , Anatolij Gustschin wrote: > > From: Guennadi Liakhovetski > > > > Fix setting the SPI Control register, 8 and 16-bit transfers > > and a wrong pointer in the free routine in the mxc_spi dr

Re: [U-Boot] [PATCH 1/9 v4] i.MX31: fix SPI driver for shorter than 32 bit

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:09 Sat 07 Feb , Anatolij Gustschin wrote: > From: Guennadi Liakhovetski > > Fix setting the SPI Control register, 8 and 16-bit transfers > and a wrong pointer in the free routine in the mxc_spi driver. > > Signed-off-by: Guennadi Liakhovetski > Signed-off-by: Anatolij Gustschin > ---

[U-Boot] Pull request: nand flash

2009-02-06 Thread Scott Wood
The following changes since commit 9d8811c5bd2b7dd6307742cf22fbdb7953b6f816: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-usb are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git master Peter Tyser (2): NAND: Silence warning wh

Re: [U-Boot] [PATCH] nand_base: Add timeout for NAND reset command

2009-02-06 Thread Scott Wood
On Wed, Feb 04, 2009 at 01:47:22PM -0600, Peter Tyser wrote: > Without the timeout present an infinite loop can occur if the > NAND device is broken or not present. > > Signed-off-by: Peter Tyser Applied to u-boot-nand-flash. -Scott ___ U-Boot mailing

Re: [U-Boot] [PATCH] nand_base: Silence warning when CONFIG_SYS_NAND_QUIET_TEST

2009-02-06 Thread Scott Wood
On Wed, Feb 04, 2009 at 01:39:40PM -0600, Peter Tyser wrote: > Commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61 removed support > for disabling the "No NAND device found!!!" warning when > CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support > for silencing the warning. It was actually com

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Mike Frysinger
On Friday 06 February 2009 17:01:43 Peter Tyser wrote: > On Fri, 2009-02-06 at 16:51 -0500, Mike Frysinger wrote: > > On Friday 06 February 2009 14:59:10 Peter Tyser wrote: > > > On Fri, 2009-02-06 at 20:06 +0100, Wolfgang Denk wrote: > > > > In message Peter Tyser wrote: > > > > > Add a mkimage_wi

Re: [U-Boot] [PATCH v2] nand: Fixed invalid pointers to static relocated chip names

2009-02-06 Thread Scott Wood
On Mon, Jan 19, 2009 at 04:32:59PM +0200, Valeriy Glushkov wrote: > Dear Wolfgang, > > You are right, the patch was ugly. > The new one seems to be better. > > Signed-off-by: Valeriy Glushkov Applied to u-boot-nand-flash. -Scott ___ U-Boot mailing li

Re: [U-Boot] [PATCH v2][RFC] Add native win32 mkimage support

2009-02-06 Thread Mike Frysinger
On Friday 06 February 2009 16:53:03 Peter Tyser wrote: > On Fri, 2009-02-06 at 16:40 -0500, Mike Frysinger wrote: > > On Friday 06 February 2009 16:22:01 Peter Tyser wrote: > > > +uint16_t bswap_16(uint16_t __x) > > > +{ > > > + return (__x >> 8) | (__x << 8); > > > +} > > > + > > > +uint32_t bswap

[U-Boot] [PATCH 1/9 v4] i.MX31: fix SPI driver for shorter than 32 bit

2009-02-06 Thread Anatolij Gustschin
From: Guennadi Liakhovetski Fix setting the SPI Control register, 8 and 16-bit transfers and a wrong pointer in the free routine in the mxc_spi driver. Signed-off-by: Guennadi Liakhovetski Signed-off-by: Anatolij Gustschin --- Changes since v1: chose a simpler fix Changes since v2: fix the si

Re: [U-Boot] [patch V3] [3/3] firetux board support

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > +# GNU General Public License for more details. > +# > +# You should have received a copy of the GNU General Public License > +# along with this program; if not, write to the Free Software > +# Foundation, Inc., 59 Temple Place, S

Re: [U-Boot] [patch V3] [2/3] ip3912 network driver

2009-02-06 Thread Ben Warren
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 22:56 Sun 04 Jan , Jürgen Schöw wrote: > >> drivers/net/Makefile |1 + >> drivers/net/ip3912.c | 659 >> >> drivers/net/ip3912.h | 174 ++ >> >> diff --g

Re: [U-Boot] [patch V3] [2/3] ip3912 network driver

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:56 Sun 04 Jan , Jürgen Schöw wrote: > drivers/net/Makefile |1 + > drivers/net/ip3912.c | 659 > > drivers/net/ip3912.h | 174 ++ > > diff --git a/drivers/net/Makefile b/drivers/net/Makefile > i

Re: [U-Boot] [patch V3] [1/3] PNX8181 SOC support

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:54 Sun 04 Jan , Jürgen Schöw wrote: > cpu/arm926ejs/pnx8181/Makefile | 45 +++ > cpu/arm926ejs/pnx8181/timer.c | 141 > drivers/i2c/Makefile |1 + > drivers/i2c/pnx8181_i2c.c | 304 + > > diff --git a/cpu/arm926ejs/pnx8181/

Re: [U-Boot] [PATCH] Add support W90P710 ARM SoC from Nuvoton

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:45 Tue 20 Jan , Ben Warren wrote: > Hi Konstantin, > > On Tue, Jan 20, 2009 at 3:46 AM, Konstantin Vovk wrote: > > > Add support W90P710 ARM SoC from Nuvoton > > Add W90P1 board based on W90P710 > > > > Signed-off-by: Konstantin Vovk > > --- > > MAKEALL

[U-Boot] [GIT PULL] Please pull coldfire tree

2009-02-06 Thread John Rigby
The following changes since commit 9d8811c5bd2b7dd6307742cf22fbdb7953b6f816: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-usb are available in the git repository at: git://git.denx.de/u-boot-coldfire.git master Richard Retanubun (8): Coldfire: Fix ha

Re: [U-Boot] [PATCH] Create configuration option for restricted ns16550 functions

2009-02-06 Thread Ron Madrid
--- On Fri, 1/30/09, Ron Madrid wrote: > From: Ron Madrid > Subject: [PATCH] Create configuration option for restricted ns16550 functions > To: u-boot@lists.denx.de > Cc: "Ron Madrid" > Date: Friday, January 30, 2009, 3:45 PM > This patch will create a configuration option for a minimum > confi

Re: [U-Boot] [PATCH] ARM:OMAP3:Zoom1: Add nand unlock option

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:39 Mon 02 Feb , Nishanth Menon wrote: > >From d391faf8ca68fcddc8569b03cf24d151d4d3b937 Mon Sep 17 00:00:00 2001 > From: Nishanth Menon > Date: Mon, 2 Feb 2009 18:20:12 -0600 > Subject: [PATCH] ARM:OMAP3:Zoom1: Add nand unlock option > > Enable NAND_UNLOCK option for unlocking nand for >

Re: [U-Boot] [PATCH 0/9 v3] ARM: Support for splashimage om i.MX31-based phycore "eet" variant

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:25 Fri 06 Feb , Anatolij Gustschin wrote: > Hello all, > > On Friday 06 February 2009 10:37:23 am Guennadi Liakhovetski wrote: > > Hi again, > > > > this is version 3 of the patch-series, that adds support for the graphics > > engine on i.MX31 SoC. Changes since v1 and v2 will be reflect

Re: [U-Boot] [PATCH] Blackfin: disable NetBSD by default since no port exists

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:04 Thu 05 Feb , Mike Frysinger wrote: > Signed-off-by: Mike Frysinger > --- > common/cmd_bootm.c |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c > index 9055672..c814c68 100644 > --- a/common/cmd_bootm.c > +++ b/com

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 16:51 -0500, Mike Frysinger wrote: > On Friday 06 February 2009 14:59:10 Peter Tyser wrote: > > On Fri, 2009-02-06 at 20:06 +0100, Wolfgang Denk wrote: > > > In message Peter Tyser wrote: > > > > Add a mkimage_win32.exe build target which can produce a native > > > > win32 mki

Re: [U-Boot] [PATCH] i.MX31: fir imx31_phycore to work after Linux reboot

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
maybe fix to fir :) On 10:03 Fri 06 Feb , Guennadi Liakhovetski wrote: > Upon power on i.MX31 enables most peripheral clocks, Linux disables the ones > that it's not using to save power. Until now U-Boot on imx31_phycore didn't > enable the I2C clock explicitly, so, after a reboot under Linux,

Re: [U-Boot] [PATCH v2][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 16:40 -0500, Mike Frysinger wrote: > On Friday 06 February 2009 16:22:01 Peter Tyser wrote: > > Add a mkimage_win32.exe build target which can produce a native > > win32 mkimage executable using the MinGW toolchain. The > > mkimage_win32.exe binary is generated when the MINGW

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Mike Frysinger
On Friday 06 February 2009 14:59:10 Peter Tyser wrote: > On Fri, 2009-02-06 at 20:06 +0100, Wolfgang Denk wrote: > > In message Peter Tyser wrote: > > > Add a mkimage_win32.exe build target which can produce a native > > > win32 mkimage executable using the MinGW toolchain. The > > > mkimage_win32

Re: [U-Boot] [PATCH v2][RFC] Add native win32 mkimage support

2009-02-06 Thread Mike Frysinger
On Friday 06 February 2009 16:22:01 Peter Tyser wrote: > Add a mkimage_win32.exe build target which can produce a native > win32 mkimage executable using the MinGW toolchain. The > mkimage_win32.exe binary is generated when the MINGW_COMPILE > environment variable is defined. The mkimage_win32.ex

Re: [U-Boot] [PATCH 1/9 v3] i.MX31: fix SPI driver for shorter than 32 bit transfers

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
+ > + /* Check if we're only transfering 8 or 16 bits */ > + if (!i) { > + if (bitlen < 9) > + *(u8 *)din = data; > + else if (bitlen < 17) > + *(u16 *)din = data; > +

Re: [U-Boot] [PATCH 2/9 v3] i.MX31: add a simple gpio driver

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:37 Fri 06 Feb , Guennadi Liakhovetski wrote: > This is a minimal driver, so far only managing output. It will > be used by the mxc_spi.c driver. > > Signed-off-by: Guennadi Liakhovetski > --- > > Changes since v1: alphabetical order, typo in copyright fixed, use > ARRAY_SIZE. > Change

Re: [U-Boot] [PATCH 3/9 v3] i.MX31: support GPIO as a chip-select in the mxc_spi driver

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:37 Fri 06 Feb , Guennadi Liakhovetski wrote: > Some SPI devices have special requirements on chip-select handling. > With this patch we can use a GPIO as a chip-select and strictly follow > the SPI_XFER_BEGIN and SPI_XFER_END flags. > > Signed-off-by: Guennadi Liakhovetski > --- > > C

[U-Boot] [PATCH v2][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
Add a mkimage_win32.exe build target which can produce a native win32 mkimage executable using the MinGW toolchain. The mkimage_win32.exe binary is generated when the MINGW_COMPILE environment variable is defined. The mkimage_win32.exe binary can be used by those who use Windows as an OS build en

Re: [U-Boot] [PATCH 5/9 v3] ARM: remove unused variable

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:37 Fri 06 Feb , Guennadi Liakhovetski wrote: > The "size" variable in start_armboot() in lib_arm/board.c is only really > used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be > eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.) > > Signed-off-by:

Re: [U-Boot] [PATCH] at91: Factored out common serial hardware initialization

2009-02-06 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090205130112.gc4...@game.jcrosoft.org> you wrote: > > > Created a new function at91_serial_hw_init() which sets up the > > dedicated PIO pins of several at91 SoC according to CONFIG_USARTx. > > > > Please note that the used pins for serial comm

Re: [U-Boot] [PATCH 9/9 v3] ARM: add an "eet" variant of the imx31_phycore board

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:38 Fri 06 Feb , Guennadi Liakhovetski wrote: > The "eet" variant of the imx31_phycore board has an OLED display, using a > s6e63d6 display controller on the first SPI interface, using GPIO57 as a > chip-select for it. With this configuration you can display 256 colour BMP > images in 16-b

Re: [U-Boot] [PATCH v2] 86xx: Update CPU info output on bootup

2009-02-06 Thread Kumar Gala
On Feb 6, 2009, at 3:09 PM, Peter Tyser wrote: > On Fri, 2009-02-06 at 15:03 -0600, Kumar Gala wrote: >> On Feb 6, 2009, at 2:30 PM, Peter Tyser wrote: >> >>> L1:D-cache 32 KB enabled >>> I-cache 32 KB enabled >> >> a nit but can we get I-cache to line up w/D-Cache > > Hmm, they look lin

Re: [U-Boot] [PATCH v2] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 15:03 -0600, Kumar Gala wrote: > On Feb 6, 2009, at 2:30 PM, Peter Tyser wrote: > > > L1:D-cache 32 KB enabled > > I-cache 32 KB enabled > > a nit but can we get I-cache to line up w/D-Cache Hmm, they look lined up in my serial console output and patch: L1:D-c

Re: [U-Boot] DaVinci Evaluation Platforms

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 19:56 Fri 06 Feb , Ing.G.Morandi (Portatile) wrote: > Dear Friends, > > I apologize if my request would probably result out of topics here, but I > would like to have some suggestions from You. > > We are running into a new development of a video platform based on 90% on > DaVinci family

Re: [U-Boot] [PATCH v2] 86xx: Update CPU info output on bootup

2009-02-06 Thread Kumar Gala
On Feb 6, 2009, at 2:30 PM, Peter Tyser wrote: > L1:D-cache 32 KB enabled > I-cache 32 KB enabled a nit but can we get I-cache to line up w/D-Cache > L2:512 KB enabled - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.d

[U-Boot] [PATCH v2] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
- Update style of 86xx CPU information on boot to more closely match 85xx boards - Fix detection of 8641/8641D - Use strmhz() to display frequencies - Display L1 information - Display L2 cache size - Fixed CPU/SVR version output == Before == Freescale PowerPC CPU: Core: E600 Core 0, Version:

Re: [U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-06 Thread Kumar Gala
On Feb 6, 2009, at 1:47 PM, Peter Tyser wrote: >>> While we're discussing it I had 2 other questions: >>> 1. Can anyone at Freescale give a hint about how to tell the >>> difference >>> between the 8640 and 8641? >> >> why do you need to? If I'm not mistaken the 8640 is identical to >> 8641 >>

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 20:06 +0100, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <1233941433-7943-1-git-send-email-pty...@xes-inc.com> you wrote: > > Add a mkimage_win32.exe build target which can produce a native > > win32 mkimage executable using the MinGW toolchain. The > > mkimage_w

Re: [U-Boot] [PATCH 1/1] Setup extra MIMC200 chip selects

2009-02-06 Thread Mark Jackson
Wolfgang Denk wrote: > Dear Mark Jackson, > > In message <492a8d60.3090...@mimc.co.uk> you wrote: >> Added code to setup the extra Flash and FRAM chip selects >> as used on the MIMC200 board. >> >> Signed-off-by: Mark Jackson >> >> --- >> cpu/at32ap/cpu.c | 14 ++ >> 1 files change

Re: [U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 13:01 -0600, Kumar Gala wrote: > On Feb 6, 2009, at 12:41 PM, Peter Tyser wrote: > > > On Thu, 2009-02-05 at 20:13 -0600, Kumar Gala wrote: > >> On Feb 5, 2009, at 1:52 PM, Peter Tyser wrote: > >> > >>> > >>> CPU: 8641D, Version: 2.1, (0x80900121) > >>> Core: E600 Core 0,

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-06 Thread Jerry Van Baren
Andy Fleming wrote: > On Fri, Feb 6, 2009 at 7:32 AM, Jerry Van Baren > wrote: >> Peter Tyser wrote: > The problem is that you don't always know which interface you have hooked up. So u-boot tries the one set in ethact, and then the next, etc. With the old method, the penalty fo

[U-Boot] Pull request u-boot-blackfin.git

2009-02-06 Thread Mike Frysinger
The following changes since commit 9d8811c5bd2b7dd6307742cf22fbdb7953b6f816: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-usb are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Mike Frysinger (7): Blackfin: update an

[U-Boot] DaVinci Evaluation Platforms

2009-02-06 Thread Ing.G.Morandi (Portatile)
Dear Friends, I apologize if my request would probably result out of topics here, but I would like to have some suggestions from You. We are running into a new development of a video platform based on 90% on DaVinci family devices. We have also found the DM6446 DVEVM as main candidate to star

Re: [U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Wolfgang Denk
Dear Peter Tyser, In message <1233941433-7943-1-git-send-email-pty...@xes-inc.com> you wrote: > Add a mkimage_win32.exe build target which can produce a native > win32 mkimage executable using the MinGW toolchain. The > mkimage_win32.exe binary is generated when the MINGW_COMPILE > environment va

Re: [U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-06 Thread Kumar Gala
On Feb 6, 2009, at 12:41 PM, Peter Tyser wrote: > On Thu, 2009-02-05 at 20:13 -0600, Kumar Gala wrote: >> On Feb 5, 2009, at 1:52 PM, Peter Tyser wrote: >> >>> >>> CPU: 8641D, Version: 2.1, (0x80900121) >>> Core: E600 Core 0, Version: 0.2, (0x80040202) >> >> Since you are touching things here.

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-06 Thread Andy Fleming
On Fri, Feb 6, 2009 at 7:32 AM, Jerry Van Baren wrote: > Peter Tyser wrote: >> >>> The problem is that you don't always know which interface you have >>> hooked up. So u-boot tries the one set in ethact, and then the next, >>> etc. With the old method, the penalty for being wrong was quite high

Re: [U-Boot] [PATCH] 86xx: Update CPU info output on bootup

2009-02-06 Thread Peter Tyser
On Thu, 2009-02-05 at 20:13 -0600, Kumar Gala wrote: > On Feb 5, 2009, at 1:52 PM, Peter Tyser wrote: > > > > > CPU: 8641D, Version: 2.1, (0x80900121) > > Core: E600 Core 0, Version: 0.2, (0x80040202) > > Since you are touching things here.. mind fixing the Version print. > Its clearly not

Re: [U-Boot] [PATCH] at91: Factored out common serial hardware initialization

2009-02-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:12 Fri 06 Feb , Michael Roth wrote: > Created a new function at91_serial_hw_init() which sets up the > dedicated PIO pins of several at91 SoC according to CONFIG_USARTx. > > Please note that the used pins for serial communication varies on > different at91 SoC independently of the logic

Re: [U-Boot] [PATCH 0/9 v3] ARM: Support for splashimage om i.MX31-based phycore "eet" variant

2009-02-06 Thread Guennadi Liakhovetski
On Fri, 6 Feb 2009, Anatolij Gustschin wrote: > Hello all, > > On Friday 06 February 2009 10:37:23 am Guennadi Liakhovetski wrote: > > Hi again, > > > > this is version 3 of the patch-series, that adds support for the graphics > > engine on i.MX31 SoC. Changes since v1 and v2 will be reflected in

[U-Boot] [PATCH][RFC] Add native win32 mkimage support

2009-02-06 Thread Peter Tyser
Add a mkimage_win32.exe build target which can produce a native win32 mkimage executable using the MinGW toolchain. The mkimage_win32.exe binary is generated when the MINGW_COMPILE environment variable is defined. The mkimage_win32.exe binary can be used by those who use Windows as an OS build en

Re: [U-Boot] [PATCH 0/9 v3] ARM: Support for splashimage om i.MX31-based phycore "eet" variant

2009-02-06 Thread Anatolij Gustschin
Hello all, On Friday 06 February 2009 10:37:23 am Guennadi Liakhovetski wrote: > Hi again, > > this is version 3 of the patch-series, that adds support for the graphics > engine on i.MX31 SoC. Changes since v1 and v2 will be reflected in each > single patch. As all correction requests have been ad

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-06 Thread Ben Warren
Jerry Van Baren wrote: > Wolfgang Denk wrote: > >> Dear Scott Wood, >> >> In message <498a0d5c.5060...@freescale.com> you wrote: >> >>> Andy Fleming wrote: >>> HmmmI made that change for a reason. Waiting for autonegotiation to finish on a tsec with no link was quite t

Re: [U-Boot] U-Boot compile error

2009-02-06 Thread Feng Kan
Hi Afzal: Would you please send me the link to the files you got. I can help you check it out. Feng Kan AMCC Software Engineering -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Afzal Nadirshah Sent: Thursday, February 05, 2009 9

Re: [U-Boot] CONFIG_MP affects ability to erase upper portions of flash on 8572

2009-02-06 Thread Peter Tyser
On Fri, 2009-02-06 at 10:51 -0500, Scott Coulter wrote: > Kumar, > > > This is correct. As the only 8572 board that exists in the u-boot > > tree is for the Freescale MPC8572DS I didn't query anyone else on > > possible impact of the change. > > Certainly not a problem. Moving the flash add

Re: [U-Boot] Flag -mno-cache-volatile to bypass the cache

2009-02-06 Thread ivanchuklist ivanchu
I feel like a fool :S. If i didn't miss anything spi_xfer is defined in include/spi.h and that function is implemented in cpu related code. I see also that atmel has put their code in drivers/spi and drivers/mmc. Finally i took as example cpu/pxa/mmc.c where i found functions (defined in include/mm

Re: [U-Boot] [PATCH 7/9 v3] LCD: support 8bpp BMPs on 16bpp displays

2009-02-06 Thread Guennadi Liakhovetski
On Fri, 6 Feb 2009, Anatolij Gustschin wrote: > Guennadi Liakhovetski wrote: > > This patch also simplifies some ifdefs in lcd.c, introduces a generic > > vidinfo_t, which new drivers are encouraged to use and old drivers to switch > > over to. > > > > Signed-off-by: Guennadi Liakhovetski > > --

Re: [U-Boot] [PATCH 8/9 v3] video: add an i.MX31 framebuffer driver

2009-02-06 Thread Anatolij Gustschin
Guennadi Liakhovetski wrote: > Add a driver for the Synchronous Display Controller and the Display > Interface on i.MX31, using IPU for DMA channel setup. So far only > displaying of bitmaps is supported, no text output. > > Signed-off-by: Guennadi Liakhovetski > --- > drivers/video/Makefile |

Re: [U-Boot] CRAMFS byte oder question

2009-02-06 Thread Wolfgang Denk
Dear hendrik, In message <498c5af5.1010...@gmail.com> you wrote: > > The MPC8548 board i inherited used to boot a CRAMFS that was made by > mkcramfs in ELDK4.1 using the "-r" option to reverse endian-ness of > filesystem I have switched over ti ELDK4.2 and noted that there is no > longer a "-r

Re: [U-Boot] [PATCH 7/9 v3] LCD: support 8bpp BMPs on 16bpp displays

2009-02-06 Thread Anatolij Gustschin
Guennadi Liakhovetski wrote: > This patch also simplifies some ifdefs in lcd.c, introduces a generic > vidinfo_t, which new drivers are encouraged to use and old drivers to switch > over to. > > Signed-off-by: Guennadi Liakhovetski > --- > > Changes since v1: no changes. > > common/lcd.c |

[U-Boot] [PATCH 1/2] fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller

2009-02-06 Thread Kumar Gala
If we only have one controller we can completely ignore how memctl_intlv_ctl is set. Otherwise other levels of code get confused and think we have twice as much memory. Signed-off-by: Kumar Gala --- cpu/mpc8xxx/ddr/options.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --

[U-Boot] [PATCH 2/2] 85xx: Fix how we map DDR memory

2009-02-06 Thread Kumar Gala
Previously we only allowed power-of-two memory sizes and didnt handle >2G of memory. Now we will map up to CONFIG_MAX_MEM_MAPPED and should properly handle any size that we can make in the TLBs we have available to us Signed-off-by: Kumar Gala --- This depends on the following two patches: * Ad

Re: [U-Boot] CONFIG_MP affects ability to erase upper portions of flash on 8572

2009-02-06 Thread Scott Coulter
Kumar, > This is correct. As the only 8572 board that exists in the u-boot > tree is for the Freescale MPC8572DS I didn't query anyone else on > possible impact of the change. Certainly not a problem. Moving the flash address was relatively painless. I just wanted to post in case someone b

[U-Boot] [PATCH 1/2] pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity

2009-02-06 Thread Kumar Gala
The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and can be confusing when reading the code. Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used for system memory mapping purposes. Signed-off-by: Kumar Gala --- board/MAI/AmigaOneG3SE/articiaS_pci.c|2 +- b

[U-Boot] [PATCH 2/2] pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching

2009-02-06 Thread Kumar Gala
When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys} we should give preference to memory regions that aren't system memory. Its possible that we have over mapped system memory in the regions and we want to avoid depending on the order of the regions. Signed-off-by: Kumar Gala

Re: [U-Boot] [PATCH] pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity

2009-02-06 Thread Kumar Gala
On Jan 23, 2009, at 2:52 PM, Kumar Gala wrote: > The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and > can be confusing when reading the code. > > Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used > for system memory mapping purposes. > > Signed-off-by: Kumar Gal

Re: [U-Boot] [PATCH 02/11] mpc8641hpcn: Set up outbound pci windows before inbound

2009-02-06 Thread Kumar Gala
On Dec 3, 2008, at 11:04 PM, Becky Bruce wrote: > Because the inbound pci windows are mapped generously, set up > the more specific outbound windows first. This way, when we > search the pci regions for something, we will hit on the more > specific region. This can actually be a problem on syst

[U-Boot] CRAMFS byte oder question

2009-02-06 Thread hendrik
Hi All The MPC8548 board i inherited used to boot a CRAMFS that was made by mkcramfs in ELDK4.1 using the "-r" option to reverse endian-ness of filesystem I have switched over ti ELDK4.2 and noted that there is no longer a "-r" for mkcramfs. I compile linux 2.6.27 using ppc_85xx cross compiler

Re: [U-Boot] [PATCH 6/9 v3] Add 16bpp BMP support

2009-02-06 Thread Anatolij Gustschin
Guennadi Liakhovetski wrote: > From: Mark Jackson > > This patch adds 16bpp BMP support to the common lcd code. > > Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code. > > At the moment it's only been tested on the MIMC200 AVR32 board, but extending > this to other platforms

Re: [U-Boot] [PATCH 4/9 v3] A driver for the S6E63D6 SPI display controller from Samsung

2009-02-06 Thread Anatolij Gustschin
Guennadi Liakhovetski wrote: > This is a driver for the S6E63D6 SPI OLED display controller from Samsung. > It only provides access to controller's registers so the client can freely > configure it. > > Signed-off-by: Guennadi Liakhovetski > --- > drivers/video/Makefile |1 + > drivers/vid

[U-Boot] [PATCH] at91: Factored out common serial hardware initialization

2009-02-06 Thread Michael Roth
Created a new function at91_serial_hw_init() which sets up the dedicated PIO pins of several at91 SoC according to CONFIG_USARTx. Please note that the used pins for serial communication varies on different at91 SoC independently of the logic functionality equality of the serial hardware. But for

[U-Boot] [PATCH] at91: CONFIG_USART3 renamed to CONFIG_USART_DBGU

2009-02-06 Thread Michael Roth
In reality there are only three usarts on at91 SoC and one serial debug port called DBGU which is a reduced functionality usart. For reasons of clarity and consistency the prefix USART is maintained independently the fact that normally the debug port is just called DBGU. Signed-off-by: Michael Ro

[U-Boot] [PATCH v2 0/2] at91: serial initialization cleanup

2009-02-06 Thread Michael Roth
Hello, I took up the suggestions from Jean-Christophe and the discussion in http://lists.denx.de/pipermail/u-boot/2008-November/043131.html and reworked the patch so that cpu specfic code goes to specfic files. This results to less ifdefs. An argument to at91_serial_hw_init() is not needed becau

[U-Boot] [PATCH] ppc: Fix roll over bug in flush_cache()

2009-02-06 Thread Kumar Gala
If we call flush_cache(0xf000, 0x1000) it would never terminate the loop since end = 0x and we'd roll over our counter from 0xfe0 to 0 (assuming a 32-byte cache line) Signed-off-by: Kumar Gala --- lib_ppc/cache.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) di

Re: [U-Boot] powerpc flush_cache() roll over bug

2009-02-06 Thread Kumar Gala
On Feb 6, 2009, at 7:59 AM, Jerry Van Baren wrote: > Kumar Gala wrote: >> My brian stopped working but I figured I'd send my issue and >> hopefully I'll wake up and someone will have a solution for me. > > Talk about sweet dreams! :-D See it worked. I work up and had this email in my inbox

Re: [U-Boot] powerpc flush_cache() roll over bug

2009-02-06 Thread Jerry Van Baren
Kumar Gala wrote: > My brian stopped working but I figured I'd send my issue and hopefully > I'll wake up and someone will have a solution for me. Talk about sweet dreams! :-D > The problem is we can call flush_cache(0xf000, 0x1000) which will > never exit the loop: > > void flush_cache

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-06 Thread Jerry Van Baren
Peter Tyser wrote: > On Wed, 2009-02-04 at 17:07 -0600, Andy Fleming wrote: >> On Wed, Feb 4, 2009 at 3:26 PM, Wolfgang Denk wrote: >>> Dear Andy Fleming, >>> >>> In message <2acbd3e40902041320l3bce93c1p989c4c33ca8e...@mail.gmail.com> you >>> wrote: HmmmI made that change for a reason.

[U-Boot] Uncompressing Kernel Image ... Error: Bad gzipped data

2009-02-06 Thread Gurumurthy Gowdar
Hi, We are using ELDK 4.0 with U-boot-1.1.4 and Linux kernel 2.6.15 we have ported u-boot to our MPC7447a based VME SBC board, it is working fine. but now we have compiled Linux kernel for our board. we have used u-boot mkimage utility to create image file, by using following commmand ./tools/

Re: [U-Boot] [PATCH] tsec: Wait for auto-negotiation to complete without link

2009-02-06 Thread Jerry Van Baren
Wolfgang Denk wrote: > Dear Scott Wood, > > In message <498a0d5c.5060...@freescale.com> you wrote: >> Andy Fleming wrote: >>> HmmmI made that change for a reason. Waiting for autonegotiation >>> to finish on a tsec with no link was quite tiresome. If you've hooked >>> up the 4th tsec, and tr

[U-Boot] Use of Netconsole

2009-02-06 Thread Piyush Shah
Hi all, I had read somewhere that if, while using netconsole, we dont set ncip, the messages are broadcast. In that case, if I send commands to my processor from my Linux host, since ncip is not set, will the processor accept them? If not, what am I supposed to do? My requirement is that, when I p

Re: [U-Boot] [PATCH] i.MX31: fir imx31_phycore to work after Linux reboot

2009-02-06 Thread Guennadi Liakhovetski
On Fri, 6 Feb 2009, Wolfgang Denk wrote: > Dear Guennadi Liakhovetski, > > In message you wrote: > > Upon power on i.MX31 enables most peripheral clocks, Linux disables the ones > > Why does U-Boot do that? i.MX31 does that - the CPU, not U-Boot. I.e., this is the default power-on mode. > Th

Re: [U-Boot] [PATCH] i.MX31: fir imx31_phycore to work after Linux reboot

2009-02-06 Thread Wolfgang Denk
Dear Guennadi Liakhovetski, In message you wrote: > Upon power on i.MX31 enables most peripheral clocks, Linux disables the ones Why does U-Boot do that? This is against U-Boot design guidelines which state that U-Boot shall only activate such peripherals that it uses itself. > didn't use I2C,

Re: [U-Boot] Kernel Uncompressing failed under Uboot

2009-02-06 Thread Jean-Michel Hautbois
2009/2/6 Gurumurthy Gowdar > ## Booting image at 0010 ... > Image Name: linux_svme7447a > Created: 2009-02-05 16:57:46 UTC > Image Type: PowerPC Linux Kernel Image (gzip compressed) > Data Size:1342088 Bytes = 1.3 MB > Load Address: > Entry Point:

[U-Boot] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2009-02-06 Thread Stefan Roese
The following changes since commit 9d8811c5bd2b7dd6307742cf22fbdb7953b6f816: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-usb are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Dirk Eibach (1): ppc4xx: Make PCIE suppor

Re: [U-Boot] [PATCH] ppc4xx: Make PCIE support selectable

2009-02-06 Thread Stefan Roese
On Tuesday 03 February 2009, Dirk Eibach wrote: > On some platforms PCIE support is not required, but would be included > because the cpu supports it. To reduce fooprint it is now configurable > via CONFIG_PCI_DISABLE_PCIE. Applied to ppc4xx/master. Thanks. BTW: Please CC me on 4xx related patche

  1   2   >