[U-Boot] [PATCH v2 1/2] tools: mkimage: Fixed build warnings

2009-08-15 Thread Prafulla Wadaskar
uninitialized retval variable warning fixed crc32 APIs moved to crc.h (newly added) and build warnings fixed some indentation tabs fixed Signed-off-by: Prafulla Wadaskar --- Change log: v2: updated as per review feedback for v1 include/common.h |4 +--- include/u-boot/crc.h | 33

Re: [U-Boot] [PATCH] net: kirkwood: updates: used eth_setenv_enetaddr api

2009-08-15 Thread Prafulla Wadaskar
[U-Boot] [PATCH] net: kirkwood: updates: used > eth_setenv_enetaddr api > > On Friday 07 August 2009 17:37:51 Ben Warren wrote: > > Jean-Christophe PLAGNIOL-VILLARD wrote: > > > On 22:17 Fri 07 Aug , Prafulla Wadaskar wrote: > > >> eth_setenv_enetaddr is ava

[U-Boot] [PATCH] tools: mkimage: Fixed build warnings

2009-08-10 Thread Prafulla Wadaskar
uninitialized retval variable warning fixed crc32 api moved to crc.h(new) and build warnings fixed Signed-off-by: Prafulla Wadaskar --- include/common.h |4 +--- include/u-boot/crc.h | 33 + tools/mkimage.c | 14 +++--- 3 files changed

Re: [U-Boot] [PATCH] tools: unused code removal mpc86x_clk.c

2009-08-10 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, August 10, 2009 6:30 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH] tools: unused code removal mpc86x_clk.c

Re: [U-Boot] [PATCH] tools: unused code removal mpc86x_clk.c

2009-08-10 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, August 10, 2009 4:49 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH] tools: unused code removal mpc86x_clk.c

[U-Boot] [PATCH] tools: unused code removal mpc86x_clk.c

2009-08-10 Thread Prafulla Wadaskar
It is observed that tools/mpc86x_clk.c is not referred anywhere the build entry was commented in Makefile, all the references related to this file are removed Signed-off-by: Prafulla Wadaskar --- tools/Makefile | 10 --- tools/mpc86x_clk.c | 218

[U-Boot] [PATCH] tools: mkimage: Makefile sorted

2009-08-10 Thread Prafulla Wadaskar
The tools/Makefile is sorted for all entries, Signed-off-by: Prafulla Wadaskar --- tools/Makefile | 50 +- 1 files changed, 25 insertions(+), 25 deletions(-) diff --git a/tools/Makefile b/tools/Makefile index b5a1e39..6f36f23 100644 --- a/tools

Re: [U-Boot] [PATCH v2 1/8] tools: mkimage : bugfix returns correct value for list command

2009-08-10 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, August 10, 2009 2:37 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH v2 1/8] tools: mkimage : bugfix > retu

[U-Boot] [PATCH v2] net: kirkwood: updates: used eth_setenv_enetaddr api

2009-08-10 Thread Prafulla Wadaskar
eth_setenv_enetaddr is avaible by upper layer using this saves 204 bytes on total image size used Local OUI instead of Marvell OUI for random MAC address generation logic Signed-off-by: Prafulla Wadaskar --- Change log v2: updated as per feedback for v1 private MAC address used typos corrected

Re: [U-Boot] [PATCH 4/6] net: phy: bugfixes: mv88E61xx multichip addressing support

2009-08-10 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, August 10, 2009 1:56 PM > To: Prafulla Wadaskar > Cc: Manas Saksena; Ronen Shitrit; Nicolas Pitre; Ben Warren; > u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik; > Lennert

[U-Boot] [PATCH] net: phy: bugfixes: mv88E61xx compiler warnings fixed

2009-08-10 Thread Prafulla Wadaskar
1. mv88E61xx driver compiler warnings fixed 2. idstr if-else statements changed to switch() construct and added default case too. This fixed idstr may be uninitialized warning Signed-off-by: Prafulla Wadaskar --- drivers/net/phy/mv88e61xx.c | 23 ++- 1 files changed

Re: [U-Boot] [PATCH 4/6] net: phy: bugfixes: mv88E61xx multichip addressing support

2009-08-10 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, August 10, 2009 1:39 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik; Lennert > Buijten

[U-Boot] [PATCH] arm: rd6281a: Fixed NAND specific warning

