Re: [U-Boot] [STATUS] Please send your pull requests now...

2009-10-22 Thread Wolfgang Denk
Dear Gupta, In message you wrote: > Is there any rc release planned as mentioned by wolfgang in his last > week's email? Isn't there any communication going on within Freesale? Doesn't the left hand know what the right hand is doing? Aren't you guys talking to each other? And, most of all, d

Re: [U-Boot] [STATUS] Please send your pull requests now...

2009-10-22 Thread Gupta Maneesh-B18878
Is there any rc release planned as mentioned by wolfgang in his last week's email? Regards Maneesh > -Original Message- > From: Jerry Van Baren [mailto:gvb.ub...@gmail.com] > Sent: Friday, October 23, 2009 7:58 AM > To: Gupta Maneesh-B18878 > Cc: Wolfgang Denk; u-boot@lists.denx.de > S

Re: [U-Boot] [STATUS] Please send your pull requests now...

2009-10-22 Thread Jerry Van Baren
Gupta Maneesh-B18878 wrote: > Dear Wolfgang, > > Can you let us know by when this release will be made? > > Regards > Maneesh Current Status: * The Merge Window for the next release (v2009.11) is closed. * Release "v2009.11" is scheduled i

Re: [U-Boot] [STATUS] Please send your pull requests now...

2009-10-22 Thread Gupta Maneesh-B18878
Dear Wolfgang, Can you let us know by when this release will be made? Regards Maneesh > -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Wolfgang Denk > Sent: Saturday, October 17, 2009 2:24 AM > To: u-boot@lists.denx.de > Sub

Re: [U-Boot] [PATCH] mmc: new legacy MMC/SPI driver

2009-10-22 Thread Mike Frysinger
On Thursday 22 October 2009 18:50:16 Ivan Llopard wrote: > Awesome, great code!. I think it MUST be added to the u-boot tree but > i'm not the all powerful Wolfgang ;-). > I think he doesn't know how to include this driver and the spi one. > You should take a look at the configuration file for your

[U-Boot] [PATCH 5/5] Add 'editenv' command

2009-10-22 Thread Peter Tyser
The editenv command can be used to edit an environment variable. Editing an environment variable is useful when one wants to tweak an existing variable, for example fix a typo or change the baudrate in the 'bootargs' environment variable. Signed-off-by: Peter Tyser --- The footprint of editenv is

[U-Boot] [PATCH 4/5] _do_setenv(): Delete 0-length environment variables

2009-10-22 Thread Peter Tyser
Previously _do_setenv() would only delete an environment variable if it was passed a NULL string pointer as a value. It should also delete an environment variable when it encounters a valid string pointer of 0-length. Signed-off-by: Peter Tyser --- common/cmd_nvedit.c |2 +- 1 files changed

[U-Boot] [PATCH 3/5] readline(): Add ability to modify a string buffer

2009-10-22 Thread Peter Tyser
If the 'buf' parameter is a non-0-length string, its contents will be edited. Previously, the initial value of 'buf' was ignored and the user entered its contents from scratch. Signed-off-by: Peter Tyser --- common/main.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) dif

[U-Boot] [PATCH 2/5] cread_line(): Remove unused variables

