Re: [U-Boot] [RFC PATCH 5/8] arm, davinci: Replace pinmuxing in da850_lowlevel.c

2011-11-18 Thread Christian Riesch
Hello Heiko, On Wed, Nov 16, 2011 at 7:49 AM, Heiko Schocher h...@denx.de wrote: Hello Christian, Christian Riesch wrote: This patch replaces the pinmuxing functions from arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c by those of arch/arm/cpu/arm926ejs/davinci/pinmux.c Signed-off-by:

Re: [U-Boot] [RFC PATCH 5/8] arm, davinci: Replace pinmuxing in da850_lowlevel.c

2011-11-18 Thread Christian Riesch
Hello Heiko, sorry for my last (incomplete) mail. On Wed, Nov 16, 2011 at 7:49 AM, Heiko Schocher h...@denx.de wrote: Hello Christian, Christian Riesch wrote: This patch replaces the pinmuxing functions from arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c by those of

Re: [U-Boot] [PATCH] Makefile: Add the missing dependency for spl target

2011-11-18 Thread Aneesh V
Dear Wolfgang, On Thursday 10 November 2011 09:36 PM, Aneesh V wrote: Hi Wolfgang, On Saturday 05 November 2011 01:13 PM, Aneesh V wrote: Wolfgang's patch for build time improvement is bringing out issues due to missing dependencies in the top-level Makefile. I get errors such as the below

[U-Boot] [PATCH 1/4] nds32/ag102: add header support of ag102 soc

2011-11-18 Thread Macpaul Lin
Add device address offsets header of ag102 soc. Add ag102 into mach-types.h. Add asm-offsets.c for helping convert C headers into asm. Signed-off-by: Macpaul Lin macp...@andestech.com --- arch/nds32/cpu/n1213/ag102/asm-offsets.c | 54 arch/nds32/include/asm/arch-ag102/ag102.h

[U-Boot] [PATCH 3/4] board/adp-ag102: add board specific files

2011-11-18 Thread Macpaul Lin
Add board specific files. Signed-off-by: Macpaul Lin macp...@andestech.com --- board/AndesTech/adp-ag102/Makefile| 43 + board/AndesTech/adp-ag102/adp-ag102.c | 107 + 2 files changed, 150 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH 2/4] nds32/ag102: add ag102 soc support

2011-11-18 Thread Macpaul Lin
Add lowlevel ag102 soc support. Signed-off-by: Macpaul Lin macp...@andestech.com --- arch/nds32/cpu/n1213/ag102/Makefile| 58 ++ arch/nds32/cpu/n1213/ag102/cpu.c | 200 +++ arch/nds32/cpu/n1213/ag102/lowlevel_init.S | 297

[U-Boot] [PATCH 4/4] board/adp-ag102: add configuration of adp-ag102

2011-11-18 Thread Macpaul Lin
board: Add config file of board adp-ag102 Add adp-ag102 into boards.cfg Add adp-ag102 into MAINTAINERS doc: add README of ag102 Signed-off-by: Macpaul Lin macp...@andestech.com --- MAINTAINERS |1 + boards.cfg |1 + doc/README.ag102| 36

Re: [U-Boot] [RFC PATCH 5/8] arm, davinci: Replace pinmuxing in da850_lowlevel.c

2011-11-18 Thread Christian Riesch
Hello Heiko, I hope this is the complete mail now :-/ On Wed, Nov 16, 2011 at 7:49 AM, Heiko Schocher h...@denx.de wrote: Hello Christian, Christian Riesch wrote: This patch replaces the pinmuxing functions from arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c by those of

Re: [U-Boot] [u-boot]automatic reset of variables to defaults

2011-11-18 Thread Dennis Borgmann
Hello Wolfgang, Marek and Jerry! Hello u-boot list! I will try to answer all of your questions. The version that is present on the board is: U-Boot version U-Boot 2008.10-rc3 (Sep 3 2009 - 18:30:12) The CPU is a AT91SAM9260 built on an Eddy-Board from a company named SystemBase:

Re: [U-Boot] [RFC] [MMC] Is the HIGH_SPEED_SUPPORT bit checked wrong in mmc.c?

2011-11-18 Thread Macpaul Lin
Hi Andy, 2011/11/9 Andy Fleming aflem...@gmail.com: On Tue, Nov 8, 2011 at 3:15 AM, Macpaul Lin macp...@gmail.com wrote: Hi all, [...] That sounds good to me. Andy if (mmc-card_caps MMC_MODE_HS) mmc_set_clock(mmc, 5000); else

[U-Boot] [GIT PULL] Pull request: u-boot-staging

2011-11-18 Thread Stefano Babic
Wolfgang, let's see if the suggested approach work or there is need for an adjustment. I have applied some general and network patches to u-boot-staging. Should I also send an Applied to u-boot-staging message to the mailing list and to the author ? Or this is done afterwards if and when the

