[U-Boot] CLAIMS CONTACT @ fedextodaydelivery0...@hotmail.com

2011-03-27 Thread bobby
Your email has been rewarded with (£1.500,000.00GBP)in cash prize,contact fedextodaydelivery0...@hotmail.com Tel: +44 70359 65608 for details ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/1] ARMV7: Vexpress: Remove config.mk

2011-03-27 Thread Albert ARIBAUD
Le 03/03/2011 17:54, matt.wad...@linaro.org a écrit : From: Matt Waddelmatt.wad...@linaro.org Remove obsolete board config.mk. Signed-off-by: Matt Waddelmatt.wad...@linaro.org --- Applied to next, thanks. Amicalement, -- Albert. ___ U-Boot

Re: [U-Boot] [PATCH v3] Don't grab memory for LCD if FB address is defined

2011-03-27 Thread Albert ARIBAUD
Le 25/03/2011 01:50, Minkyu Kang a écrit : If FB address is defined specific address then don't grab memory for LCD Signed-off-by: Minkyu Kangmk7.k...@samsung.com Cc: Albert Aribaudalbert.arib...@free.fr Cc: Wolfgang Denkw...@denx.de Cc: Stefan Roeses...@denx.de Cc: Kim

Re: [U-Boot] [PATCH] arm: Tegra2: Change mach-type to MACH_TYPE_SEABOARD due to mach-types.h update

2011-03-27 Thread Albert ARIBAUD
Le 24/03/2011 16:08, Tom Warren a écrit : Albert, On Thu, Mar 24, 2011 at 7:27 AM, Albert ARIBAUDalbert.arib...@free.fr wrote: Le 22/03/2011 20:27, Tom Warren a écrit : Albert, On Wed, Feb 23, 2011 at 1:45 PM, Albert ARIBAUDalbert.arib...@free.fr wrote: Le 23/02/2011 21:03, Tom

Re: [U-Boot] Any ARM repository pull requests or patches pending before release?

2011-03-27 Thread Albert ARIBAUD
Le 24/03/2011 15:03, Ben Gardiner a écrit : Hi Albert, On Wed, Mar 23, 2011 at 5:41 PM, Albert ARIBAUDalbert.arib...@free.fr wrote: Hi all, I am preparing for a last pull request for ARM before the upcoming release, since I have at least two fixes at the tip of my current master branch

Re: [U-Boot] [PATCH v3 00/23] keymile board update

