Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-12 Thread Jason Liu
Hi, Stefano, 2011/5/11 Stefano Babic sba...@denx.de: On 05/11/2011 10:03 AM, Jason Liu wrote: This patch add initial support for freescale MX53LOCO board. Network(FEC),SD/MMC,UART have been supported by this patch The patch also config CPU:1GHZ,DDR:400MHZ for better peformance

Re: [U-Boot] ACER n310 NAND write protection issue

2011-05-12 Thread fcipaq
Figured out myself. If anyone has the same issue: set bit 12 of port A to 1: GPADAT |= (1 11) fcipaq wrote: Hey everyone, I've got an ACER n310 (n300 series). It features a s3c2440 running at 300 MHz, 64 MB SDRAM and 128 MB NAND ROM (it's Samsung k9f1g08). It's not equipped with any

[U-Boot] [PATCH 1/4] Serial: pl011: new vendor init options

2011-05-12 Thread John Rigby
Two new options: CONFIG_PL011_SERIAL_RLCR Some vendor versions of PL011 serial ports (e.g. ST-Ericsson U8500) have separate receive and transmit line control registers. Set this variable to initialize the extra register. CONFIG_PL011_SERIAL_FLUSH_ON_INIT On some platforms (e.g. U8500) U-Boot

Re: [U-Boot] Pull request: u-boot-arm/master

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] Sent: Thursday, May 12, 2011 11:11 AM To: Rogan Dawes Cc: Wolfgang Denk; u-boot@lists.denx.de; Prafulla Wadaskar Subject: Re: Pull request: u-boot-arm/master Hi Rogan, Le 12/05/2011 00:11, Rogan Dawes

Re: [U-Boot] [PATCH v3 0/8] keymile arm boards update, part 2

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 11, 2011 8:52 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de; holger.bru...@keymile.com Subject: Re: [PATCH v3 0/8] keymile arm boards update, part 2 Hi Prafulla,

Re: [U-Boot] Issues in U-BOOT for OMAPL137

2011-05-12 Thread Nick Thompson
On 11/05/11 10:15, shilpa jadav wrote: Hi , When i am trying to compile u-boot for omapL137 by issuing the following command make da830_omapl137_evm_config CROSS_COMPILE=arm-none-linux-gnueabi- Our goal is to get USB up on the uboot . We are trying to boot OMAPL137 Evm using USB mass

Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-12 Thread Stefano Babic
On 05/12/2011 08:13 AM, Jason Liu wrote: Hi, Stefano, Hi Jason, u32 get_cpu_rev(void); #define is_soc_rev(rev) ((get_cpu_rev() 0xFF) - rev) void sdelay(unsigned long); +void pmic_reg_write(u32 reg, u32 value); +u32 pmic_reg_read(u32 reg); The pmic_ prototypes have nothing to

Re: [U-Boot] Pull request: u-boot-arm/master

2011-05-12 Thread Simon Guinot
Hi Prafulla, On Thu, May 12, 2011 at 01:48:34AM -0700, Prafulla Wadaskar wrote: -Original Message- From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] Sent: Thursday, May 12, 2011 11:11 AM To: Rogan Dawes Cc: Wolfgang Denk; u-boot@lists.denx.de; Prafulla Wadaskar

Re: [U-Boot] Pull request: u-boot-arm/master

2011-05-12 Thread Simon Guinot
Hi Rogan, On Thu, May 12, 2011 at 12:11:41AM +0200, Rogan Dawes wrote: On 2011/05/11 11:07 PM, Albert ARIBAUD wrote: Simon Guinot (2): mv-common.h: fix DRAM banks configuration I think Prafulla already accepted my own change to fix this. Not sure which one is considered better.

Re: [U-Boot] [PATCH V7 2/3] PMIC: Add dialog pmic support

2011-05-12 Thread Stefano Babic
On 05/11/2011 10:03 AM, Jason Liu wrote: This patch add dialog pmic(DA9053) driver with I2C interface support In order to not duplicate code and according to the discussion on the mail-list, change fsl_pmic.c to spi_i2c_pmic.c.Actaully,spi_i2c_pmic.c is just a wrapper for PMIC communication

