Re: [U-Boot] [PATCH 1/1] Fixed clobbered output of the "help usb" command

2010-08-09 Thread Sergei Poselenov
Hi Remy, On Mon, 9 Aug 2010 19:26:46 +0200 Remy Bohmer wrote: > > --- a/common/cmd_usb.c > > +++ b/common/cmd_usb.c > > @@ -712,7 +712,7 @@ U_BOOT_CMD( > >        "usb part [dev] - print partition table of one or all USB > > storage" " devices\n" > > Patch is corrupt. Lines are wrapped. > Sor

[U-Boot] [PATCH v2] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Li Haibo
get_timer_masked() should return current timestamp, not current ticks from hardware register. Tested on one custom board with NAND flash. Without this patch, NAND write always TIMEOUT because get_timer(0) return a big value. This patch applies for u-boot-2010.06 Signed-off-by: Li Haibo --- v2:

Re: [U-Boot] [PATCH] bug fix and cleanup for s3c44b0 serial driver

2010-08-09 Thread Reinhard Meyer
Dear Minkyu Kang, my five cents: >> #define REGL(addr) (*(volatile unsigned int *)(REGBASE+addr)) >> #define REGW(addr) (*(volatile unsigned short *)(REGBASE+addr)) >> #define REGB(addr) (*(volatile unsigned char *)(REGBASE+addr)) isn't that way of accessing hardware VERY deprecia

Re: [U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-09 Thread Mike Frysinger
On Tue, Aug 10, 2010 at 1:52 AM, Joakim Tjernlund wrote: > Ben Warren wrote on 2010/08/09 22:54:10: >>  On 8/9/2010 1:18 PM, Mike Frysinger wrote: >> > On Mon, Aug 9, 2010 at 3:15 PM, Joakim Tjernlund wrote: >> >> The correct definition is in drivers/qe/uec.h so just >> >> include that one instead.

Re: [U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-09 Thread Joakim Tjernlund
Ben Warren wrote on 2010/08/09 22:54:10: > > On 8/9/2010 1:18 PM, Mike Frysinger wrote: > > On Mon, Aug 9, 2010 at 3:15 PM, Joakim Tjernlund wrote: > >> The correct definition is in drivers/qe/uec.h so just > >> include that one instead. > > ... except that bleeds a ton of crap from uec.h into t

Re: [U-Boot] [PATCH] S5P: mmc: use the standard debug macro

2010-08-09 Thread Minkyu Kang
On 5 August 2010 10:14, Minkyu Kang wrote: > Use the standard debug macro instead of the costom macro > > Signed-off-by: Minkyu Kang > Cc: Wolfgang Denk > --- >  drivers/mmc/s5p_mmc.c |   30 -- >  1 files changed, 12 insertions(+), 18 deletions(-) > applied to u-boot-

Re: [U-Boot] [PATCH] bug fix and cleanup for s3c44b0 serial driver

2010-08-09 Thread Minkyu Kang
Dear Brian Cavagnolo, On 30 June 2010 01:58, Brian Cavagnolo wrote: > Specifically, don't dereference the URXH0 register twice; calculate the BRD > based on the formula in the databook instead of using a messy switch > statement; > and migrate the BRD calculation to the hardware hardware header

Re: [U-Boot] [PATCH] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Xiangfu Liu
Hi > Hi Liu: > Thanks for you help, but I need more :) > I'm newbie to such maillist. I post this small patch to check > if everything is OK, but... > > There are something I want know: > 1. Does "base-64 encoded" problem still exist in this message? the last two emails you send are same. first o

Re: [U-Boot] can uboot boot from spi flash?

2010-08-09 Thread Li Haibo
> Hi, > > SPI flash seems supported in u-boot after searching it in the mailing > list. But can u-boot boot from spi flash? > > Thanks, > -Shawn. > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > I do b

Re: [U-Boot] can uboot boot from spi flash?

2010-08-09 Thread Mike Frysinger
On Tue, Aug 10, 2010 at 1:08 AM, Shawn Jin wrote: > SPI flash seems supported in u-boot after searching it in the mailing > list. But can u-boot boot from spi flash? it completely depends on your processor. but you never said what processor you're actually using. u-boot itself has no limitation

Re: [U-Boot] [PATCH] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Li Haibo
> Hi Haibo Li > > I am try to help on test patch. :) > you should not include the reply in your patch. those reply > message will goto git commit message which is not needed. > > On 08/10/2010 10:57 AM, Li Haibo wrote: > >> Wolfgang Denk wrote: > >>> Dear Stefano, > >>> > >> > >> Hi Wolfgang, >

[U-Boot] can uboot boot from spi flash?

2010-08-09 Thread Shawn Jin
Hi, SPI flash seems supported in u-boot after searching it in the mailing list. But can u-boot boot from spi flash? Thanks, -Shawn. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 9/9] PXA: Add missing MAINTAINERS entries

2010-08-09 Thread Marek Vasut
Signed-off-by: Marek Vasut --- MAINTAINERS |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 4b91b0f..f782f64 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -815,6 +815,15 @@ Alex Z lartSA1100 dnp1110

[U-Boot] [PATCH 7/9] PXA: Voipac270 improvements