2009-08-10 Thread Prafulla Wadaskar
It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF for NAND specific warning removal, same is done in this patch Signed-off-by: Prafulla Wadaskar --- include/configs/rd6281a.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/rd6281a.h b

[U-Boot] [PATCH v2 1/8] tools: mkimage : bugfix returns correct value for list command

2009-08-10 Thread Prafulla Wadaskar
List command always return "EXIT_SUCCESS" even in case of failure by any means. This patch return 0 if list command is sucessful, returns negative value reported by check_header functions Signed-off-by: Prafulla Wadaskar --- Change log: v2: added code rewritten to look it better as

Re: [U-Boot] [PATCH 6/8] tools: mkimage: Making table_entry code global

2009-08-09 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, August 10, 2009 2:00 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH 6/8] tools: mkimage: Making > ta

Re: [U-Boot] [PATCH 6/8] tools: mkimage: Making table_entry code global

2009-08-09 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Saturday, August 08, 2009 4:32 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH 6/8] tools: mkimage: Making > ta

[U-Boot] [PATCH] arm: Sheevaplug: Fixed NAND specific warning

2009-08-07 Thread Prafulla Wadaskar
It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF for NAND specific warning removal, same is done in this patch Signed-off-by: Prafulla Wadaskar --- include/configs/sheevaplug.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/sheevaplug.h b

[U-Boot] [PATCH] net: kirkwood: updates: used eth_setenv_enetaddr api

2009-08-07 Thread Prafulla Wadaskar
eth_setenv_enetaddr is avaible by upper layer using this saves 204 bytes on total image size Signed-off-by: Prafulla Wadaskar --- drivers/net/kirkwood_egiga.c | 13 - 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/drivers/net/kirkwood_egiga.c b/drivers/net

[U-Boot] [PATCH v2] arm: Kirkwood: add SYSRSTn Duration Counter Support

2009-08-07 Thread Prafulla Wadaskar
uot;sysrstdelay" variable is unset. for-ex. setenv sysrst_cmd "echo starting factory reset; nand erase 0xa 0x2; echo finish ed sysrst command;" will erase particular nand sector if triggered by this event Signed-off-by: Prafulla Wadas

Re: [U-Boot] Kirkwood gpio (was: timeout calculation underflow if imprecise 1kHz timer: fix)

2009-08-07 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Alessandro Rubini > Sent: Friday, August 07, 2009 4:00 PM > To: w...@denx.de > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] Kirkwood gpio (was: timeout calculation > under

Re: [U-Boot] ARM Pull Request

2009-08-06 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Thursday, July 30, 2009 4:02 AM > To: Prafulla Wadaskar > Cc: Jean-Christophe PLAGNIOL-VILLARD; U-Boot; Ben Warren; > Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] ARM Pull Reque

Re: [U-Boot] [PATCH] arm: Kirkwood: add SYSRSTn Duration Counter Support

2009-08-06 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Thursday, August 06, 2009 7:53 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH] arm: Kirkwood: add SYSRSTn > Dur

[U-Boot] [PATCH] arm: Kirkwood: add SYSRSTn Duration Counter Support

2009-08-06 Thread Prafulla Wadaskar
srst_cmd will be executed if pre-defined in environment variables for-ex. setenv sysrst_cmd "echo starting factory reset; nand erase 0xa 0x2; echo finish ed sysrst command;" will erase particular nand sector if triggered by this event

Re: [U-Boot] [PATCH 2/3]: arm: Kirkwood: Check the error summary bit for error detection

2009-08-06 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wolfgang Denk > Sent: Thursday, August 06, 2009 2:37 AM > To: Ben Warren > Cc: U-Boot ML > Subject: Re: [U-Boot] [PATCH 2/3]: arm: Kirkwood: Check the > error summary bit for e

Re: [U-Boot] [PATCH 3/3]: arm: Kirkwood: See to it that sent data is 8-byte aligned

2009-08-06 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wolfgang Denk > Sent: Thursday, August 06, 2009 2:38 AM > To: Ben Warren > Cc: U-Boot ML > Subject: Re: [U-Boot] [PATCH 3/3]: arm: Kirkwood: See to it > that sent data is 8-by

[U-Boot] [PATCH v2 7/8] tools: mkimage: Add: Kirkwood Boot Image support (kwbimage)