[U-Boot] [PATCH] nds32/lib: add ide generic support

2011-11-18 Thread Macpaul Lin
Add ide generic support. Signed-off-by: Macpaul Lin macp...@andestech.com --- arch/nds32/lib/board.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c index 2fd0e93..66e4537 100644 --- a/arch/nds32/lib/board.c +++

[U-Boot] [PATCH] MAKEALL: drop obsolete mx31pdk_nand target

2011-11-18 Thread Stefano Babic
The mx31pdk can boot only from NAND and the target was already updated in boards.cfg. mx31pdk_nand is obsolete and is dropped. Signed-off-by: Stefano Babic sba...@denx.de --- MAKEALL |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/MAKEALL b/MAKEALL index 95b7cd3..2a77857

[U-Boot] [PATCH v2] ftide020: fix incorrect information display format

2011-11-18 Thread Macpaul Lin
Fix incorrect information display format when probing the device. Signed-off-by: Macpaul Lin macp...@andestech.com --- Changes for v2: - Replace the display format of device name. drivers/block/ftide020.c |5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git

Re: [U-Boot] [PATCH] nds32/lib: add ide generic support

2011-11-18 Thread Macpaul Lin
Hi Macpaul, 2011/11/18 Macpaul Lin macp...@andestech.com: Add ide generic support. Signed-off-by: Macpaul Lin macp...@andestech.com Applied to u-boot-nds32/master. Thanks. -- Best regards, Macpaul Lin ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 2/2] nds32: enhance io.h for compatibility with periphals

2011-11-18 Thread Macpaul Lin
Hi Macpaul, 2011/11/11 Macpaul Lin macp...@andestech.com: Enhance io.h for periphals origin design on x86 systems. For example, pci, ide, etc. Signed-off-by: Macpaul Lin macp...@andestech.com Applied to u-boot-nds32/master. Thanks. -- Best regards, Macpaul Lin

Re: [U-Boot] [PATCH v2] ftide020: fix incorrect information display format

2011-11-18 Thread Macpaul Lin
Hi Macpaul, 2011/11/18 Macpaul Lin macp...@andestech.com: Fix incorrect information display format when probing the device. Signed-off-by: Macpaul Lin macp...@andestech.com --- Changes for v2:  - Replace the display format of device name. Applied to u-boot-nds32/master. Thanks. -- Best

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

2011-11-18 Thread Macpaul Lin
Dear Wolfgang, I have applied the following patch fix. Could you please pull these 3 patches to your tree. Thanks, Macpaul The following changes since commit 05622191e510e495b6a06da6342126e80a3fed8f: tools: checkpatch.pl from Linux added to tools (2011-11-17 14:27:11 +0100) are available

Re: [U-Boot] [RFC PATCH 5/8] arm, davinci: Replace pinmuxing in da850_lowlevel.c

2011-11-18 Thread Heiko Schocher
Hello Christian, Christian Riesch wrote: Hello Heiko, I hope this is the complete mail now :-/ seems so ... On Wed, Nov 16, 2011 at 7:49 AM, Heiko Schocher h...@denx.de wrote: Hello Christian, Christian Riesch wrote: [...] - da850_pinmux_ctl(18, 0x,

Re: [U-Boot] [PATCH V2 3/6] i.mx: mxc_gpio: add the i.mx6q support

2011-11-18 Thread Marek Vasut
2011/11/18 Lv Terry-R65388 r65...@freescale.com: Hi Jason, What about using #ifdef GPIO4_BASE_ADDR [3] = GPIO4_BASE_ADDR, #endif [...] Then we can avoid adding SOC compile options in future. Terry, please don't top-post. As for your comments, I don't

[U-Boot] [PATCH 2/3] ARM: OMAP3: Remove unused define SDRC_R_C_B

2011-11-18 Thread Thomas Weber
This patch removes the unused definition of SDRC_R_C_B from the config files. Signed-off-by: Thomas Weber we...@corscience.de --- include/configs/am3517_crane.h |1 - include/configs/am3517_evm.h |1 - include/configs/cm_t35.h |1 - include/configs/devkit8000.h

[U-Boot] [PATCH 1/3] ARM: OMAP3: Remove unused define CONFIG_OMAP3430

2011-11-18 Thread Thomas Weber
This patch removes the CONFIG_OMAP3430, because it is unused. Signed-off-by: Thomas Weber we...@corscience.de --- include/configs/cm_t35.h |1 - include/configs/devkit8000.h |1 - include/configs/dig297.h |1 - include/configs/igep0020.h |1 -

[U-Boot] [PATCH 0/3] Remove unused definitions from config files

2011-11-18 Thread Thomas Weber
This patchset removes some unused definitions from the config files. It is mostly omap3 centred. Thomas Weber (3): ARM: OMAP3: Remove unused define CONFIG_OMAP3430 ARM: OMAP3: Remove unused define SDRC_R_C_B ARM: OMAP: Remove STACKSIZE for IRQ and FIQ if unused

[U-Boot] [PATCH 3/3] ARM: OMAP: Remove STACKSIZE for IRQ and FIQ if unused

2011-11-18 Thread Thomas Weber
This patch removes the definition of stack sizes for irq and fiq if the CONFIG_USE_IRQ is undefined before. Signed-off-by: Thomas Weber we...@corscience.de --- include/configs/am3517_crane.h |4 include/configs/am3517_evm.h |4 include/configs/apollon.h |

Re: [U-Boot] [PATCH V2 3/6] i.mx: mxc_gpio: add the i.mx6q support

2011-11-18 Thread Jason Hui
On Fri, Nov 18, 2011 at 6:18 PM, Marek Vasut marek.va...@gmail.com wrote: 2011/11/18 Lv Terry-R65388 r65...@freescale.com: Hi Jason,        What about using #ifdef GPIO4_BASE_ADDR        [3] = GPIO4_BASE_ADDR, #endif [...]        Then we can avoid adding SOC compile options in

[U-Boot] [PATCH] ppc4xx: Remove usbdev.c

2011-11-18 Thread Stefan Roese
As this driver doesn't seem to be really used, let's remove it completely. Signed-off-by: Stefan Roese s...@denx.de --- arch/powerpc/cpu/ppc4xx/Makefile |1 - arch/powerpc/cpu/ppc4xx/usb.c |5 - arch/powerpc/cpu/ppc4xx/usb_ohci.c |7 - arch/powerpc/cpu/ppc4xx/usbdev.c | 230

[U-Boot] Message..

2011-11-18 Thread Wen Lee
I am Mr. Wen Lee director of operations of the Bank Of Taipei Taiwan. I have an obscured business proposal for you. Reply if interested. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] gpio: Adapt PCA9698 to standard GPIO API

