Re: [U-Boot] [PATCH] tegra20: add back USE_PRIVATE_LIBGCC

2012-08-07 Thread Allen Martin
On Tue, Aug 07, 2012 at 03:42:45PM -0700, Lucas Stach wrote: Am Dienstag, den 07.08.2012, 15:28 -0700 schrieb Allen Martin: On Tue, Aug 07, 2012 at 10:53:00AM -0700, Lucas Stach wrote: Hi Allen, And to answer Tom's question: the failure was that the real U-Boot would not come up

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

2012-08-07 Thread Nobuhiro Iwamatsu
Dear Wolfgang Denk. Please pull from git://git.denx.de/u-boot-sh master. Best regards, Nobuhiro The following changes since commit 6d36121b878a3ccbbff7f60a02109e8c8d81dd0f: Merge branch 'master' of git://git.denx.de/u-boot-onenand (2012-08-07 23:42:55 +0200) are available in the git

Re: [U-Boot] [PATCH 01/16] Blackfin: BF60x: new processor port

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:40 Bob Liu wrote: From: Mike Frysinger vap...@gentoo.org Add basic support for blackfin new processor BF60x. i had always intended to clean split this 1 change up, but never got a chance before i left arch/blackfin/cpu/cpu.c|

Re: [U-Boot] [PATCH 02/16] Blackfin: bf609-ezkit: new board port

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:41 Bob Liu wrote: arch/blackfin/cpu/initcode.c | 96 ++- arch/blackfin/cpu/initcode.h |9 ++ arch/blackfin/cpu/serial1.h| 19 +++ arch/blackfin/cpu/serial4.h| 35

Re: [U-Boot] [PATCH 03/16] Blackfin: Bf60x: support big cplb page

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:42 Bob Liu wrote: Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for them. So that bf609-ezkit can use it's 128M memory. it's - its arch/blackfin/include/asm/cplb.h | 13 +-

Re: [U-Boot] [PATCH 04/16] Blackfin: Rsi: add support for bf609-ezkit

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:43 Bob Liu wrote: --- a/arch/blackfin/include/asm/config-pre.h +++ b/arch/blackfin/include/asm/config-pre.h #define BFIN_BOOT_16HOST_DMA 11 /* boot ldr from 16-bit host dma */ #define BFIN_BOOT_8HOST_DMA 12 /* boot ldr from 8-bit host dma */

Re: [U-Boot] [PATCH 05/16] Blackfin: Paraflash: add support for bf609-ezkit

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:44 Bob Liu wrote: --- a/arch/blackfin/include/asm/mach-bf609/portmux.h +++ b/arch/blackfin/include/asm/mach-bf609/portmux.h this should be part of the initial commit of this header (one of the initial bf60x support patches) ---

Re: [U-Boot] [PATCH 06/16] Blackfin: Bf609-ezkit: implement soft switch

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:45 Bob Liu wrote: --- a/board/bf609-ezkit/Makefile +++ b/board/bf609-ezkit/Makefile +COBJS-$(CONFIG_BFIN_SOFT_SWITCH) += soft_switch.o is there any reason we *wouldn't* want to build this ? i would just skip making this an option and always enable it.

Re: [U-Boot] [PATCH 08/16] Blackfin: add more print info for Bf60x

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:47 Bob Liu wrote: --- a/arch/blackfin/lib/clocks.c +++ b/arch/blackfin/lib/clocks.c +u_long get_dclk(void) +{ +#ifndef CONFIG_BFIN_GET_DCLK + return _get_sclk(cached_dclk); +#else + return CONFIG_BFIN_GET_DCLK; +#endif +} this looks like my

Re: [U-Boot] [PATCH 09/16] Blackfin: Bf60x: add reset support

2012-08-07 Thread Mike Frysinger
please squash into one of the initial bf60x cpu support patches -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 10/16] Blackfin: Bf60x: Check card ready for each RSI command

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:49 Bob Liu wrote: Set up RSI data before sending RSI command if data is applicable. squash into the Blackfin: rsi: add bf60x support patch -mike signature.asc Description: This is a digitally signed message part. ___

Re: [U-Boot] [PATCH 11/16] Blackfin: Bf60x: support clock init

2012-08-07 Thread Mike Frysinger
split squash into earlier patches where appropriate -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 12/16] Blackfin: Bf60x: initcode: set up uart baud properly

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:51 Bob Liu wrote: Set up uart baud properly for booting u-boot over UART squash into one of the earlier initial bf60x support patches -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot

Re: [U-Boot] [PATCH 07/16] Blackfin: Spi: add bf6xx spi driver

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:46 Bob Liu wrote: --- /dev/null +++ b/arch/blackfin/include/asm/mach-common/bits/spi6xx.h @@ -0,0 +1,240 @@ +/* + * Analog Devices SPI3 controller driver i'd prefer to call it bfin_spi3 then since it represents the version of the IP block and not the SoC it

Re: [U-Boot] [PATCH 13/16] Blackfin: Bf60x: add hw watchdog support

2012-08-07 Thread Mike Frysinger
On Tuesday 07 August 2012 04:07:52 Bob Liu wrote: --- a/arch/blackfin/cpu/initcode.c +++ b/arch/blackfin/cpu/initcode.c if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS) { serial_putc('e'); +#ifdef __ADSPBF60x__ + int i; + bfin_write_SEC_GCTL(0x2);

Re: [U-Boot] [PATCH 16/16] Blackfin: update license to Clear BSD license.

2012-08-07 Thread Mike Frysinger
obviously this is OK regardless of my opinion on it ;) -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

<    1   2