2009-07-31 Thread Prafulla Wadaskar
This is Third step towards cleaning mkimage code for kwbimage support in clean way. This patch adds type kwbimabe support for mkimage For more details refer docs/README.kwbimage This patch is tested with Sheevaplug board Signed-off-by: Prafulla Wadaskar --- Change log: v2: typos corrected

[U-Boot] [PATCH v5 8/8] Kirkwood: Sheevaplug: kwimage configuration

2009-07-31 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- Change log: v2: updated as per review feedback for v1 v3: some white spaces removed v4: tuned as per new kwbimage parsing (DATA command added for register setup) v5: ddr configuration corrected board/Marvell/sheevaplug/config.mk|3 + board

Re: [U-Boot] ARM Pull Request

2009-07-29 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wolfgang Denk > Sent: Thursday, July 23, 2009 10:49 PM > To: Jean-Christophe PLAGNIOL-VILLARD > Cc: U-Boot; Ben Warren > Subject: Re: [U-Boot] ARM Pull Request > > Dear Jean-C

Re: [U-Boot] Is it an error in function ehci_submit_root() in ehci-hcd.c

2009-07-29 Thread Prafulla Wadaskar
> -Original Message- > From: Michael Trimarchi [mailto:trimar...@gandalf.sssup.it] > Sent: Wednesday, July 29, 2009 8:41 PM > To: Remy Bohmer > Cc: Lv Terry-R65388; Prafulla Wadaskar; u-boot@lists.denx.de > Subject: Re: [U-Boot] Is it an error in function > ehci_

[U-Boot] [PATCH v4 8/8] Kirkwood: Sheevaplug: kwimage configuration

2009-07-28 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- Change log: v2: updated as per review feedback for v1 v3: some white spaces removed v4: tuned as per new kwbimage parsing (DATA command added for register setup) board/Marvell/sheevaplug/config.mk|3 + board/Marvell/sheevaplug/kwbimage.cfg | 162

[U-Boot] [PATCH 7/8] tools: mkimage: Add: Kirkwood Boot Image support (kwbimage)

2009-07-28 Thread Prafulla Wadaskar
This is Third step towards cleaning mkimage code for kwbimage support in clean way. This patch adds type kwbimabe support for mkimage For more details refer docs/README.kwbimage This patch is tested with Wheevaplub board Signed-off-by: Prafulla Wadaskar --- Makefile|5

[U-Boot] [PATCH 2/8] tools: mkimage: code abstraction generic and image specific

2009-07-28 Thread Prafulla Wadaskar
. Image specific code abstracted from mkimage.c to default_image.c/h to make mkimage code more generic 2. struct mkimage_params introduced to pass basic mkimage specific flags and variables to image specific functions Signed-off-by: Prafulla Wadaskar --- tools/Makefile|4

[U-Boot] [PATCH 3/8] tools: mkimage: Move image header code to image specific files

2009-07-28 Thread Prafulla Wadaskar
This is second step towards cleaning mkimage code for kwbimage support in clean way. In this patch- 1. The image_get_header_size function call is replaced by sizeof(image_header_t) in default_image.c 2. image header code moved form mkimage.c to default_image .c Signed-off-by: Prafulla Wadaskar

[U-Boot] [PATCH 6/8] tools: mkimage: Making table_entry code global

2009-07-28 Thread Prafulla Wadaskar
1. get_table_entry_id API made global 2. get_table_entry_name API made global 3. typedef table_entry_t moved to image.h Currently it is used by image.c only These APIs can be used by additional mkimage types supports for ex. kwbimage, to use it the API is made global Signed-off-by: Prafulla

[U-Boot] [PATCH 4/8] tools: mkimage: Implemented callback function for default image support

2009-07-28 Thread Prafulla Wadaskar
-by: Prafulla Wadaskar --- include/image.h |1 + tools/default_image.c | 38 +++--- tools/default_image.h |3 +- tools/mkimage.c | 53 tools/mkimage.h | 15 + 5 files changed, 96

[U-Boot] [PATCH 5/8] tools: mkimage: Making genimg_print_size API global

2009-07-28 Thread Prafulla Wadaskar
Currently it is used by image.c only This API can be used by additional mkimage types supports for ex. kwbimage, to use it the API is made global Signed-off-by: Prafulla Wadaskar --- common/image.c |3 +-- include/image.h |1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff

[U-Boot] [PATCH 1/8] tools: mkimage : bugfix returns correct value for list command