2011-11-18 Thread Stefan Roese
On Monday 31 October 2011 09:39:12 Dirk Eibach wrote: Signed-off-by: Dirk Eibach eib...@gdsys.de Applied to u-boot-staging s...@denx.de. Thanks. Best regards, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194

[U-Boot] Please pull u-boot-staging s...@denx.de

2011-11-18 Thread Stefan Roese
Hi Wolfgang, I wanted to test the u-boot-staging as well. This time only one short patch is applied. The update from Dirk to the PCA9698 GPIO driver which is needed for the other ppc4xx BSP patch from Dirk. Please let me know if I should have done this differently. The following changes since

Re: [U-Boot] Thanks

2011-11-18 Thread Song Li
l am a Staff of Hang Seng Bank HongKong, I do not know if we can work together in transferring $19,500,000.USD from my bank. Finally if you are interested I shall provide you with more details. my private Email: mrsong.l...@yahoo.cn ___ U-Boot mailing

[U-Boot] Micron JS28F128J3F75 Uboot setenv problem

2011-11-18 Thread Spranger , Jörg
Hello, we have a small AT91RM9200 based board, running Linux on it and it worked fine. Now we face 2 major changes: 1. The strataflash JS28F128j3d75 shifted to JS28F128j3f75 2. The uboot is updated from 2009.01 to 2010.09 Now when I have a new board flashing the bootloader and make

Re: [U-Boot] Thanks

2011-11-18 Thread Song Li
l am a Staff of Hang Seng Bank HongKong, I do not know if we can work together in transferring $19,500,000.USD from my bank. Finally if you are interested I shall provide you with more details. my private Email: mrsong.l...@yahoo.cn ___ U-Boot mailing

Re: [U-Boot] [PATCH] Makefile: Add the missing dependency for spl target

2011-11-18 Thread Stefan Roese
On Saturday 05 November 2011 08:43:33 Aneesh V wrote: Wolfgang's patch for build time improvement is bringing out issues due to missing dependencies in the top-level Makefile. I get errors such as the below while building with many threads. make[1]:

[U-Boot] Update - Please pull u-boot-staging s...@denx.de

2011-11-18 Thread Stefan Roese
Hi Wolfgang, Tom Rini urged me to add the patch Makefile: Add the missing dependency for spl target to staging as well. Since nobody complained about it, I added it to my staging branch. So please feel free to pull if you have no objections. Thanks. The following changes since commit

[U-Boot] [PATCH v1 0/5] env: handle special variables and selective env default

2011-11-18 Thread Gerlando Falauto
This patchset modifies the handling of all the operations on the environment (set/import/default) so to unify handling of special variables. On top of that we implement a selective env default. A selective env import would imply a user API change and should therefore be discussed separately.

[U-Boot] [PATCH v1 2/5] serial: constify serial_assign()