2009-10-22 Thread Peter Tyser
Signed-off-by: Peter Tyser --- common/main.c |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/common/main.c b/common/main.c index 298982a..b47e443 100644 --- a/common/main.c +++ b/common/main.c @@ -715,16 +715,13 @@ static int cread_line(const char *const prompt, char

[U-Boot] [PATCH 1/5] Check for NULL prompt in readline_into_buffer()

2009-10-22 Thread Peter Tyser
Previously, passing readline() or readline_into_buffer() a NULL 'prompt' parameter would result in puts() printing garbage when CONFIG_CMDLINE_EDITING was enabled. Signed-off-by: Peter Tyser --- common/main.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/common/main.

[U-Boot] Failed mail

2009-10-22 Thread postmas...@acn2.net
Your message to mx.jaring.my was rejected. I said: RCPT To: And mx.jaring.my [192.228.250.150] responded with 553 5.3.0 ... User unknown The message headers follow: --- Begin Message --- - --- End Message --- ___ U-Boot mailing list U-Boot@lists

[U-Boot] [PATCH 2/5] Add check for ECC errors during SDRAM POST and mtest

2009-10-22 Thread Peter Tyser
Add a CONFIG_CHECK_ECC_ERRORS define which causes the SDRAM POST and mtest command to check for ECC errors during execution. The 85xx and 86xx architectures currently support enabling CONFIG_CHECK_ECC_ERRORS. Other architectures/boards can use it if they implement an ecc_count() and ecc_info() fu

[U-Boot] [PATCH 1/5] 8xxx: Add 'ecc' command

2009-10-22 Thread Peter Tyser
Add a new 'ecc' command to interact with the 85xx and 86xx DDR ECC registers. The 'ecc' command can inject data/ECC errors to simulate errors and provides an 'info' subcommand which displays ECC error information such as failure address, read vs expected data/ECC, physical signal which failed, sin

[U-Boot] [PATCH 4/5] xes: Enable memory POST

2009-10-22 Thread Peter Tyser
Note that SPRG4 is used to store U-Boot's post 'word'. Signed-off-by: Peter Tyser --- board/xes/common/Makefile|1 + board/xes/common/fsl_8xxx_post.c | 36 include/configs/XPEDITE5170.h|1 + include/configs/XPEDITE5200.h|1 + inc

[U-Boot] [PATCH 3/5] xes: Enable the 'ecc' command

2009-10-22 Thread Peter Tyser
Enable the 'ecc' command for XES's 85xx and 86xx boards. Signed-off-by: Peter Tyser --- include/configs/XPEDITE5170.h |1 + include/configs/XPEDITE5200.h |1 + include/configs/XPEDITE5370.h |1 + 3 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/XPEDITE51

[U-Boot] [PATCH 5/5] xes: Enable ECC error checks during SDRAM POST and mtest

2009-10-22 Thread Peter Tyser
Enable ECC error checking on XES's 85xx and 86xx boards. Signed-off-by: Peter Tyser --- include/configs/XPEDITE5170.h |1 + include/configs/XPEDITE5200.h |1 + include/configs/XPEDITE5370.h |1 + 3 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/XPEDITE51

Re: [U-Boot] Requesting an update to ARM mach types

2009-10-22 Thread Tom
Paulraj, Sandeep wrote: >> Paulraj, Sandeep wrote: >>> Tom, >>> >>> The ARM mach-types.h in /include/asm-arm needs to be updated with what >> is present at >>> http://www.arm.linux.org.uk/developer/machines/ >>> >>> >>> Thanks, >>> Sandeep >>> ___ >>> U-B

Re: [U-Boot] [PATCH] mmc: new legacy MMC/SPI driver

2009-10-22 Thread Ivan Llopard
Awesome, great code!. I think it MUST be added to the u-boot tree but i'm not the all powerful Wolfgang ;-). I think he doesn't know how to include this driver and the spi one. You should take a look at the configuration file for your board and add the corresponding macros. CONFIG_SPI_MMC is a new

Re: [U-Boot] Requesting an update to ARM mach types

2009-10-22 Thread Nishanth Menon
On Thu, Oct 22, 2009 at 4:42 PM, Paulraj, Sandeep wrote: > >> >> Paulraj, Sandeep wrote: >> > Tom, >> > >> > The ARM mach-types.h in /include/asm-arm needs to be updated with what >> is present at >> > >> > http://www.arm.linux.org.uk/developer/machines/ >> > >> > >> > Thanks, >> > Sandeep >> > __

Re: [U-Boot] [PATCH 1/2] fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb

2009-10-22 Thread Jerry Van Baren
Hi Stefan, Wolfgang, Stefan Roese wrote: > This function can be used to update the size in the "reg" property > of the NOR FLASH device nodes. This is necessary for boards with > non-fixed NOR FLASH sizes. > > Signed-off-by: Stefan Roese > Cc: Wolfgang Denk > Cc: Gerald Van Baren Looking at t

Re: [U-Boot] Requesting an update to ARM mach types

2009-10-22 Thread Paulraj, Sandeep
> > Paulraj, Sandeep wrote: > > Tom, > > > > The ARM mach-types.h in /include/asm-arm needs to be updated with what > is present at > > > > http://www.arm.linux.org.uk/developer/machines/ > > > > > > Thanks, > > Sandeep > > ___ > > U-Boot mailing list >

Re: [U-Boot] [PATCH] ppc4xx: Initialize magnetic couplers on PLU405

2009-10-22 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <200910222308.14956.matthias.fu...@esd-electronics.com> you wrote: > > + u8 *ctrl = (u8*)addr; > + > + /* reset */ > + out_8(ctrl, 0x21); > + > + /* dominant */ > + out_8(ctrl + 6, 0x00); > + out_8(ctrl + 7, 0x14); > + out_8(ctrl + 8, 0xf

[U-Boot] [PATCH] ppc4xx: Initialize magnetic couplers on PLU405

2009-10-22 Thread Matthias Fuchs
This patch fixes an ugly behavior of the IL712 magnetic couplers as used on PLU405. These parts will remember their last state over a power cycle which might cause unwanted behavior. Signed-off-by: Matthias Fuchs --- board/esd/plu405/plu405.c | 33 + include/con

[U-Boot] [PATCH] ppc4xx: Remove autoupdate feature from PLU405 board

2009-10-22 Thread Matthias Fuchs
The autoupdate feature is not used on PLU405 boards. So remove it. Signed-off-by: Matthias Fuchs --- board/esd/plu405/Makefile |1 - board/esd/plu405/plu405.c | 16 include/configs/PLU405.h |2 -- 3 files changed, 0 insertions(+), 19 deletions(-) diff --git a/board/e

[U-Boot] [PATCH] ppc4xx: Remove confusing comment

2009-10-22 Thread Matthias Fuchs
This is not the sequoia board. Signed-off-by: Matthias Fuchs --- board/esd/pmc440/config.mk |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/board/esd/pmc440/config.mk b/board/esd/pmc440/config.mk index 0c4d582..91e65ec 100644 --- a/board/esd/pmc440/config.mk +++ b/boa

Re: [U-Boot] [PATCH] mmc: new legacy MMC/SPI driver

2009-10-22 Thread Mike Frysinger
On Thursday 22 October 2009 10:31:23 Wilfried Busalski wrote: > Hi Mike you're still top posting > I'm very new to u-boot and my problem is on with hook the mmc interface > will be activated and therefor I did not understand what to do ? i dont know what you mean. there is no hook for you to c

Re: [U-Boot] Requesting an update to ARM mach types

2009-10-22 Thread Tom Rix
Paulraj, Sandeep wrote: > Tom, > > The ARM mach-types.h in /include/asm-arm needs to be updated with what is > present at > > http://www.arm.linux.org.uk/developer/machines/ > > > Thanks, > Sandeep > ___ > U-Boot mailing list > U-Boot@lists.denx.de >

Re: [U-Boot] hush while confusion

2009-10-22 Thread Örjan Friberg
> -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: den 22 oktober 2009 20:07 > To: Örjan Friberg > Cc: from_denx_ub...@dexdyne.com; u-boot@lists.denx.de > Subject: Re: [U-Boot] hush while confusion > > Dear =?iso-8859-1?Q?=D6rjan_Friberg?=, > > In message server.fla

Re: [U-Boot] hush while confusion

2009-10-22 Thread Wolfgang Denk
Dear =?iso-8859-1?Q?=D6rjan_Friberg?=, In message you wrote: > > > OK I have changed it to > > > > while 1==1 ; do ; mmcinit && ext2load mmc 0:1 0x1040 /boot/uImage > > && > > bootm 0x1040 ; done > > Replace the "1==1" with ":" and skip the ";" after "do" I recommend to try things ou

Re: [U-Boot] hush while confusion

2009-10-22 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > This now works > > while itest 1 == 1 ; do ; mmcinit && ext2load mmc 0:1 0x1040 > /boot/uImage && bootm 0x1040 ; done > > I could do with a literal "true" - I tried 'true' but that wasn't right - > is there a suitable constant value? No

Re: [U-Boot] [PATCH v2] Fix DM9000 MAC address handling

2009-10-22 Thread Ben Warren
Hi Sandeep, Paulraj, Sandeep wrote: > >> Proper behavior is to pull MAC address from NVRAM in the initialization() >> an >> stuff it in dev->address, then program the device from dev->address in >> the init() function. >> >> Signed-off-by: Ben Warren >> --- >> > Ben I tested and here is

[U-Boot] Requesting an update to ARM mach types

2009-10-22 Thread Paulraj, Sandeep
Tom, The ARM mach-types.h in /include/asm-arm needs to be updated with what is present at http://www.arm.linux.org.uk/developer/machines/ Thanks, Sandeep ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Please pull u-boot-mpc83xx.git

2009-10-22 Thread Kim Phillips
On Sun, 18 Oct 2009 21:25:59 +0200 Wolfgang Denk wrote: > > Kim Phillips (1): > > mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage) > > > Sorry, but has this patch ever been posted on a mailing list? I cannot > find any traces of it. http://lists.denx.de/pipermail/u-boo

Re: [U-Boot] [PATCH v2] Fix DM9000 MAC address handling

2009-10-22 Thread Paulraj, Sandeep
> > Proper behavior is to pull MAC address from NVRAM in the initialization() > an > stuff it in dev->address, then program the device from dev->address in > the init() function. > > Signed-off-by: Ben Warren > --- Ben I tested and here is the result. 1) dhcp still does not work 2) I have to

