Re: [U-Boot] [PATCH] OMAP3: Define 64bit vsprintf for NAND

2009-07-19 Thread Dirk Behme
This patch is obsolete now with http://git.denx.de/?p=u-boot.git;a=commit;h=2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd Thanks Dirk Dirk Behme wrote: > With commit 8d2effea23e938631126a7888008a0637e13b389 "mtd: Update > MTD infrastructure to support 64bit device size" > CONFIG_SYS_64BIT_VSPRINTF

Re: [U-Boot] [PATCH] - add dns

2009-07-19 Thread Wolfgang Denk
Dear Robin Getz, In message <200907172120.50413.rg...@blackfin.uclinux.org> you wrote: > On Fri 17 Jul 2009 16:55, Wolfgang Denk pondered: > > > Index: net/Makefile > > > === > > > --- net/Makefile (revision 1968) > > > +++ net/Makef

Re: [U-Boot] [PATCH v3] Add "cpu_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <4a619c0f.20...@esd.eu> you wrote: > > When writing more bytes to an eeprom than it's actual pagesize you have > to take special care. This is done in eeprom_write(). i2c_write() to > an eeprom only works with up to pagesize bytes! > > Either we use eeprom_write()

Re: [U-Boot] [PATCH 1/1] OMAP3 Fix compiler warning for v7_flush_dcache_all

2009-07-19 Thread Wolfgang Denk
Dear Dirk Behme, In message <4a62bc56.1060...@googlemail.com> you wrote: > > >> The functions v7_flush_dcache_all and get_device_type are declared > >> in include/asm-arm/arch-omap3/sys_proto.h, so use this file to > >> declare the functions. ... > > Applied, thanks. ... > I'm not sure, Tom will

Re: [U-Boot] [PATCH 2/4] I2C Add initial support for TWL4030

2009-07-19 Thread Wolfgang Denk
Dear Heiko, In message <1244638432-30893-3-git-send-email-tom@windriver.com> Tom Rix wrote: > The TWL4030 supplies many peripheral for OMAP3 boards. These include > power management, usb and, keyboard. > > The product description is found here: > > http://focus.ti.com/docs/prod/folders/prin

Re: [U-Boot] [PATCH] Add support for the Tundra TSI148 VME-bridge

2009-07-19 Thread Wolfgang Denk
Dear Stefan Roese, In message <1244653780-615-1-git-send-email...@denx.de> you wrote: > From: Reinhard Arlt > > From: Reinhard Arlt > > This patch adds support for the Tundra TSI148 VME-bridge. It's used on > the upcoming esd VME8349 board. > > Signed-off-by: Reinhard Arlt > Signed-off-by: S

Re: [U-Boot] [PATCH] Canyonlands SATA harddisk driver

2009-07-19 Thread Wolfgang Denk
Dear Kazuaki Ichinohe, In message <4a321b74.8040...@fsi.co.jp> you wrote: > This patch adds a SATA harddisk driver for the canyonlands. > This patch is kernel driver's porting. > This patch corresponded to not cmd_scsi but cmd_sata. > This patch divided an unused member with ifndef __U_BOOT__ in t

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-19 Thread Jean-Christophe PLAGNIOL-VILLARD
> This definition in struct vidinfo for Atmel LCD > /* LCD configuration register */ > u_long vl_sync; /* Horizontal / vertical sync */ > u_long vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8, >4 = 16 */ > u_long

Re: [U-Boot] [PATCH 3/8]: Define test_and_set/clear_bit for ARM

2009-07-19 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:58 Tue 07 Jul , Simon Kagstrom wrote: > Signed-off-by: Simon Kagstrom > --- > include/asm-arm/bitops.h |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > NACK the test_and_set_bit and co must be endianless specific which is not the case here rename it atomic_test_a

Re: [U-Boot] [PATCH 1/8]: Move __set/clear_bit from ubifs.h to bitops.h