2011-11-18 Thread Gerlando Falauto
Signed-off-by: Gerlando Falauto gerlando.fala...@keymile.com --- common/serial.c |2 +- include/serial.h |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/serial.c b/common/serial.c index 03bbb19..75cc1bb 100644 --- a/common/serial.c +++ b/common/serial.c @@

[U-Boot] [PATCH v1 1/5] serial: cosmetic checkpatch compliance

2011-11-18 Thread Gerlando Falauto
Signed-off-by: Gerlando Falauto gerlando.fala...@keymile.com --- common/serial.c | 51 +-- include/serial.h | 19 ++- 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/common/serial.c b/common/serial.c index

[U-Boot] [PATCH v1 4/5] env: check and apply changes on delete/destroy

2011-11-18 Thread Gerlando Falauto
Signed-off-by: Gerlando Falauto gerlando.fala...@keymile.com --- common/cmd_nvedit.c |2 +- include/search.h|6 -- lib/hashtable.c | 18 -- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index

[U-Boot] [PATCH v1 3/5] env: unify logic to check and apply changes

2011-11-18 Thread Gerlando Falauto
The logic of checking special parameters (e.g. baudrate, stdin, stdout, for a valid value and/or whether can be overwritten) and applying the new value to the running system is now all within a single function env_check_apply() which can be called whenever changes are made to the environment, no

[U-Boot] [PATCH v1 5/5] env: make env default selective, check and apply

2011-11-18 Thread Gerlando Falauto
Changes in the syntax (user API) for env default: -f: override write-once variables -a: all (resetting the whole env is NOT the default behavior) Signed-off-by: Gerlando Falauto gerlando.fala...@keymile.com --- NOTE: Since the impact in code size is really negligible, I would rather

[U-Boot] sbc8548 NOT broken

2011-11-18 Thread Robert Hurdle
Hello Mr. Denk, Removing the setting of OPTFLAGS has allowed the compilation of u-boot for the sbc8548 to succeed. Thank you to Mr. Gala for suggesting that I remove that. My fault for having it in there. I am not able to quote the previous email at the

Re: [U-Boot] [PATCH] mx5: Correct a warning in clock.c

2011-11-18 Thread Stefano Babic
On 11/05/2011 03:25 PM, Simon Glass wrote: This corects the warning below, obtained with my gcc 4.6 compiler. arch/arm/cpu/armv7/mx5/libmx5.o: In function `decode_pll': arch/arm/cpu/armv7/mx5/clock.c:94: undefined reference to `__aeabi_uldivmod' I am not able to test this on MX5x hardware,

Re: [U-Boot] Micron JS28F128J3F75 Uboot setenv problem

2011-11-18 Thread Holger Brunck
Hi, On 18/11/11 14:57, Spranger, Jörg wrote: we have a small AT91RM9200 based board, running Linux on it and it worked fine. Now we face 2 major changes: 1. The strataflash JS28F128j3d75 shifted to JS28F128j3f75 2. The uboot is updated from 2009.01 to 2010.09 Now when I

[U-Boot] [PATCH] CPCI750: Fix GCC 4.6 warning in board/esd/cpci750/mv_eth.c

2011-11-18 Thread Reinhard Arlt
From: Reinhard Arlt reinhard.a...@esd.eu This patch fix the GCC 4.6 warnings in Signed-off-by: Reinhard Arlt reinhard.a...@esd.eu -- diff --git a/board/esd/cpci750/mv_eth.c b/board/esd/cpci750/mv_eth.c index 781ad23..69b4a91 100644 --- a/board/esd/cpci750/mv_eth.c +++

[U-Boot] [PATCH] CPCI750: Do not enable data cache in start.S

2011-11-18 Thread Reinhard Arlt
From: Reinhard Arlt reinhard.a...@esd.eu Do not enable the data cache in start.S, the decrementer do not work. Signed-off-by: Reinhard Arlt reinhard.a...@esd.eu -- diff --git a/arch/powerpc/cpu/74xx_7xx/start.S b/arch/powerpc/cpu/74xx_7xx/start.S index 75fb773..131fc14 100644 ---

[U-Boot] [PATCH v2] bootvx: Clear and disable data cache, and call vxWorks with parameter.

2011-11-18 Thread Reinhard Arlt
From: Reinhard Arlt reinhard.a...@esd.eu This patch clear and disable the data cache for vxWorks. The entry point sysInit(int) intended by Windriver to be called from the vxWorks bootrom, a very small vxWorks system. The routine is called by the go() handler in the bootrom, that clears the cache

Re: [U-Boot] [PATCH V4] Ethernut 5 board support

2011-11-18 Thread Harald Kipp
Dear Maintainers, On 02.11.2011 10:55, Tim Schendekehl wrote: Add support for the Ethernut 5 open hardware design, based on Atmel's AT91SAM9XE512 SoC. Any chance to get this patch reviewed before it's becoming outdated again? Many thanks, Harald