Re: [U-Boot] esdmode for DDR2

2009-10-22 Thread Werner Nedel
Sorry again, and with DDR2. On Thu, Oct 22, 2009 at 11:42 AM, Werner Nedel wrote: > Hi, > > sorry about that. I'm working on a MPC8548 platform and using the mpc8xxx > common code for DDR configuration. > > > On Thu, Oct 22, 2009 at 11:36 AM, Kumar Gala wrote: > >> >> On Oct 22, 2009, at 6:48 A

Re: [U-Boot] [PATCH 1/7] fdt_support: Add multi-serial support for stdout fixup

2009-10-22 Thread Jerry Van Baren
Kumar Gala wrote: > On Oct 15, 2009, at 8:47 AM, Anton Vorontsov wrote: > >> Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX >> constant. With multi-serial support, the CONS_INDEX may no longer >> represent actual console, so we should try to extract port number >> from the curr

Re: [U-Boot] esdmode for DDR2

2009-10-22 Thread Werner Nedel
Hi, sorry about that. I'm working on a MPC8548 platform and using the mpc8xxx common code for DDR configuration. On Thu, Oct 22, 2009 at 11:36 AM, Kumar Gala wrote: > > On Oct 22, 2009, at 6:48 AM, Werner Nedel wrote: > > Hi, >> >> I was looking the ctrl_regs.c file at the last release of u-boo

