Re: [U-Boot] [PATCH 2/2] S5PC100: Prints the PLL clock frequencies

2010-02-03 Thread Minkyu Kang
Dear Naveen Krishna Ch, On 4 February 2010 14:24, Naveen Krishna Ch wrote: > From: Naveen Krishna CH > > Prints the frequencies of the 4 PLLs along with CPU Info > > Signed-off-by: Naveen Krishna Ch > --- >  cpu/arm_cortexa8/s5pc1xx/cpu_info.c |    8 >  1 files changed, 8 insertions(+)

Re: [U-Boot] [PATCH 2/2 v3] arm: suen3, suen3_v1, mgcoge2_arm_p1a support

2010-02-03 Thread Heiko Schocher
Hello Scott, Scott Wood wrote: > On Wed, Feb 03, 2010 at 04:52:05PM +0100, Heiko Schocher wrote: + if ((strcmp(argv[1], "off") == 0)) { + printf("SPI FLASH disabled, NAND enabled\n"); + /* Multi-Purpose Pins Functionality configuration */ + kwmpp_con

[U-Boot] [PATCH 2/2] S5PC100: Prints the PLL clock frequencies

2010-02-03 Thread Naveen Krishna Ch
From: Naveen Krishna CH Prints the frequencies of the 4 PLLs along with CPU Info Signed-off-by: Naveen Krishna Ch --- cpu/arm_cortexa8/s5pc1xx/cpu_info.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/cpu/arm_cortexa8/s5pc1xx/cpu_info.c b/cpu/arm_cortexa8/s5pc

[U-Boot] [PATCH 0/2] S5PC100: Print PLL info along with CPU info

2010-02-03 Thread Naveen Krishna Ch
From: Naveen Krishna CH This patch set moves the Macros defined in clock.c to a common header file and prints the frequencies of PLLs along with CPU info. This patch set consists of the following patches. [PATCH 1/2] S5PC100: Moves the Macros to a common header file [PATCH 2/2] S5PC100: Print

[U-Boot] [PATCH 1/2] S5PC100: Moves the Macros to a common header file

2010-02-03 Thread Naveen Krishna Ch
From: Naveen Krishna CH The get_pll_clk(int) API returns the PLL frequency based on the (int) argument which is defined locally in clock.c Moving that #define to common header file (clk.h) would be helpful when using the API from other files. Signed-off-by: Naveen Krishna Ch --- cpu/arm_corte

Re: [U-Boot] [PATCH 2/2 v3] arm: suen3, suen3_v1, mgcoge2_arm_p1a support

2010-02-03 Thread Scott Wood
On Wed, Feb 03, 2010 at 04:52:05PM +0100, Heiko Schocher wrote: > >> + if ((strcmp(argv[1], "off") == 0)) { > >> + printf("SPI FLASH disabled, NAND enabled\n"); > >> + /* Multi-Purpose Pins Functionality configuration */ > >> + kwmpp_config[0] = MPP0_NF_IO2; > >> +

Re: [U-Boot] [PATCH] ns16550: kick watchdog while waiting for a character

2010-02-03 Thread Wolfgang Denk
Dear Ladislav Michl, In message <20100201223425.ga4...@localhost.localdomain> you wrote: > From: Ladislav Michl > > ns16550 busyloops waiting for incoming byte causing watchdog to reboot > while waiting for a key press. A call to WATCHDOG_RESET in NS16550_getc > loop fixes it. > > Signed-off-by

[U-Boot] [PATCH 9/9 V4] new board (eb_cpux9k2)

2010-02-03 Thread Jens Scharsig
* new board (eb_cpux9k2) * support for EB+CPUx9K2 board by BuS Elektronik GmbH & Co. KG * select via make eb_cpux9k2_config * this also demonstrates, how to use boards with AT91RM9200 cpu in at91 arch tree Signed-off-by: Jens Scharsig --- MAINTAINERS|4 + MAKEALL

[U-Boot] [PATCH 8/9 V4] new at91_emac network driver (NET_MULTI api)

2010-02-03 Thread Jens Scharsig
* add's at91_emac (AT91RM9200) network driver (NET_MULTI api) * enable driver with CONFIG_DRIVER_AT91EMAC * generic PHY initialization * modify AT91RM9200 boards to use NET_MULTI driver * the drivers has been tested with LXT971 Phy and DM9161 Phy at MII and RMII interface Signed-off-by: J

[U-Boot] [PATCH 7/9 V4] prepare joining at91rm9200 into at91

2010-02-03 Thread Jens Scharsig
* prepare joining at91 and at91rm9200 * add modified copy of soc files to cpu/arm920t/at91 to make possible to compile at91rm9200 boards in at91 tree instead of at91rm9200 * add header files with c structure defs for AT91 MC, ST and TC * the new cpu files are using at91 c structure soc ac

[U-Boot] [PATCH 6/9 V4] update at91sam9263ek board to new SoC access

2010-02-03 Thread Jens Scharsig
* convert at91sam9263ek board to use c stucture SoC access * change gpio access to at91_gpio syntax Signed-off-by: Jens Scharsig --- board/atmel/at91sam9263ek/at91sam9263ek.c | 151 +++-- board/atmel/at91sam9263ek/led.c | 21 +++-- include/configs/at91sam9

[U-Boot] [PATCH 5/9 V4] convert common files to new SoC access

2010-02-03 Thread Jens Scharsig
* add's a warning to all files, which need update to new SoC access * convert common files in cpu/../at91 and a lot of drivers to use c stucture SoC access Signed-off-by: Jens Scharsig --- cpu/arm926ejs/at91/at91cap9_devices.c | 28 ++-- cpu/arm926ejs/at91/at91sam9260_devices.c

[U-Boot] [PATCH 4/9 V4] convert all at91 files to use at91_gpio driver syntax

2010-02-03 Thread Jens Scharsig
* convert all files cpu/../at91 to use at91_gpio driver syntax * change AT91_PINP([A-F])(\d+) to AT91_PIO_PORT\1, \2 this makes all 160 AT91_PINPxxx defines obsolete * AT91_PINPxxx defines and gpio.h can be remove, if all boards converted to new SoC access Signed-off-by: Jens Scharsig ---

[U-Boot] [PATCH 3/9 V4] add a new AT91 GPIO driver

2010-02-03 Thread Jens Scharsig
* add a real AT91 GPIO driver instead of header inline code * resolve the mixing of port and pins * change board config files to use new driver * add macros to gpio to realize backward compatibility Signed-off-by: Jens Scharsig --- drivers/gpio/Makefile|1 + drivers/gpio/at9

[U-Boot] [PATCH 2/9 V4] add c structures for SoC access

2010-02-03 Thread Jens Scharsig
* add's c structures for SoC access to pheriperials head files Signed-off-by: Jens Scharsig --- include/asm-arm/arch-at91/at91_matrix.h | 116 +++ include/asm-arm/arch-at91/at91_pdc.h| 39 + include/asm-arm/arch-at91/at91_pio.h| 97 ++

[U-Boot] [PATCH 1/9 V4] add new CONFIG_AT91_LEGACY

2010-02-03 Thread Jens Scharsig
* add's the new temporary CONFIG_AT91_LEGACY to all board configs This will need for backward compatiblity, while change the SoC access to c structures. If CONFIG_AT91_LEGACY is defined, the deprecated SoC is used. Signed-off-by: Jens Scharsig --- doc/README.at91-soc| 41 ++

Re: [U-Boot] [PATCH 9/9 V3] new board (eb_cpux9k2)

2010-02-03 Thread Jens Scharsig
Tom wrote: >> >> +Jens Scharsig >> + >> +eb_cpux9k2 ARM920T (AT91RM9200 SoC) >> + > > The email does not match what was given in the > copyrights. Which is the real address ? > The cpux9k2 board file i make in my profession. The other changes i make in my "spare time". The addresses

Re: [U-Boot] [PATCH 7/9 V3] prepare joining at91rm9200 into at91

2010-02-03 Thread Jens Scharsig
>> +/* reset time */ >> +at91_tc_t *tc = (at91_tc_t *) AT91_TC_BASE; >> +lastinc = readl(&tc->tc[0].cv) & 0x; >> +timestamp = 0; > > rm9200 did not zero out the top bits > Is this needed ? > The datasheet say not, is bit 16 to 31 of cv high or low. >> +typedef struct at91

[U-Boot] Pull request: u-boot-usb

2010-02-03 Thread Remy Bohmer
The following changes since commit 111d6c6ad15d1425d3e5a678b2ff4b593e910fca: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-ppc4xx are available in the git repository at: git://git.denx.de/u-boot-usb.git master Cliff Cai (1): usb: musb: fix Blackfin DMA re

Re: [U-Boot] Pull request: u-boot-usb

2010-02-03 Thread Wolfgang Denk
Dear Remy Bohmer, In message <3efb10971002031310v538ef875m50231aa6d173...@mail.gmail.com> you wrote: > The following changes since commit 111d6c6ad15d1425d3e5a678b2ff4b593e910fca: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-ppc4xx > > are available in the g

Re: [U-Boot] [PATCH V4 09/11] ARM/PPC: add a common way to access registers

2010-02-03 Thread Wolfgang Denk
Dear Stefano Babic, In message <4b62c655.3090...@denx.de> you wrote: > > I will add something like CONFIG_FSL_ESDHC_BIG_ENDIAN or > CONFIG_FSL_ESDHC_LITTLE_ENDIAN in the driver I changed. In the related > header file for the driver, I can set driver specific macros that point > to the correct acce

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

2010-02-03 Thread Wolfgang Denk
Dear Stefan Roese, In message <201002031010.16549...@denx.de> you wrote: > Hi Wolfgang, > > please pull some 4xx fixes into master: > > The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-

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

2010-02-03 Thread Wolfgang Denk
Dear Stefan Roese, In message <201002020915.35862...@denx.de> you wrote: > Hi Wolfgang, > > please pull this fix into master: > > The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-mpc85x

Re: [U-Boot] Pull request - net

2010-02-03 Thread Wolfgang Denk
Dear Ben Warren, In message <4b6678fc.20...@gmail.com> you wrote: > Wolfgang > > The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx > > are available in the git repository at: >

Re: [U-Boot] Pull request: nand flash

2010-02-03 Thread Wolfgang Denk
Dear Scott Wood, In message <20100127211334.ga1...@loki.buserror.net> you wrote: > The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx > > are available in the git repository at: >

Re: [U-Boot] Pull request: u-boot-video

2010-02-03 Thread Wolfgang Denk
Dear Anatolij Gustschin, In message <20100127220007.0a3c9...@wker> you wrote: > Dear Wolfgang, > > The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx > > are available in the git

Re: [U-Boot] [PATCH 3/3] mpc5xxx/cpu_init.c: fix warning: unused variable 'cdm'

2010-02-03 Thread Wolfgang Denk
In message <1265018287-22037-2-git-send-email...@denx.de> you wrote: > Signed-off-by: Wolfgang Denk > --- > cpu/mpc5xxx/cpu_init.c | 12 +++- > 1 files changed, 7 insertions(+), 5 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD:

Re: [U-Boot] [PATCH 2/3] mpc5xxx/cpu_init.c: fix warning: unused variable 'gpt0'

2010-02-03 Thread Wolfgang Denk
In message <1265018287-22037-1-git-send-email...@denx.de> you wrote: > Signed-off-by: Wolfgang Denk > --- > cpu/mpc5xxx/cpu_init.c |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang D

Re: [U-Boot] [PATCH 1/3] cmd_ximg.c: fix error: 'i' undeclared

2010-02-03 Thread Wolfgang Denk
In message <1265018257-21954-1-git-send-email...@denx.de> you wrote: > Fix compile error: > > cmd_ximg.c: In function 'do_imgextract': > cmd_ximg.c:234: error: 'i' undeclared (first use in this function) > cmd_ximg.c:234: error: (Each undeclared identifier is reported only once

Re: [U-Boot] [PATCH 2/2 v3] arm: suen3, suen3_v1, mgcoge2_arm_p1a support

2010-02-03 Thread Stefan Roese
On Wednesday 03 February 2010 16:52:05 Heiko Schocher wrote: > >> + > >> + str = getenv("mach_type"); > >> + if (str != NULL) { > >> + mach_type = simple_strtoul(str, NULL, 10); > >> + printf("Overwriting MACH_TYPE with %d!!!\n", mach_type); > >> + gd->bd->bi_arch_numbe

Re: [U-Boot] [PATCH 2/2 v3] arm: suen3, suen3_v1, mgcoge2_arm_p1a support

2010-02-03 Thread Heiko Schocher
Hello Prafulla, Prafulla Wadaskar wrote: > First of all sorry for delayed feedback No problem, thanks for reviewing! >> -Original Message- >> From: Heiko Schocher [mailto:h...@denx.de] >> Sent: Monday, February 01, 2010 1:07 PM >> To: U-Boot user list >> Cc: Wolfgang Denk; Prafulla Wada

Re: [U-Boot] [PATCHv2] OMAP3: Avoid re-write to PRM_CLKSRC_CTRL

2010-02-03 Thread Premi, Sanjeev
> -Original Message- > From: Premi, Sanjeev > Sent: Friday, January 29, 2010 6:44 PM > To: u-boot@lists.denx.de > Cc: Premi, Sanjeev; Hiremath, Vaibhav > Subject: [PATCHv2] OMAP3: Avoid re-write to PRM_CLKSRC_CTRL > > The function get_osc_clk_speed() is used to determine the master > cloc

Re: [U-Boot] [PATCH 3/3] mpc5xxx/cpu_init.c: fix warning: unused variable 'cdm'

2010-02-03 Thread Wolfgang Denk
Dear Detlev, In message you wrote: > > By the way, now that we have a patch touching this stuff on the mailing > list - would anyone object to removing the mgt5100 stuff? If I am not > missing anything, this is not being used anywhere and makes the code > look overly complicated. It is a prett

Re: [U-Boot] [PATCH 0/3] Add Support for AM3517EVM with EMIF4

2010-02-03 Thread Hiremath, Vaibhav
> -Original Message- > From: Tom [mailto:tom@windriver.com] > Sent: Wednesday, February 03, 2010 6:54 PM > To: Hiremath, Vaibhav > Cc: u-boot@lists.denx.de; Paulraj, Sandeep > Subject: Re: [PATCH 0/3] Add Support for AM3517EVM with EMIF4 > > Hiremath, Vaibhav wrote: > >> -Original

Re: [U-Boot] [PATCH 0/3] Add Support for AM3517EVM with EMIF4

2010-02-03 Thread Tom
Hiremath, Vaibhav wrote: >> -Original Message- >> From: Hiremath, Vaibhav >> Sent: Saturday, January 30, 2010 3:47 PM >> To: u-boot@lists.denx.de >> Cc: Paulraj, Sandeep; tom@windriver.com; Hiremath, Vaibhav >> Subject: [PATCH 0/3] Add Support for AM3517EVM with EMIF4 >> >> From: Vaibha

[U-Boot] unassigned-patches/51: [PATCH] S5PC100: Moved the #defines for PLLs to common header file

2010-02-03 Thread u-boot
The get_pll_clk(int) API returns the PLL frequency based on the (int) argument which is defined locally in clock.c Moving that #define to common header file (clk.h) would be helpful when using the API from other files. Signed-off-by: Naveen Krishna Ch --- Added to GNATS database as unassigned-p

Re: [U-Boot] [PATCH 3/3] mpc5xxx/cpu_init.c: fix warning: unused variable 'cdm'

2010-02-03 Thread Detlev Zundel
Hi Wolfgang, > Signed-off-by: Wolfgang Denk Acked-by: Detlev Zundel By the way, now that we have a patch touching this stuff on the mailing list - would anyone object to removing the mgt5100 stuff? If I am not missing anything, this is not being used anywhere and makes the code look overly co

Re: [U-Boot] [PATCH 2/3] mpc5xxx/cpu_init.c: fix warning: unused variable 'gpt0'

2010-02-03 Thread Detlev Zundel
Hi Wolfgang, > Signed-off-by: Wolfgang Denk Acked-by: Detlev Zundel > --- > cpu/mpc5xxx/cpu_init.c |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/cpu/mpc5xxx/cpu_init.c b/cpu/mpc5xxx/cpu_init.c > index b151464..2aa6e1c 100644 > --- a/cpu/mpc5xxx/cpu_init.c > +

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

2010-02-03 Thread Stefan Roese
Hi Wolfgang, please pull some 4xx fixes into master: The following changes since commit 9b208ece0a4e040774e24990b7cb6f0ad0ca4cc7: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.

Re: [U-Boot] [PATCH] ppc4xx: Remove unused feature from AR405 board

2010-02-03 Thread Stefan Roese
On Monday 01 February 2010 13:54:09 Matthias Fuchs wrote: > This patch fixes building for AR405 boards by remove an unused feature. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirch

Re: [U-Boot] [PATCH] ppc4xx: Fix building for PLU405 boards

2010-02-03 Thread Stefan Roese
On Monday 01 February 2010 13:53:59 Matthias Fuchs wrote: > The init_coupler() function from board/esd/plu405/plu405.c > got lost somehow! This patch readds it. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 1

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

2010-02-03 Thread Stefan Roese
On Monday 01 February 2010 13:53:47 Matthias Fuchs wrote: > Remove some unused features and default environment variable > to shrink the PMC440 u-boot. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Mu

Re: [U-Boot] [PATCH] ppc4xx: Fix compilation error on ML2 board

2010-02-03 Thread Stefan Roese
On Tuesday 26 January 2010 13:33:29 Stefan Roese wrote: > Recently this compilation error occurs: > > Configuring for ML2 board... > traps.c: In function 'MachineCheckException': > traps.c:159: error: 'debugger_exception_handler' undeclared (first use > in this function) > traps.c:159: error