2009-07-28 Thread Prafulla Wadaskar
List command always return "EXIT_SUCCESS" even in case of failure by any means. This patch return 0 if list command is sucessful, returns negative value reported by check_header functions Signed-off-by: Prafulla Wadaskar --- tools/mkimage.c | 27 +-- 1 fil

Re: [U-Boot] mtest crashs for CONFIG_KW88F6281 boards

2009-07-27 Thread Prafulla Wadaskar
> -Original Message- > From: Heiko Schocher [mailto:h...@denx.de] > Sent: Tuesday, July 28, 2009 11:14 AM > To: Prafulla Wadaskar > Cc: U-Boot user list > Subject: arm: mtest crashs for CONFIG_KW88F6281 boards > > Hello Prafulla, > > it se

Re: [U-Boot] ARM Pull Request

2009-07-23 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wolfgang Denk > Sent: Thursday, July 23, 2009 10:49 PM > To: Jean-Christophe PLAGNIOL-VILLARD > Cc: U-Boot; Ben Warren > Subject: Re: [U-Boot] ARM Pull Request > > Dear Jean-C

Re: [U-Boot] kirkwood sheevaplug - broken build using git.denx.de/u-boot.git

2009-07-23 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Dieter Kiermaier > Sent: Thursday, July 23, 2009 2:13 PM > To: u-boot@lists.denx.de > Subject: [U-Boot] kirkwood sheevaplug - broken build using > git.denx.de/u-boot.git > >

Re: [U-Boot] FW: ARM Pull Request

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Stefan Roese [mailto:s...@denx.de] > Sent: Thursday, July 23, 2009 11:57 AM > To: u-boot@lists.denx.de > Cc: Prafulla Wadaskar; Ben Warren; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] FW: ARM Pull Request > > On Thu

Re: [U-Boot] FW: ARM Pull Request

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Ben Warren [mailto:biggerbadder...@gmail.com] > Sent: Thursday, July 23, 2009 11:40 AM > To: Prafulla Wadaskar > Cc: Wolfgang Denk; U-Boot; Jean-Christophe PLAGNIOL-VILLARD; > Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: FW: [U-B

Re: [U-Boot] [PATCH v1] usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: l.ping...@gmail.com [mailto:l.ping...@gmail.com] On > Behalf Of Remy Bohmer > Sent: Saturday, July 18, 2009 2:29 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [

[U-Boot] FW: ARM Pull Request

2009-07-22 Thread Prafulla Wadaskar
> > > Prafulla Wadaskar (3): > > > Marvell Sheevaplug Board support > > > Marvell MV88F6281GTW_GE Board support > > > Marvell RD6281A Board support Hi Ben, I think Pull request net not yet applied. This breaks build for RD6281A board.

Re: [U-Boot] ARM Pull Request

2009-07-22 Thread Prafulla Wadaskar
rkwood: added KW_TWSI_BASE in kirkwood.h > > arm, kirkwood: added kw_gpio_set_valid() in gpio.h > > > > Minkyu Kang (1): > > ARM Cortex A8: Move OMAP3 specific reset handler > > > > Piotr Ziecik (1): > > api: Fix broken build on ARM. > > >

Re: [U-Boot] [PATCH v3] arm, i2c: added support for the TWSI I2C Interface

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Thursday, July 23, 2009 3:17 AM > To: Heiko Schocher > Cc: Prafulla Wadaskar; U-Boot user list; Wolfgang Denk > Subject: Re: [PATCH v3] arm, i2c: added support f

Re: [U-Boot] [PATCH v2 3/4] tools: mkimage: kwbimage list command support

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Wednesday, July 22, 2009 4:11 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH v2 3/4] tools: mkimage: kwbimage >

Re: [U-Boot] [PATCH v2 1/4] tools: mkimage: hdr_size used to facilitate customized support

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Wednesday, July 22, 2009 2:48 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare > Subject: Re: [U-Boot] [PATCH v2 1/4] tools: mkimage: hdr_size > used to facilita

Re: [U-Boot] [PATCH v2 3/4] tools: mkimage: kwbimage list command support

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Wednesday, July 22, 2009 2:55 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH v2 3/4] tools: mkimage: kwbimage >

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

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Wednesday, July 22, 2009 2:06 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PATCH v2 2/4] tools: mkimage > (type=kwbimage

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

2009-07-22 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, July 20, 2009 8:27 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik; Lennert Buijtenhek >

Re: [U-Boot] [PATCH 5/6] net: Kirkwood_egiga: forced interface speed config support

2009-07-21 Thread Prafulla Wadaskar
> -Original Message- > From: Ben Warren [mailto:biggerbadder...@gmail.com] > Sent: Tuesday, July 21, 2009 11:53 AM > To: Jean-Christophe PLAGNIOL-VILLARD > Cc: Prafulla Wadaskar; Manas Saksena; Ronen Shitrit; Nicolas > Pitre; u-boot@lists.denx.de; Ashish Karkare; Pra

Re: [U-Boot] [PATCH 5/6] net: Kirkwood_egiga: forced interface speed config support

2009-07-21 Thread Prafulla Wadaskar
> -Original Message- > From: Ben Warren [mailto:biggerbadder...@gmail.com] > Sent: Tuesday, July 21, 2009 1:14 PM > To: Wolfgang Denk > Cc: Prafulla Wadaskar; Manas Saksena; Ronen Shitrit; Nicolas > Pitre; u-boot@lists.denx.de; Ashish Karkare; Prabhanjan > Sarnai

Re: [U-Boot] Pull request - net

2009-07-21 Thread Prafulla Wadaskar
Ben Warren, > > In message <4a656de2.1080...@gmail.com> you wrote: > > Wolfgang, > > > > The following changes since commit > 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0: > > Peter Tyser (1): > > Move examples/ to examples/standalone > > &

[U-Boot] [PATCH v3 4/4] Kirkwood: Sheevaplug: kwimage configuration

2009-07-21 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- Change log: v2: updated as per review feedback for v1 v3: some white spaces removed board/Marvell/sheevaplug/config.mk|3 + board/Marvell/sheevaplug/kwbimage.cfg | 162 + 2 files changed, 165 insertions(+), 0

[U-Boot] [PATCH v2 3/4] tools: mkimage: kwbimage list command support

2009-07-21 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- Change log: v2: braces removed on single-line statements coding styles func() converted to func () used defines for error values common/image.c |4 ++-- tools/kwbimage.c | 41 + tools/kwbimage.h |6

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

2009-07-21 Thread Prafulla Wadaskar
For more details refer docs/README.kwbimage Signed-off-by: Prafulla Wadaskar --- Change log: v2: strtok_r() used for simple parser algorithm updated as per feedback for v1 all line checked to be below 78 :-) v3: braces removed on single-line statements coding styles func() converted to func

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