Re: [U-Boot] [PATCH] mmc: new legacy MMC/SPI driver

2009-10-22 Thread Wilfried Busalski
Hi Mike thaks for your responds I'm very new to u-boot and my problem is on with hook the mmc interface will be activated and therefor I did not understand what to do ? regards wilfried >On Thursday 22 October 2009 09:02:32 Wilfried Busalski wrote: >> Hi Mike > >please dont top post > >> I've

Re: [U-Boot] esdmode for DDR2

2009-10-22 Thread Kumar Gala
On Oct 22, 2009, at 6:48 AM, Werner Nedel wrote: > Hi, > > I was looking the ctrl_regs.c file at the last release of u-boot, > specifically at sdram_mode register, and checking at AN3369.pdf I > think that > Rtt bit position might be wrong. At the code, the bit shifting is 5, > but > shouldn'

Re: [U-Boot] [PATCH 1/7] fdt_support: Add multi-serial support for stdout fixup

2009-10-22 Thread Kumar Gala
On Oct 15, 2009, at 8:47 AM, Anton Vorontsov wrote: > Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX > constant. With multi-serial support, the CONS_INDEX may no longer > represent actual console, so we should try to extract port number > from the current stdio device name ins

Re: [U-Boot] [PATCH] mmc: new legacy MMC/SPI driver