Re: [U-Boot] [PATCH] mx5: Correct a warning in clock.c

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 12:20:02 Stefano Babic wrote: On 11/05/2011 03:25 PM, Simon Glass wrote: This corects the warning below, obtained with my gcc 4.6 compiler. arch/arm/cpu/armv7/mx5/libmx5.o: In function `decode_pll': arch/arm/cpu/armv7/mx5/clock.c:94: undefined reference to

Re: [U-Boot] [PATCH v2] bootvx: Clear and disable data cache, and call vxWorks with parameter.

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 14:06:52 Reinhard Arlt wrote: U-Boot will be on the save side, if it disables the data cache before s/save/safe/ -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list

Re: [U-Boot] [PATCH V2 3/6] i.mx: mxc_gpio: add the i.mx6q support

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 02:11:04 Jason Liu wrote: -#if defined(CONFIG_MX51) || defined(CONFIG_MX53) +#if defined(CONFIG_MX51) || defined(CONFIG_MX53) || defined(CONFIG_MX6Q) [3] = GPIO4_BASE_ADDR, #endif #ifdef GPIO4_BASE_ADDR ? -mike signature.asc Description: This is a digitally

Re: [U-Boot] [PATCH V2 3/6] i.mx: mxc_gpio: add the i.mx6q support

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 07:26:59 Jason Hui wrote: On Fri, Nov 18, 2011 at 6:18 PM, Marek Vasut marek.va...@gmail.com wrote: 2011/11/18 Lv Terry-R65388 r65...@freescale.com: Hi Jason, What about using #ifdef GPIO4_BASE_ADDR [3] = GPIO4_BASE_ADDR, #endif

Re: [U-Boot] [PATCH v1 2/5] serial: constify serial_assign()

2011-11-18 Thread Mike Frysinger
Acked-by: Mike Frysinger vap...@gentoo.org -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v1 1/5] serial: cosmetic checkpatch compliance

2011-11-18 Thread Mike Frysinger
Acked-by: Mike Frysinger vap...@gentoo.org -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] toolchains toolchains toolchains

2011-11-18 Thread Mike Frysinger
if you're like me, getting toolchains known to work has always been problematic for the arches you don't care about. yes, there's the ELDK, but that doesn't cover all the arches that u-boot supports, and imo, they're fatter than necessary. to that end, i've started posting toolchain builds

Re: [U-Boot] toolchains toolchains toolchains

2011-11-18 Thread Bryan Hundven
On Fri, Nov 18, 2011 at 12:20 PM, Mike Frysinger vap...@gentoo.org wrote: if you're like me, getting toolchains known to work has always been problematic for the arches you don't care about.  yes, there's the ELDK, but that doesn't cover all the arches that u-boot supports, and imo, they're

Re: [U-Boot] toolchains toolchains toolchains

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 15:24:11 Bryan Hundven wrote: Just curious, but have you tried crosstool-ng? i don't need it as Gentoo provides everything for building cross-compilers Crosstool-ng also has static toolchain support. static linking glibc isn't good -mike signature.asc Description:

Re: [U-Boot] sbc8548 build broken?

2011-11-18 Thread Scott Wood
On Fri, Nov 18, 2011 at 07:19:52AM +0100, Wolfgang Denk wrote: Dear Marek Vasut, In message 20180601.20086.marek.va...@gmail.com you wrote: When I make using the following: make CROSS_COMPILE=ppc_85xx- sbc8548_PCI_33_PCIE_config make CROSS_COMPILE=ppc_85xx-

Re: [U-Boot] [PATCH V4] Ethernut 5 board support

2011-11-18 Thread Anatolij Gustschin
Dear Harald, On Fri, 18 Nov 2011 20:30:28 +0100 Harald Kipp harald.k...@egnite.de wrote: Dear Maintainers, On 02.11.2011 10:55, Tim Schendekehl wrote: Add support for the Ethernut 5 open hardware design, based on Atmel's AT91SAM9XE512 SoC. Any chance to get this patch reviewed before

Re: [U-Boot] toolchains toolchains toolchains

2011-11-18 Thread Daniel Schwierzeck
On 11/18/2011 09:20 PM, Mike Frysinger wrote: if you're like me, getting toolchains known to work has always been problematic for the arches you don't care about. yes, there's the ELDK, but that doesn't cover all the arches that u-boot supports, and imo, they're fatter than necessary. to that

Re: [U-Boot] [PATCH 1/2] Fix warnings in arch/arm/cpu/arm920t/s3c24x0/usb_ohci.c

2011-11-18 Thread Simon Glass
Hi Marek, On Thu, Nov 17, 2011 at 6:35 PM, Marek Vasut marek.va...@gmail.com wrote: On Wednesday 16 November 2011 16:16:49 Simon Glass wrote: On Wed, Nov 16, 2011 at 8:03 AM, Mike Frysinger wrote: On Tuesday 15 November 2011 23:17:06 Simon Glass wrote: ---

[U-Boot] [PATCH v4 0/14] Add more framework to OMAP3 SPL, port more boards

2011-11-18 Thread Tom Rini
Hey all, This is related to, but a bit different from the RFT thread I made with beagleboard SPL patches. I've incorporated the feedback about splitting the changes up a lot more and after talking with Scott Wood on IRC after the ML thread, I've created an omap3 specific file with the NAND

[U-Boot] [PATCH v4 01/14] omap3: mem: Comment enable_gpmc_cs_config more

2011-11-18 Thread Tom Rini
Expand the enable the config comment to explain what the bit shifts are and define out two of the magic numbers. Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/cpu/armv7/omap3/mem.c| 12 +--- arch/arm/include/asm/arch-omap3/mem.h |4 2 files changed, 13

[U-Boot] [PATCH v4 02/14] OMAP3: Update SDRC dram_init to always call make_cs1_contiguous()

2011-11-18 Thread Tom Rini
We update the comment in make_cs1_contiguous() to be a little bit more clear (it's been copy/pasted from other silicons) and then explain in dram_init() why we need to always try this. Note that in the previous behavior we were always calling this on boards that never had cs1 populated anyhow so

[U-Boot] [PATCH v4 04/14] OMAP3: Change mem_ok to clear again after reading back

2011-11-18 Thread Tom Rini
It's possible to need to call this function on the same banks multiple times so we want to be sure that 'pos A' is cleared out again at the end. Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/cpu/armv7/omap3/mem.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH v4 03/14] OMAP3: Add a helper function to set timings in SDRC

2011-11-18 Thread Tom Rini
Since we go through the sequence to setup the SDRC timings more than once, break this logic out into its own function and have that function call mem_ok() to make sure the memory is usable. Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/cpu/armv7/omap3/sdrc.c | 116

[U-Boot] [PATCH v4 05/14] OMAP3: Remove get_mem_type prototype

2011-11-18 Thread Tom Rini
This function doesn't exist for omap3 Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/include/asm/arch-omap3/sys_proto.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-omap3/sys_proto.h b/arch/arm/include/asm/arch-omap3/sys_proto.h index

[U-Boot] [PATCH v4 06/14] omap3: mem: Add MCFG helper macro

2011-11-18 Thread Tom Rini
This adds an MCFG macro to calculate the correct value, similar to the ACTIMA/ACTIMB macros and adds a comment that all of the potential values here are documented in the TRM. Then we convert the Micron value to use this macro. Signed-off-by: Tom Rini tr...@ti.com ---

[U-Boot] [PATCH v4 08/14] OMAP3: Suffix all Micron memory timing parts with their speed

2011-11-18 Thread Tom Rini
Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/include/asm/arch-omap3/mem.h | 21 +++-- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/arch/arm/include/asm/arch-omap3/mem.h b/arch/arm/include/asm/arch-omap3/mem.h index 912c737..4f996d9 100644 ---

[U-Boot] [PATCH v4 10/14] OMAP3 SPL: Add identify_nand_chip function

2011-11-18 Thread Tom Rini
A number of boards are populated with a PoP chip for both DDR and NAND memory. Other boards may simply use this as an easy way to identify board revs. So we provide a function that can be called early to reset the NAND chip and return the result of NAND_CMD_READID. All of this code is put into

[U-Boot] [PATCH v4 12/14] OMAP3: Add SPL support to omap3_evm

2011-11-18 Thread Tom Rini
Add Hynix 200MHz timing information to asm/arch-omap3/mem.h. This also changes CONFIG_SYS_TEXT_BASE to 0x8010. Signed-off-by: Tom Rini tr...@ti.com --- arch/arm/include/asm/arch-omap3/mem.h | 26 board/ti/evm/config.mk | 33 -

[U-Boot] [PATCH v4 11/14] OMAP3: Add SPL support to Beagleboard

2011-11-18 Thread Tom Rini
This introduces 200MHz Micron parts timing information based on x-loader to asm/arch-omap3/mem.h and Numonyx MCFG calculation. The memory init logic is also based on what x-loader does in these cases. Note that while previously u-boot would be flashed in with SW ECC in this case it now must be

[U-Boot] [PATCH v4 14/14] AM3517 CraneBoard: Add SPL support

2011-11-18 Thread Tom Rini
The only change of note is that we move from 0x80008000 to 0x8010 for CONFIG_SYS_TEXT_BASE Cc: Nagendra T S nagen...@mistralsolutions.com Tested-by: Koen Kooi k-k...@ti.com Signed-off-by: Tom Rini tr...@ti.com --- board/ti/am3517crane/am3517crane.c |2 +- board/ti/am3517crane/config.mk

[U-Boot] [PATCH v4 13/14] AM3517: Add SPL support

2011-11-18 Thread Tom Rini
The only change of note is that we move from 0x80008000 to 0x8010 for CONFIG_SYS_TEXT_BASE Cc: Vaibhav Hiremath hvaib...@ti.com Signed-off-by: Tom Rini tr...@ti.com --- board/logicpd/am3517evm/am3517evm.c |2 +- board/logicpd/am3517evm/config.mk | 30 --

Re: [U-Boot] [PATCH V2 3/6] i.mx: mxc_gpio: add the i.mx6q support

2011-11-18 Thread Marek Vasut
On Friday 18 November 2011 07:26:59 Jason Hui wrote: On Fri, Nov 18, 2011 at 6:18 PM, Marek Vasut marek.va...@gmail.com wrote: 2011/11/18 Lv Terry-R65388 r65...@freescale.com: Hi Jason, What about using #ifdef GPIO4_BASE_ADDR [3] =

Re: [U-Boot] [PATCH] OMAP3: Use sdelay from arch/arm/cpu/armv7/syslib.c instead of cloning that.

2011-11-18 Thread Anatolij Gustschin
On Sat, 18 Dec 2010 13:24:20 +0100 Alexander Holler hol...@ahsoftware.de wrote: There is no need to have such a function twice. Signed-off-by: Alexander Holler hol...@ahsoftware.de --- arch/arm/cpu/armv7/omap3/board.c | 12 +--- 1 files changed, 1 insertions(+), 11 deletions(-)

Re: [U-Boot] [PATCH V2 3/6] i.mx: mxc_gpio: add the i.mx6q support

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 17:59:28 Marek Vasut wrote: On Friday 18 November 2011 07:26:59 Jason Hui wrote: On Fri, Nov 18, 2011 at 6:18 PM, Marek Vasut wrote: 2011/11/18 Lv Terry-R65388 r65...@freescale.com: Hi Jason, What about using #ifdef

Re: [U-Boot] [PATCH v3 2/2] mpc85xx: support for Freescale COM Express P2020

2011-11-18 Thread Ira W. Snyder
On Sat, Nov 12, 2011 at 12:16:05PM -0600, Kumar Gala wrote: This entire file is identical to board/freescale/p1_p2_rdb/ddr.c. In fact, since this board only boots via the On-Chip ROM, the whole file is useless: fixed_sdram() should just return the RAM size. We're running from RAM when

Re: [U-Boot] toolchains toolchains toolchains

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 17:30:01 Daniel Schwierzeck wrote: For current upstream MIPS support in U-Boot the toolchain should be built completely with soft-float. thx, i wasn't sure about that. i posted a softfloat one. -mike signature.asc Description: This is a digitally signed message

[U-Boot] Pull request u-boot-blackfin.git

2011-11-18 Thread Mike Frysinger
The following changes since commit 05622191e510e495b6a06da6342126e80a3fed8f: tools: checkpatch.pl from Linux added to tools (2011-11-17 14:27:11 +0100) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git master Mike Frysinger (3): Blackfin: drop now

Re: [U-Boot] [PATCH 2/4] nds32/ag102: add ag102 soc support

2011-11-18 Thread Mike Frysinger
On Friday 18 November 2011 03:30:55 Macpaul Lin wrote: --- /dev/null +++ b/arch/nds32/cpu/n1213/ag102/cpu.c +int cleanup_before_linux(void) +{ +#ifdef CONFIG_MMU + unsigned long i; +#endif this variable is unused +int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const

Re: [U-Boot] [PATCH v2] mvgbe: remove setting of ethaddr within the driver

2011-11-18 Thread Mike Frysinger
On Thursday 17 November 2011 17:52:29 Michael Walle wrote: --- a/drivers/net/mvgbe.c +++ b/drivers/net/mvgbe.c switch (devnum) { case 0: dmvgbe-regs = (void *)MVGBE0_BASE; unrelated, but usually this is pushed into an option to the init func

[U-Boot] Business Propossal..

2011-11-18 Thread Mr. Wen Lee
I Seek your Partnership from Intl Bank of Taipei Taiwan. Contact me for details if interested (mr.wen...@yahoo.com.tw). ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 0/9] Add support for the OpenRISC architecture

2011-11-18 Thread Stefan Kristiansson
This patch series adds support for the OpenRISC 1000 architecture. The OpenRISC architecture has been around for about a decade and has experienced a revival in the last couple of years from the efforts of a small, but dedicated community compound of both commercial and independent contributors.

[U-Boot] [PATCH 1/9] openrisc: Add architecture header files

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- arch/openrisc/include/asm/bitops.h |9 + arch/openrisc/include/asm/bitops/ffs.h | 26 ++ arch/openrisc/include/asm/bitops/fls.h | 26 ++ arch/openrisc/include/asm/byteorder.h|6 +

[U-Boot] [PATCH 2/9] openrisc: Add architecture image support

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- common/image.c |1 + include/image.h |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/common/image.c b/common/image.c index 555d9d9..564dee1 100644 --- a/common/image.c +++ b/common/image.c @@

[U-Boot] [PATCH 3/9] openrisc: Add cpu files

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- arch/openrisc/config.mk| 27 arch/openrisc/cpu/Makefile | 47 ++ arch/openrisc/cpu/cache.c | 157 +++ arch/openrisc/cpu/cpu.c| 157 +++

[U-Boot] [PATCH 5/9] openrisc: Add board info printout to cmd_bdinfo

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- common/cmd_bdinfo.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index 688b238..1cd69b5 100644 --- a/common/cmd_bdinfo.c +++

[U-Boot] [PATCH 4/9] openrisc: Add library functions

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- arch/openrisc/lib/Makefile | 47 arch/openrisc/lib/board.c | 175 arch/openrisc/lib/bootm.c | 84 + arch/openrisc/lib/timer.c | 104

[U-Boot] [PATCH 6/9] openrisc: Add support for standalone programs

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- examples/standalone/stubs.c | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/examples/standalone/stubs.c b/examples/standalone/stubs.c index 11c7565..8b291db 100644 ---

[U-Boot] [PATCH 9/9] openrisc: Add MAINTAINERS entry

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- MAINTAINERS | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index f6f6b72..bf144cc 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1147,5 +1147,16 @@ Macpaul Lin

[U-Boot] [PATCH 8/9] openrisc: Add architecture to MAKEALL

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- MAKEALL |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/MAKEALL b/MAKEALL index 95b7cd3..f45f767 100755 --- a/MAKEALL +++ b/MAKEALL @@ -416,6 +416,11 @@ LIST_mips_el= \

[U-Boot] [PATCH 7/9] openrisc: Add openrisc-generic example board

2011-11-18 Thread Stefan Kristiansson
Signed-off-by: Stefan Kristiansson stefan.kristians...@saunalahti.fi --- board/openrisc/openrisc-generic/Makefile | 43 + board/openrisc/openrisc-generic/config.mk | 24 + board/openrisc/openrisc-generic/openrisc-generic.c | 55 ++

Re: [U-Boot] [PATCH] Add PR1 Appliance - ISDN PRI board

2011-11-18 Thread Mike Frysinger
On Thursday 17 November 2011 17:49:07 Dimitar Penev wrote: I am supporting Switchfin GPL software (www.switchfin.org) which contains supports of PR1 Appliance - Asterisk based ISDN PRI PBX. This board is Blackfin BF537 based. The schematics is not fully opened. the schematics don't need to be

Re: [U-Boot] [PATCH 3/9] openrisc: Add cpu files

2011-11-18 Thread Mike Frysinger
On Saturday 19 November 2011 00:21:32 Stefan Kristiansson wrote: --- /dev/null +++ b/arch/openrisc/config.mk \ No newline at end of file might want to fix that --- /dev/null +++ b/arch/openrisc/cpu/cache.c +int checkicache(void) +int checkdcache(void) these should be static +void

Re: [U-Boot] [PATCH 4/9] openrisc: Add library functions

2011-11-18 Thread Mike Frysinger
On Saturday 19 November 2011 00:21:33 Stefan Kristiansson wrote: --- /dev/null +++ b/arch/openrisc/lib/board.c +extern int timer_init(void); common.h already provides this. delete this line. +init_fnc_t *init_sequence[] = { static init_fnc_t * const init_sequence[] = { + NULL,

Re: [U-Boot] [PATCH 1/9] openrisc: Add architecture header files

2011-11-18 Thread Mike Frysinger
On Saturday 19 November 2011 00:21:30 Stefan Kristiansson wrote: --- /dev/null +++ b/arch/openrisc/include/asm/bitops.h @@ -0,0 +1,9 @@ +#ifndef __ASM_OPENRISC_BITOPS_H a bunch of these files are missing comment blocks at the top with licensing/copyright/misc info. for the stubs, that's

Re: [U-Boot] [PATCH 0/9] Add support for the OpenRISC architecture

2011-11-18 Thread Mike Frysinger
On Saturday 19 November 2011 00:21:29 Stefan Kristiansson wrote: This patch series adds support for the OpenRISC 1000 architecture. do you have a toolchain we can use to build this ? -mike signature.asc Description: This is a digitally signed message part.

Re: [U-Boot] [PATCH 0/9] Add support for the OpenRISC architecture

2011-11-18 Thread Stefan Kristiansson
On Sat, Nov 19, 2011 at 01:07:16AM -0500, Mike Frysinger wrote: On Saturday 19 November 2011 00:21:29 Stefan Kristiansson wrote: This patch series adds support for the OpenRISC 1000 architecture. do you have a toolchain we can use to build this ? Yes, instructions how to obtain and build it