2010-08-09 Thread Marek Vasut
128MB NOR module support. Define __io to get harddrive working. Fix saving of environment into OneNAND. Boot from harddrive when possible. Signed-off-by: Marek Vasut --- MAKEALL |3 +- Makefile |7 +++- board/vpac270/Makefile|7 +--

[U-Boot] [PATCH 8/9] PXA: Balloon3 board support

2010-08-09 Thread Marek Vasut
The following hardware is currently supported: - UART - USB Host - FPGA Signed-off-by: Marek Vasut --- MAKEALL|1 + board/balloon3/Makefile| 49 +++ board/balloon3/balloon3.c | 227 + board/balloon3/config.mk |

[U-Boot] [PATCH 6/9] PXA: Add initial Palm LifeDrive support

2010-08-09 Thread Marek Vasut
Signed-off-by: Marek Vasut --- MAKEALL |1 + board/palmld/Makefile| 49 board/palmld/config.mk |1 + board/palmld/lowlevel_init.S | 45 +++ board/palmld/palmld.c| 71 +++ board/palmld/u-boot.lds | 56 + b

[U-Boot] [PATCH 5/9] PXA: pxafb: Add support for Sharp LQ038J7DH53

2010-08-09 Thread Marek Vasut
This LCD panel is found in Palm LifeDrive handheld Signed-off-by: Marek Vasut --- arch/arm/cpu/pxa/pxafb.c | 34 ++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/pxa/pxafb.c b/arch/arm/cpu/pxa/pxafb.c index 328fa7a..066f49e 100644

[U-Boot] [PATCH 1/9] ARM: Define __raw_readX and __raw_writeX

2010-08-09 Thread Marek Vasut
These functions are undefined on ARM when using __io. These are the commonly used versions and can be redefined. Signed-off-by: Marek Vasut --- arch/arm/include/asm/io.h | 46 +++- 1 files changed, 40 insertions(+), 6 deletions(-) diff --git a/arch/arm/

[U-Boot] [PATCH 4/9] PXA: Palm Tungsten|C Support

2010-08-09 Thread Marek Vasut
This patch adds support for the Palm Tungsten|C PXA255 board. The support includes: - LCD - MMC - UART - NOR Signed-off-by: Marek Vasut --- MAKEALL |1 + board/palmtc/Makefile| 49 + board/palmtc/config.mk |1 + board/palmtc/lowlevel_init.S |

[U-Boot] [PATCH 3/9] common: Enable serial for PXA250

2010-08-09 Thread Marek Vasut
Signed-off-by: Marek Vasut --- common/serial.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/serial.c b/common/serial.c index fceabfa..7148cb9 100644 --- a/common/serial.c +++ b/common/serial.c @@ -30,7 +30,7 @@ DECLARE_GLOBAL_DATA_PTR; static struct serial_dev

[U-Boot] [PATCH 2/9] PXA: pxafb: Add ACX517AKN support

2010-08-09 Thread Marek Vasut
ACX517AKN LCD panel is found in Palm Tungsten|C Signed-off-by: Marek Vasut --- arch/arm/cpu/pxa/pxafb.c | 34 ++ 1 files changed, 34 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/pxa/pxafb.c b/arch/arm/cpu/pxa/pxafb.c index 524a03b..328fa7a 100644 ---

Re: [U-Boot] [PATCH v2a] AT91: add SD/MMC support

2010-08-09 Thread Reinhard Meyer
Xu, Hong wrote: > Hi Reinhard, > > In Linux, I used `fdisk' to cerate 2 primiary partitions on SD card, each is > about 1G bytes. > I used `mkfs.ext2 /dev/sdc1' and 'mkfs.ext2 /dev/sd2' to format the 2 > partitions and then copy some files on them. > > I used SanDisk 2GB SD Card. > > > But in

Re: [U-Boot] [PATCH] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Xiangfu Liu
Hi Haibo Li I am try to help on test patch. :) you should not include the reply in your patch. those reply message will goto git commit message which is not needed. On 08/10/2010 10:57 AM, Li Haibo wrote: >> Wolfgang Denk wrote: >>> Dear Stefano, >>> >> >> Hi Wolfgang, >> >>> Can you please have

Re: [U-Boot] [PATCH v2a] AT91: add SD/MMC support

2010-08-09 Thread Reinhard Meyer
Xu, Hong wrote: > Hi Reinhard, > To format the SD card, I did following > 8< > # dd if=/dev/zero of=/dev/sdc bs=512 count=10 > # mke2fs /dev/sdc > # mount /dev/sdc /mnt/ext2disk > # '' copy some files to /mnt/ext2disk > 8< > > I guess you tested fatls or fatload or fatinfo or

Re: [U-Boot] [PATCH] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Li Haibo
> Wolfgang Denk wrote: > > Dear Stefano, > > > > Hi Wolfgang, > > > Can you please have a look at this, and eventually send a pull req? > > Thanks. > > Thanks, I missed it. I would change the name of the maintainer and I > will set myself for the MX51EVK, because Fred Fan resigned as maintainer

Re: [U-Boot] [PATCH] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Li Haibo
> Wolfgang Denk wrote: > > Dear Stefano, > > > > Hi Wolfgang, > > > Can you please have a look at this, and eventually send a pull req? > > Thanks. > > Thanks, I missed it. I would change the name of the maintainer and I > will set myself for the MX51EVK, because Fred Fan resigned as maintainer