2009-10-22 Thread Mike Frysinger
On Thursday 22 October 2009 09:02:32 Wilfried Busalski wrote: > Hi Mike please dont top post > I've included your source "mmc-spi.c" into my u-boot tree. > > What do I have to do to activate your driver ? > Is it enough to call the function "mmc_legacy_init(int verbose)" ? > and set the new c

Re: [U-Boot] hush while confusion

2009-10-22 Thread Örjan Friberg
> -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot- > boun...@lists.denx.de] On Behalf Of David Collier > Sent: den 22 oktober 2009 15:22 > To: u-boot@lists.denx.de > Subject: Re: [U-Boot] hush while confusion > > > OK I have changed it to > > while 1==1 ; do ; mmci

Re: [U-Boot] hush while confusion

2009-10-22 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > OK I have changed it to > > while 1==1 ; do ; mmcinit && ext2load mmc 0:1 0x1040 /boot/uImage && > bootm 0x1040 ; done > > and if I do run bootcmd it simply says "unknown command 1==1" > > so I'm still lost Well, this is not valid

Re: [U-Boot] hush while confusion

2009-10-22 Thread David Collier
sorry - my fault - I failed to grasp the meaning of itest This now works while itest 1 == 1 ; do ; mmcinit && ext2load mmc 0:1 0x1040 /boot/uImage && bootm 0x1040 ; done I could do with a literal "true" - I tried 'true' but that wasn't right - is there a suitable constant value? I'd st

Re: [U-Boot] hush while confusion

2009-10-22 Thread David Collier
OK I have changed it to while 1==1 ; do ; mmcinit && ext2load mmc 0:1 0x1040 /boot/uImage && bootm 0x1040 ; done and if I do run bootcmd it simply says "unknown command 1==1" so I'm still lost I know I have hush installed, cosz if I do your multi-line-version I get the prompt. --

Re: [U-Boot] [PATCH] ARM: OMAP3: Refactors the SM911x driver

2009-10-22 Thread Tom
Dirk Behme wrote: > From: Steve Sakoman > > Move the test up in the function to not hang on systems without ethernet. > > Signed-off-by: Steve Sakoman > Acked-by: Ben Warren > Dirk, Thanks for reposting this. I will push this to arm. Ack. Tom --- > drivers/net/smc911x.c | 12 ++--

Re: [U-Boot] [PATCH] mmc: new legacy MMC/SPI driver

2009-10-22 Thread Wilfried Busalski
Hi Mike I've included your source "mmc-spi.c" into my u-boot tree. What do I have to do to activate your driver ? Is it enough to call the function "mmc_legacy_init(int verbose)" ? and set the new config_ ? regards Wilfried "Mike Frysinger" schrieb im Newsbeitrag news:1255537669-1285-1-git

Re: [U-Boot] [PATCH 4/4] mpc52xx: add support for the IPEK01 board

2009-10-22 Thread Wolfgang Grandegger
Hi, there was a simple script fine in the patch directory as well, causing "git send-email" to compose and send a crap mail using wired addresses. Sorry again for the noise. Will remember next time. Wolfgang. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] How to enable to print messages on serial port(ttyS0) in u-boot?

2009-10-22 Thread Ravi Kumar Kulkarni
>> Please use plain text formatting, not HTML.  Your quoting will be more >> readable and it won't annoy us curmudgeons. sorry was replying by my gmail. now its plain text . I hope it doesnt annoy u anymore. > > >> I see you actually used "#define" yeah its #define CONFIG_ATMEL_SPI 1 . sorry fo

Re: [U-Boot] [UBOOT] MUSB: query

2009-10-22 Thread Tom
I have submitted patches for musb recently. I am using them to move the usb/cdc gadget support forward to the mainline. Please review them before submitting yours. Tom Gupta, Ajay Kumar wrote: > Hi, > > I don't see MUSB support in uboot for OMAP3 platforms though a few patches > supporting MUS

Re: [U-Boot] How to enable to print messages on serial port(ttyS0) in u-boot?