2009-07-19 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:56 Tue 07 Jul , Simon Kagstrom wrote: > Move __set/clear_bit from ubifs.h to bitops.h > > __set_bit and __clear_bit are defined in ubifs.h as well as in > asm/include/bitops.h for some architectures. This patch moves > the generic implementation to include/linux/bitops.h and uses > that

[U-Boot] [PATCH] pcm030: fix out-of-tree building

2009-07-19 Thread Wolfgang Denk
Commit 0a87dd90 that was supposed to fix out-of-tree building for the pcm030 board was unfortunately incomplete. Signed-off-by: Wolfgang Denk --- Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index e427bc0..1eb3177 100644 --- a/Makefile +++

[U-Boot] [PATCH 0/2] arm nomadik: gpio and i2c

2009-07-19 Thread Alessandro Rubini
This adds gpio and i2c support for the Nomadik evaluation kit. They are needed to turn on the LCD backlight in order to later add LCD support. I have one doubt and some questions on gpio: To use soft_i2c I need to define some macros in the config file. Instead of writing hard numbers there I call

[U-Boot] [PATCH 1/2] arm nomadik: add gpio support

2009-07-19 Thread Alessandro Rubini
From: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- board/st/nhk8815/Makefile |2 +- board/st/nhk8815/gpio.c | 99 + board/st/nhk8815/gpio.h | 42 +++ 3 files changed, 142 insertions(+), 1 d

[U-Boot] [PATCH 2/2] arm nomadik: add i2c

2009-07-19 Thread Alessandro Rubini
From: Alessandro Rubini Signed-off-by: Alessandro Rubini Acked-by: Andrea Gallo --- board/st/nhk8815/nhk8815.c | 16 ++-- include/configs/nhk8815.h | 18 +- 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/board/st/nhk8815/nhk8815.c b/board/st/nh

Re: [U-Boot] [PATCH v3] Add "cpu_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Matthias Fuchs
Stefan, On Sunday 19 July 2009 09:55:10 Wolfgang Denk wrote: > Dear Matthias Fuchs, > > In message <4a619c0f.20...@esd.eu> you wrote: > > When writing more bytes to an eeprom than it's actual pagesize you have > > to take special care. This is done in eeprom_write(). i2c_write() to > > an eeprom o

Re: [U-Boot] [PATCH 3/8]: Define test_and_set/clear_bit for ARM

2009-07-19 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090719094713.ge31...@game.jcrosoft.org> you wrote: > On 15:58 Tue 07 Jul , Simon Kagstrom wrote: > > Signed-off-by: Simon Kagstrom > > --- > > include/asm-arm/bitops.h |4 ++-- > > 1 files changed, 2 insertions(+), 2 deletions(-) > >

[U-Boot] How to reduce size of U-Boot image (i.MX31, NAND-Flash)

2009-07-19 Thread Ulrich Gerster
Hello, I'm trying to optimize the u-boot image I get after compiling. It's size is 13XkB depending on the features I define. I'm using a i.MX31 processor and only NAND-Flash. I think it should be possible to get a smaller Image. Are there some common tricks, or do you have some suggestions how

[U-Boot] [PATCH] env_onenand: fix compiler warning for error message

2009-07-19 Thread Alessandro Rubini
From: Alessandro Rubini Since env_addr is a loff_t (long long), "%08lx" is not a good format; this uses "%08llx" (not "%016llx"), to get 8 or more hex digits. I tnknk padding to 8 digits makes things more readable for "small" numbers, and the unlikely values over 4GB are reported correctly anywa

Re: [U-Boot] [PATCH 2/4] I2C Add initial support for TWL4030

2009-07-19 Thread Heiko Schocher
Hello Wolfgang, Wolfgang Denk wrote: > In message <1244638432-30893-3-git-send-email-tom@windriver.com> Tom Rix > wrote: >> The TWL4030 supplies many peripheral for OMAP3 boards. These include >> power management, usb and, keyboard. >> >> The product description is found here: >> >> http://fo