[U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Simon Guinot
This patch allows to enable the netconsole even if `serverip' is not set. Because netconsole use the environment variable `ncip' to configure the destination IP, `serverip' don't need to be defined. Signed-off-by: Simon Guinot sgui...@lacie.com --- Changes for v2: - restore NetOurIP check

[U-Boot] [PATH v7 0/2] Add support for LaCie NAS Network Space v2

2011-05-12 Thread Simon Guinot
This patch series adds support for Network Space v2 board and parents. Changes for v2: - netconsole: restore NetOurIP check - add entries to MAINTAINERS file - move boards from root Makefile to boards.cfg - move MACH_TYPE definition into netspace_v2.h - remove CONFIG_SYS_HZ redefinition

[U-Boot] [PATH v7 2/2] Add support for Network Space v2

2011-05-12 Thread Simon Guinot
This patch add support for the Network Space v2 board and parents, based on the Marvell Kirkwood 6281 SoC. This include Network Space (Max) v2 and Internet Space v2. Additional information is available at: http://lacie-nas.org/doku.php?id=network_space_v2 Signed-off-by: Simon Guinot

Re: [U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Simon Guinot [mailto:simon.gui...@sequanux.org] Sent: Thursday, May 12, 2011 3:19 PM To: Prafulla Wadaskar Cc: Albert ARIBAUD; u-boot@lists.denx.de; Simon Guinot Subject: [PATH v7 1/2] netconsole: remove `serverip' check This patch allows to enable the

Re: [U-Boot] [PATH v7 2/2] Add support for Network Space v2

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Simon Guinot [mailto:simon.gui...@sequanux.org] Sent: Thursday, May 12, 2011 3:19 PM To: Prafulla Wadaskar Cc: Albert ARIBAUD; u-boot@lists.denx.de; Simon Guinot Subject: [PATH v7 2/2] Add support for Network Space v2 This patch add support for the

Re: [U-Boot] [PATCH v3 2/8] arm/km: move CONFIG_EXTRA_ENV_SETTINGS from board to km_arm file

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 04, 2011 9:24 PM To: u-boot@lists.denx.de Cc: holger.bru...@keymile.com; Prafulla Wadaskar; Valentin Longchamp; Heiko Schocher; Wolfgang Denk; Detlev Zundel Subject: [PATCH v3

Re: [U-Boot] [PATCH v3 1/8] arm/km: remove CONFIG_SYS_KWD_CONFIG from keymile-common.h

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 04, 2011 9:24 PM To: u-boot@lists.denx.de Cc: holger.bru...@keymile.com; Prafulla Wadaskar; Valentin Longchamp; Heiko Schocher; Wolfgang Denk; Detlev Zundel Subject: [PATCH v3

Re: [U-Boot] [PATCH v3 3/8] arm/km: introduce bootcount env variable and clean km_arm

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 04, 2011 9:24 PM To: u-boot@lists.denx.de Cc: holger.bru...@keymile.com; Prafulla Wadaskar; Valentin Longchamp; Wolfgang Denk; Detlev Zundel Subject: [PATCH v3 3/8] arm/km:

Re: [U-Boot] [PATCH v3 8/8] arm/km: update mgcoge3un board support

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 04, 2011 9:24 PM To: u-boot@lists.denx.de Cc: holger.bru...@keymile.com; Prafulla Wadaskar; Valentin Longchamp; Wolfgang Denk; Detlev Zundel Subject: [PATCH v3 8/8] arm/km:

Re: [U-Boot] [PATCH v3 6/8] arm/km: rename mgcoge2un to mgcoge3un

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 04, 2011 9:24 PM To: u-boot@lists.denx.de Cc: holger.bru...@keymile.com; Prafulla Wadaskar; Valentin Longchamp; Wolfgang Denk; Detlev Zundel Subject: [PATCH v3 6/8] arm/km:

Re: [U-Boot] [PATCH v3 5/8] arm/km: add second serial interface for kirkwood

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Valentin Longchamp [mailto:valentin.longch...@keymile.com] Sent: Wednesday, May 04, 2011 9:24 PM To: u-boot@lists.denx.de Cc: holger.bru...@keymile.com; Prafulla Wadaskar; Valentin Longchamp; Wolfgang Denk; Detlev Zundel Subject: [PATCH v3 5/8] arm/km: add

[U-Boot] [PATCH 1/2] powerpc/85xx: Enable eSPI support on corenet ds boards

2011-05-12 Thread Shaohui Xie
Signed-off-by: Shaohui Xie b21...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- include/configs/corenet_ds.h | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/include/configs/corenet_ds.h b/include/configs/corenet_ds.h index

[U-Boot] [PATCH 2/2] powerpc/85xx: add support for env in MMC/SPI on corenet ds boards

2011-05-12 Thread Shaohui Xie
Signed-off-by: Shaohui Xie b21...@freescale.com --- board/freescale/common/Makefile |2 ++ boards.cfg |7 ++- include/configs/corenet_ds.h| 30 ++ 3 files changed, 30 insertions(+), 9 deletions(-) diff --git

Re: [U-Boot] [PATH v7 2/2] Add support for Network Space v2

2011-05-12 Thread Simon Guinot
Hi Prafulla, On Thu, May 12, 2011 at 03:36:48AM -0700, Prafulla Wadaskar wrote: -Original Message- From: Simon Guinot [mailto:simon.gui...@sequanux.org] Sent: Thursday, May 12, 2011 3:19 PM To: Prafulla Wadaskar Cc: Albert ARIBAUD; u-boot@lists.denx.de; Simon Guinot

Re: [U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Simon Guinot
Hi Prafulla, On Thu, May 12, 2011 at 03:17:24AM -0700, Prafulla Wadaskar wrote: -Original Message- From: Simon Guinot [mailto:simon.gui...@sequanux.org] Sent: Thursday, May 12, 2011 3:19 PM To: Prafulla Wadaskar Cc: Albert ARIBAUD; u-boot@lists.denx.de; Simon Guinot

Re: [U-Boot] [PATH v7 2/2] Add support for Network Space v2

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Simon Guinot [mailto:si...@sequanux.org] Sent: Thursday, May 12, 2011 5:17 PM To: Prafulla Wadaskar Cc: Simon Guinot; Albert ARIBAUD; u-boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik Subject: Re: [PATH v7 2/2] Add support for Network Space v2 Hi

Re: [U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Prafulla Wadaskar
-Original Message- From: Simon Guinot [mailto:si...@sequanux.org] Sent: Thursday, May 12, 2011 5:25 PM To: Prafulla Wadaskar Cc: Simon Guinot; Albert ARIBAUD; u-boot@lists.denx.de; Wolfgang Denk; Ashish Karkare; Prabhanjan Sarnaik Subject: Re: [PATH v7 1/2] netconsole: remove

[U-Boot] [PATCH v3 06/10] arm: minor fixes for cache and mmu handling

2011-05-12 Thread Aneesh V
1. make sure that page table setup is not done multiple times 2. flush_dcache_all() is more appropriate while disabling cache than a range flush on the entire memory(flush_cache()) Provide a default implementation for flush_dcache_all() for backward compatibility and to avoid build

[U-Boot] [PATCH v3 08/10] armv7: adapt omap4 to the new cache maintenance framework

2011-05-12 Thread Aneesh V
adapt omap4 to the new layered cache maintenance framework Signed-off-by: Aneesh V ane...@ti.com --- V2: * Changes for the function pointer to weakly linked change --- arch/arm/cpu/armv7/omap4/lowlevel_init.S| 18 ++ arch/arm/include/asm/arch-omap4/sys_proto.h |1 -

[U-Boot] [PATCH v3 01/10] arm: make default implementation of cache_flush() weakly linked

2011-05-12 Thread Aneesh V
make default implementation of cache_flush() weakly linked so that sub-architectures can override it Signed-off-by: Aneesh V ane...@ti.com --- arch/arm/lib/cache.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/arm/lib/cache.c b/arch/arm/lib/cache.c index

[U-Boot] [PATCH v3 02/10] armv7: add miscellaneous utility macros

2011-05-12 Thread Aneesh V
add utility macros for: * bit field operations * log2n functions Signed-off-by: Aneesh V ane...@ti.com --- V2: * Newly added in v2 --- arch/arm/include/asm/utils.h | 80 ++ 1 files changed, 80 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH v3 00/10] armv7: cache maintenance operations

2011-05-12 Thread Aneesh V
With D-cache and MMU enabled for ARM in u-boot it becomes imperative to support a minimal set of cache maintenance operations and necessary initializations before enabling MMU. This series of patches attempt to do the following for armv7: * Necessary initialization sequence before enabling MMU

[U-Boot] [PATCH v3 04/10] armv7: replace CONFIG_L2_OFF with CONFIG_SYS_NO_L2CACHE

2011-05-12 Thread Aneesh V
replace all occurences of CONFIG_L2_OFF with a more appropriate CONFIG_SYS_NO_L2CACHE CONFIG_SYS_NO_L2CACHE has been chosen to be in line with CONFIG_SYS_NO_ICACHE and CONFIG_SYS_NO_DCACHE Signed-off-by: Aneesh V ane...@ti.com --- arch/arm/cpu/armv7/cpu.c|6 +-

[U-Boot] [PATCH v3 07/10] armv7: add PL310 support to u-boot

2011-05-12 Thread Aneesh V
PL310 is the L2$ controller from ARM used in many SoCs including the Cortex-A9 based OMAP4430 Add support for some of the key PL310 operations - Invalidate all - Invalidate range - Flush(clean invalidate) all - Flush range Signed-off-by: Aneesh V ane...@ti.com

[U-Boot] [PATCH v3 05/10] armv7: integrate cache maintenance support

2011-05-12 Thread Aneesh V
- Enable I-cache on bootup - Enable MMU and D-cache immediately after relocation - Do necessary initialization before enabling d-cache and MMU - Changes to cleanup_before_linux() - Make changes according to the new framework Signed-off-by: Aneesh V ane...@ti.com --- V2: * Changes

[U-Boot] [PATCH v3 10/10] armv7: adapt s5pc1xx to the new cache maintenance framework

2011-05-12 Thread Aneesh V
adapt s5pc1xx to the new layered cache maintenance framework Signed-off-by: Aneesh V ane...@ti.com --- V2: * Changes for the function pointer to weakly linked change --- arch/arm/cpu/armv7/s5pc1xx/cache.S| 88 ++--- arch/arm/include/asm/arch-s5pc1xx/sys_proto.h

[U-Boot] [PATCH v3 09/10] armv7: adapt omap3 to the new cache maintenance framework

2011-05-12 Thread Aneesh V
adapt omap3 to the new layered cache maintenance framework Signed-off-by: Aneesh V ane...@ti.com --- V2: * Changes for the function pointer to weakly linked change --- arch/arm/cpu/armv7/omap3/Makefile |1 - arch/arm/cpu/armv7/omap3/board.c| 138 --

[U-Boot] [PATCH v3 03/10] armv7: cache maintenance operations for armv7

2011-05-12 Thread Aneesh V
- Add a framework for layered cache maintenance - separate out SOC specific outer cache maintenance from maintenance of caches known to CPU - Add generic ARMv7 cache maintenance operations that affect all caches known to ARMv7 CPUs. For instance in Cortex-A8 these opertions

Re: [U-Boot] [PATCH] post: add gpio hotkey support

2011-05-12 Thread Sergei Shtylyov
Hello. On 11-05-2011 18:54, Mike Frysinger wrote: @@ -68,6 +72,23 @@ int post_init_f (void) int __post_hotkeys_pressed(void) { +#ifdef CONFIG_SYS_POST_HOTKEYS_GPIO + int ret; + unsigned gpio = CONFIG_SYS_POST_HOTKEYS_GPIO; + + ret = gpio_request(gpio, hotkeys); + if (ret)

Re: [U-Boot] [PATCHv3 0/4] ST-Ericsson U8500 support

2011-05-12 Thread John Rigby
On Thu, Apr 28, 2011 at 8:41 PM, John Rigby john.ri...@linaro.org wrote: On Thu, Apr 28, 2011 at 9:40 AM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Le 28/04/2011 16:47, John Rigby a écrit :  armv7: Add ST-Ericsson u8500 arch  armv7: Add support for ST-Ericsson U8500 href platform

Re: [U-Boot] [PATCH v3] PPC405EX CHIP_21 erratum

2011-05-12 Thread Steven A. Falco
On 05/05/2011 10:08 AM, Steven A. Falco wrote: APM errata CHIP_21 for the 405EX/EXr (from the rev 1.09 document dated 4/27/11) states that rev D processors may wake up with the wrong feature set. This patch implements the APM-proposed workaround. I have not seen any further comments on this

Re: [U-Boot] [PATCH v3] PPC405EX CHIP_21 erratum

2011-05-12 Thread Stefan Roese
On Thursday 05 May 2011 16:08:35 Steven A. Falco wrote: APM errata CHIP_21 for the 405EX/EXr (from the rev 1.09 document dated 4/27/11) states that rev D processors may wake up with the wrong feature set. This patch implements the APM-proposed workaround. To enable this patch for your

[U-Boot] [PATCH][v2] qoriq/p1_p2_rdb: USB device-tree fixups for P1020

2011-05-12 Thread Ramneek Mehresh
Resolve P1020 second USB controller multiplexing with eLBC - mandatory to mention USB2 in hwconfig string to select it over eLBC, otherwise USB2 node is removed - works only for SPI and SD boot Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- Changes for

[U-Boot] [PATCH][v2]qoriq/p1_p2_rdb: Add Dual Role USB support macro for P1020RDB

2011-05-12 Thread Ramneek Mehresh
Add CONFIG_HAS_FSL_DR_USB macro for P1020RDB Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- Changes for v2: - rebased on http://git.denx.de/u-boot.git include/configs/P1_P2_RDB.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git

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

2011-05-12 Thread Stefan Roese
Hi Wolfgang, please pull the following fix: The following changes since commit 264eaa0ea967bac32214b87d60cfc86c8b22cac6: keymile boards: move keymile specific header in subdir (2011-05-10 23:22:49 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git

Re: [U-Boot] [PATCH] post: add gpio hotkey support

2011-05-12 Thread Mike Frysinger
On Thursday, May 12, 2011 08:47:56 Sergei Shtylyov wrote: On 11-05-2011 18:54, Mike Frysinger wrote: int __post_hotkeys_pressed(void) { +#ifdef CONFIG_SYS_POST_HOTKEYS_GPIO + return ret; +#endif You surely meant #else here? return 0; /* No hotkeys

Re: [U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Mike Frysinger
On Thursday, May 12, 2011 06:17:24 Prafulla Wadaskar wrote: Hi Ben/Wolfgang Can you pls review/comment/pull it ? Ben is no longer here, and the u-boot-net tree is dead. Wolfgang is currently covering things. -mike signature.asc Description: This is a digitally signed message part.

[U-Boot] USB only works in Linux if started in UBoot

2011-05-12 Thread Einar Már Björgvinsson
hi I was wondering what I was doing wrong here ! The USB functionality in Linux only works if I run 'usb start' in UBoot before starting the kernel. Not sure what will resolve this, of course I can make automatic start command during starting of the bootloader but I think that's not optimal.

Re: [U-Boot] USB only works in Linux if started in UBoot

2011-05-12 Thread Mike Frysinger
On Thursday, May 12, 2011 11:36:19 Einar Már Björgvinsson wrote: The USB functionality in Linux only works if I run 'usb start' in UBoot before starting the kernel. file a bug with the Linux maintainers -mike signature.asc Description: This is a digitally signed message part.

Re: [U-Boot] [PATH v7 2/2] Add support for Network Space v2

2011-05-12 Thread Wolfgang Denk
Dear Simon Guinot, In message 20110512114727.gc6...@kw.sim.vm.gnt you wrote: +#define CONFIG_IDENT_STRING LaCie Network Space v2 +#elif defined(CONFIG_NETSPACE_MAX_V2) +#define CONFIG_MACH_TYPE MACH_TYPE_NETSPACE_MAX_V2 +#define CONFIG_IDENT_STRING

Re: [U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Wolfgang Denk
Dear Simon Guinot, In message 20110512115521.gd6...@kw.sim.vm.gnt you wrote: This patch looks to be independent. I don't have any comments for this. Should be applied to u-boot-net.git. The patch itself is independent but the Network Space v2 board setup rely on it. Without this

Re: [U-Boot] USB only works in Linux if started in UBoot

2011-05-12 Thread Peter Tyser
On Thu, 2011-05-12 at 15:36 +, Einar Már Björgvinsson wrote: hi I was wondering what I was doing wrong here ! The USB functionality in Linux only works if I run 'usb start' in UBoot before starting the kernel. Not sure what will resolve this, of course I can make automatic start

Re: [U-Boot] USB only works in Linux if started in UBoot

2011-05-12 Thread Einar Már Björgvinsson
hi of course I forgot to mention my platform, sorry about that CPU: MPC5200b Kernel: 2.6.33-rc6 Uboot: U-Boot 2009.03 regards Einar From: u-boot-boun...@lists.denx.de [u-boot-boun...@lists.denx.de] on behalf of Peter Tyser [pty...@xes-inc.com] Sent:

Re: [U-Boot] [PATCH 1/4] Serial: pl011: new vendor init options

2011-05-12 Thread Wolfgang Denk
Dear John Rigby, In message 1305187511-8455-1-git-send-email-john.ri...@linaro.org you wrote: Two new options: CONFIG_PL011_SERIAL_RLCR Some vendor versions of PL011 serial ports (e.g. ST-Ericsson U8500) have separate receive and transmit line control registers. Set this variable to

Re: [U-Boot] [PATH v7 1/2] netconsole: remove `serverip' check

2011-05-12 Thread Wolfgang Denk
Dear Simon Guinot, In message 1305193737-5952-2-git-send-email-simon.gui...@sequanux.org you wrote: This patch allows to enable the netconsole even if `serverip' is not set. Because netconsole use the environment variable `ncip' to configure the destination IP, `serverip' don't need to be

Re: [U-Boot] [PATCH v5 5/5] Add support for Network Space v2

2011-05-12 Thread Wolfgang Denk
Dear Simon Guinot, In message 20110503131942.gu19...@kw.sim.vm.gnt you wrote: I have failed to find an entry for this patch in the U-Boot patchwork (and any previous version except the very first). I don't see it either. Have I missed something and/or done something wrong ? Unlikely. Can

Re: [U-Boot] Pull request: u-boot-arm/master

2011-05-12 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message 4dcafa98.2020...@aribaud.net you wrote: Hi Wolfgang, The following changes since commit 264eaa0ea967bac32214b87d60cfc86c8b22cac6: keymile boards: move keymile specific header in subdir (2011-05-10 23:22:49 +0200) are available in the git repository

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

2011-05-12 Thread Wolfgang Denk
Dear Stefan Roese, In message 201105121617.47525...@denx.de you wrote: Hi Wolfgang, please pull the following fix: The following changes since commit 264eaa0ea967bac32214b87d60cfc86c8b22cac6: keymile boards: move keymile specific header in subdir (2011-05-10 23:22:49 +0200) are

Re: [U-Boot] [PATCH] zlib: fix DEBUG build

2011-05-12 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1304289062-25727-1-git-send-email-vap...@gentoo.org you wrote: The previous commit imported a little too much from upstream. We need to disable stdio.h when using U-Boot. Reported-by: Wolfgang Denk w...@denx.de Signed-off-by: Mike Frysinger vap...@gentoo.org

Re: [U-Boot] [PATCH] MPC8260: Fix compile problems with hymod board

2011-05-12 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1304260506-1456-1-git-send-email...@denx.de you wrote: Commit 9d8fbd1 powerpc, 8xx: Fixup all 8xx u-boot.lds scripts broke building of the MPC8260 based hymod board. Fix this. Signed-off-by: Wolfgang Denk w...@denx.de Cc: Murray Jensen murray.jen...@csiro.au

Re: [U-Boot] [PATCH] part_dos: allocate sector buffer dynamically

2011-05-12 Thread Wolfgang Denk
Dear Sergei Shtylyov, In message 4dbff9fd.1070...@mvista.com you wrote: Umm... you _are_ aware that you can put dynamically sized arrays on the stack, aren't you? No, it seems I'm not. Is it a standard C now? It's been a GCC extension forever (well, I have to admit that I don't

Re: [U-Boot] [PATCH v2 2/6] NET: pass source IP address to packet handlers

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1303143594-5345-3-git-send-email-luca.ceres...@comelit.it you wrote: This is needed for the upcoming TFTP server implementation. This also simplifies PingHandler() and fixes rxhand_f documentation. Signed-off-by: Luca Ceresoli luca.ceres...@comelit.it Cc:

Re: [U-Boot] [PATCH v2 3/6] TFTP: rename server to remote

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1303143594-5345-4-git-send-email-luca.ceres...@comelit.it you wrote: With the upcoming TFTP server implementation, the remote node can be either a client or a server, so avoid ambiguities. Signed-off-by: Luca Ceresoli luca.ceres...@comelit.it Cc: Wolfgang

Re: [U-Boot] [PATCH] cmd_nvedit.c: make error message more helpful

2011-05-12 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1304540989-10450-1-git-send-email...@denx.de you wrote: When calling getenv_f() with a too small buffer, it would print an error message like this: env_buf too small [32] This is not really helpful as it does not give any indication which of the calls

Re: [U-Boot] [PATCH] Fix incorrect use of getenv() before relocation

2011-05-12 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1304541148-11038-1-git-send-email...@denx.de you wrote: A large number of boards incorrectly used getenv() in their board init code running before relocation. In some cases this caused U-Boot to hang when certain environment variables grew too long. Fix the

[U-Boot] SD 3.0 support in uboot

2011-05-12 Thread Trivedi Anish-R6AAKA
Hi, Is there a plan to add SD 3.0 support to uboot's mmc driver, including the use of UHS modes? Thanks, Anish ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] MX53: Add initial support for MX53SMD board.

2011-05-12 Thread Fabio Estevam
Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- MAINTAINERS |1 + board/freescale/mx53smd/Makefile | 48 board/freescale/mx53smd/imximage.cfg | 96 +++ board/freescale/mx53smd/mx53smd.c| 222

Re: [U-Boot] SD 3.0 support in uboot

2011-05-12 Thread Wolfgang Denk
Dear Trivedi Anish-R6AAKA, In message 02b259ebc9134a47b143131fcaf2fea30e2...@039-sn1mpn1-004.039d.mgd.msft.net you wrote: Is there a plan to add SD 3.0 support to uboot's mmc driver, including the use of UHS modes? As soon as anybody submits patches :-) Best regards, Wolfgang Denk --

Re: [U-Boot] [PATCH v2] lib, vsprintf: introduce strict_strtoul

2011-05-12 Thread Wolfgang Denk
Dear Heiko Schocher, In message 1304408029-16785-1-git-send-email...@denx.de you wrote: as checkpatch proposes to use strict_strtoul instead of simple_strtoul, introduce it. Ported this function from Linux 2.6.38 commit ID: 521cb40b0c44418a4fd36dc633f575813d59a43d Signed-off-by: Heiko

[U-Boot] [PATCH] fsl_esdhc: Initialize mmc-b_max

2011-05-12 Thread Fabio Estevam
commit 262951(MMC: make b_max unconditional) missed to update fsl_esdhc. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- drivers/mmc/fsl_esdhc.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index

Re: [U-Boot] [PATCH v2 6/7] Tegra2: Add USB support

2011-05-12 Thread Remy Bohmer
Hi, 2011/5/5 Simon Glass s...@chromium.org: This adds basic USB support for port 0. The other port is not supported by this CL. Signed-off-by: Simon Glass s...@chromium.org ---  arch/arm/include/asm/arch-tegra2/tegra2.h |    2 +  arch/arm/include/asm/arch-tegra2/usb.h    |  217

Re: [U-Boot] [PATCH] musb: process control messages after roothub accepted it

2011-05-12 Thread Remy Bohmer
Hi, 2011/4/21 Mike Frysinger vap...@gentoo.org: From: Cliff Cai cliff@analog.com When dealing with non-multipoint devices, if the software root hub code accepted the message, then we still need to process it normally.  So only return quickly when the root hub skipped the message or is

Re: [U-Boot] [PATCH] ehci-pci: Fix PCI EHCI driver for 36-bit

2011-05-12 Thread Remy Bohmer
Hi, 2011/4/19 Zhao Chenhui b35...@freescale.com: Convert the PCI base address into a virtual address. Signed-off-by: Zhao Chenhui b35...@freescale.com Signed-off-by: Li Yang le...@freescale.com ---  drivers/usb/host/ehci-pci.c |    5 ++---  1 files changed, 2 insertions(+), 3 deletions(-)

Re: [U-Boot] [PATCH v2 1/8] net/net.c: cosmetic: fix lines over 80 characters

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-2-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch warning: - WARNING: line over 80 characters There are three such warnings left. The first is hard to fix with cosmetic-only changes without

Re: [U-Boot] [PATCH v2 2/8] net/net.c: cosmetic: variable initializations

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-3-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch errors: - ERROR: do not initialise globals to 0 or NULL - ERROR: spaces required around that '=' (ctx:VxV) - ERROR: that open brace { should be on the

Re: [U-Boot] [PATCH v2 3/8] net/net.c: cosmetic: fix whitespace issues

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-4-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch issues: - ERROR: space prohibited after that open parenthesis '(' - ERROR: space prohibited before that close parenthesis ')' - ERROR: space

Re: [U-Boot] [PATCH v2 4/8] net/net.c: cosmetic: fix brace issues

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-5-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch issues: - WARNING: braces {} are not necessary for single statement blocks - WARNING: braces {} are not necessary for any arm of this statement

Re: [U-Boot] [PATCH v2 5/8] net/net.c: cosmetic: fix pointer syntax issues

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-6-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch issues: - ERROR: foo * bar should be foo *bar - ERROR: (foo*) should be (foo *) Signed-off-by: Luca Ceresoli luca.ceres...@comelit.it Cc: Wolfgang

Re: [U-Boot] [PATCH v2 6/8] net/net.c: cosmetic: parentheses not required for return

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-7-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch issue: - ERROR: return is not a function, parentheses are not required Signed-off-by: Luca Ceresoli luca.ceres...@comelit.it Cc: Wolfgang Denk

Re: [U-Boot] [PATCH v2 7/8] net/net.c: cosmetic: fix indentation

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-8-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch issues: - ERROR: switch and case should be at the same indent - WARNING: suspect code indent for conditional statements - WARNING: labels should not

Re: [U-Boot] [PATCH v2 8/8] net/net.c: cosmetic: do not use assignment in if condition

2011-05-12 Thread Wolfgang Denk
Dear Luca Ceresoli, In message 1305122401-14967-9-git-send-email-luca.ceres...@comelit.it you wrote: This removes the following checkpatch issue: - ERROR: do not use assignment in if condition Signed-off-by: Luca Ceresoli luca.ceres...@comelit.it Cc: Wolfgang Denk w...@denx.de Cc: Ben

Re: [U-Boot] [PATCH 2/2] net: xilinx emaclite: Fix return values

2011-05-12 Thread Wolfgang Denk
Dear Michal Simek, In message 1299594353-15887-2-git-send-email-mon...@monstr.eu you wrote: Fix return values for initialize/init/recv/send functions Signed-off-by: Michal Simek mon...@monstr.eu --- drivers/net/xilinx_emaclite.c | 14 +++--- 1 files changed, 7 insertions(+), 7

Re: [U-Boot] [PATCH] Fix variable flavor in examples/standalone/Makefile

2011-05-12 Thread Wolfgang Denk
Dear Che-liang Chiou, In message aanlktimw1vlc8gm_xsdgqgkluyyzkqofyfb8-bjvb...@mail.gmail.com you wrote: GNU Makefile have two flavors of variables, recursively expanded that is defined by using '=', and simply expanded that is defined by using ':='. The bug is caused by using recursively

Re: [U-Boot] [PATCH v3] net: axi_ethernet: Add driver to u-boot v3

2011-05-12 Thread Wolfgang Denk
Dear Michal Simek, In message 1299660422-25452-1-git-send-email-mon...@monstr.eu you wrote: Add the first axi_ethernet driver for little-endian Microblaze. Signed-off-by: Michal Simek mon...@monstr.eu --- v2: - Fix return addreses - Fix NULL pointer defer for priv structure v3: -

Re: [U-Boot] [PATCH] Fix building tools alone with host compiler

2011-05-12 Thread Wolfgang Denk
Dear =?UTF-8?q?Fran=C3=A7ois=20Revol?=, In message 1300482183-17836-1-git-send-email-re...@free.fr you wrote: - don't include config.h when building with host cc, - HOSTCFLAGS was defined with the wrong name, so wasn't used, - make sure make finds sources outside of tools/. Signed-off-by:

Re: [U-Boot] OSE support shouldnt be enabled by default

2011-05-12 Thread Wolfgang Denk
Dear Torkel, In message banlktik8fnz+m0asdsxffcahrneaajc...@mail.gmail.com Mike Frysinger wrote: the commit below slipped in without me noticing ... could you please revert the change to this header and only enable support for this OS in whatever boards you're using ? especially considering

Re: [U-Boot] [PATCH] hwmon: Extend lm63.c to support LM64

2011-05-12 Thread Wolfgang Denk
Dear Dirk Eibach, In message 1303116194-32076-1-git-send-email-eib...@gdsys.de you wrote: This patch adds support for the National LM64 temperature sensor with integrated fan control to lm63.c. Main difference between LM63 and LM64 is 16°C offset in sensor readings. Signed-off-by: Dirk

Re: [U-Boot] [PATCH] Remove remnants of obsolete CONFIG_SYS_GBL_DATA_SIZE comments

2011-05-12 Thread Wolfgang Denk
Dear Michael Jones, In message 1303200753-9360-1-git-send-email-michael.jo...@matrix-vision.de you wrote: commit 25ddd1fb0a2281b182529afbc8fda5de2dc16d96 left remnants of many comments about CONFIG_SYS_GBL_DATA_SIZE. Signed-off-by: Michael Jones michael.jo...@matrix-vision.de ---

Re: [U-Boot] [PATCH] Fix a few gcc warnings.

2011-05-12 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message 1303731583-11353-1-git-send-email-joakim.tjernl...@transmode.se you wrote: Noticed while building all of mpc8xx. Also constify usage string in timer.c Warnings fixed are: timer.c: In function 'timer': timer.c:189: warning: format not a string literal and no

Re: [U-Boot] [PATCH v5 1/2] ftahbc020s: Faraday FTAHBC020s AHB Bus Controller

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message 1303817387-9472-1-git-send-email-macp...@andestech.com you wrote: ftahbc020s.h provides basic definitions of this controller to help a SoC which use this AHB Controller could do scalable software settings in lowlevel_init.S. Signed-off-by: Macpaul Lin

Re: [U-Boot] [PATCH v5 2/2] ftsdmc021: add register definitions of ftsdmc021

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message 1303817387-9472-2-git-send-email-macp...@andestech.com you wrote: Support registers definitions of ftsdmc021 SDRAM controller. Signed-off-by: Macpaul Lin macp...@andestech.com --- Changes for v2: - Add __ASSEMBLY__ protecton to register offset for supporting

Re: [U-Boot] [PATCH] README: Clarify difference of CONFIG_WATCHDOG and CONFIG_HW_WATCHDOG

2011-05-12 Thread Wolfgang Denk
Dear Detlev Zundel, In message 1303917959-32324-1-git-send-email-...@denx.de you wrote: Now that we have the documentation, the code should be changed to reflect it ;) Asd far as I can see, these are the places where HW_WATCHDOG is used instead of WATCHDOG:

Re: [U-Boot] [PATCH] mp2usb: finish the removal

2011-05-12 Thread Wolfgang Denk
Dear =?UTF-8?q?Eric=20B=C3=A9nard?=, In message 1303935504-4918-1-git-send-email-e...@eukrea.com you wrote: - remove from boards.cfg - add to doc/README.scrapyard Signed-off-by: Eric Bénard e...@eukrea.com --- boards.cfg |1 - doc/README.scrapyard |1 + 2 files

Re: [U-Boot] [PATCH v3] cosmetic: cmd_bdinfo.c: clean up by using checkpatch.pl

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message 1303957715-10873-1-git-send-email-macp...@andestech.com you wrote: cmd_bdinfo.c: clean up with 2.6.38 checkpatch.pl Signed-off-by: Macpaul Lin macp...@andestech.com --- Changes for v2: - Correct the subject field to single patch. Changes for v3: - 405XX,

Re: [U-Boot] [PATCH v2 1/2] README.arm-relocation: get relocated address from bdinfo

2011-05-12 Thread Wolfgang Denk
Dear Ben Gardiner, In message 787a04417ee0eb01c6eb3a7a1edff7ee9a8f825e.1304008866.git.bengardi...@nanometrics.ca you wrote: The bdinfo command prints the relocaddr on ARM as it does on PPC. Update the debugging instructions for arm relocation to reflect this fact rather than requiring

Re: [U-Boot] [PATCH 2/2] README.arm-relocation: get relocated address in gdb

2011-05-12 Thread Wolfgang Denk
Dear Ben Gardiner, In message 713eaea232693cd6775d409b17c2e187328d1598.1304008866.git.bengardi...@nanometrics.ca you wrote: When your emulator is connected at reset (or is used to load u-boot) it is possible to get the relocation address from the parameter passed to relocate_code() instead

Re: [U-Boot] [PATCH v3 1/2] README.arm-relocation: get relocated address from bdinfo

2011-05-12 Thread Wolfgang Denk
Dear Ben Gardiner, In message 787a04417ee0eb01c6eb3a7a1edff7ee9a8f825e.1304024417.git.bengardi...@nanometrics.ca you wrote: The bdinfo command prints the relocaddr on ARM as it does on PPC. Update the debugging instructions for arm relocation to reflect this fact rather than requiring

Re: [U-Boot] [PATCH v3 2/2] README.arm-relocation: get relocated address in gdb

2011-05-12 Thread Wolfgang Denk
Dear Ben Gardiner, In message 7ed11e02b0db005231f5c6baa299761f3aa04f6f.1304024417.git.bengardi...@nanometrics.ca you wrote: When your emulator is connected at reset (or is used to load u-boot) it is possible to get the relocation address from the gd-relocaddr since gd is always in r8 (on

Re: [U-Boot] OSE support shouldnt be enabled by default

2011-05-12 Thread Mike Frysinger
On Thursday, May 12, 2011 16:52:47 Wolfgang Denk wrote: Mike Frysinger wrote: the commit below slipped in without me noticing ... could you please revert the change to this header and only enable support for this OS in whatever boards you're using ? especially considering this OS only

Re: [U-Boot] [PATCH v3] ftide020: add faraday ide ahb controller

2011-05-12 Thread Wolfgang Denk
Dear Macpaul Lin, In message 1304321336-16693-1-git-send-email-macp...@andestech.com you wrote: Faraday's ftide020_s is an IDE-AHB controller for SoC design. This patch add the u-boot driver (PIO) of ftide020 ATA (IDE) driver. IDE commands include read, info, and other functions has been

  1   2   >