2009-10-22 Thread Jerry Van Baren
Hi Ravi, Ravi Kumar Kulkarni wrote: > > >>Yes, printf(), as you can see by looking at the source. The serial > port and printf() support is one of the first things that is > >>configured exactly to help debug via print statements. > >>If it isn't working on your board, you have more fundame

Re: [U-Boot] [PATCH 0/4] *** SUBJECT HERE ***

2009-10-22 Thread Wolfgang Grandegger
Wolfgang Denk wrote: > Dear Wolfgang Grandegegr, > > In message <1256208516-10637-2-git-send-email...@grandegger.com> you wrote: >> From: Wolfgang Grandegger >> >> *** BLURB HERE *** > > Heh :-) "git send-email" obviously has sent the emacs backup file "-cover-letter.patch~" in my patch dir

Re: [U-Boot] How to enable to print messages on serial port(ttyS0) in u-boot?

2009-10-22 Thread Ravi Kumar Kulkarni
On Thu, Oct 22, 2009 at 6:04 PM, Wolfgang Denk wrote: > Dear Ravi Kumar Kulkarni, > > In message <532dd5840910220518h4df2fe9cy7e66f043a2acd...@mail.gmail.com> > you wrote: > > >>> # CONFIG_ATMEL_SPI 1 > correction : its actually #define CONFIG_ATMEL_SPI 1 >> As Mike already pointed out you sh

Re: [U-Boot] How to enable to print messages on serial port(ttyS0) in u-boot?

2009-10-22 Thread Wolfgang Denk
Dear Ravi Kumar Kulkarni, In message <532dd5840910220518h4df2fe9cy7e66f043a2acd...@mail.gmail.com> you wrote: > > 2) changed config file in /include/configs/at91sam9261ek.h > added a line > # CONFIG_ATMEL_SPI 1 As Mike already pointed out you should probably consider hiring someone who has a

Re: [U-Boot] How to enable to print messages on serial port(ttyS0) in u-boot?

2009-10-22 Thread Ravi Kumar Kulkarni
>>Yes, printf(), as you can see by looking at the source. The serial port and printf() support is one of the first things that is >>configured exactly to help debug via print statements. >>If it isn't working on your board, you have more fundamental problems (hardware initialization, serial port c

Re: [U-Boot] How to enable to print messages on serial port(ttyS0) in u-boot?

2009-10-22 Thread Jerry Van Baren
sunr2007 wrote: > Dear all , > Is there a option to print the message or some variable value which i av > modified in code to print it on serial console to check whether it is > getting executed or not? like we use printf in application programming . if > yes how to enable it and use it? . thanks.

[U-Boot] [u-boot] [PATCH] [2/2] [v1.3] mxc_fec: avoid free() calls to already freed pointers.

2009-10-22 Thread javier Martin
Sometimes, inside NetLoop, eth_halt() is called before eth_init() has been called. This is harmless except for free() calls to pointers which have not been allocated yet. This patch adds two states to distinguish when it is necessary to call free() and when it is not. This has been tested in i.MX2

Re: [U-Boot] [PATCH] fdt: Fix fdt padding issue for initrd mem_rsv

2009-10-22 Thread Jerry Van Baren
Kumar Gala wrote: > Its possible that we end up with a device tree that happens to be a > particular size that after we call fdt_resize() we don't have any > space left for the initrd mem_rsv. > > Fix this be adding a second mem_rsv into the size calculation. We > had one to cover the fdt itself

[U-Boot] esdmode for DDR2

2009-10-22 Thread Werner Nedel
Hi, I was looking the ctrl_regs.c file at the last release of u-boot, specifically at sdram_mode register, and checking at AN3369.pdf I think that Rtt bit position might be wrong. At the code, the bit shifting is 5, but shouldn't be 6? I think that it overwrites AL register. Thanks in advance, W

Re: [U-Boot] Write operation for USB storage

2009-10-22 Thread Prafulla Wadaskar
> -Original Message- > From: l.ping...@gmail.com [mailto:l.ping...@gmail.com] On > Behalf Of Remy Bohmer > Sent: Thursday, October 22, 2009 4:18 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] Write operation for USB storage > > Hi Prafulla, > > 2009/10/2