Re: [U-Boot] [PATCH 2/2] change the way of build little endian board

2010-08-09 Thread Xiangfu Liu
On 08/10/2010 01:10 AM, Mike Frysinger wrote: > On Mon, Aug 9, 2010 at 11:13 AM, wrote: >> add CONFIG_CPU_LITTLE_ENDIAN to little endian board config. >> use -dumpmachine to check if the cross compile. >> >> --- >> Makefile |1 + >> arch/mips/config.mk | 27 ++

Re: [U-Boot] u-boot patch base version

2010-08-09 Thread Ben Warren
Hi Joe, On 8/9/2010 5:36 PM, Joe Hershberger wrote: > Hello, > > I'm looking to submit some patches that I'm currently running on > u-boot-2009.11. I'd like to know before I go through the trouble of > creating the separate patches if it is a problem for the patches to be > based on that versio

[U-Boot] u-boot patch base version

2010-08-09 Thread Joe Hershberger
Hello, I'm looking to submit some patches that I'm currently running on u-boot-2009.11. I'd like to know before I go through the trouble of creating the separate patches if it is a problem for the patches to be based on that version. Should I first port the changes to a newer version or not? Th

Re: [U-Boot] [PATCH 2/2] powerpc/8xxx: query feature reporting register for num cores on unknown cpus

2010-08-09 Thread Kim Phillips
On Mon, 9 Aug 2010 23:33:18 +0200 Wolfgang Denk wrote: > Dear Kim, > > In message <20100714194729.7405f880.kim.phill...@freescale.com> you wrote: > > doing so helps avant garde users, such as those using simulators that > > allow users to configure the number of cores, so as to not have to > > m

[U-Boot] [PATCH] Blackfin: move CONFIG_BFIN_CPU to board config.mk

2010-08-09 Thread Mike Frysinger
The CONFIG_BFIN_CPU option is largely used in the build system, so move it out of the board config.h and into the board config.mk. It'd be nice to keep everything in the config.h, but the patch to extract that value early was rejected. Signed-off-by: Mike Frysinger --- arch/blackfin/config.mk

[U-Boot] [PATCH] Blackfin: shutdown video DMA when booting Linux

2010-08-09 Thread Mike Frysinger
From: Michael Hennerich In case there is no frame buffer driver present in Linux to hand over the PPI LCD DMA upon boot, the DMA initiated by u-boot to display the splash screen runs unattended. Therefore always stop the video driver in u-boot before starting Linux. If people don't want this be

[U-Boot] [PATCH v2] usb: musb: set target address for non-multipoint devices

2010-08-09 Thread Mike Frysinger
From: Bryan Wu Signed-off-by: Bryan Wu Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- v2 - use writeb instead of writew as pointed out by Sergei Shtylyov drivers/usb/musb/musb_hcd.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/usb

[U-Boot] [PATCH] Blackfin: re-use board data in cpu banner

2010-08-09 Thread Mike Frysinger
The bi_cpu field of the board data is already set to the relevant cpu string, so there is no need for us to use the define directly. Signed-off-by: Mike Frysinger --- arch/blackfin/lib/board.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/blackfin/lib/board.c b/

Re: [U-Boot] [PATCH] usb: musb: set target address for non-multipoint devices

