Re: [U-Boot] [PATCH] at91: Choose environment variables location within make config target

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:27 Fri 05 Dec , Nicolas Ferre wrote: > This patch adds the possiblity to choose the media where the environment will > be located. This allow to choose this fundamental configuration without > editing > config files. > > Documentation file added. > > Signed-off-by: Nicolas Ferre <[EMAIL

Re: [U-Boot] [PATCH] r2dplus fix register access

2008-12-06 Thread Nobuhiro Iwamatsu
On Fri, 5 Dec 2008 07:27:37 +0100 Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > board/renesas/r2dplus/lowlevel_init.S |2 +- > drivers/pci/pci_sh7751.c |4 ++-- > 2 files changed, 3 i

Re: [U-Boot] [PATCH] r2dplus/lowlevel_init: coding style fix

2008-12-06 Thread Nobuhiro Iwamatsu
On Tue, 2 Dec 2008 07:40:03 +0100 Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > board/renesas/r2dplus/lowlevel_init.S | 42 > 1 files changed, 21 insertions(+), 21 delet

[U-Boot] AT91 Pull request

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, Please pull The following changes since commit 90665e3d97948000f98846ded37c921c7ae67dd7: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-at91 are available in the git repository at: git://git.denx.de/u-boot-at91.git master Nicolas Ferre (1): a

Re: [U-Boot] [PATCH-OMAP3] OMAP3: Check for MMC card

2008-12-06 Thread Jason Kridner
I've run u-boot with all of these patches and see it working well on Beagle. On Dec 6, 2008, at 1:00 AM, Dirk Behme wrote: > mmc_init was always returning success -- now returns failure if > no card is present. > > Signed-off-by: Steve Sakoman <[EMAIL PROTECTED]> > Signed-off-by: Dirk Behme <[E

Re: [U-Boot] [PATCH-OMAP3] OMAP3: Enable command parser and add boot scripting

2008-12-06 Thread Jason Kridner
Is it possible to rename boot.script to boot.scr or something with an 8.3 filename, in case someone formats their SD card as msdos, rather than vfat? On Dec 6, 2008, at 1:03 AM, Dirk Behme wrote: > Enable "hush" command parser and set default environment to boot > from MMC if > a bootable c

Re: [U-Boot] [PATCH] net/net.c: add get_timer_ms()

2008-12-06 Thread Daniel Mack
On Fri, Dec 05, 2008 at 10:16:22PM +0100, Wolfgang Denk wrote: > > Ok. Do you want me to submit some "#ifdef MONAHANS" patch for the pxa > > ge_timer() function or is anyone working on major reworks for this > > anyway? > > You best coordinate this with Jean-Christophe, the PXA custodian. I guess

Re: [U-Boot] [PATCH] add support for Toradex Colibri PXA300 module

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 18:42 Sat 29 Nov , Daniel Mack wrote: > Hi, > > this patch adds support for Toradex' "Colibri PXA300" module. I had to > modify the AX88796 driver a bit to make it work, but that goes in a > different patch. > some general comment please becarefull on the 80 chars limit please check all th

Re: [U-Boot] [PATCH] add support for Toradex Colibri PXA300 module

2008-12-06 Thread Daniel Mack
Hi, On Sat, Dec 06, 2008 at 06:11:04PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 18:42 Sat 29 Nov , Daniel Mack wrote: > > Hi, > > > > this patch adds support for Toradex' "Colibri PXA300" module. I had to > > modify the AX88796 driver a bit to make it work, but that goes in a > >

Re: [U-Boot] [PATCH-OMAP3 2/2] OMAP3: Convert register access to structure style, part #2

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
> === > --- u-boot-arm.orig/include/asm-arm/arch-omap3/omap3.h > +++ u-boot-arm/include/asm-arm/arch-omap3/omap3.h > @@ -75,7 +75,15 @@ > > /* 32KTIMER */ > #define SYNC_32KTIMER_BASE 0x4832 > -#define S32K_CR

Re: [U-Boot] [PATCH-OMAP3] OMAP3: Enable command parser and add boot scripting

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:38 Sat 06 Dec , Jason Kridner wrote: > Is it possible to rename boot.script to boot.scr or something with an > 8.3 filename, in case someone formats their SD card as msdos, rather > than vfat? > Ack Best Regards, J. ___ U-Boot mailing list

Re: [U-Boot] [PATCH-OMAP3] OMAP3: Check for MMC card

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
> - fat_register_device(&mmc_blk_dev, 1); > - return 0; > + if (configure_mmc(&cur_card_data) == 1) { > + mmc_blk_dev.if_type = IF_TYPE_MMC; > + mmc_blk_dev.part_type = PART_TYPE_DOS; > + mmc_blk_dev.dev = 0; > + mmc_blk_dev.lun = 0; > +

Re: [U-Boot] [patch] make hello world example work for at91sam9261ek and make readme clearer about this

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 09:41 Fri 05 Dec , Remy Bohmer wrote: > Hello Jean-Christophe, > > >> @@ -33,9 +33,13 @@ ifeq ($(ARCH),arm) > >> ifeq ($(BOARD),omap2420h4) > >> LOAD_ADDR = 0x8030 > >> else > >> +ifeq ($(BOARD),at91sam9261ek) > >> +LOAD_ADDR = 0x2140 > >> +else > >> LOAD_ADDR = 0xc10 > >>

Re: [U-Boot] [PATCH v3] i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:28 Wed 03 Dec , Timur Tabi wrote: > All implementations of the functions i2c_reg_read() and i2c_reg_write() are > identical. We can save space and simplify the code by converting these > functions into inlines and putting them in i2c.h. > > Signed-off-by: Timur Tabi <[EMAIL PROTECTED]>

Re: [U-Boot] [PATCH] video: Add new driver for Silicon Motion SM501/SM502 Part 1/2

2008-12-06 Thread Anatolij Gustschin
Hello Stefan, please see comments below: Stefan Althoefer wrote: > [PATCH] video: Add new driver for Silicon Motion SM501/SM502 this line duplicates the subject, so simply remove it. > This patch adds a new driver for SM501/SM502. Compared to the > existing driver it allows dynamic selection of

Re: [U-Boot] [PATCH-OMAP3 2/2] OMAP3: Add Pandora configuration

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:14 Wed 26 Nov , Grazvydas Ignotas wrote: > This patch adds configuration file for OMAP3 Pandora. > > Signed-off-by: Grazvydas Ignotas <[EMAIL PROTECTED]> > --- > include/configs/omap3_pandora.h | 302 > +++ > 1 files changed, 302 insertions(+), 0 de

Re: [U-Boot] [PATCH-OMAP3 1/2] OMAP3: Add Pandora board files

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
> diff --git a/board/omap3/pandora/pandora.c b/board/omap3/pandora/pandora.c > new file mode 100644 > index 000..7c0c5b4 > --- /dev/null > +++ b/board/omap3/pandora/pandora.c > @@ -0,0 +1,124 @@ > +/* Copyright? > + * Maintainer : Grazvydas Ignotas <[EMAIL PROTECTED]> > + * > + * Derived from B

Re: [U-Boot] [patch] Remove redundant armv4 flag from arm926ejs compile flags

2008-12-06 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:25 Thu 04 Dec , Remy Bohmer wrote: > Currently the arm926ejs tree has the armv4 option set during compilation. > This flag does not belong here because a arm926 CPU is always a armv5 CPU. > > Signed-off-by: Remy Bohmer <[EMAIL PROTECTED]> > --- > cpu/arm926ejs/at91/config.mk |1 - >

[U-Boot] [PATCH V2 1/1] IXP425: Fixing PCI access

2008-12-06 Thread Stefan Althoefer
This patch fixes the PCI handling routines of the IXP port. It seems that this hasn't been touched for quite a while and u-boot PCI handling has changed since then (but nobody update IXP). Changes (list uncomplete): - non_prefetched_read/write now return ERROR on (master-) abort. - fixe

Re: [U-Boot] [PATCH] video: Add new driver for Silicon Motion SM501/SM502 Part 1/2

2008-12-06 Thread Stefan Althoefer
Hi Anatolij, >> Use CONFIG_VIDEO_SM501NEW to enable the driver. > > not sure if CONFIG_VIDEO_SM501NEW is a good chose here. Maybe > we should use s.th. like CONFIG_VIDEO_SM50x. This applies to > the file names too: sm50x.h, sm50x.c, etc. Even better would > be a merge with the existing driver.

Re: [U-Boot] [PATCH v5] Update U-Boot's build timestamp on every compile

2008-12-06 Thread Wolfgang Denk
Dear Peter Tyser, In message <[EMAIL PROTECTED]> you wrote: > Use the GNU 'date' command to auto-generate a new U-Boot > timestamp on every compile. > > Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> > --- > Changes since v1: > * Split up U_BOOT_DATE define (date and time) into > U_BOOT_DATE (d

Re: [U-Boot] [PATCH] IXP425: Fixing PCI access Part 1/1

2008-12-06 Thread Stefan Althoefer
I posted new version of patch to fix some more errors and style, so this is obsolete. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] lcd: Let the board code show board-specific info cleanup

2008-12-06 Thread Wolfgang Denk
Dear Peter Tyser, In message <[EMAIL PROTECTED]> you wrote: > Allow tqm8xx.c to cleanly compile when CONFIG_LCD_INFO is > defined and remove unneeded version.h from lcd.c > > Signed-off-by: Peter Tyser <[EMAIL PROTECTED]> > --- > I noticed this when adding timestamp.h to tqm8xx.c. > The "Update U

Re: [U-Boot] [PATCH 1/4]v2: Document CONFIG_SYS parameters for vxworks

2008-12-06 Thread Wolfgang Denk
Dear Niklaus Giger, In message <[EMAIL PROTECTED]> you wrote: > The following improvements are made and tested on my HCUx boards: > > README > - document bootvx and CONFIG_SYS_VXWORKS parameters > > vxworks.h > - add new vxworks.h with some default definitions > > cmd_elf.c > - fix size too sma

Re: [U-Boot] [PATCH 3/4]v2: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters

2008-12-06 Thread Wolfgang Denk
Dear Niklaus Giger, In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Niklaus Giger <[EMAIL PROTECTED]> > --- > common/cmd_elf.c | 81 > -- > 1 files changed, 30 insertions(+), 51 deletions(-) Applied, thanks. Best regards, Wolfga

Re: [U-Boot] [PATCH 4/4]v2: Use new CONFIG_SYS_VXWORKS parameters for Netstal boards

2008-12-06 Thread Wolfgang Denk
Dear Niklaus Giger, In message <[EMAIL PROTECTED]> you wrote: > > Signed-off-by: Niklaus Giger <[EMAIL PROTECTED]> > --- > include/configs/netstal-common.h | 29 ++--- > 1 files changed, 14 insertions(+), 15 deletions(-) Applied, thanks. Best regards, Wolfgang Denk

[U-Boot] [PATCH 08/15] Remove #ifdef CONFIG_SC520 in source code

2008-12-06 Thread Graeme Russ
CONFIG_SC520 is now used for conditional compile Signed-off-by: Graeme Russ <[EMAIL PROTECTED]> --- cpu/i386/sc520/sc520.c |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/cpu/i386/sc520/sc520.c b/cpu/i386/sc520/sc520.c index 50bd8ef..12e8f38 100644 --- a/cpu/i386/sc520

[U-Boot] [PATCH 03/15] Updated eNET link script for reset -> resetvec section rename

2008-12-06 Thread Graeme Russ
Signed-off-by: Graeme Russ <[EMAIL PROTECTED]> --- board/eNET/u-boot.lds |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/eNET/u-boot.lds b/board/eNET/u-boot.lds index 2dafbb5..9e02326 100644 --- a/board/eNET/u-boot.lds +++ b/board/eNET/u-boot.lds @@ -75,7 +75,7

[U-Boot] [PATCH 13/15] Moved ali512x.h from include/asm-i386/ic/ to /include

2008-12-06 Thread Graeme Russ
Signed-off-by: Graeme Russ <[EMAIL PROTECTED]> --- board/sc520_cdp/sc520_cdp.c |2 +- drivers/misc/ali512x.c |2 +- include/{asm-i386/ic => }/ali512x.h |0 3 files changed, 2 insertions(+), 2 deletions(-) rename include/{asm-i386/ic => }/ali512x.h (100%) diff --g

[U-Boot] [PATCH 07/15] Added MMCR reset functionality

2008-12-06 Thread Graeme Russ
Reset function specific to AMD SC520 microcontroller - Is more of a 'hard reset' that the triple fault. Signed-off-by: Graeme Russ <[EMAIL PROTECTED]> -- Requires CONFIG_SYS_RESET_SC520 to be defined in config I would have liked to add this to a new file (cpu/i386/sc520/reset.c) but ld requires t

[U-Boot] [PATCH 12/15] Fixed CONFIG_SYS_SC520_RESET for eNET board

2008-12-06 Thread Graeme Russ
Forgotten in commit d1f2d102a266804a50ff0cd9794459791f057c94 Signed-off-by: Graeme Russ <[EMAIL PROTECTED]> --- include/configs/eNET.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 7d4e21f..16dfb3f 100644 --- a/incl

[U-Boot] [PATCH 10/15] Renamed SC520 configuration options

2008-12-06 Thread Graeme Russ
Options are now all uniformly CONFIG_SYS_SC520_ Signed-off-by: Graeme Russ <[EMAIL PROTECTED]> --- board/sc520_cdp/sc520_cdp.c | 16 cpu/i386/sc520/Makefile |4 ++-- cpu/i386/sc520/sc520.c|6 +++--- cpu/i386/sc520/sc520_asm.S|4 ++-- include/conf

Re: [U-Boot] [PATCH] strings: use puts() rather than printf()

2008-12-06 Thread Wolfgang Denk
Dear Mike Frysinger, In message <[EMAIL PROTECTED]> you wrote: > When running `strings` on really long strings, the stack tends to get > smashed due to printf(). Switch to puts() instead since we're only passing > the data through. > > Signed-off-by: Mike Frysinger <[EMAIL PROTECTED]> > --- > c

Re: [U-Boot] [PATCH] cmd_elf: CONFIG_ELF_SIMPLE_LOAD: load ELFs according to PHDRs

2008-12-06 Thread Wolfgang Denk
Dear Mike, in message <[EMAIL PROTECTED]> you wrote: > > > ...but would it not make sense to allow to make the decision which > > behaviour fits the user's requirements at runtime instead of compile > > time? > > > > We could either make this depend on some environment variable setting, > > or on

Re: [U-Boot] [PATCH 1/2 V3] IOMUX: Add console multiplexing support.

2008-12-06 Thread Wolfgang Denk
Dear Gary Jennejohn, In message <[EMAIL PROTECTED]> you wrote: > > Modifications to support console multiplexing. This is controlled using > CONFIG_SYS_CONSOLE_MUX in the board configuration file. > > This allows a user to specify multiple console devices in the environment > with a command lik

Re: [U-Boot] [PATCH] common/cmd_ide.c: Corrected endian order printing for compact flash serial number.

2008-12-06 Thread Wolfgang Denk
Dear Richard Retanubun, In message <[EMAIL PROTECTED]> you wrote: > Corrected endian order printing for compact flash serial number. > > Signed-off-by: Richard Retanubun <[EMAIL PROTECTED]> > --- > common/cmd_ide.c |7 --- > 1 files changed, 4 insertions(+), 3 deletions(-) Applied, than

Re: [U-Boot] [PATCH] drivers/bios_emulator: Move conditional compilation to Makefile

2008-12-06 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > drivers/bios_emulator/Makefile |3 ++- > drivers/bios_emulator/atibios.c |5 - > drivers/bios_emulator/besys.

Re: [U-Boot] [PATCH] video: Add new driver for Silicon Motion SM501/SM502 Part 2/2

2008-12-06 Thread Anatolij Gustschin
Hello Stefan, Stefan Althoefer wrote: > [PATCH] video: Add new driver for Silicon Motion SM501/SM502 > > This patch adds a new driver for SM501/SM502. Compared to the > existing driver it allows dynamic selection of resolution > (environment: videomode). > > The drive is based on Vincent Sanders

Re: [U-Boot] [PATCH] keymile add the common parts of the HDLC driver

2008-12-06 Thread Wolfgang Denk
Dear Gary Jennejohn, In message <[EMAIL PROTECTED]> you wrote: > This implements the ICN protocol used across the backplane and is needed > by all the keymile boards. > > Signed-off-by: Gary Jennejohn <[EMAIL PROTECTED]> > --- > > checkpatch.pl reports an ERROR which is false. > > board/keymil

Re: [U-Boot] [PATCH] mgcoge add the board-specific part of the HDLC driver

2008-12-06 Thread Wolfgang Denk
Dear Gary Jennejohn, In message <[EMAIL PROTECTED]> you wrote: > > Signed-off-by: Gary Jennejohn <[EMAIL PROTECTED]> > --- > board/keymile/mgcoge/Makefile |3 +- > board/keymile/mgcoge/mgcoge_hdlc_enet.c | 276 > +++ > 2 files changed, 278 insertions(+

Re: [U-Boot] [PATCH] mgsuvd add the board-specific part of the HDLC driver

2008-12-06 Thread Wolfgang Denk
Dear Gary Jennejohn, In message <[EMAIL PROTECTED]> you wrote: > > Signed-off-by: Gary Jennejohn <[EMAIL PROTECTED]> > --- > board/keymile/mgsuvd/Makefile |3 +- > board/keymile/mgsuvd/mgsuvd_hdlc_enet.c | 278 > +++ > 2 files changed, 280 insertions(+

Re: [U-Boot] [PATCH] SPARC: Fixed compiler error introduced by commit c160a9544743e80e8889edb2275538e7764ce334

2008-12-06 Thread Wolfgang Denk
Dear Daniel Hellstrom, In message <[EMAIL PROTECTED]> you wrote: > Hi Wolfgang, > > This patch fix a build error for the SPARC platform. It was introduced by > commit > c160a9544743e80e8889edb2275538e7764ce334. > > I have updated u-boot-sparc.git testing branch. > > Best Regards, > Daniel Hel

Re: [U-Boot] [PATCH] usbtty/omap: update to current API

2008-12-06 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <[EMAIL PROTECTED]> you wrote: > On 22:00 Wed 26 Nov , Remy Bohmer wrote: > > Hello Jean-Christophe, > > > > >> In message <[EMAIL PROTECTED]> you wrote: > > >> > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > > >> > > >

Re: [U-Boot] [PATCH] common: nvedit to protect additional ethernet addresses Part 1/1

2008-12-06 Thread Wolfgang Denk
Dear Stefan Althoefer, In message <[EMAIL PROTECTED]> you wrote: > This patches cmd_nvedit to reject changes for "ethaddr." in addition to > "ethaddr" > and "serial#". This is intendend to protect changes to additional ethernet > addresses (e.g. "ethernet1"). The patch is bogus, as additional et

Re: [U-Boot] [PATCH] video: Add new driver for Silicon Motion SM501/SM502 Part 1/2

2008-12-06 Thread Wolfgang Denk
Dear Anatolij & Stefan, In message <[EMAIL PROTECTED]> you wrote: > > > Use CONFIG_VIDEO_SM501NEW to enable the driver. > > not sure if CONFIG_VIDEO_SM501NEW is a good chose here. Maybe > we should use s.th. like CONFIG_VIDEO_SM50x. This applies to > the file names too: sm50x.h, sm50x.c, etc. Ev

Re: [U-Boot] [PATCH] common: nvedit to protect additional ethernet addresses Part 1/1

2008-12-06 Thread Jerry Van Baren
Wolfgang Denk wrote: > Dear Stefan Althoefer, > > In message <[EMAIL PROTECTED]> you wrote: >> This patches cmd_nvedit to reject changes for "ethaddr." in addition to >> "ethaddr" >> and "serial#". This is intendend to protect changes to additional ethernet >> addresses (e.g. "ethernet1"). > > T

Re: [U-Boot] [PATCH] common: nvedit to protect additional ethernet addresses Part 1/1

2008-12-06 Thread Ben Warren
Jerry Van Baren wrote: > Wolfgang Denk wrote: > >> Dear Stefan Althoefer, >> >> In message <[EMAIL PROTECTED]> you wrote: >> >>> This patches cmd_nvedit to reject changes for "ethaddr." in addition to >>> "ethaddr" >>> and "serial#". This is intendend to protect changes to additional ether

Re: [U-Boot] PCIe based SATA card?

2008-12-06 Thread Ayman El-Khashab
On 12/3/2008 1:50 PM, Kumar Gala wrote: > has anyone used a PCIe based SATA card w/u-boot? > > Yes, I've used the Silicon Images 3531 w/ u-boot. Unless you mean have I booted from the sata card, in that case, no. ___ U-Boot mailing list U-Boot@lists.

Re: [U-Boot] [PATCH] video: Add new driver for Silicon Motion SM501/SM502 Part 1/2

2008-12-06 Thread ksi
On Sun, 7 Dec 2008, Wolfgang Denk wrote: > Dear Anatolij & Stefan, > > In message <[EMAIL PROTECTED]> you wrote: >> >>> Use CONFIG_VIDEO_SM501NEW to enable the driver. >> >> not sure if CONFIG_VIDEO_SM501NEW is a good chose here. Maybe >> we should use s.th. like CONFIG_VIDEO_SM50x. This applies t