Re: [U-Boot] [PATCH 0/4] *** SUBJECT HERE ***

2009-10-22 Thread Wolfgang Denk
Dear Wolfgang Grandegegr, In message <1256208516-10637-2-git-send-email...@grandegger.com> you wrote: > From: Wolfgang Grandegger > > *** BLURB HERE *** Heh :-) Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Ki

Re: [U-Boot] hush while confusion

2009-10-22 Thread Wolfgang Denk
Dear "David Collier", In message you wrote: > > what I'd like to do is put it in a while loop - this is an embedded > system and it has nothing better to do than to try again. > > but if I set up > > bootcmd=while [ ]; do ; mmcinit && ext2load mmc 0:1 0x1040 > /boot/uImage && bootm

Re: [U-Boot] Write operation for USB storage

2009-10-22 Thread Wolfgang Denk
Dear Prafulla Wadaskar, In message <73173d32e9439e4abb5151606c3e19e202f1d36...@sc-vexch1.marvell.com> you wrote: > > I can use fatload or ext2load to read from USB storage > My need is to write to a storage over USB interface. > > With reference to this link > https://lists.one-eyed-alien.net/

[U-Boot] [UBOOT] MUSB: query

2009-10-22 Thread Gupta, Ajay Kumar
Hi, I don't see MUSB support in uboot for OMAP3 platforms though a few patches supporting MUSB are available in Sakoman's tree (omap-dev-usb branch) since Feb-09. What is the current status on this? I saw some long discussion on MUSB Patches specially for clock changes. Is someone working on

[U-Boot] [PATCH 4/4] mpc52xx: add support for the IPEK01 board

2009-10-22 Thread Wolfgang Grandegegr
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 0/4] *** SUBJECT HERE ***

2009-10-22 Thread Wolfgang Grandegegr
From: Wolfgang Grandegger *** BLURB HERE *** Anatolij Gustschin (1): video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode Wolfgang Grandegger (3): video: mb862xx: improve board-specific Lime configuration video: mb862xx: add option VIDEO_FB_16BPP_WORD_SWAP for IPEK01 mpc

[U-Boot] [PATCH 4/4] mpc52xx: add support for the IPEK01 board

2009-10-22 Thread Wolfgang Grandegegr
From: Wolfgang Grandegger This patch adds support for the board IPEK01 based on the MPC5200. The Futjitsu Lime graphics controller is configured in 16 bpp mode. Signed-off-by: Wolfgang Grandegger --- MAINTAINERS |2 + MAKEALL |1 + Makefile

[U-Boot] [PATCH 1/4] video: mb862xx: improve board-specific Lime configuration

2009-10-22 Thread Wolfgang Grandegegr
From: Wolfgang Grandegger To avoid board-specific code accessing the mb862xx registers directly, the public function mb862xx_probe() has been introduced. Furthermore, the "Change of Clock Frequency" and "Set Memory I/F Mode" registers are now defined by CONFIG_SYS_MB862xx_CCF and CONFIG_SYS_MB862

[U-Boot] [PATCH 2/4] video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode

2009-10-22 Thread Wolfgang Grandegegr
From: Anatolij Gustschin The new IPEK01 board can use the 32 bpp mode for the Lime graphics controller. For this mode, video accelaration does not work. This patch makes the accelaration configurable via CONFIG_VIDEO_MB862xx_ACCEL, which is enabled for the lwmon5 and the socrates board for backwa

[U-Boot] [PATCH 3/4] video: mb862xx: add option VIDEO_FB_16BPP_WORD_SWAP for IPEK01

2009-10-22 Thread Wolfgang Grandegegr
From: Wolfgang Grandegger In 16 bpp mode, the new IPEK01 board only requires swapping of D16 words for D32 accesses due to the diffferent connecting to the GDC bus. This patch introduces the configuration option VIDEO_FB_16BPP_WORD_SWAP, which should be set for all board using the mb862xx in 16 b

[U-Boot] [PATCH 0/4] mpc52xx: IPEK01 board support

