[U-Boot] [PATCH V5 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 --- Changelog: V2: NO CHANGE V3: clean code sytle issue Add i2c clock enable code include in I2C configure define block V4: make i2c definition include in the ifdef V5: NO CHANGE arch/arm/cpu/arm926ejs/armada100/cpu

[U-Boot] [PATCH V5 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 --- Changelog: V2: NO CHANGE V3: clean code style issue V4: V5: NO CHANGE drivers/i2c/mv_i2c.c | 36 +++- 1 files changed, 35 insertions(+), 1 deletions(-) diff --git a/drivers/i2c

[U-Boot] [PATCH V5 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 --- Changelog: v2: rename previous pxa_i2c to mvi2c. V3: change previous name from pxa_i2c to mv_i2c clean code style issue exist in original code V4:

[U-Boot] [PATCH V5 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 --- Changelog: V2: NO CHANGE V3: clean code sytle issue V4: V5: NO CHANGE arch/arm/cpu/p

[U-Boot] [PATCH V5 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 --- Changelog: V2: NO CHANGE V3: clean code sytle issue Add i2c clock enable code include in I2C configure define block V4: make i2c definition included in the ifdef V5: NO CHANGE arch/arm/cpu/arm926ejs/pantheon/cpu.c

[U-Boot] [PATCH V5 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 --- Changelog: V2: V3: V4: Move original driver specific bit set to the general place V5: fix code style issue arch/arm/include/asm/io.h |8

[U-Boot] [PATCH V5 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 V5: Fix code style issue of the first patch Lei Wen

Re: [U-Boot] current head don;t compile for mpc52xx based boards

2011-03-27 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4d90289f.2000...@denx.de> you wrote: > > actual head doesn;t longer compile for the mpc52xx based > digsy_mtc_rev5 board (and a fast check, it seems it is > for mp52xx, 8xx, ppc4xx based boards): I think ALL PowerPC boards are affecte. Po-Yu Chuang, can you plea

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 <1301292225-15069-1-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 > --- > Changelog: > V4.1 > fix code style issue That s

[U-Boot] [PATCH 0/2] rtc, rv3029: add support for trickle charger

2011-03-27 Thread Heiko Schocher
This patchseries adds trickle charger support for the RTC RV3029 and add it to the existing digsy_mtc board (rev5 boards only). checkpatch says: total: 0 errors, 0 warnings, 117 lines checked 20110328/0001-rtc-rv3029-add-trickle-charger-support.patch has no obvious style problems and is ready f

[U-Boot] [PATCH 1/2] rtc, rv3029: add trickle charger support.

2011-03-27 Thread Heiko Schocher
Signed-off-by: Heiko Schocher --- README |2 + drivers/rtc/rv3029.c | 87 ++ 2 files changed, 89 insertions(+), 0 deletions(-) diff --git a/README b/README index 21cd71b..45b32e7 100644 --- a/README +++ b/README @@ -743,6 +743,8

[U-Boot] [PATCH 2/2] mpc52xx, digsy_mtc: add trickle charger support for rev5 boards.

2011-03-27 Thread Heiko Schocher
Signed-off-by: Heiko Schocher --- include/configs/digsy_mtc.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/digsy_mtc.h b/include/configs/digsy_mtc.h index e7fd0f7..7e50a86 100644 --- a/include/configs/digsy_mtc.h +++ b/include/configs/digsy_mtc.h @@ -25

[U-Boot] current head don;t compile for mpc52xx based boards

2011-03-27 Thread Heiko Schocher
Hello, actual head doesn;t longer compile for the mpc52xx based digsy_mtc_rev5 board (and a fast check, it seems it is for mp52xx, 8xx, ppc4xx based boards): [hs@pollux u-boot]$ ./MAKEALL digsy_mtc_rev5 Configuring for digsy_mtc_rev5 - Board: digsy_mtc, Options: DIGSY_REV5 libstubs.o: In function

[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 --- Changelog: V4.1 fix code style issue arch/arm/include/asm/io.h |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/ar

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

2011-03-27 Thread Lei Wen
Hi Wolfgang, On Mon, Mar 28, 2011 at 1:57 PM, Wolfgang Denk wrote: > 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. >> >> Sig

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 > --- > arch/arm/include/asm/io.h |8 > 1

[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 --- 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 arch/arm/

[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 --- 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| 16 +++ arch

[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 --- 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 b/drivers/i2c/mv_i2c.c i

[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 --- Changelog: V3: clean code sytle issue arch/arm/cpu/pxa/cpu.c | 11

[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 --- Changelog: v2: rename previous pxa_i2c to mvi2c. V3: change previous name from pxa_i2c to mv_i2c clean code style issue exist in original code ar

[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 --- arch/arm/include/asm/io.h |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/io.h b/arch/arm/include/

[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

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 Siz

[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 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

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 gi

[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] [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 i

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 ARIBAUD > 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 which nee

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 ARIBAUD > wrote: >> Le 22/03/2011 20:27, Tom Warren a écrit : >>> >>> Albert, >>> >>> On Wed, Feb 23, 2011 at 1:45 PM, Albert ARIBAUD >>> wrote: Le 23/02/2011 21:03, Tom Warren a écrit : >>

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 Kang > Cc: Albert Aribaud > Cc: Wolfgang Denk > Cc: Stefan Roese > Cc: Kim Phillips > Cc: Andy Fleming > Cc: Kumar Gala > --- Applied to u-boot-arm/next,

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 Waddel > > Remove obsolete board config.mk. > > Signed-off-by: Matt Waddel > --- Applied to next, thanks. Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lis

[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