Re: [U-Boot] [PATCH] RTC: Fix return code in MC13783 RTC driver.

2009-11-10 Thread Magnus Lilja
Hi 2009/11/11 Fabio Estevam : > Magnus, > > --- On Tue, 11/10/09, Magnus Lilja wrote: > >> From: Magnus Lilja >> Subject: [U-Boot] [PATCH] RTC: Fix return code in MC13783 RTC driver. >> To: u-boot@lists.denx.de >> Date: Tuesday, November 10, 2009, 4:53 PM >> --- >>  drivers/rtc/mc13783-rtc.c | 

[U-Boot] framework for serial flash

2009-11-10 Thread ashish priyadarshi
Hello We have a special "Serial flash controller" which was put into the standard flash framework of uboot (common/cmd_flash.c). Commands like 'cp', 'erase' could be used for operation over serial flash. Now we have to use parallel flash (CFI), hence it is required to handle "Serial flash control

Re: [U-Boot] [PATCH 3/3] [OneNAND] Flex-OneNAND boundary settings

2009-11-10 Thread Amul Kumar Saha
Add command for changing Flex-OneNAND SLC / MLC boundary. Also onenand commands work for Flex-OneNAND. Signed-off-by: Rohit Hagargundgi Signed-off-by: Amul Kumar Saha --- common/cmd_onenand.c | 106 +++--- include/configs/apollon.h |2 2 files c

Re: [U-Boot] [PATCH 3/3] [OneNAND] Flex-OneNAND boundary settings

2009-11-10 Thread Amul Kumar Saha
Hi Scott, > On Fri, Nov 06, 2009 at 05:17:44PM +0530, Amul Kumar Saha wrote: >> - printk("Bad blocks %d at 0x%x\n", >> -(u32)(ofs >> this->erase_shift), (u32)ofs); >> + printk("Bad blocks %lu at 0x%x\n", >> +(u32)onenand_block(this, ofs), (u32)ofs); > > cmd_onenand.c: In function

Re: [U-Boot] [PATCH] RTC: Fix return code in MC13783 RTC driver.

2009-11-10 Thread Fabio Estevam
Magnus, --- On Tue, 11/10/09, Magnus Lilja wrote: > From: Magnus Lilja > Subject: [U-Boot] [PATCH] RTC: Fix return code in MC13783 RTC driver. > To: u-boot@lists.denx.de > Date: Tuesday, November 10, 2009, 4:53 PM > --- > drivers/rtc/mc13783-rtc.c |    2 +- > 1 files changed, 1 insertions(+),

Re: [U-Boot] loading applications sequentially.

2009-11-10 Thread Wolfgang Denk
Dear Ronny, In message <227026ca0911101327j2e9bb20cld8e0447918562...@mail.gmail.com> you wrote: > > we have a system on which we load first one executable that executes some > test code to make sure the board's hardware is in a good shape. Once this is > confirmed the SW returns to the loader and

Re: [U-Boot] [PATCH 2/2] ARM: fix build error with gcc-4.4.2 about inline function declared weak

2009-11-10 Thread Wolfgang Denk
Dear Tom, In message <4af9c04f.1020...@windriver.com> you wrote: > > I have pushed the earlier patch to arm/next. Thnaks, but this being a clear bug fix I think we should include this in the upcoming release? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk

[U-Boot] loading applications sequentially.

2009-11-10 Thread ronny meeus
Hello we have a system on which we load first one executable that executes some test code to make sure the board's hardware is in a good shape. Once this is confirmed the SW returns to the loader and in a second step real SW operational SW is loaded. In fact we want to load/execute 2 (or more) bui

Re: [U-Boot] [RFC 4/4] MXC: Reorganize 16 bit nand detection.

2009-11-10 Thread Magnus Lilja
Scott Wood skrev: > On Sun, Nov 08, 2009 at 11:55:39AM +0100, Magnus Lilja wrote: >> Alternative solution for supporting 16 bit NAND detection for the >> i.MX27 and i.MX31 SoCs. This moves the SoC specific code to the SoC header >> file leaving mxc_nand.c free from #ifdef's (in this respect). > >

Re: [U-Boot] [PATCH 2/2] ARM: fix build error with gcc-4.4.2 about inline function declared weak

2009-11-10 Thread Tom
Wolfgang Denk wrote: > Dear Tom, > > In message <4af33815.4030...@windriver.com> you wrote: Signed-off-by: Abdoulaye Walsimou Gaye >>> What is this? Are you sure this patch is properly attributed? Was >>> Abdoulaye Walsimou Gaye really the first to submit this patch? >>> >>> Best regards, >