2009-10-22 Thread Wolfgang Grandegegr
From: Wolfgang Grandegger This patch add support for the IPEK01 MPC5200 based board. It requires three patches for the Fujitsu MB862xx driver. Anatolij Gustschin (1): video: mb862xx: add option CONFIG_VIDEO_MB862xx_ACCEL for 32bpp mode Wolfgang Grandegger (3): video: mb862xx: improve board-

Re: [U-Boot] Write operation for USB storage

2009-10-22 Thread Remy Bohmer
Hi Prafulla, 2009/10/22 Prafulla Wadaskar : > Hi List > > I can use fatload or ext2load to read from USB storage > My need is to write to a storage over USB interface. > > With reference to this link > https://lists.one-eyed-alien.net/pipermail/usb-storage/2008-May/003665.html > > Is there any in

[U-Boot] hush while confusion

2009-10-22 Thread David Collier
thanks to everyone I have a working bootcmd which stops if the mmc card is extracted. what I'd like to do is put it in a while loop - this is an embedded system and it has nothing better to do than to try again. but if I set up bootcmd=while [ ]; do ; mmcinit && ext2load mmc 0:1 0x1040

Re: [U-Boot] return value from do_ext2load

2009-10-22 Thread David Collier
I'm running a home-brew based on 2008-10 I started with NGW100 version, and went on from there :-( D In article <20091021184858.4410819...@gemini.denx.de>, w...@denx.de (Wolfgang Denk) wrote: > *From:* Wolfgang Denk > *To:* from_denx_ub...@dexdyne.com > *CC:* u-boot@lists.denx.de > *Date:*

Re: [U-Boot] MPC83xx and uec

2009-10-22 Thread Joakim Tjernlund
Ben Warren wrote on 22/09/2009 18:55:22: > > Anton Vorontsov wrote: > > On Tue, Sep 22, 2009 at 04:03:16PM +0200, Joakim Tjernlund wrote: > > [...] > > > > Also > > drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); > > include/netdev.h:int uec_initialize(int index

[U-Boot] Write operation for USB storage

2009-10-22 Thread Prafulla Wadaskar
Hi List I can use fatload or ext2load to read from USB storage My need is to write to a storage over USB interface. With reference to this link https://lists.one-eyed-alien.net/pipermail/usb-storage/2008-May/003665.html Is there any interface available or under development in U-boot to write on

Re: [U-Boot] My SPI driver not working in u-boot.

2009-10-22 Thread Ravi Kumar Kulkarni
On Thu, Oct 22, 2009 at 12:59 PM, Magnus Lilja wrote: > >> >>printf("%s:%d\n", __FILE__, __LINE__);? Given that printf and the > UART > >> >>works on your board that is. > > > > I tried with this > > printf("%s:%d\n", /drivers/spi/spi-new.c, 72); > > 72 is the my line number but im gettin error

Re: [U-Boot] My SPI driver not working in u-boot.

2009-10-22 Thread Mike Frysinger
On Thursday 22 October 2009 03:27:34 Ravi Kumar Kulkarni wrote: > On Thu, Oct 22, 2009 at 12:03 PM, Magnus Lilja wrote: > > >> >>except that there's now a common SPI framework for you to use > > >> > > >> (drivers/spi/) > > >> > > >> >>as well as an already existing atmel_spi.c driver > > > > > > Y

Re: [U-Boot] My SPI driver not working in u-boot.

2009-10-22 Thread Magnus Lilja
>>  >>printf("%s:%d\n", __FILE__, __LINE__);? Given that printf and the UART >> >>works on your board that is. > > I tried with  this > printf("%s:%d\n", /drivers/spi/spi-new.c, 72); >  72 is the my line number but im gettin error . so what exactly should i > specify in __FILE_ and __LINE__ places

Re: [U-Boot] My SPI driver not working in u-boot.

2009-10-22 Thread Ravi Kumar Kulkarni
On Thu, Oct 22, 2009 at 12:03 PM, Magnus Lilja wrote: > >> >>except that there's now a common SPI framework for you to use > >> (drivers/spi/) > >> >>as well as an already existing atmel_spi.c driver > >> > > Yeah exactly . Its also there in u-boot-1.3.4. anyways im using the same > > driver atme