2009-07-21 Thread Prafulla Wadaskar
For more details refer docs/README.kwbimage Signed-off-by: Prafulla Wadaskar --- Change log: v2: strtok_r() used for simple parser algorithm updated as per feedback for v1 all line checked to be below 78 :-) Makefile|5 + common/image.c |1 + doc/README.kwbimage

[U-Boot] [PATCH v2 1/4] tools: mkimage: hdr_size used to facilitate customized support

2009-07-21 Thread Prafulla Wadaskar
hdr_size variable is initialized at the begining of image creation algorithm instead of reading it each time. This facilitate to use the common code for other image type implementations for ex. kwbimage Signed-off-by: Prafulla Wadaskar --- hdr_size declaration moved at the top tools/mkimage.c

[U-Boot] [PATCH v2 1/4] tools: mkimage: hdr_size used to facilitate customized support

2009-07-21 Thread Prafulla Wadaskar
hdr_size variable is initialized at the begining of image creation algorithm instead of reading it each time. This facilitate to use the common code for other image type implementations for ex. kwbimage Signed-off-by: Prafulla Wadaskar --- hdr_size declaration moved at the top tools/mkimage.c

[U-Boot] [PATCH v2 1/4] tools: mkimage: hdr_size used to facilitate customized support

2009-07-21 Thread Prafulla Wadaskar
hdr_size variable is initialized at the begining of image creation algorithm instead of reading it each time. This facilitate to use the common code for other image type implementations for ex. kwbimage Signed-off-by: Prafulla Wadaskar --- hdr_size declaration moved at the top tools/mkimage.c

[U-Boot] [PATCH v2 1/4] tools: mkimage: hdr_size used to facilitate customized support

2009-07-21 Thread Prafulla Wadaskar
hdr_size variable is initialized at the begining of image creation algorithm instead of reading it each time. This facilitate to use the common code for other image type implementations for ex. kwbimage Signed-off-by: Prafulla Wadaskar --- hdr_size declaration moved at the top tools/mkimage.c