[U-Boot] [PATCH] RTC: Fix return code in MC13783 RTC driver.

2009-11-10 Thread Magnus Lilja
--- drivers/rtc/mc13783-rtc.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/rtc/mc13783-rtc.c b/drivers/rtc/mc13783-rtc.c index 05db2f1..416f50d 100644 --- a/drivers/rtc/mc13783-rtc.c +++ b/drivers/rtc/mc13783-rtc.c @@ -109,7 +109,7 @@ int rtc_set(struct rtc_tim

[U-Boot] [PATCH] cmd_date: Fix spelling in error message.

2009-11-10 Thread Magnus Lilja
--- common/cmd_date.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/cmd_date.c b/common/cmd_date.c index 9f50f89..3141a39 100644 --- a/common/cmd_date.c +++ b/common/cmd_date.c @@ -71,9 +71,9 @@ int do_date (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]

Re: [U-Boot] [PATCH 3/7] 83xx/85xx/86xx: Add ECC support

2009-11-10 Thread Ira W. Snyder
On Tue, Nov 10, 2009 at 11:36:44AM -0600, Peter Tyser wrote: > > Ok, here are my results, this is on a 8349EMDS-derived board. My > > 8349EMDS eval board doesn't have ECC memory. > > > > 1) It might be nice to have something to print the current injection > > registers. It is not a big deal, anyon

Re: [U-Boot] [PATCH 3/7] 83xx/85xx/86xx: Add ECC support

2009-11-10 Thread Peter Tyser
> Ok, here are my results, this is on a 8349EMDS-derived board. My > 8349EMDS eval board doesn't have ECC memory. > > 1) It might be nice to have something to print the current injection > registers. It is not a big deal, anyone using this should be an expert > anyway. Thanks for the feedback. I

Re: [U-Boot] [PATCH 3/7] 83xx/85xx/86xx: Add ECC support

2009-11-10 Thread Ira W. Snyder
On Mon, Nov 09, 2009 at 09:07:25PM -0600, Peter Tyser wrote: [ big snip ] > > > > I haven't looked at your code. When I was running the old ecc command, I > > had the 83xx reference manual open to decode the command's output, IIRC. > > > > PS - I'm happy to test stuff on 83xx, I'll try and find

[U-Boot] From:Maher Labib Abou Steit, General Manager, United Bank of Egypt

2009-11-10 Thread Steit Maher
邀請你 "From:Maher Labib Abou Steit,General Manager,United Bank of Egypt". (被主持人) Steit Maher: 日期:2009年11月10日, 星期二 時間:8:00 上午 - 9:00 上午 (GMT +00:00) 地點:In my bank covered an abandoned sum of $33.3musd in an account that belongs a la

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

2009-11-10 Thread Stefan Roese
Hi Wolfgang, please pull some updates for "next". Thanks. The following changes since commit cd12f615e4dd1dd24caab93f4157894783c6c1c0: Wolfgang Grandegger (1): mpc52xx: add support for the IPEK01 board are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git

[U-Boot] [PATCH V5 4/4] add TI DA8xx support: Integrate DA830 EVM support into U-Boot

2009-11-10 Thread Nick Thompson
From: Sekhar Nori Integrate DA830 EVM support into U-Boot. Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum Digital EVM board. See http://www.spectrumdigital.com/ Signed-off-by: Nick Thompson --- Applies to u-boot-ti MAINTAINERS|4 + MAKEALL

[U-Boot] [PATCH V5 3/4] add TI DA8xx support: Add new directory for da830evm board

2009-11-10 Thread Nick Thompson
From: Sekhar Nori Add new directory for da830evm board Provides initial support for TI OMAP-L137/DA830 SoC devices on a Spectrum Digital EVM board. See http://www.spectrumdigital.com/ Provides: Initial boot and configuration. Support for i2c. UART support (console). Signed-off-by: Nick Thompso

[U-Boot] [PATCH V5 2/4] add TI DA8xx support: Add DA8xx cpu functions

2009-11-10 Thread Nick Thompson
From: Sekhar Nori Provides initial support for TI OMAP-L1x/DA8xx SoC devices. See http://www.ti.com Provides: Low level initialisation. System clock API. Timer control. Signed-off-by: Nick Thompson --- Applies to u-boot-ti cpu/arm926ejs/davinci/cpu.c | 50 ++

[U-Boot] [PATCH V5 0/4] add TI DA8xx support:

2009-11-10 Thread Nick Thompson
Add initial support for DA8xx SoC's and the spectrum digital DA830 EVM board. See: http://www.ti.com http://www.spectrumdigital.com/ DA8xx is similar to DaVinci devices, but has a differing memory map and updated peripherals. It is intended that DaVinci drivers will be modified in

[U-Boot] [PATCH V5 1/4] add TI DA8xx support: DA8xx includes

2009-11-10 Thread Nick Thompson
Provides initial support for TI OMAP-L1x/DA8xx SoC devices. See http://www.ti.com The DA8xx devices are similar to DaVinci devices but have a differing memory map and updated peripheral versions. Signed-off-by: Nick Thompson Signed-off-by: Sekhar Nori --- Applies to u-boot-ti include/asm-arm/

Re: [U-Boot] [PATCH 2/2] ppc4xx: Katmai: Add chip_config command

2009-11-10 Thread Stefan Roese
On Monday 09 November 2009 14:16:51 Stefan Roese wrote: > This patch removes the Katmai "bootstrap" command and replaces it > with the now common command "chip_config". Applied to u-boot-ppc4xx/next. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel

Re: [U-Boot] [PATCH 1/2] ppc4xx: Switch to I2C bus numer 0 for chip_config command

2009-11-10 Thread Stefan Roese
On Monday 09 November 2009 14:16:43 Stefan Roese wrote: > All currently available 4xx derivats have the I2C bootstrap EEPROM > located on I2C bus number 0. This patch now first sets this bus number, > so that the chip_config command also works for board with multiple > I2C busses, like Katmai. App

Re: [U-Boot] [PATCH] ppc4xx: Fix NAND booting targets after 4xx linker script consolidation

2009-11-10 Thread Stefan Roese
On Monday 09 November 2009 13:29:00 Stefan Roese wrote: > Somehow I missed the NAND booting targets in the 4xx linker script > consolidation patchset. This patch fixes this issue. Applied to u-boot-ppc4xx/next. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & De

Re: [U-Boot] [PATCH] ppc4xx: Add UBI support to PLU405 boards

2009-11-10 Thread Stefan Roese
On Tuesday 27 October 2009 12:19:11 Matthias Fuchs wrote: > -add UBI support > -increase malloc'able memory size > -cleanup MONITOR|FLASH_BASE|LEN constants Applied to u-boot-ppc4xx/next. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235

[U-Boot] [PATCH ARM] Add a unified s3c24x0 header file

2009-11-10 Thread kevin.morf...@fearnside-systems.co.uk
This patch adds a unified s3c24x0 cpu header file that selects the header file for the specific s3c24x0 cpu from the SOC and CPU configs defined in board config file. This removes the current chain of s3c24-type #ifdef's from the s3c24x0 code. Signed-off-by: Kevin Morfitt --- board/mpl/vcma9/vc

Re: [U-Boot] AT91SAM9263 with DM8203 Phy

2009-11-10 Thread Matthias Wieloch
Hi, It's me again. Regarding the DM8203 2-Port-Switch: At first I thought it would be compatible to DM9161 but I was told it is not. The DM8203 has an MII Interface but the SMI interface is different. Hoping that my previous message was just noz seen I'd like to ask again if anyone has exp

[U-Boot] s5pc1xx: serial: fix the error check logic

2009-11-10 Thread Minkyu Kang
Because of Frame error, Parity error and Overrun error are occured only receive operation, need to masking when error checking. Signed-off-by: Minkyu Kang --- drivers/serial/serial_s5pc1xx.c | 24 +--- 1 files changed, 17 insertions(+), 7 deletions(-) diff --git a/drivers/

Re: [U-Boot] [PATCH] S3C6400/SMDK6400: fix stack_setup in start.S

2009-11-10 Thread Minkyu Kang
Dear Seunghyeon Rhee, 2009/11/2 "Seunghyeon Rhee (이승현)" : > Dear Minkyu Kang, > > 2009/11/2 Minkyu Kang : >> Dear Seunghyeon Rhee >> >> 2009/10/31 "Seunghyeon Rhee (이승현)" : >>> stack_setup is modified to initialize the stack on the correct address in >>> DRAM accroding to the typical memory config

Re: [U-Boot] use "boot select" jumper on NGW100 to select USART

2009-11-10 Thread Wolfgang Denk
Dear Thomas, In message you wrote: > > So the patch for atmel_usart.c would look like this: > > hmatrix_slave_write(EBI, SFR, HMATRIX_BIT(EBI_SDRAM_ENABLE)); > > portmux_enable_ebi(16, 23, 0, PORTMUX_DRIVE_HIGH); > - portmux_enable_usart1(PORTMUX_DRIVE_MIN); > + > + USART_JUM