[U-Boot] [Patch] bootelf should allow arguments passing to called program

2009-07-19 Thread Thomas Dörfler
The bootelf command is written to pass the command line arguments to the called program, but the command list entry limits the number of arguments to 2 (including the command itself and the image address). Changing the command list entry allows passing command line arguments to the called program.

[U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers

2009-07-19 Thread Thomas Dörfler
The mpc512x FEC network driver resets the FEC before transferring packets. With this reset, the FEC clears the previous setting of MII transfer speed. This patch ensures, that it is set again to a reasonable value after a FEC reset. Signed-off-by: Thomas Doerfler -- diff --git a/drivers/net/mpc51

[U-Boot] [PATCH] video: move extern declarations from C to headers

2009-07-19 Thread Alessandro Rubini
From: Alessandro Rubini This moves some extern declaration from lcd.c to lcd.h, removing unneeded ifdef around a pair of them. Additionally, since gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I removed the static. The extra "#include " in cmd_bmp.c is added to ensure the h

Re: [U-Boot] [PATCH] - add dns

2009-07-19 Thread Robin Getz
On Sun 19 Jul 2009 03:48, Wolfgang Denk pondered: > Dear Robin Getz, > In message <200907172120.50413.rg...@blackfin.uclinux.org> you wrote: > > On Fri 17 Jul 2009 16:55, Wolfgang Denk pondered: > > > Please keep list sorted. > > > > sorted how? What we have today is: > > > > COBJS-y += net.o > >

[U-Boot] [PATCH] cmd_flash.c: fix compile error for boards with DataFlash

2009-07-19 Thread Alessandro Rubini
From: Alessandro Rubini The local variables addr_first and addr_last are used if HAS_DATAFLASH even if SYS_NO_FLASH (meaning no NOR flash). This adds the definitions withing the brace where the names are used, to avoid cluttering the initial ifdef. Signed-off-by: Alessandro Rubini --- 5 boards

Re: [U-Boot] [PATCH v3] Add "cpu_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Stefan Roese
On Sunday 19 July 2009 13:23:49 Matthias Fuchs wrote: > > > Either we use eeprom_write() or we use multiple call of i2c_write(). > > > If we do not change this, Stefan's code does not work with 405EP cpus. > > > On these you have 0x20 strapping bytes and typicall EEPROMs with 8 or > > > 16 bytes pa

Re: [U-Boot] [PATCH 2/4] I2C Add initial support for TWL4030

2009-07-19 Thread Tom
Omap2 is still pending. I was hoping to help Richard out with this last week but he was on travel. There is not much more I think I can do wrt omap2. All my targets are omap3. The nearest I can find online is the nokia n8xx which uses a another bootloader. The options as I see them are. 1. Get

Re: [U-Boot] [PATCH 0/2] arm nomadik: gpio and i2c

2009-07-19 Thread Wolfgang Denk
Dear Alessandro Rubini, In message you wrote: > > To use soft_i2c I need to define some macros in the config file. > Instead of writing hard numbers there I called the gpio functions, but > the config file is inluded from asm sources as well. I don't think my > approach is beautiful at all (bot

Re: [U-Boot] How to reduce size of U-Boot image (i.MX31, NAND-Flash)

2009-07-19 Thread Wolfgang Denk
Dear "Ulrich Gerster", In message <4a63456c024d00014...@hochblauen.ba-loerrach.de> you wrote: > > I'm trying to optimize the u-boot image I get after compiling. It's size is > 13XkB depending on the features I define. I'm using a i.MX31 processor and > only NAND-Flash. I think it should be

Re: [U-Boot] [PATCH] env_onenand: fix compiler warning for error message

2009-07-19 Thread Wolfgang Denk
Dear Alessandro Rubini, In message <20090719151345.ga17...@mail.gnudd.com> you wrote: > From: Alessandro Rubini > > Since env_addr is a loff_t (long long), "%08lx" is not a good format; > this uses "%08llx" (not "%016llx"), to get 8 or more hex digits. I > tnknk padding to 8 digits makes things

Re: [U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers

2009-07-19 Thread Wolfgang Denk
Dear =?ISO-8859-15?Q?Thomas_D=F6rfler?=, In message <4a633d5a.3060...@embedded-brains.de> you wrote: > The mpc512x FEC network driver resets the FEC before transferring > packets. With this reset, the FEC clears the previous setting of MII > transfer speed. This patch ensures, that it is set again

Re: [U-Boot] [PATCH] cmd_flash.c: fix compile error for boards with DataFlash

2009-07-19 Thread Wolfgang Denk
Dear Alessandro Rubini, In message <20090719163317.ga18...@mail.gnudd.com> you wrote: > From: Alessandro Rubini > > The local variables addr_first and addr_last are used if HAS_DATAFLASH > even if SYS_NO_FLASH (meaning no NOR flash). This adds the definitions > withing the brace where the names

[U-Boot] [PATCH] Fix boards broken after removal of legacy NAND and DoC support

2009-07-19 Thread Wolfgang Denk
Commit 2419169f removed support for legacy NAND and disk on chip but missed to update the code for a few boards. This patch fixes the resulting build issues. Signed-off-by: Wolfgang Denk --- board/bmw/bmw.c|2 ++ board/pcippc2/pcippc2.c|2 ++ board/rbc823/rbc823.c |

Re: [U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers

2009-07-19 Thread Thomas Dörfler
Hello, on our custom MPC5121 board I used the following sequence to see the bug: - After U-Boot stated, I could inspect the status of the PHY with "mii info". This works fine even if repeated. - then I trigger some network activity, for example with "ping" - if I try to get the PHY status with

Re: [U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers

2009-07-19 Thread Wolfgang Denk
Dear =?ISO-8859-1?Q?Thomas_D=F6rfler?=, In message <4a635d1f.9030...@embedded-brains.de> you wrote: > > on our custom MPC5121 board I used the following sequence to see the bug: > > - After U-Boot stated, I could inspect the status of the PHY with "mii > info". This works fine even if repeated.

[U-Boot] [PATCH] unify HOST_CFLAGS and HOSTCFLAGS

2009-07-19 Thread Mike Frysinger
The top build system sets up HOSTCFLAGS a bit and exports it, but other places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the values stay in sync. Signed-off-by: Mike Frysinger --- Makefile |2 +- board/fads/config.mk |2 +-

Re: [U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers

2009-07-19 Thread Wolfgang Denk
Dear =?ISO-8859-15?Q?Thomas_D=F6rfler?=, In message <4a633d5a.3060...@embedded-brains.de> you wrote: > The mpc512x FEC network driver resets the FEC before transferring > packets. With this reset, the FEC clears the previous setting of MII > transfer speed. This patch ensures, that it is set again

Re: [U-Boot] [PATCH 1/1] malloc.h: protect it against multiple include

2009-07-19 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <1244890537-9997-1-git-send-email-plagn...@jcrosoft.com> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > include/malloc.h |5 - > 1 files changed, 4 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolf

Re: [U-Boot] [PATCH] push CROSS_COMPILE out to $(ARCH)_config.mk

2009-07-19 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1245036794-7396-1-git-send-email-vap...@gentoo.org> you wrote: > Each arch should handle setting a proper default CROSS_COMPILE value in > their own config.mk file rather than having to maintain a large ugly list > in the Makefile. By using conditional assignment,

Re: [U-Boot] [PATCH] common: fix 'dummy' is used uninitialized in this function warning

2009-07-19 Thread Wolfgang Denk
Dear Kim Phillips, In message <20090615115040.5932bd21.kim.phill...@freescale.com> you wrote: > fix this gcc 4.4 warning: > > xyzModem.c: In function 'xyzModem_stream_open': > xyzModem.c:564: warning: 'dummy' is used uninitialized in this function > > Signed-off-by: Kim Phillips > --- > common

Re: [U-Boot] [PATCH v4] compiler.h: unify system ifdef cruft here

2009-07-19 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1246577005-10928-1-git-send-email-vap...@gentoo.org> you wrote: > Shove a lot of the HOSTCC and related #ifdef checking crap into the new > compiler.h header so that we can keep all other headers nice and clean. > > Also introduce custom uswap functions so we don'

Re: [U-Boot] [PATCH] digsy mtc: Enable command line history.

2009-07-19 Thread Wolfgang Denk
Dear Grzegorz Bernacki, In message <1245248414-84498-1-git-send-email-...@semihalf.com> you wrote: > > Signed-off-by: Grzegorz Bernacki > --- > include/configs/digsy_mtc.h |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Soft

Re: [U-Boot] [PATCH] add support for C5000 thermostimulator

2009-07-19 Thread Wolfgang Denk
Dear Giulio Benetti, In message you wrote: > Based on at91sam9263. > It is a thermostimulator for hair styling. > Subsection of > Software is based on at91sam9263ek one. > > Signed-off-by: giulio.bene...@micronovasrl.com Please use git-format-patch to prepare patches. Entries for MAINTAINERS

Re: [U-Boot] [PATCH] add WATCHDOG_RESET() on nand write and read

2009-07-19 Thread Wolfgang Denk
Dear Scott, In message Giulio Benetti wrote: > I think it's better to put Watchdog reset also inside read and write nand. > What do you think? > > Signed-off-by: giulio.bene...@micronovasrl.com > > diff -urpN b/drivers/mtd/nand/nand_util.c a/drivers/mtd/nand/nand_util.c > --- b/drivers/mtd/nand

Re: [U-Boot] [PATCH] config.mk: Remove unused HPATH

2009-07-19 Thread Wolfgang Denk
Dear Shinya Kuribayashi, In message <4a3cb689.6090...@pobox.com> you wrote: > This variable is not unused anywhere. > > Signed-off-by: Shinya Kuribayashi > --- > config.mk |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Sof

Re: [U-Boot] [PATCH] Bugfix: mpc512x_fec MII accesses fail after ethernet transfers

2009-07-19 Thread Thomas Dörfler
Hello, thank you for your feedback. Sorry for the "newbie" problems, I should have checked this before sending the patch. But I doubt that (re-)calling mpc512x_fec_init_phy before a MII command is run is really a good idea. Using the same code for initial init and repeated init makes sense, but t

Re: [U-Boot] [PATCH 3/6] S5PC100: serial driver for SMDKC100 support

2009-07-19 Thread Wolfgang Denk
Dear HeungJun Kim, In message <350d1ec30906250109s34355cbex5a2e59e181a5d...@mail.gmail.com> you wrote: > This patch is the serial driver for S5PC100 & SMDKC100. > > Signed-off-by: HeungJun, Kim I think this patch should be merged with the patch(es) that add the rest of the code. > diff --git

Re: [U-Boot] [PATCH v2 0/6] Clean up top-level directory structure

2009-07-19 Thread Peter Tyser
On Sat, 2009-07-18 at 20:07 +0200, Wolfgang Denk wrote: > Dear Peter Tyser, > > In message <1247935062.9174.14.ca...@ptyser-laptop> you wrote: > > > > I'd still vote for changing the directory structure in this release, > > NAK. Such heavily restructuring changes should be prepared and > submitt

Re: [U-Boot] [PATCH 6/6] S5PC100: Add onenand_ipl for SMDKC100 support

2009-07-19 Thread Wolfgang Denk
Dear HeungJun Kim, In message <350d1ec30906250121q4e860812s35054aaee8c20...@mail.gmail.com> you wrote: > The SMDKC100 Board has 256MB onenand. > So, It's bootable, if this patch is adapted thus the board use onenand_ipl. > > Signed-off-by: HeungJun, Kim > > --- > > This patch support onenand

Re: [U-Boot] [PATCH] mmc: set bus width to 1 and clock to minimum early during initialization

2009-07-19 Thread Wolfgang Denk
Dear Ilya Yanok, In message <1246283596-1259-1-git-send-email-ya...@emcraft.com> you wrote: > We need to switch back to 1-bit before initialization or SD 2.0 cards > will fail to send SCR if we've switched to 4-bit already. > > Signed-off-by: Ilya Yanok > --- > drivers/mmc/mmc.c |3 +++ > 1

Re: [U-Boot] [PATCH] This patch adds support for Fujitsu MB86R01 'JADE' SOC

2009-07-19 Thread Wolfgang Denk
Dear Matthias Weisser, In message <1246368064-4957-1-git-send-email-matthias.weis...@graf-syteco.de> you wrote: > Signed-off-by: Matthias Weisser > --- > cpu/arm926ejs/jade/Makefile | 47 + > cpu/arm926ejs/jade/timer.c | 129 > include/asm-

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

2009-07-19 Thread Peter Tyser
On Wed, 2009-02-04 at 15:14 -0600, Peter Tyser wrote: > Previously, waiting for auto-negotiation would only occur if a valid > link had been detected. Problems arose when attempting to use a > tsec immediately after bootup but before link was achieved, eg: > => dhcp > Auto-neg error, defaulting to

Re: [U-Boot] [PATCH v2 0/6] Clean up top-level directory structure

2009-07-19 Thread Wolfgang Denk
Dear Peter Tyser, In message <1248033674.15400.9.ca...@ptyser-laptop> you wrote: > On Sat, 2009-07-18 at 20:07 +0200, Wolfgang Denk wrote: > > Dear Peter Tyser, > > > > In message <1247935062.9174.14.ca...@ptyser-laptop> you wrote: > > > > > > I'd still vote for changing the directory structure

[U-Boot] [STATUS] Merge Window Closed

2009-07-19 Thread Wolfgang Denk
Hi, the Merge Window for release 2009.08 is closed (well, it will be closed in 24 minutes or so). I will need 2...3 more days to work through the backlog of patches; this will alos give some custodians who are late a chance to send some pull requests. I intend to have a -rc1 out before the end o

Re: [U-Boot] No reply to USB related questions

2009-07-19 Thread Dushara Jayasinghe
> > I've posted a few questions to the list for which I didn't get any > response. > > Your posting is less than 24 hours old, and you did not pay your > premium support contract fee yet. > > See http://catb.org/esr/faqs/smart-questions.html Ouch. That smarts. :-) I honestly was wondering wheth

Re: [U-Boot] [PATCH] - add dns

2009-07-19 Thread Robin Getz
On Sat 18 Jul 2009 21:15, Mike Frysinger pondered: > On Saturday 18 July 2009 20:27:00 Robin Getz wrote: > > On Sat 18 Jul 2009 18:11, Mike Frysinger pondered: > > > keep the modulus something with only 1 bit set so gcc will optimize into > > > a simple and operation. probably add a comment about

Re: [U-Boot] No reply to USB related questions

2009-07-19 Thread Michael Trimarchi
Hi, Dushara Jayasinghe wrote: >>> I've posted a few questions to the list for which I didn't get any >>> >> response. >> >> Your posting is less than 24 hours old, and you did not pay your >> premium support contract fee yet. >> >> See http://catb.org/esr/faqs/smart-questions.html >> >

[U-Boot] [PATCH 2/3] xpedite5370: Fix I2C GPIO initialization typo

2009-07-19 Thread ptyser
From: Peter Tyser Signed-off-by: Peter Tyser --- board/xes/xpedite5370/xpedite5370.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/xes/xpedite5370/xpedite5370.c b/board/xes/xpedite5370/xpedite5370.c index 22cf294..d54c699 100644 --- a/board/xes/xpedite5370/x

[U-Boot] [PATCH 1/3] xpedite5200, 5370: Use buffered NOR flash writes

2009-07-19 Thread ptyser
From: Peter Tyser Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly improve NOR flash write speeds Signed-off-by: Peter Tyser --- I miscalculated the merge window close time... I hope to slip these last 3 trivial changes in the upcoming release if possible. Thanks, P

[U-Boot] [PATCH 3/3] Remove last remanants of unused CONFIG_I2C_CMD_TREE

2009-07-19 Thread ptyser
From: Peter Tyser Signed-off-by: Peter Tyser --- include/configs/P2020DS.h |1 - include/configs/XPEDITE5170.h |1 - include/configs/aria.h|1 - include/configs/mecp5123.h|1 - 4 files changed, 0 insertions(+), 4 deletions(-) diff --git a/include/configs/P2020DS

[U-Boot] [PATCH] [OneNAND] Fix compiler warnings after loff_t change

2009-07-19 Thread Kyungmin Park
Now 'env_addr' type is loff_t so use correct field type. Signed-off-by: Kyungmin Park --- diff --git a/common/env_onenand.c b/common/env_onenand.c index 476fdbc..dcf09de 100644 --- a/common/env_onenand.c +++ b/common/env_onenand.c @@ -101,7 +101,7 @@ int saveenv(void) instr.addr = env_add

Re: [U-Boot] env_onenand compiler warning

2009-07-19 Thread Kyungmin Park
Hi, Thank you for pointing compiler warning. I post the patch. Thank you, Kyungmin Park On Sun, Jul 19, 2009 at 3:47 PM, Dirk Behme wrote: > > Testing recent mainline git head for omap3_evm_config I get compiler > warning > > env_onenand.c: In function 'saveenv': > env_onenand.c:104: warning: f

Re: [U-Boot] [PATCH] - add dns

2009-07-19 Thread Mike Frysinger
On Sunday 19 July 2009 19:30:43 Robin Getz wrote: > On Sat 18 Jul 2009 21:15, Mike Frysinger pondered: > > On Saturday 18 July 2009 20:27:00 Robin Getz wrote: > > > Does it make sense to have 4 different ones? (not to me)... > > > > > > Or something new & common in ./net.c:random_port() > > > > i w

[U-Boot] [PATCH] ARM Cortex A8: Move OMAP3 specific reset handler

2009-07-19 Thread Minkyu Kang
Because of the reset_cpu is soc specific, should be move to soc Cc: Dirk Behme Signed-off-by: Minkyu Kang --- cpu/arm_cortexa8/omap3/Makefile |1 + cpu/arm_cortexa8/omap3/reset.S | 36 cpu/arm_cortexa8/start.S| 14 -- 3 files cha

Re: [U-Boot] [PATCH] ARM Cortex A8: Move OMAP3 specific reset handler

2009-07-19 Thread Kyungmin Park
Hi, It's already discussed. Actually it's required for adding new S5PC1xx series based on arm cortext8. Please apply it. Thank you, Kyungmin Park On Mon, Jul 20, 2009 at 11:40 AM, Minkyu Kang wrote: > Because of the reset_cpu is soc specific, should be move to soc > > Cc: Dirk Behme > Signed-of

Re: [U-Boot] [PATCH 6/6] S5PC100: Add onenand_ipl for SMDKC100 support

2009-07-19 Thread Kyungmin Park
Hi, On Mon, Jul 20, 2009 at 5:04 AM, Wolfgang Denk wrote: > Dear HeungJun Kim, > > In message <350d1ec30906250121q4e860812s35054aaee8c20...@mail.gmail.com> you > wrote: >> The SMDKC100 Board has 256MB onenand. >> So, It's bootable, if this patch is adapted thus the board use onenand_ipl. >> >> Si

Re: [U-Boot] [RFC] CONFIG naming convetion

2009-07-19 Thread Robin Getz
On Sat 18 Jul 2009 18:25, Wolfgang Denk pondered: > > > > I guess we could back up a step and look at the users, and defined things > > as things that should be changed by: > >  - arch maintainers (Core/CPU specific) > >  - SoC maintainer (SoC specific) > >  - Board maintainer (PCB specific) >

[U-Boot] [PATCH v4] Add "chip_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Stefan Roese
This patch adds a generic command for programming I2C bootstrap eeproms on PPC4xx. An implementation for Canyonlands board is included. The command name is intentionally chosen not to be PPC4xx specific. This way other CPU's/SoC's can implement a similar command under the same name, perhaps with a

Re: [U-Boot] [PATCH v4] Add "chip_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Peter Tyser
> Other 4xx boards will be migrated to use this command soon > as well. > > Signed-off-by: Stefan Roese > Signed-off-by: Dirk Eibach > Cc: Matthias Fuchs > > sdfsdf > > Signed-off-by: Stefan Roese > > sdfsdf > > Signed-off-by: Stefan Roese Hi Stefan, Looks like there's some squashed co

Re: [U-Boot] [PATCH v4] Add "chip_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Stefan Roese
On Monday 20 July 2009 07:24:41 Peter Tyser wrote: > > > > Other 4xx boards will be migrated to use this command soon > > as well. > > > > Signed-off-by: Stefan Roese > > Signed-off-by: Dirk Eibach > > Cc: Matthias Fuchs > > > > sdfsdf > > > > Signed-off-by: Stefan Roese > > > > sdfsdf > > > >

Re: [U-Boot] [PATCH] OneNAND IPL: Move u-boot-onenand linker script to common use

2009-07-19 Thread Kyungmin Park
Hi, On Sun, Jul 12, 2009 at 9:58 PM, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 17:10 Sat 11 Jul     , Kyungmin Park wrote: >> Use the common OneNAND linker script. >> >> Signed-off-by: Kyungmin Park >> --- >> diff --git a/onenand_ipl/board/apollon/u-boot.onenand.lds >> b/onenand_ipl/u-boot-on

[U-Boot] How to reduce size of U-Boot image (i.MX31, NAND-Flash)

2009-07-19 Thread Ulrich Gerster
Hello, I'm trying to optimize the u-boot image I get after compiling. It's size is 13XkB depending on the features I define. I'm using a i.MX31 processor and only NAND-Flash. I think it should be possible to get a smaller Image. Are there some common tricks, or do you have some suggestions how

Re: [U-Boot] [PATCH 2/3] tools: mkimage (type=kwbimage) kirkwood boot image support

2009-07-19 Thread Prafulla Wadaskar
From: u-boot-boun...@lists.denx.de [u-boot-boun...@lists.denx.de] On Behalf Of Prafulla Wadaskar [prafu...@marvell.com] Sent: Sunday, July 19, 2009 10:57 AM To: Wolfgang Denk Cc: Manas Saksena; Ronen Shitrit; Nicolas Pitre; u-boot@lists.denx.de; Ashish Ka

[U-Boot] [PATCH v5] Add "chip_config" command for PPC4xx bootstrap configuration

2009-07-19 Thread Stefan Roese
This patch adds a generic command for programming I2C bootstrap eeproms on PPC4xx. An implementation for Canyonlands board is included. The command name is intentionally chosen not to be PPC4xx specific. This way other CPU's/SoC's can implement a similar command under the same name, perhaps with a

Re: [U-Boot] [PATCH 2/3] tools: mkimage (type=kwbimage) kirkwood boot image support

2009-07-19 Thread Prafulla Wadaskar
From: Jean-Christophe PLAGNIOL-VILLARD [plagn...@jcrosoft.com] Sent: Sunday, July 19, 2009 2:55 AM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik; Lennert Buijtenhek Subject:

Re: [U-Boot] [PATCH 1/2] new video driver for bus vcxk framebuffers

2009-07-19 Thread Jens Scharsig
Hello Anatolij, >> +initialize the reset line to vcxk hardware and release it from reset > > Looking on the changes to board configuration file > "include/configs/EB+MCF-EV123.h" in the second patch of this series > I now realize that most of these CONFIG_SYS_ macros above expand to > C code, so