[U-Boot] [PATCH 3/4] tools: mkimage: kwbimage list command support

2009-07-21 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- common/image.c |4 ++-- tools/kwbimage.c | 41 + tools/mkimage.c |7 ++- 3 files changed, 49 insertions(+), 3 deletions(-) diff --git a/common/image.c b/common/image.c index 845006f..e3ad3e5 100644

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

2009-07-21 Thread Prafulla Wadaskar
For more details refer docs/README.kwbimage Signed-off-by: Prafulla Wadaskar --- Change log: v2: strtok_r() used for simple parser algorithm updated as per feedback for v1 all line checked to be below 78 :-) Makefile|5 + common/image.c |1 + doc/README.kwbimage

[U-Boot] [PATCH v2 4/4] Kirkwood: Sheevaplug: kwimage configuration

2009-07-21 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- Change log: v2: updated as per review feedback for v1 board/Marvell/sheevaplug/config.mk|3 + board/Marvell/sheevaplug/kwbimage.cfg | 162 + 2 files changed, 165 insertions(+), 0 deletions(-) create mode 100644 board

[U-Boot] [PATCH 3/4] tools: mkimage: kwbimage list command support

2009-07-21 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- common/image.c |4 ++-- tools/kwbimage.c | 41 + tools/mkimage.c |7 ++- 3 files changed, 49 insertions(+), 3 deletions(-) diff --git a/common/image.c b/common/image.c index 845006f..e3ad3e5 100644

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

Re: [U-Boot] [PATCH 1/3] tools: mkimage: hdr_size used to facilitate customized support

2009-07-18 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Sunday, July 19, 2009 3:04 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik; Lennert Buijtenhek >

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

2009-07-18 Thread Prafulla Wadaskar
Dear Wolfgang Thanks for your quick feedback > -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Sunday, July 19, 2009 3:33 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare;

Re: [U-Boot] [PATCH v1] usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root

2009-07-18 Thread Prafulla Wadaskar
> -Original Message- > From: l.ping...@gmail.com [mailto:l.ping...@gmail.com] On > Behalf Of Remy Bohmer > Sent: Saturday, July 18, 2009 2:29 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-Boot] [

Re: [U-Boot] [PATCH v7 2/6] Marvell Sheevaplug Board support

2009-07-18 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Saturday, July 18, 2009 11:11 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanja

Re: [U-Boot] [PATCH v13 3/6] Marvell MV88F6281GTW_GE Board support

2009-07-18 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Sunday, July 19, 2009 12:11 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik;

Re: [U-Boot] [PATCH 5/6] net: Kirkwood_egiga: forced interface speed config support

2009-07-18 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Sunday, July 19, 2009 12:14 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik;

Re: [U-Boot] [PATCH 6/6] Marvell RD6281A Board support

2009-07-18 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Sunday, July 19, 2009 12:18 AM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik;

Re: [U-Boot] [PATCH 3/3] Kirkwood: Sheevaplug: kwimage configuration

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

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

2009-07-18 Thread Prafulla Wadaskar
For more details refer docs/README.kwbimage Signed-off-by: Prafulla Wadaskar --- Makefile|5 ++ common/image.c |1 + doc/README.kwbimage | 77 ++ include/image.h |1 + tools/Makefile |1 + tools/kwbimage.c| 181

[U-Boot] [PATCH 3/3] Kirkwood: Sheevaplug: kwimage configuration

2009-07-18 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- board/Marvell/sheevaplug/kwbimage.cfg | 61 + 1 files changed, 61 insertions(+), 0 deletions(-) create mode 100644 board/Marvell/sheevaplug/kwbimage.cfg diff --git a/board/Marvell/sheevaplug/kwbimage.cfg b/board/Marvell

[U-Boot] [PATCH 1/3] tools: mkimage: hdr_size used to facilitate customized support

2009-07-18 Thread Prafulla Wadaskar
hdr_size variable is initialized at the start of image creation algorithm instead of reading it each time. This facilitate to use the common code for other image type implementations for ex. kwbimage Signed-off-by: Prafulla Wadaskar --- tools/mkimage.c | 18 -- 1 files changed

[U-Boot] [PATCH v1] usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root

2009-07-17 Thread Prafulla Wadaskar
This change is cheked in Linux source and fix found to be in sync. This patch is tested for USB host interface on Kirkwood based Sheevaplug platform (ARM little endian board) Risk: the impact of this patch is not validated on big endian board. This need to be checked... Signed-off-by: Prafulla

Re: [U-Boot] [PATCH][repost] mkimage support ( bin_dep.sh Support)

2009-07-16 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Thursday, July 16, 2009 4:55 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH][repost] mkimage support ( > bin_dep.sh Support) > > Dear Prafull