2010-08-09 Thread Mike Frysinger
On Mon, Aug 9, 2010 at 3:20 PM, Mike Frysinger wrote: > On Mon, Aug 9, 2010 at 3:14 PM, Sergei Shtylyov wrote: >> Mike Frysinger wrote: >>> --- a/drivers/usb/musb/musb_hcd.c >>> +++ b/drivers/usb/musb/musb_hcd.c >>> @@ -917,6 +917,13 @@ int submit_control_msg(struct usb_device *dev, >>> unsigned lo

Re: [U-Boot] [PATCH] fix cmd_mmc.c, line 136 missing "

2010-08-09 Thread Mike Frysinger
On Mon, Aug 9, 2010 at 11:30 AM, Reinhard Meyer wrote: > Remove warning for missing " at the end of line 136 this is a build error for me ... cmd_mmc.c:136:2: warning: missing terminating " character cmd_mmc.c:133: error: missing terminating " character make[1]: *** [cmd_mmc.o] Error 1 also, i no

Re: [U-Boot] [PATCH 2/2] powerpc/8xxx: query feature reporting register for num cores on unknown cpus

2010-08-09 Thread Wolfgang Denk
Dear Kim, In message <20100714194729.7405f880.kim.phill...@freescale.com> you wrote: > doing so helps avant garde users, such as those using simulators that > allow users to configure the number of cores, so as to not have to > manually adjust u-boot sources. h/w should also be reliably setting >

Re: [U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-09 Thread Ben Warren
On 8/9/2010 1:18 PM, Mike Frysinger wrote: > On Mon, Aug 9, 2010 at 3:15 PM, Joakim Tjernlund wrote: >> The correct definition is in drivers/qe/uec.h so just >> include that one instead. > ... except that bleeds a ton of crap from uec.h into the global > namespace for everyone. better would be t

[U-Boot] [PATCH v4 4/4] mtdparts: new add.spread: add part skipping bad blocks

2010-08-09 Thread Ben Gardiner
This patch adds a new 'mtdparts add' variant: add.spread. This command variant adds a new partition to the mtdparts variable but also increases the partitions size by skipping bad blocks and aggregating any additional bad blocks found at the end of the partition. Signed-off-by: Ben Gardiner CC: W

[U-Boot] [PATCH v4 1/4] mtdparts: regroup calls to get_mtd_device_nm

2010-08-09 Thread Ben Gardiner
The get_mtd_device_nm function is called in a couple places and the string that is passed to it is not really used after the calls. This patch regroups the calls to this function into a new function, get_mtd_info. Signed-off-by: Ben Gardiner Acked-by: Stefan Roese CC: Wolfgang Denk --- V2:

[U-Boot] [PATCH v4 0/4] mtdparts: add bad-block skipping

2010-08-09 Thread Ben Gardiner
[PATCH v4 1/4] mtdparts: regroup calls to get_mtd_device_nm [PATCH v4 2/4] mtdparts: show net size in mtdparts list [PATCH v4 3/4] mtdparts: add new sub-command "spread" [PATCH v4 4/4] mtdparts: new add.spread: add part skipping bad blocks common/cmd_mtdparts.c | 268

[U-Boot] [PATCH v4 3/4] mtdparts: add new sub-command "spread"

2010-08-09 Thread Ben Gardiner
This patch introduces the 'spread' sub-command of the mtdparts command. This command will modify the existing mtdparts variable by increasing the size of the partitions such that 1) each partition's net size is at least as large as the size specified in the mtdparts variable and 2) each partition s

[U-Boot] [PATCH v4 2/4] mtdparts: show net size in mtdparts list

2010-08-09 Thread Ben Gardiner
This patch adds an additional column to the output of list_partitions. The additional column will contain the net size and a '(!)' beside it if the net size is not equal to the partition size. Signed-off-by: Ben Gardiner CC: Wolfgang Denk --- V2: * formatting: spaces after 'if' and 'for' * t

Re: [U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-09 Thread Mike Frysinger
On Mon, Aug 9, 2010 at 3:15 PM, Joakim Tjernlund wrote: > The correct definition is in drivers/qe/uec.h so just > include that one instead. ... except that bleeds a ton of crap from uec.h into the global namespace for everyone. better would be to move the prototype out of uec.h and into netdev.h

[U-Boot] [PATCH] net: Fix faulty definition of uec_initialize()

2010-08-09 Thread Joakim Tjernlund
The correct definition is in drivers/qe/uec.h so just include that one instead. Signed-off-by: Joakim Tjernlund --- This is only compile tested on my board but hopefully it will do. If not, I urge Freescale to clean up this mess. include/netdev.h |4 +--- 1 files changed, 1 insertions(+)

Re: [U-Boot] [PATCH] usb: musb: set target address for non-multipoint devices

2010-08-09 Thread Mike Frysinger
On Mon, Aug 9, 2010 at 3:14 PM, Sergei Shtylyov wrote: > Mike Frysinger wrote: >> --- a/drivers/usb/musb/musb_hcd.c >> +++ b/drivers/usb/musb/musb_hcd.c >> @@ -917,6 +917,13 @@ int submit_control_msg(struct usb_device *dev, >> unsigned long pipe, void *buffer, >>        dev->status = 0; >>        d

[U-Boot] [PATCH v2] usb: avoiding overflow when output capacity in 'usb storage' cmd

2010-08-09 Thread Sergei Trofimovich
From: Sergei Trofimovich Before: Marvell>> usb storage Device 0: Vendor: StoreJet Rev: Prod: Transcend Type: Hard Disk Capacity: 28759.9 MB = 28.0 GB (488397168 x 512) After: Marvell>> usb storage Device 0: Vendor: StoreJet Rev: Prod: Transc

Re: [U-Boot] [PATCH] usb: musb: set target address for non-multipoint devices

2010-08-09 Thread Sergei Shtylyov
Mike Frysinger wrote: > From: Bryan Wu > Signed-off-by: Bryan Wu > Signed-off-by: Cliff Cai > Signed-off-by: Mike Frysinger > --- > drivers/usb/musb/musb_hcd.c |7 +++ > 1 files changed, 7 insertions(+), 0 deletions(-) > > diff --git a/drivers/usb/musb/musb_hcd.c b/drivers/usb/musb/

[U-Boot] [PATCH] Blackfin: cm-bf548: increase monitor len

2010-08-09 Thread Mike Frysinger
Recent features enabled by default require a larger monitor size for the cm-bf548 port, so bump it up a bit. Signed-off-by: Mike Frysinger --- include/configs/cm-bf548.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/cm-bf548.h b/include/configs/cm-bf54

[U-Boot] Pull request - net

2010-08-09 Thread Ben Warren
Wolfgang, The following changes since commit b417260d871d4d8d336c160d95ed40cc8c0fb0fa: Marek Vasut (1): PXA: Declare __io for vpac270 IDE are available in the git repository at: git://git.denx.de/u-boot-net.git master Ben Warren (1): Fix compile warnings for const correc

Re: [U-Boot] [PATCH 4/4 v2] mtdparts: new add.e: add part skipping bad blocks

2010-08-09 Thread Scott Wood
On Mon, 9 Aug 2010 14:39:20 -0400 Ben Gardiner wrote: > Hi Scott, > > On Mon, Aug 9, 2010 at 2:25 PM, Scott Wood wrote: > > On Wed, 2 Jun 2010 11:58:39 -0400 > > Ben Gardiner wrote: > > > >> This patch adds a new 'mtdparts add' variant: add.e (with a synomym add.i). > > > > Why multiple ways t

[U-Boot] [PATCH] usb: musb: only write CLRDATATOG when appropriate

2010-08-09 Thread Mike Frysinger
From: Bryan Wu This is a change similar to what is already in the Linux driver. We should only program the CLRDATATOG bit when the current mode indicates that it is needed. Signed-off-by: Bryan Wu Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- Note: can someone give this a spin o

[U-Boot] [PATCH] usb: musb: setup TXCOUNT for Blackfin musb

2010-08-09 Thread Mike Frysinger
From: Bryan Wu The Blackfin implementation of musb has a TXCOUNT register that needs to be programmed when transmitting data. Signed-off-by: Bryan Wu Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- drivers/usb/musb/musb_hcd.c |5 + 1 files changed, 5 insertions(+), 0 delet

Re: [U-Boot] [PATCH 4/4 v2] mtdparts: new add.e: add part skipping bad blocks

2010-08-09 Thread Ben Gardiner
Hi Scott, On Mon, Aug 9, 2010 at 2:25 PM, Scott Wood wrote: > On Wed, 2 Jun 2010 11:58:39 -0400 > Ben Gardiner wrote: > >> This patch adds a new 'mtdparts add' variant: add.e (with a synomym add.i). > > Why multiple ways to say the same thing, in a new command with no > legacy to be compatible w

[U-Boot] [PATCH] usb: musb: set target address for non-multipoint devices

2010-08-09 Thread Mike Frysinger
From: Bryan Wu Signed-off-by: Bryan Wu Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- drivers/usb/musb/musb_hcd.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/usb/musb/musb_hcd.c b/drivers/usb/musb/musb_hcd.c index dd2aa7f..abb84b2 100644

Re: [U-Boot] [PATCH 4/4 v2] mtdparts: new add.e: add part skipping bad blocks

2010-08-09 Thread Scott Wood
On Wed, 2 Jun 2010 11:58:39 -0400 Ben Gardiner wrote: > This patch adds a new 'mtdparts add' variant: add.e (with a synomym add.i). Why multiple ways to say the same thing, in a new command with no legacy to be compatible with? Even on the commands where .e and .i used to do something, that's n

Re: [U-Boot] [PATCH] disk/part.c: 'usb storage' avoiding overflow when output capacity

2010-08-09 Thread Sergei Trofimovich
> You should change the version of the patch in the subject line > And you should add change log history here. Ok, will do. > You can have reference from some other patches submitted on the list Do you mean git send-email's --in-reply-to= option? -- Sergei signature.asc Description: PGP sig

Re: [U-Boot] [PATCH 1/1] Fixed clobbered output of the "help usb" command

2010-08-09 Thread Remy Bohmer
Hi, 2010/8/9 Sergei Poselenov : > Hello all, > > > I've noticed that the "usb help" doesn't format the output correctly: > > => help usb > usb - USB sub-system > > Usage: > usb reset - reset (rescan) USB controller > usb stop [f]  - stop USB [f]=force stop > usb tree  - show USB device tree > usb

Re: [U-Boot] USB-CDC with musb controller

2010-08-09 Thread Remy Bohmer
Hi Stefano, 2010/8/5 Stefano Babic : > Hi Remy, > > I would like to add CDC support to a davinci (DM365 Soc) board using the > musb controller. As the actual driver (musb_udc) does have gadget > support, I decided (even if I get some advises that it is a harder way) The USB gadget layer used for

Re: [U-Boot] [PATCH 2/2] change the way of build little endian board

2010-08-09 Thread Mike Frysinger
On Mon, Aug 9, 2010 at 11:13 AM, wrote: > add CONFIG_CPU_LITTLE_ENDIAN to little endian board config. > use -dumpmachine to check if the cross compile. > > --- >  Makefile                 |    1 + >  arch/mips/config.mk      |   27 +-- >  arch/mips/cpu/config.mk  |    8 --

Re: [U-Boot] [PATCH] SPI: cmd_spi.c: add option to specify bus and mode

2010-08-09 Thread Mike Frysinger
On Mon, Aug 9, 2010 at 12:21 PM, Reinhard Meyer wrote: > @@ -107,15 +119,13 @@ int do_spi (cmd_tbl_t *cmdtp, int flag, int argc, char > * const argv[]) >                return 1; >        } > > -       /* FIXME: Make these parameters run-time configurable */ > -       slave = spi_setup_slave(CONFI

[U-Boot] [PATCH] AT91/AVR32: atmel_spi.c: flush RDR before next SPI transaction

2010-08-09 Thread Reinhard Meyer
Remove superfluous test for valid CS Flush Receive Data Register before next transaction Signed-off-by: Reinhard Meyer --- drivers/spi/atmel_spi.c | 13 +++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index 317c0b4

[U-Boot] [PATCH] SPI: cmd_spi.c: add option to specify bus and mode

2010-08-09 Thread Reinhard Meyer
To facilitate better testing of SPI peripherals, add the possibility to specify bus and SPI mode to the "sspi" command Signed-off-by: Reinhard Meyer --- common/cmd_spi.c | 33 +++-- 1 files changed, 23 insertions(+), 10 deletions(-) diff --git a/common/cmd_spi.c b/

[U-Boot] [PATCH] AT91: reset.c: fix comments, add option

2010-08-09 Thread Reinhard Meyer
- The comment was wrong/misleading - One would assume that a u-boot "reset" command should also reset the external hardware outside the SoC. Since its unknown whether some boards rely on that NOT being so, asserting the external reset signal is optional Signed-off-by: Reinhard Meyer --- arch/arm

[U-Boot] [PATCH v3] AT91SAM9XE: add embedded flash support

2010-08-09 Thread Reinhard Meyer
Add support for the embedded flash in the AT91SAM9XE128/256/512 SoCs: - Environment can be put into that flash - U-Boot can be in that flash - Commands "cp" and "protect" are supported Signed-off-by: Reinhard Meyer --- arch/arm/cpu/arm926ejs/at91/Makefile |1 + arch/arm/cpu/arm926ejs/a

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-09 Thread Joakim Tjernlund
Philippe De Muyter wrote on 2010/08/09 14:57:27: > > Hello Joakim, > > On Mon, Aug 09, 2010 at 10:32:25AM +0200, Joakim Tjernlund wrote: > > > > > > Dear Stefan, > > > > > > In message <20100623131040.ga23...@frolo.macqel> Philippe De Muyter wrote: > > > > Hello Wolfgang & list, > > > > > > > > Th

Re: [U-Boot] ATMEL Custodians == /dev/null ??

2010-08-09 Thread Haavard Skinnemoen
Wolfgang Denk wrote: > Dear Haavard Skinnemoen, > > In message <20100809181318.5ec2a...@hskinnemoen-d830> you wrote: > > > > > First, I have poked them a number of times, both on and off list. > > > > I haven't received any such pokes from you in a long time. > > I'm not talking about you here.

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-09 Thread Philippe De Muyter
On Mon, Aug 09, 2010 at 02:57:27PM +0200, Philippe De Muyter wrote: > Hello Joakim, > > On Mon, Aug 09, 2010 at 10:32:25AM +0200, Joakim Tjernlund wrote: > > > > > > Dear Stefan, > > > > > > In message <20100623131040.ga23...@frolo.macqel> Philippe De Muyter wrote: > > > > Hello Wolfgang & list, >

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-09 Thread Philippe De Muyter
Hi Stefan, On Mon, Aug 09, 2010 at 03:52:03PM +0200, Stefan Roese wrote: > Hi Philippe, > > first sorry for the late review (thanks Wolfgang for reminding). > > On Saturday 07 August 2010 01:11:02 Wolfgang Denk wrote: > > Dear Stefan, > > > > In message <20100623131040.ga23...@frolo.macqel> Phi

[U-Boot] [PATCH v2a] AT91: add SD/MMC support

2010-08-09 Thread Reinhard Meyer
This patch adds support for the Atmel MultiMedia Card Interface (MCI) in AT91SAM9260 and AT91SAM9XE SoCs and preserves the original support for the AVR32AP700x SoCs. It patches the original atmel_mci.c driver to remove byte order and toolchain dependencies and makes it a common MCI driver for Atmel

[U-Boot] [PATCH v2] AT91: add SD/MMC support

2010-08-09 Thread Reinhard Meyer
Signed-off-by: Reinhard Meyer --- arch/arm/cpu/arm926ejs/at91/at91sam9260_devices.c | 20 +++ arch/arm/include/asm/arch-at91/at91_common.h |1 + arch/arm/include/asm/arch-at91/clk.h |5 + arch/arm/include/asm/arch-at91/hardware.h |1 + doc/README.atmel_mc

[U-Boot] [PATCH] fix cmd_mmc.c, line 136 missing "

2010-08-09 Thread Reinhard Meyer
Remove warning for missing " at the end of line 136 Signed-off-by: Reinhard Meyer --- common/cmd_mmc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index a6ed6a8..c0b30d8 100644 --- a/common/cmd_mmc.c +++ b/common/cmd_mmc.c @@ -133

[U-Boot] [PATCH 2/2] change the way of build little endian board

2010-08-09 Thread xiangfu
add CONFIG_CPU_LITTLE_ENDIAN to little endian board config. use -dumpmachine to check if the cross compile. Signed-off-by: Xiangfu Liu Acked-by: Shinya Kuribayashi --- Makefile |1 + arch/mips/config.mk | 27 +-- arch/mips/cpu/config.mk |

[U-Boot] [PATCH 1/2] update the MIPS u-boot.lds

2010-08-09 Thread xiangfu
>From the document, if set all arguments in "OUTPUT_FORMAT" to "tradbigmips", then even add "-EL" to gcc we still get EB format. pb1x00 is only used in Little-endian, so its default endian should be set to LE as well. Signed-off-by: Xiangfu Liu Acked-by: Shinya Kuribayashi --- board/dbau1x00

[U-Boot] [PATCH 0/2] fix little endian build

2010-08-09 Thread xiangfu
From: Xiangfu Liu those two patches fix the little endian build. done by Shinya Kuribayashi. Makefile |1 + arch/mips/config.mk | 27 +-- arch/mips/cpu/config.mk |8 board/dbau1x00/u-boot.lds|2 +- board/gth2/u

[U-Boot] TOT: cmd_mmc.c, line 136 missing "

2010-08-09 Thread Reinhard Meyer
McMurphy and Klipstein were there... Reinhard ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v3 2/4] mtdparts: show net size in mtdparts list

2010-08-09 Thread Ben Gardiner
Hi Wolfgang, Thank you for the review comments. Could you give me some more details on how you would like the following resolved? On Sat, Aug 7, 2010 at 4:08 PM, Wolfgang Denk wrote: > Dear Ben Gardiner, > > In message <1278366212-24023-3-git-send-email-bengardi...@nanometrics.ca> you > wrote:

[U-Boot] Please pull u-boot-ppc4xx/master

2010-08-09 Thread Stefan Roese
The following changes since commit b417260d871d4d8d336c160d95ed40cc8c0fb0fa: PXA: Declare __io for vpac270 IDE (2010-08-09 01:15:22 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Heiko Schocher (1): ppc4xx: Fix building of sc3 board Matth

Re: [U-Boot] at91sam9g20 MAC address in EEPROM?

2010-08-09 Thread Reinhard Meyer
Dear Jim Sheldon, >> May I ask WHY you are not comfortable with using the U-Boot >> environment? Usually it's a very convenient place to store >> configuration data, and a pretty reliable one (especially when you >> use redundant environment). > > We're not concerned about u-boot's environment not

Re: [U-Boot] [PATCH] ppc4xx: Fix/Update katmai board header

2010-08-09 Thread Stefan Roese
On Tuesday 03 August 2010 10:29:50 Stefan Roese wrote: > This patch has the following fixes/changes: > > - Set 'kernel_addr' and 'ramdisk_addr' to correct values and add > 'fdt_addr' environment variable > - Remove 'kozio' environment variable > - Remove environmant variables to boot ancient arc

Re: [U-Boot] [PATCH] ppc4xx: Fix building of sc3 board

2010-08-09 Thread Stefan Roese
On Tuesday 27 July 2010 07:07:24 Heiko Schocher wrote: > Update image size after addition of new environment handling. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82

Re: [U-Boot] [PATCH 0/3] Fix building various esd boards in u-boot-testing repo's hastable branch

2010-08-09 Thread Stefan Roese
On Monday 26 July 2010 17:17:50 matthias.fu...@esd.eu wrote: > From: Matthias Fuchs > > Fix building various esd boards in u-boot-testing repo's > hastable branch. > > Matthias Fuchs (3): > ppc4xx: Fix building of AR405 board > ppc4xx: Fix building of CANBT board > ppc4xx: Fix building of

Re: [U-Boot] [PATCH] ppc4xx: cleanup default environment for AMCC boards

2010-08-09 Thread Stefan Roese
On Friday 23 July 2010 21:16:26 Wolfgang Denk wrote: > None of the AMCC boards uses an embedded environment, so there is no > need to run "saveenv" after updating U-Boot. Drop the redundant > commands from the default environment. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-09 Thread Stefan Roese
Hi Philippe, first sorry for the late review (thanks Wolfgang for reminding). On Saturday 07 August 2010 01:11:02 Wolfgang Denk wrote: > Dear Stefan, > > In message <20100623131040.ga23...@frolo.macqel> Philippe De Muyter wrote: > > Hello Wolfgang & list, > > > > This is a revised patch, with c

Re: [U-Boot] at91sam9g20 MAC address in EEPROM?

2010-08-09 Thread Jim Sheldon
Hello Mr. Denk, > -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Saturday, August 07, 2010 4:00 PM > To: Jim Sheldon > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] at91sam9g20 MAC address in EEPROM? > > Dear Jim Sheldon, > > In message <7941e07e1e020448937aca7

Re: [U-Boot] [PATCH 2/4 v2] musb: MSC host support for AM35x

2010-08-09 Thread Remy Bohmer
Hi Wolfgang, 2010/8/8 Wolfgang Denk : > Dear Remy Bohmer, > > In message you > wrote: >> >> 2010/7/9 Ajay Kumar Gupta : >> > Tested MSC Host on AM3517EVM. >> > >> > Signed-off-by: Ajay Kumar Gupta >> > --- >> >  drivers/usb/musb/Makefile   |    1 + >> >  drivers/usb/musb/am35x.c    |  118 >> >

Re: [U-Boot] [PATCHv2 CFI flash]: Workaround for Numonyx Axcell P33/P30 256-Mbit 65nm bug

2010-08-09 Thread Philippe De Muyter
Hello Joakim, On Mon, Aug 09, 2010 at 10:32:25AM +0200, Joakim Tjernlund wrote: > > > > Dear Stefan, > > > > In message <20100623131040.ga23...@frolo.macqel> Philippe De Muyter wrote: > > > Hello Wolfgang & list, > > > > > > This is a revised patch, with comments and indentation fixed, I hope. > >

Re: [U-Boot] [PATCH] memmove_wd: Allow overlapping memory area

2010-08-09 Thread Wolfgang Denk
Dear Alexander Stein, In message <201008091351.39800.alexander.st...@systec-electronic.com> you wrote: > > > Better do not build on undefined behaviour. > > Yes, of course. But it seems difficult to recognise thing like a simple > memmove with dest < src as an undefined behavior. See the FAQ:

[U-Boot] [PATCH 1/1] Fixed clobbered output of the "help usb" command

2010-08-09 Thread Sergei Poselenov
Hello all, I've noticed that the "usb help" doesn't format the output correctly: => help usb usb - USB sub-system Usage: usb reset - reset (rescan) USB controller usb stop [f] - stop USB [f]=force stop usb tree - show USB device tree usb info [dev] - show available USB devices usb storage -

Re: [U-Boot] ATMEL Custodians == /dev/null ??

2010-08-09 Thread Wolfgang Denk
Dear Haavard Skinnemoen, In message <20100809181318.5ec2a...@hskinnemoen-d830> you wrote: > > > First, I have poked them a number of times, both on and off list. > > I haven't received any such pokes from you in a long time. I'm not talking about you here. You have clearly indicated that you res

Re: [U-Boot] [PATCH] memmove_wd: Allow overlapping memory area

2010-08-09 Thread Alexander Stein
Dear Wolfgang, August 2010, 13:43:32 schrieb Wolfgang Denk: > > Well, that's at least one possibility but it is very annoying that > > something like memmove that works fine so far suddenly stops working > > when watchdog support is enabled. > > Yes, I understand this. It's also annoying when you

Re: [U-Boot] [PATCH] memmove_wd: Allow overlapping memory area

2010-08-09 Thread Wolfgang Denk
Dear Alexander Stein, In message <201008091310.37634.alexander.st...@systec-electronic.com> you wrote: > > > Even if it would work in your case of uncompressed images, it is bound > > to fail for compressed ones where the uncompressed code grows faster > > then compressed data get consumed. > >

Re: [U-Boot] [PATCH v4] at91: Don't initialize watchdog if CONFIG_SKIP_WATCHDOG_INIT is defined

2010-08-09 Thread Alexander Stein
Hello Mike, Am Montag, 9. August 2010, 09:13:45 schrieb Mike Frysinger: > > On AT91 the watchdog mode register can only be written once after reset. > > If this register is written by u-boot e.g. a Linux driver can't > > reconfigure the watchdog later. If the watchdog is left untouched this > > is

[U-Boot] [PATCH V6 3/3] arm: Add support for jadecpu board based on MB86R01 SoC

2010-08-09 Thread Matthias Weisser
This patch adds support for the jadecpu board using the MB86R01 'Jade' SoC from Fujitsu. Signed-off-by: Matthias Weisser --- MAINTAINERS |4 + MAKEALL |1 + board/syteco/jadecpu/Makefile| 55 +++ board/syteco/jadecpu/con

[U-Boot] [PATCH V6 2/3] video: add support for display controller in MB86R0x SoCs

2010-08-09 Thread Matthias Weisser
This patch adds support for the display controller in the MB86R0x SoCs. Signed-off-by: Matthias Weisser --- drivers/video/Makefile |1 + drivers/video/mb86r0xgdc.c | 186 2 files changed, 187 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH V6 1/3] arm: Add support for MB86R0x SoCs

2010-08-09 Thread Matthias Weisser
Signed-off-by: Matthias Weisser --- arch/arm/cpu/arm926ejs/mb86r0x/Makefile | 47 ++ arch/arm/cpu/arm926ejs/mb86r0x/clock.c | 43 ++ arch/arm/cpu/arm926ejs/mb86r0x/reset.c | 40 ++ arch/arm/cpu/arm926ejs/mb86r0x/timer.c | 142 ++ arch/arm/include/asm/

[U-Boot] [PATCH V6 0/3] Add support for MB86R0x SoCs

2010-08-09 Thread Matthias Weisser
This patchset adds support for MB86R0x SoC familiy from Fujitsu, its built in lcd controller and a first board using the MB86R01. Changes since V5 - Addressed some comments in timer.c by w...@denx.de - Rebased to current master branch Changes since V4 - Rebased to current master branch Cha

Re: [U-Boot] ATMEL Custodians == /dev/null ??

2010-08-09 Thread Haavard Skinnemoen
Wolfgang Denk wrote: > Dear Haavard Skinnemoen, > > In message <20100809132949.43c81...@hskinnemoen-d830> you wrote: > > > > But it does seem kind of rude to just hand everything off without > > Cc'ing any of the maintainers in question. Perhaps they would respond > > more quickly if people actua

Re: [U-Boot] [PATCH] memmove_wd: Allow overlapping memory area

2010-08-09 Thread Alexander Stein
Dear Wolfgang, Am Montag, 9. August 2010, 11:26:56 schrieb Wolfgang Denk: > > IIRC the problem arose when i downloaded my image to 0x2000 (SD-RAM) > > using TFTP and my Linux kernel entry point was at 0x20008000. So when > > Don;t do this, then. Such kind of overlap has never been supported.

Re: [U-Boot] [PATCH] MX51EVK: fix return value of get_timer_masked

2010-08-09 Thread Stefano Babic
Wolfgang Denk wrote: > Dear Stefano, > Hi Wolfgang, > Can you please have a look at this, and eventually send a pull req? > Thanks. Thanks, I missed it. I would change the name of the maintainer and I will set myself for the MX51EVK, because Fred Fan resigned as maintainer for this board. Li,

  1   2   >