[U-Boot] very urgent

2011-08-19 Thread Young
May I ask if you would be eligible to pursue a Business Proposal of $19.7m with me if you dont mind? Let me know if you are interested. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Ns16550 doesn't send anything

2011-08-19 Thread Altunbas Sabri (DC-IA/EAH2)
Hi, I port u-boot last version on my board with SH7785. My board has no serial port (SCIF's are not connected). Therefore i try to communicate over a pci2s-card which has a ns16650 chip. i debug with Lauterbach-Debugger and can see the character in THR/RHR register. i can receive the

[U-Boot] [PATCH v5 0/2] ORIGEN Board Support

2011-08-19 Thread Chander Kashyap
Adds support for ORIGEN board with MMC Booting. Chander Kashyap (2): ARMV7: Add support for Samsung ORIGEN board ORIGEN: Add MMC SPL support MAINTAINERS |1 + board/samsung/origen/Makefile | 64 board/samsung/origen/lowlevel_init.S |

[U-Boot] [PATCH v5 2/2] ORIGEN: Add MMC SPL support

2011-08-19 Thread Chander Kashyap
Adds mmc boot support. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - Added Dirk Behme's patch - SMDKV310: Fix host compilation of mkv310_image Changes for v3: - None Changes for v4: - None Changes for v5: - Use spl framwork

[U-Boot] [PATCH v5 1/2] ARMV7: Add support for Samsung ORIGEN board

2011-08-19 Thread Chander Kashyap
Origen board is based upon S5PV310 SoC which is similiar to S5PC210 SoC. Signed-off-by: Chander Kashyap chander.kash...@linaro.org --- Changes for v2: - None Changes for v3: - Board entry added Alphabetically in boards.cfg - Used get_Ram_size function to calculate ram size

Re: [U-Boot] [PATCH 0/3] ARM: Clean arm/lib/cache.c, modify ARM1136 and ARM926 accordingly

2011-08-19 Thread Hong Xu
Hi Marek, On 08/18/2011 06:51 PM, Marek Vasut wrote: On Thursday, August 11, 2011 04:19:43 AM Hong Xu wrote: This series try to clean the code of arch/arm/lib/cache.c Move ARM1136 cache operations into cpu/arm1136/cache.c Add ARM926EJS cache operations into cpu/arm926ejs/cache.c Hi, any

[U-Boot] [PATCH] omap4: fix pad configuration settings for SDP and Panda

2011-08-19 Thread Aneesh V
Signed-off-by: Aneesh V ane...@ti.com Signed-off-by: Sebastien Jan s-...@ti.com Signed-off-by: David Anders x0132...@ti.com --- board/ti/panda/panda_mux_data.h | 41 -- board/ti/sdp4430/sdp4430_mux_data.h |9 ++- 2 files changed, 22 insertions(+), 28

[U-Boot] [PATCH] mmc:dcache:samsung: D cache invalidate/flush for Samsung MMC DMA buffers

2011-08-19 Thread Lukasz Majewski
This commit is fixing the problem with DMA (SDMA in Samsung MMC controller) transfer for D Cache enabled. The D Cache corresponding to the DMA buffer shall be flushed before transfer and invalidated when transfer is completed. Signed-off-by: Lukasz Majewski l.majew...@samsung.com Signed-off-by:

[U-Boot] [PATCH 1/3 v2] ARM: Clean arch/arm/lib/cache.c

2011-08-19 Thread Hong Xu
The default cache operations defined in arch/arm/lib/cache.c do not perform any real cache operation, and instead a WARNING will be emitted. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud albert.u.b...@aribaud.net --- Since V1 Modified

[U-Boot] [PATCH 2/3 v2] ARM: ARM1136 - Remove flush_cache from arch/arm/lib/cache.c

2011-08-19 Thread Hong Xu
arch/arm/lib/cache.c is cleaned and no real cache operation will be defined in this file. A new file arch/arm/cpu/arm1136/cache.c is created. This file will define the real cache operations. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud

[U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Hong Xu
Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud albert.u.b...@aribaud.net --- Since V1 Modified copyright line Fix for compiling warnings Changed

[U-Boot] [PATCH] mmc:dcache: Cache line size aligned internal MMC buffers

2011-08-19 Thread Lukasz Majewski
MMC operations are performed on cache line size aligned buffers. In the current MMC implementation it is allowed to pass buffer with arbitrary alignment. In this patch assumption has been made, that it is better to align the buffer on the MMC framework boundary, than in a number of u-boot

Re: [U-Boot] [PATCH 0/3] ARM: Clean arm/lib/cache.c, modify ARM1136 and ARM926 accordingly

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 10:39:14 AM Hong Xu wrote: Hi Marek, On 08/18/2011 06:51 PM, Marek Vasut wrote: On Thursday, August 11, 2011 04:19:43 AM Hong Xu wrote: This series try to clean the code of arch/arm/lib/cache.c Move ARM1136 cache operations into cpu/arm1136/cache.c Add

Re: [U-Boot] [PATCH 1/3 v2] ARM: Clean arch/arm/lib/cache.c

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 11:23:13 AM Hong Xu wrote: The default cache operations defined in arch/arm/lib/cache.c do not perform any real cache operation, and instead a WARNING will be emitted. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert

Re: [U-Boot] [PATCH 2/3 v2] ARM: ARM1136 - Remove flush_cache from arch/arm/lib/cache.c

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 11:23:14 AM Hong Xu wrote: arch/arm/lib/cache.c is cleaned and no real cache operation will be defined in this file. A new file arch/arm/cpu/arm1136/cache.c is created. This file will define the real cache operations. Signed-off-by: Hong Xu hong...@atmel.com

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 11:23:15 AM Hong Xu wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud albert.u.b...@aribaud.net You can add my:

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Aneesh V
Hi Hong, On Friday 19 August 2011 02:53 PM, Hong Xu wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. How about converting as much as possible of these to armv5/armv6 generic code as I mentioned in this thread:

Re: [U-Boot] [STATUS] ARM

2011-08-19 Thread Aneesh V
Hi Albert, On Friday 19 August 2011 03:39 AM, Albert ARIBAUD wrote: Hi all, This week-end I intend to go through the board removal patch set and apply those patches in it that still fail to compile with the current u-boot-arm/master tree. So: 1) if there are any pull requests to

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 11:37:29 AM Aneesh V wrote: Hi Hong, On Friday 19 August 2011 02:53 PM, Hong Xu wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. How about converting as much as possible of these to armv5/armv6 generic code as I

Re: [U-Boot] [PATCH 2/3 v2] ARM: ARM1136 - Remove flush_cache from arch/arm/lib/cache.c

2011-08-19 Thread Hong Xu
Hi Marek, On 08/19/2011 05:40 PM, Marek Vasut wrote: On Friday, August 19, 2011 11:23:14 AM Hong Xu wrote: arch/arm/lib/cache.c is cleaned and no real cache operation will be defined in this file. A new file arch/arm/cpu/arm1136/cache.c is created. This file will define the real cache

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Lei Wen
Hi Hong, On Fri, Aug 19, 2011 at 5:23 PM, Hong Xu hong...@atmel.com wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud albert.u.b...@aribaud.net

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Hong Xu
Hi Wen, On 08/19/2011 06:17 PM, Lei Wen wrote: Hi Hong, On Fri, Aug 19, 2011 at 5:23 PM, Hong Xuhong...@atmel.com wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. Signed-off-by: Hong Xuhong...@atmel.com Tested-by: Elen Songelen.s...@atmel.com

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Lei Wen
Hi Hong, On Fri, Aug 19, 2011 at 5:23 PM, Hong Xu hong...@atmel.com wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud albert.u.b...@aribaud.net

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Aneesh V
Hi Marek, On Friday 19 August 2011 03:16 PM, Marek Vasut wrote: On Friday, August 19, 2011 11:37:29 AM Aneesh V wrote: Hi Hong, On Friday 19 August 2011 02:53 PM, Hong Xu wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. How about converting as

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 12:43:30 PM Aneesh V wrote: Hi Marek, On Friday 19 August 2011 03:16 PM, Marek Vasut wrote: On Friday, August 19, 2011 11:37:29 AM Aneesh V wrote: Hi Hong, On Friday 19 August 2011 02:53 PM, Hong Xu wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and

Re: [U-Boot] [PATCH 2/3 v2] ARM: ARM1136 - Remove flush_cache from arch/arm/lib/cache.c

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 11:59:16 AM Hong Xu wrote: Hi Marek, On 08/19/2011 05:40 PM, Marek Vasut wrote: On Friday, August 19, 2011 11:23:14 AM Hong Xu wrote: arch/arm/lib/cache.c is cleaned and no real cache operation will be defined in this file. A new file

[U-Boot] [PATCH] mx53: ddr3: Update DD3 initialization

2011-08-19 Thread Fabio Estevam
Updated mx53 ddr3 script in order to align with the latest Freescale version from July 8, 2011: -change ESDREF[REF_SEL]=01 (for 32KHz), from incorrect setting of 00 (64KHz) -change DDR3 MR0 write to setmem /32 0x63fd901c = 0x052080b0 from 0x092080b0. This changes write recovery from 8 clocks to 6

[U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data is unchanged from what is already there. Signed-off-by: Simon Glass s...@chromium.org --- common/cmd_sf.c | 75

Re: [U-Boot] [PATCH] mmc:dcache: Cache line size aligned internal MMC buffers

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 05:25:13 Lukasz Majewski wrote: + cache_align_buf = memalign(get_dcache_line_size(), nowhere do i see get_dcache_line_size() defined also, what is the code size increase with your patch ? -mike signature.asc Description: This is a digitally signed message part.

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Aneesh V
On Friday 19 August 2011 06:25 PM, Marek Vasut wrote: On Friday, August 19, 2011 12:43:30 PM Aneesh V wrote: Hi Marek, On Friday 19 August 2011 03:16 PM, Marek Vasut wrote: On Friday, August 19, 2011 11:37:29 AM Aneesh V wrote: Hi Hong, On Friday 19 August 2011 02:53 PM, Hong Xu wrote:

Re: [U-Boot] [PATCH 3/3 v2] ARM: ARM926EJS - Add cache operations

2011-08-19 Thread Aneesh V
Hi Hong, On Friday 19 August 2011 02:53 PM, Hong Xu wrote: Add a new file arch/arm/cpu/arm926ejs/cache.c and put cache operations into this file. Signed-off-by: Hong Xu hong...@atmel.com Tested-by: Elen Song elen.s...@atmel.com CC: Albert Aribaud albert.u.b...@aribaud.net --- Since V1

Re: [U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 09:47:04 Simon Glass wrote: This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data is unchanged from what is already there. sounds good +static int

Re: [U-Boot] [PATCH] ubifs: Fix bad free() sequence in ubifs_finddir()

2011-08-19 Thread Stefan Roese
On Thursday 28 July 2011 15:27:22 Wolfgang Denk wrote: Free private_data member element before freeing file structure. This was causing malloc to crash. Also remove unnecessary variable assigments as file structure gets free'd as well. Applied to u-boot-ubi/master. Thanks. Best regards,

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

2011-08-19 Thread Stefan Roese
Hi Wolfgang, please pull the following fix: The following changes since commit fa82f871c8dbc9a15e8dc274b3f99dd5fa0da458: Convert ISO-8859 files to UTF-8 (2011-08-04 23:34:02 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-ubi.git master Wolfgang Denk (1):

Re: [U-Boot] [PATCH] mmc:dcache: Cache line size aligned internal MMC buffers

2011-08-19 Thread Lukasz Majewski
Hi Mike, On Fri, 19 Aug 2011 09:57:10 -0400 Mike Frysinger vap...@gentoo.org wrote: On Friday, August 19, 2011 05:25:13 Lukasz Majewski wrote: + cache_align_buf = memalign(get_dcache_line_size(), nowhere do i see get_dcache_line_size() defined also, what is the code size increase with

Re: [U-Boot] [PATCH] ppc460: read get_sys_info from CPR registers instead of STRP registers

2011-08-19 Thread Stefan Roese
Marri, On Friday 05 August 2011 19:45:05 Tirumala Marri wrote: As mentioned before, we might otherwise remove the dead code. [marri] Sorry I was on vacation last month. We do still need this code as PPC460 is still used by many companies. We are working in submitting the New patch set to

Re: [U-Boot] [PATCH] mmc:dcache: Cache line size aligned internal MMC buffers

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 11:28:18 Lukasz Majewski wrote: On Fri, 19 Aug 2011 09:57:10 -0400 Mike Frysinger wrote: On Friday, August 19, 2011 05:25:13 Lukasz Majewski wrote: + cache_align_buf = memalign(get_dcache_line_size(), nowhere do i see get_dcache_line_size() defined Please

[U-Boot] [u-boot PATCH] arm, lib/bootm.c: Exclude HIGHMEM from being used by u-boot

2011-08-19 Thread David Long
Reserve any memory above 768MB to prevent u-boot from relocating fdt or initrd data into memory that Linux cannot reference during early boot. Code taken (with modifications) from the powerpc bootm.c. Signed-off-by: David A. Long dave.l...@linaro.org --- arch/arm/lib/bootm.c | 24

Re: [U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
Hi Mike, On Fri, Aug 19, 2011 at 9:14 AM, Mike Frysinger vap...@gentoo.org wrote: On Friday, August 19, 2011 09:47:04 Simon Glass wrote: This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data

Re: [U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 14:07:16 Simon Glass wrote: On Fri, Aug 19, 2011 at 9:14 AM, Mike Frysinger wrote: On Friday, August 19, 2011 09:47:04 Simon Glass wrote: +static int spi_flash_update(struct spi_flash *flash, u32 offset, + size_t len, const char *buf) +{ +

Re: [U-Boot] [STATUS] ARM

2011-08-19 Thread Dirk Behme
On 19.08.2011 11:38, Aneesh V wrote: Hi Albert, On Friday 19 August 2011 03:39 AM, Albert ARIBAUD wrote: Hi all, This week-end I intend to go through the board removal patch set and apply those patches in it that still fail to compile with the current u-boot-arm/master tree. So: 1) if

[U-Boot] [PATCH v2] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data is unchanged from what is already there. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: -Moved loop into a function -Moved

Re: [U-Boot] please pull u-boot-samsung/master

2011-08-19 Thread Albert ARIBAUD
Hi Minkyu, Le 19/08/2011 07:34, Minkyu Kang a écrit : Dear Albert ARIBAUD, The following changes since commit 6477396323193c04ebb510dd2786173da31f4911: arm: fix bd pointer dereference prior initialization (2011-08-17 18:10:34 +0200) are available in the git repository at:

Re: [U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
Hi Mike, On Fri, Aug 19, 2011 at 12:19 PM, Mike Frysinger vap...@gentoo.org wrote: On Friday, August 19, 2011 14:07:16 Simon Glass wrote: On Fri, Aug 19, 2011 at 9:14 AM, Mike Frysinger wrote: On Friday, August 19, 2011 09:47:04 Simon Glass wrote: +static int spi_flash_update(struct

Re: [U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 14:25:46 Simon Glass wrote: On Fri, Aug 19, 2011 at 12:19 PM, Mike Frysinger wrote: On Friday, August 19, 2011 14:07:16 Simon Glass wrote: On Fri, Aug 19, 2011 at 9:14 AM, Mike Frysinger wrote: On Friday, August 19, 2011 09:47:04 Simon Glass wrote: +static int

Re: [U-Boot] [PATCH v2] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 14:19:42 Simon Glass wrote: +static const char *write_block(struct spi_flash *flash, u32 offset, + size_t len, const char *buf, char *cmp_buf, size_t *skipped) spi_flash_update_block is probably a better name. after all, you're doing more (and sometimes

Re: [U-Boot] [PATCH] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
On Fri, Aug 19, 2011 at 12:57 PM, Mike Frysinger vap...@gentoo.org wrote: On Friday, August 19, 2011 14:25:46 Simon Glass wrote: On Fri, Aug 19, 2011 at 12:19 PM, Mike Frysinger wrote: On Friday, August 19, 2011 14:07:16 Simon Glass wrote: On Fri, Aug 19, 2011 at 9:14 AM, Mike Frysinger

Re: [U-Boot] [PATCH v2] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
Hi Mike, On Fri, Aug 19, 2011 at 1:03 PM, Mike Frysinger vap...@gentoo.org wrote: On Friday, August 19, 2011 14:19:42 Simon Glass wrote: +static const char *write_block(struct spi_flash *flash, u32 offset, +             size_t len, const char *buf, char *cmp_buf, size_t *skipped)

[U-Boot] [PATCH v3] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data is unchanged from what is already there. Signed-off-by: Simon Glass s...@chromium.org --- Changes in v2: -Moved loop into a function -Moved

[U-Boot] [PATCH 1/2] fat: root directory cluster only makes sense for FAT32

2011-08-19 Thread Sergei Shtylyov
The root directory cluster field only exists in a FAT32 boot sector, so the 'root_cluster' variable in do_fat_read() contains garbage in case of FAT12/16. Make it contain 0 instead as this is what is passed to get_vfatname() in that case anyway. Signed-off-by: Sergei Shtylyov sshtyl...@mvista.com

[U-Boot] [PATCH 2/2] fat: replace LINEAR_PREFETCH_SIZE with PREFETCH_BLOCKS

2011-08-19 Thread Sergei Shtylyov
Currently in do_fat_read() when reading FAT sectors, we have to divide down LINEAR_PREFETCH_SIZE by the sector size, whereas it's defined as 2 sectors worth of bytes. In order to avoid redundant multiplication/division, introduce #define PREFETCH_BLOCKS instead of #define LINEAR_PREFETCH_SIZE.

Re: [U-Boot] [PATCH] NAND: Really ignore bad blocks when scrubbing

2011-08-19 Thread Scott Wood
On 08/16/2011 12:03 PM, Marek Vasut wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com --- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nand_util.c |1 + include/linux/mtd/mtd.h |1 + 3 files changed, 3 insertions(+), 1 deletions(-) diff --git

[U-Boot] [PATCH] Small refactor to remove duplicate serial code

2011-08-19 Thread Simon Glass
This tidies up duplicate code, and checks that default_serial_console() does in fact produce a device. Signed-off-by: Simon Glass s...@chromium.org --- common/serial.c | 64 +- 1 files changed, 20 insertions(+), 44 deletions(-) diff --git

Re: [U-Boot] [PATCH v3] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 15:28:48 Simon Glass wrote: This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data is unchanged from what is already there. looks good to me. i'll give it a spin on a

Re: [U-Boot] [PATCH v3 5/7]Timer: Remove reset_timer() for non-Nios2 arches

2011-08-19 Thread Mike Frysinger
On Tuesday, July 26, 2011 08:53:37 Wolfgang Denk wrote: Dear Graeme Russ, In message 1310809000-3402-1-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com --- Changes since v2: - Added Signed-off-by Changes since v1 ((WIP)

Re: [U-Boot] [PATCH v3] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Simon Glass
On Fri, Aug 19, 2011 at 3:15 PM, Mike Frysinger vap...@gentoo.org wrote: On Friday, August 19, 2011 15:28:48 Simon Glass wrote: This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash programming when much of the data is

Re: [U-Boot] [PATCH] Small refactor to remove duplicate serial code

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 17:09:43 Simon Glass wrote: This tidies up duplicate code, and checks that default_serial_console() does in fact produce a device. Signed-off-by: Simon Glass s...@chromium.org Acked-by: Mike Frysinger vap...@gentoo.org -mike signature.asc Description: This is a

Re: [U-Boot] [PATCH] NAND: Really ignore bad blocks when scrubbing

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 10:08:33 PM Scott Wood wrote: On 08/16/2011 12:03 PM, Marek Vasut wrote: Signed-off-by: Marek Vasut marek.va...@gmail.com --- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nand_util.c |1 + include/linux/mtd/mtd.h |1 + 3 files

Re: [U-Boot] [PATCH] NAND: Really ignore bad blocks when scrubbing

2011-08-19 Thread Scott Wood
On 08/19/2011 04:47 PM, Marek Vasut wrote: On Friday, August 19, 2011 10:08:33 PM Scott Wood wrote: Changelog should describe why the existing mechanism of overriding the block_bad method is insufficient (I think there may be issues if you try to scrub before the bbt is first built) -- and if

[U-Boot] nested defines coding style

2011-08-19 Thread Jeroen Hofstee
Hi all, I couldn't (easily) find a doc for coding style regarding defines in u-boot. I commenly don't indent preprocessor macro's, but when reading code from some one else code I tend to prefer single space indentation for these (before the #). Is there a standard for this in u-boot? Regards,

Re: [U-Boot] [PATCH v3] Add 'sf update' command to do smart SPI flash update

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 17:25:10 Simon Glass wrote: On Fri, Aug 19, 2011 at 3:15 PM, Mike Frysinger wrote: On Friday, August 19, 2011 15:28:48 Simon Glass wrote: This adds a new SPI flash command which only rewrites blocks if the contents need to change. This can speed up SPI flash

Re: [U-Boot] nested defines coding style

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 17:57:50 Jeroen Hofstee wrote: I couldn't (easily) find a doc for coding style regarding defines in u-boot. I commenly don't indent preprocessor macro's, but when reading code from some one else code I tend to prefer single space indentation for these (before the #).

[U-Boot] [PATCH] Fix compilation for OMAP3 EVM

2011-08-19 Thread Vincent
Signed-off-by: Vincent Stehlé vincent.ste...@laposte.net --- board/ti/evm/evm.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/board/ti/evm/evm.c b/board/ti/evm/evm.c index 30c1c57..d0604e9 100644 --- a/board/ti/evm/evm.c +++ b/board/ti/evm/evm.c @@ -33,7 +33,6 @@

Re: [U-Boot] [PATCH] NAND: Really ignore bad blocks when scrubbing

2011-08-19 Thread Marek Vasut
On Friday, August 19, 2011 11:55:30 PM Scott Wood wrote: On 08/19/2011 04:47 PM, Marek Vasut wrote: On Friday, August 19, 2011 10:08:33 PM Scott Wood wrote: Changelog should describe why the existing mechanism of overriding the block_bad method is insufficient (I think there may be issues

[U-Boot] [PATCH V2] NAND: Really ignore bad blocks when scrubbing

2011-08-19 Thread Marek Vasut
This patch avoids BBT completely when scrubbing, not even initial BBT scan happens. Signed-off-by: Marek Vasut marek.va...@gmail.com --- drivers/mtd/nand/nand_base.c |2 +- drivers/mtd/nand/nand_util.c | 22 +- include/linux/mtd/mtd.h |1 + 3 files changed, 7

Re: [U-Boot] [PATCH v3 5/7]Timer: Remove reset_timer() for non-Nios2 arches

2011-08-19 Thread Graeme Russ
Mike, On Saturday, August 20, 2011, Mike Frysinger vap...@gentoo.org wrote: On Tuesday, July 26, 2011 08:53:37 Wolfgang Denk wrote: Dear Graeme Russ, In message 1310809000-3402-1-git-send-email-graeme.r...@gmail.com you wrote: Signed-off-by: Graeme Russ graeme.r...@gmail.com ---

Re: [U-Boot] [PATCH v3 5/7]Timer: Remove reset_timer() for non-Nios2 arches

2011-08-19 Thread Mike Frysinger
On Friday, August 19, 2011 18:55:38 Graeme Russ wrote: I wonder if git needs a blank line between the sob and --- mine never have -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] DreamPlug - progress?

2011-08-19 Thread Adam Baxter
Hi all, I have a Globalscale Dreamplug I wish to accomplish the following: * Backup original uboot * Verify original uboot * Flash patched uboot to SPI Any roadblocks? I couldn't confirm, either via this list or looking at commits whether Dreamplug support ever made it back into mainline uboot...

Re: [U-Boot] [PATCH] Fix compilation for OMAP3 EVM

2011-08-19 Thread Dirk Behme
On 20.08.2011 00:37, Vincent wrote: Signed-off-by: Vincent Stehlévincent.ste...@laposte.net --- board/ti/evm/evm.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/board/ti/evm/evm.c b/board/ti/evm/evm.c index 30c1c57..d0604e9 100644 --- a/board/ti/evm/evm.c +++