Re: [U-Boot] [PATCH 5/6] net: Kirkwood_egiga: forced interface speed config support

2009-07-16 Thread Prafulla Wadaskar
> -Original Message- > From: Dieter Kiermaier [mailto:dk-arm-li...@gmx.de] > Sent: Thursday, July 16, 2009 8:15 PM > To: u-boot@lists.denx.de > Cc: Prafulla Wadaskar; Manas Saksena; Ronen Shitrit; Nicolas > Pitre; Ashish Karkare; Prabhanjan Sarnaik; Lennert Buijte

[U-Boot] [PATCH 6/6][repost] Marvell RD6281A Board support

2009-07-16 Thread Prafulla Wadaskar
This is Marvell's 88F6281_A0 based reference design board This patch is tested for- 1. Boot from DRAM/NAND flash/NFS 2. File transfer using tftp and loadb 3. NAND flash read/write/erase Signed-off-by: Prafulla Wadaskar --- Change log: Sorry.. One commit was missing... MAINTA

[U-Boot] [PATCH 6/6] Marvell RD6281A Board support

2009-07-16 Thread Prafulla Wadaskar
This is Marvell's 88F6281_A0 based reference design board This patch is tested for- 1. Boot from DRAM/NAND flash/NFS 2. File transfer using tftp and loadb 3. NAND flash read/write/erase Signed-off-by: Prafulla Wadaskar --- MAINTAINERS |1 + MA

[U-Boot] [PATCH 5/6] net: Kirkwood_egiga: forced interface speed config support

2009-07-16 Thread Prafulla Wadaskar
tested on RD6281A Kirkwood board Signed-off-by: Prafulla Wadaskar --- drivers/net/kirkwood_egiga.c | 24 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/drivers/net/kirkwood_egiga.c b/drivers/net/kirkwood_egiga.c index 3c5db19..1dfd567 100644 --- a/drivers

[U-Boot] [PATCH 4/6] net: phy: bugfixes: mv88E61xx multichip addressing support

2009-07-16 Thread Prafulla Wadaskar
for RD_PHY in case of multichip addressing mode -fixed The Multichip Address mode is tested with RD6281A board having MV88E6165 switch on it Signed-off-by: Prafulla Wadaskar --- drivers/net/phy/mv88e61xx.c | 18 +- drivers/net/phy/mv88e61xx.h |2 +- 2 files changed

[U-Boot] [PATCH v13 3/6] Marvell MV88F6281GTW_GE Board support

2009-07-16 Thread Prafulla Wadaskar
orted Reviewed-by: Ronen Shitrit Signed-off-by: Prafulla Wadaskar --- Change log v2: updated as per first review comments debug_prints updated to debug v3: updaed as per review comments for v2 added mv88f6281gtw_ge.h file removed BITxx macros v4: updated as per review comments for v3 arch_misc

[U-Boot] [PATCH v7 2/6] Marvell Sheevaplug Board support

2009-07-16 Thread Prafulla Wadaskar
. Boot from USB supported Note: to boot Kirkwood kernel with USB support, you should add "usb start" in the boot sequence Signed-off-by: Prafulla Wadaskar --- Change log: v2: updated as per feedback for v1 v3: updated as per feedback for v2 v4: removed PHY driver dependency

[U-Boot] [PATCH 1/6] include/config_cmd_default.h cleanup

2009-07-16 Thread Prafulla Wadaskar
arranged configurations in alphabetical order CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH Signed-off-by: Prafulla Wadaskar --- include/config_cmd_default.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/config_cmd_default.h b/include

Re: [U-Boot] arm, i2c: added support for the TWSI I2C Interface

2009-07-16 Thread Prafulla Wadaskar
> -Original Message- > From: Heiko Schocher [mailto:h...@denx.de] > Sent: Thursday, July 16, 2009 3:47 PM > To: Prafulla Wadaskar > Cc: Jean-Christophe PLAGNIOL-VILLARD; U-Boot user list > Subject: Re: arm, i2c: added support for the TWSI I2C Interface &

Re: [U-Boot] arm, i2c: added support for the TWSI I2C Interface