2011-03-27 Thread Albert ARIBAUD
Le 22/03/2011 09:30, Holger Brunck a écrit : thanks for the proposal. I had a look at mv-common.h and yes there are many config options which would be ok for us. But there are many which are not suited for us e.g.: CONFIG_SYS_MAXARGS (we got 32) CONFIG_CONS_INDEX (we have one board in the

[U-Boot] Pull request: u-boot-arm/master

2011-03-27 Thread Albert ARIBAUD
Hi Wolfgang, The following changes since commit 55f7934d2b07a62027cb05484ea3f10666a855d1: strmhz: Make hz unsigned to support greater than 2146 MHz clock (2011-03-22 23:34:36 +0100) are available in the git repository at: git://git.denx.de/u-boot-arm.git master Chander Kashyap (2):

Re: [U-Boot] Pull request: u-boot-arm/master

2011-03-27 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message 4d8f7315.8060...@free.fr you wrote: Hi Wolfgang, The following changes since commit 55f7934d2b07a62027cb05484ea3f10666a855d1: strmhz: Make hz unsigned to support greater than 2146 MHz clock (2011-03-22 23:34:36 +0100) are available in the git

Re: [U-Boot] [non-working configuraton, post relocation 7/7] DNS323 configuration

2011-03-27 Thread Rogan Dawes
On 2011/03/19 1:51 PM, Rogan Dawes wrote: On 2011/03/19 9:19 AM, Heiko Schocher wrote: Marvell bootm ## Booting image at 0010 ... Image Name: UBoot dns323 Image Type: ARM U-Boot Kernel Image (uncompressed) Data Size:170100 Bytes = 166.1 kB Load Address: 0300

[U-Boot] [MAIL ABUSE #408-555-1213]

2011-03-27 Thread Kwon, John Y,M.D.
Dear mail user, This is to inform you that your mailbox has exceeded the storage limit which is 20GB as set up by our administrator service center, you are currently running on 20.9GB, To re-validate your mailbox please CLICK HERE

Re: [U-Boot] [non-working configuraton, post relocation 7/7] DNS323 configuration

2011-03-27 Thread Heiko Schocher
Hello Rogan, Rogan Dawes wrote: On 2011/03/19 1:51 PM, Rogan Dawes wrote: On 2011/03/19 9:19 AM, Heiko Schocher wrote: Marvell bootm ## Booting image at 0010 ... Image Name: UBoot dns323 Image Type: ARM U-Boot Kernel Image (uncompressed) Data Size:170100 Bytes = 166.1

[U-Boot] [PATCH V4 0/6] add i2c support to pantheon and aramada100

2011-03-27 Thread Lei Wen
V2: rename the previous pxa_i2c to mvi2c, since this driver would be shared by many other Marvell platforms. V3: Clean the code sytle issue V4: add and* and or* to make set bit operation generic Also make i2c definition included in the ifdef Lei Wen (6): io: add and* and or* operation api to

[U-Boot] [PATCH V4 1/6] io: add and* and or* operation api to set and clear bit

2011-03-27 Thread Lei Wen
Those api take use of read*/write* to align the current dmb usage. Also this could short the code length in one line. Signed-off-by: Lei Wen lei...@marvell.com --- arch/arm/include/asm/io.h |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/io.h

[U-Boot] [PATCH V4 2/6] pxa: move i2c driver to the common place

2011-03-27 Thread Lei Wen
For better sharing with other platform other than pxa's, it is more convenient to put the driver to the common place. Signed-off-by: Lei Wen lei...@marvell.com --- Changelog: v2: rename previous pxa_i2c to mvi2c. V3: change previous name from pxa_i2c to mv_i2c clean code style issue exist in

[U-Boot] [PATCH V4 3/6] mv_i2c: use structure to replace the direclty define

2011-03-27 Thread Lei Wen
Add i2c_clk_enable in the cpu specific code, since previous platform it, while new platform don't need. In the pantheon and armada100 platform, this function is defined as NULL one. Signed-off-by: Lei Wen lei...@marvell.com --- Changelog: V3: clean code sytle issue arch/arm/cpu/pxa/cpu.c

[U-Boot] [PATCH V4 5/6] I2C: mv_i2c: add multi bus support

2011-03-27 Thread Lei Wen
Add the ability to support multiple i2c bus for mv_i2c Signed-off-by: Lei Wen lei...@marvell.com --- Changelog: V3: clean code style issue drivers/i2c/mv_i2c.c | 36 +++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/drivers/i2c/mv_i2c.c

[U-Boot] [PATCH V4 6/6] I2C: add i2c support for Armada100 platform

2011-03-27 Thread Lei Wen
Add i2c support to aspenite board with Armada100 soc. Signed-off-by: Lei Wen lei...@marvell.com --- Changelog: V3: clean code sytle issue Add i2c clock enable code include in I2C configure define block V4: make i2c definition include in the ifdef arch/arm/cpu/arm926ejs/armada100/cpu.c|

[U-Boot] [PATCH V4 4/6] I2C: add i2c support for Pantheon platform

2011-03-27 Thread Lei Wen
Add i2c support to dkb board with pantheon soc. Signed-off-by: Lei Wen lei...@marvell.com --- Changelog: V3: clean code sytle issue Add i2c clock enable code include in I2C configure define block V4: make i2c definition included in the ifdef arch/arm/cpu/arm926ejs/pantheon/cpu.c| 12

Re: [U-Boot] [PATCH V4 1/6] io: add and* and or* operation api to set and clear bit

2011-03-27 Thread Wolfgang Denk
Dear Lei Wen, In message 1301291335-13734-2-git-send-email-lei...@marvell.com you wrote: Those api take use of read*/write* to align the current dmb usage. Also this could short the code length in one line. Signed-off-by: Lei Wen lei...@marvell.com --- arch/arm/include/asm/io.h |8