2009-07-16 Thread Prafulla Wadaskar
> -Original Message- > From: Heiko Schocher [mailto:h...@denx.de] > Sent: Thursday, July 16, 2009 3:34 PM > To: Prafulla Wadaskar > Cc: Jean-Christophe PLAGNIOL-VILLARD; U-Boot user list > Subject: Re: arm, i2c: added support for the TWSI I2C Interface &

Re: [U-Boot] arm, i2c: added support for the TWSI I2C Interface

2009-07-16 Thread Prafulla Wadaskar
> -Original Message- > From: Heiko Schocher [mailto:h...@denx.de] > Sent: Thursday, July 16, 2009 1:31 PM > To: Jean-Christophe PLAGNIOL-VILLARD; Prafulla Wadaskar > Cc: U-Boot user list > Subject: arm, i2c: added support for the TWSI I2C Interface > > added

Re: [U-Boot] [PATCH][repost] mkimage support ( bin_dep.sh Support)

2009-07-15 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Prafulla Wadaskar > Sent: Tuesday, July 14, 2009 10:34 PM > To: Detlev Zundel > Cc: Ronen Shitrit; Nicolas Pitre; u-boot@lists.denx.de; > Ashish Karkar

Re: [U-Boot] [PATCH][repost] bin_dep.sh Support

2009-07-14 Thread Prafulla Wadaskar
> -Original Message- > From: Detlev Zundel [mailto:d...@denx.de] > Sent: Tuesday, July 14, 2009 5:09 PM > To: Prafulla Wadaskar > Cc: Wolfgang Denk; Manas Saksena; Ronen Shitrit; Nicolas > Pitre; u-boot@lists.denx.de; Ashish Karkare; Prabhanjan > Sarnaik; Lennert

Re: [U-Boot] [PATCH 4/4] arm/kirkwood: Add Keymile SUEN3 support

2009-07-13 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, July 13, 2009 4:54 PM > To: Prafulla Wadaskar > Cc: Jean-Christophe PLAGNIOL-VILLARD; Stefan Roese; > u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik > Subject: Re: [U-

Re: [U-Boot] [PATCH][repost] bin_dep.sh Support

2009-07-13 Thread Prafulla Wadaskar
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Monday, July 13, 2009 4:56 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Manas Saksena; Ronen Shitrit; > Nicolas Pitre; Ashish Karkare; Prabhanjan Sarnaik; Lennert Buijtenhek >

[U-Boot] [PATCH][repost] bin_dep.sh Support

2009-07-13 Thread Prafulla Wadaskar
/tools/bin_dep.sh b/tools/bin_dep.sh new file mode 100755 index 000..b32e2ab --- /dev/null +++ b/tools/bin_dep.sh @@ -0,0 +1,79 @@ +#!/bin/sh + +# (C) Copyright 2009 +# Marvell Semiconductor +# Written-by: Prafulla Wadaskar +# +# See file CREDITS for list of people who contributed to this +# p

Re: [U-Boot] [PATCH 4/4] arm/kirkwood: Add Keymile SUEN3 support

2009-07-13 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Sunday, July 12, 2009 9:11 PM > To: Stefan Roese > Cc: Prafulla Wadaskar; u-boot@lists.denx.de; Ashish Karkare; > Prabhanjan Sarnaik > Subject: Re: [U-Boot] [PA

Re: [U-Boot] [PATCH v6 2/2] Marvell Sheevaplug Board support

2009-07-12 Thread Prafulla Wadaskar
> -Original Message- > From: Jean-Christophe PLAGNIOL-VILLARD [mailto:plagn...@jcrosoft.com] > Sent: Sunday, July 12, 2009 9:37 PM > To: Wolfgang Denk > Cc: Prafulla Wadaskar; Manas Saksena; Ronen Shitrit; Nicolas > Pitre; u-boot@lists.denx.de; Ashish Karkare; Pra

[U-Boot] [PATCH v12] Marvell MV88F6281GTW_GE Board support

2009-07-10 Thread Prafulla Wadaskar
orted Reviewed-by: Ronen Shitrit Signed-off-by: Prafulla Wadaskar --- Change log v2: updated as per first review comments debug_prints updated to debug v3: updaed as per review comments for v2 added mv88f6281gtw_ge.h file removed BITxx macros v4: updated as per review comments for v3 arch_misc

<    7   8   9   10   11   12   13   14   15   >