Re: [U-Boot] [PATCH] S3C64XX: timer: replace bss variable by gd

2011-01-06 Thread Minkyu Kang
Dear seedshope, On 6 January 2011 00:57, seedshope bocui...@gmail.com wrote: On 01/05/2011 03:04 PM, Minkyu Kang wrote: Dear seedshope, On 4 January 2011 23:56, seedshopebocui...@gmail.com  wrote: On 01/04/2011 10:46 PM, seedshope wrote: On 01/04/2011 04:14 PM, Minkyu Kang wrote: Use

Re: [U-Boot] [PATCH] S3C64XX: timer: replace bss variable by gd

2011-01-06 Thread Reinhard Meyer
Dear concerned, Use the global data instead of bss variable, replace as follow. timer_load_val - timer_rate_hz timestamp - timer_reset_value I am not too happy about this misuse of gd-variables making them misnomers and the code harder to read. timer_rate_hz is supposed to hold the

[U-Boot] [PATCH] ftpmu010: fix relocation and enhance features

2011-01-06 Thread Macpaul Lin
1. ftpmu010.h: fix and add definitions Enhanced for more features and asm related support according to datasheet. Note: - FTPMU010_PDLLCR0_HCLKOUTDIS is incorrect in datasheet. - FTPMU010_PDLLCR0_DLLFRANG is only 1 bit at bit #19. (not 20-19) - FTPMU010_PDLLCR0_HCLKOUTDIS is

[U-Boot] -a -e values for initrd on s3c2440

2011-01-06 Thread Gigin Jose
Hi ,  What is the value of -a , -e argument for creating the initrd image on s3c2440. The base address of my RAM is 0x3000 and the kernel (zImage) is loaded to to 0x30008000. The total RAM size is 64 MB. I am uisng uboot version 1.1.6 and linux kernel 2.6.30.4.  thanks regardsGIGIN

Re: [U-Boot] [U-BOOT] [PATCH 2/6] mv: seperate kirkwood and mmp from common setting

2011-01-06 Thread Prafulla Wadaskar
-Original Message- From: Lei Wen [mailto:adrian.w...@gmail.com] Sent: Thursday, January 06, 2011 8:59 AM To: Prafulla Wadaskar Cc: Lei Wen; u-boot@lists.denx.de; Yu Tang; Ashish Karkare; Prabhanjan Sarnaik Subject: Re: [U-BOOT] [PATCH 2/6] mv: seperate kirkwood and mmp from

Re: [U-Boot] [PATCH] powerpc/85xx: Fix bug in dcache_disable

2011-01-06 Thread Kumar Gala
On Jan 5, 2011, at 10:39 AM, Kumar Gala wrote: We set the L1 dache register with a bogus register value. Need to be using 'r3' instead of 'r0'. Reported-by: John Traill john.tra...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- arch/powerpc/cpu/mpc85xx/start.S |

[U-Boot] [PATCH] powerpc/85xx: Rework corenet_ds pci_init_board to use common FSL PCIe code

2011-01-06 Thread Kumar Gala
Remove duplicated code in corenet_ds boards and utilize the common fsl_pcie_init_board(). Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- board/freescale/corenet_ds/pci.c | 118 +- 1 files changed, 2 insertions(+), 116 deletions(-) diff --git

[U-Boot] [PATCH 2/7] powerpc/85xx: Convert MPC8548CDS to use common SRIO init code

2011-01-06 Thread Kumar Gala
Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- board/freescale/mpc8548cds/law.c |5 + board/freescale/mpc8548cds/tlb.c |9 - include/configs/MPC8548CDS.h | 15 --- 3 files changed, 13 insertions(+), 16 deletions(-) diff --git

[U-Boot] [PATCH 3/7] powerpc/85xx: Convert MPC8568MDS to use common SRIO init code

2011-01-06 Thread Kumar Gala
Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- board/freescale/mpc8568mds/law.c |3 +-- include/configs/MPC8568MDS.h | 12 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/board/freescale/mpc8568mds/law.c b/board/freescale/mpc8568mds/law.c index

[U-Boot] [PATCH 1/7] powerpc/8xxx: Refactor SRIO initialization into common code

2011-01-06 Thread Kumar Gala
Moved the SRIO init out of corenet_ds and into common code for 8xxx/QorIQ processors that have SRIO. We mimic what we do with PCIe controllers for SRIO. We utilize the fact that SRIO is over serdes to determine if its configured or not and thus can setup the LAWs needed for it dynamically. We

[U-Boot] [PATCH 4/7] powerpc/85xx: Convert MPC8569MDS to use common SRIO init code

2011-01-06 Thread Kumar Gala
Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- board/freescale/mpc8569mds/law.c |3 +-- include/configs/MPC8569MDS.h | 12 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/board/freescale/mpc8569mds/law.c b/board/freescale/mpc8569mds/law.c index

[U-Boot] [PATCH 5/7] powerpc/86xx: Enable common SRIO init code

2011-01-06 Thread Kumar Gala
Add the needed defines and code to utilize the common 8xxx srio init code to setup LAWs and modify device tree if we have SRIO enabled on a board. Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- arch/powerpc/cpu/mpc86xx/fdt.c|9 - arch/powerpc/include/asm/immap_86xx.h

[U-Boot] [PATCH 6/7] powerpc/86xx: Convert MPC8641HPCN to use common SRIO init code

2011-01-06 Thread Kumar Gala
Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- board/freescale/mpc8641hpcn/law.c |5 + include/configs/MPC8641HPCN.h | 30 +- 2 files changed, 14 insertions(+), 21 deletions(-) diff --git a/board/freescale/mpc8641hpcn/law.c

[U-Boot] [PATCH] powerpc/85xx: Add SRIO support to P2020DS

2011-01-06 Thread Kumar Gala
From: Li Yang le...@freescale.com The P2020 has 2 SRIO ports and they are useable on the P2020 DS board. Enable them using the common SRIO init code. Signed-off-by: Li Yang le...@freescale.com Signed-off-by: Kumar Gala ga...@kernel.crashing.org --- include/configs/P2020DS.h | 24

Re: [U-Boot] [PATCH] fsl_pci: Update PCIe boot ouput

2011-01-06 Thread Paul Gortmaker
On Tue, Dec 28, 2010 at 6:47 PM, Peter Tyser pty...@xes-inc.com wrote: This change does the following: - Adds printing of negotiated link width.  This information can be  useful when debugging PCIe issues. - Makes it optional for boards to implement board_serdes_name().  Previously boards

Re: [U-Boot] [PATCH 7/7] powerpc/86xx: Convert SBC8641 to use common SRIO init code

2011-01-06 Thread Paul Gortmaker
[[PATCH 7/7] powerpc/86xx: Convert SBC8641 to use common SRIO init code] On 06/01/2011 (Thu 10:58) Kumar Gala wrote: Signed-off-by: Kumar Gala ga...@kernel.crashing.org CC: Paul Gortmaker paul.gortma...@windriver.com Tested in conjuntion with the mpc85xx dev branch and Peter's patch. For

[U-Boot] ATTN

2011-01-06 Thread Anna Ludwig
Your email address has made you a winner of 11,000,000 USD, Contact our Agent Mr. Datson Galleon via: e-mail, datsongall...@bigstring.com, Tel: +1404-566-0625 for immediate response/details. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 15/15] powerpc/85xx: Rework SBC8548 pci_init_board to use common FSL PCIe code

2011-01-06 Thread Paul Gortmaker
[[PATCH 15/15] powerpc/85xx: Rework SBC8548 pci_init_board to use common FSL PCIe code] On 17/12/2010 (Fri 17:50) Kumar Gala wrote: Remove duplicated code in SBC8548 board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which

[U-Boot] SunnyVision Colud Server

2011-01-06 Thread Kevin
SunnyVision Cloud Server雲端伺服器 To view it online, please go here: http://sv-edm-001.hkcolocation.com/emailmarketer/display.php?M=328181C=d90bfe70658c39d20abe5d82c7c12bdcS=57L=38N=24 Advantages of Cloud Server 雲端伺服器服務優勢 Cloud Server provides you with the same function as a traditional dedicated

[U-Boot] getenv_yesno() and autostart

2011-01-06 Thread Scott Wood
Commit 5a442c0addc69d0c4b58e98e5aec1cf07576debb switched NAND (among other things) from explicitly checking autostart for yes to using getenv_yesno(). Instead of checking for yes, getenv_yesno() checks for no, and assumes yes if it can't find anything. This changes the default behavior, with no

Re: [U-Boot] [U-BOOT] [PATCH V3] mtd: nand: Allow caller to pass alternative ID table to nand_scan_ident()

2011-01-06 Thread Scott Wood
On Thu, Jan 06, 2011 at 09:48:18AM +0800, Lei Wen wrote: This patch sync with David's patch on Linux for handling nand_scan_ident. commit 5e81e88a4c140586d9212999cea683bcd66a15c6 Author: David Woodhouse david.woodho...@intel.com Date: Fri Feb 26 18:32:56 2010 +

Re: [U-Boot] getenv_yesno() and autostart

2011-01-06 Thread Mike Frysinger
On Thu, Jan 6, 2011 at 4:56 PM, Scott Wood wrote: Commit 5a442c0addc69d0c4b58e98e5aec1cf07576debb switched NAND (among other things) from explicitly checking autostart for yes to using getenv_yesno(). this has been discussed twice so far on the list. Wolfgang plans on reverting it at some

[U-Boot] b reset does not work in u-boot_v2010.12-rc3 with eldk4.2

2011-01-06 Thread MrGates
Hi,when i upgrade uboot from 1.1.2 to v2010.12-rc3 i met a great number of problems. Before, i use skyeye to simulate uboot. furthermore i use arm-linux-gdb u-boot(eldk-4.2) to step by step executes u-boot the result like below: (gdb) tar remote :12345 Remote debugging using :12345 _start () at

Re: [U-Boot] [PATCH v2] Divides variable of linker flags to LDFLAGS-u-boot and LDFLAGS

2011-01-06 Thread Mike Frysinger
On Wednesday, January 05, 2011 20:23:54 Nobuhiro Iwamatsu wrote: --- a/arch/i386/config.mk +++ b/arch/i386/config.mk @@ -35,5 +35,6 @@ PLATFORM_CPPFLAGS += $(call cc-option, -fno-stack-protector) PLATFORM_CPPFLAGS += $(call cc-option, -mpreferred-stack-boundary=2) PLATFORM_CPPFLAGS +=

[U-Boot] Entry point for uncompressed kernel image

2011-01-06 Thread Gigin Jose
Hi ,  I am trying to put uncompressed kernel image to SDRAM for my s3c2440 development board. The uncompressed kernel image is made from 'Image' inside arch/arm/boot folder using the mkimage tool.  What should be the entry point and load address for the uncompressed kernel image ?  The physical

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

2011-01-06 Thread Minkyu Kang
Dear Aneesh V, On 27 December 2010 20:22, Aneesh V ane...@ti.com wrote: Dear Minkyu Kang, On Monday 27 December 2010 12:55 PM, Minkyu Kang wrote: snip + +#ifndef CONFIG_SYS_NO_DCACHE +void v7_setup_outer_cache_ops(void) +{ +#ifndef CONFIG_L2_OFF +       v7_outer_cache.enable =

Re: [U-Boot] Entry point for uncompressed kernel image

2011-01-06 Thread Gigin Jose
Hi ,  I am getting an exception once I try to boot the image with bootm command.   Boardcon bootm 30008000 ## Booting image at 30008000 ...    Image Name:       Created:      2011-01-07   6:04:55 UTC    Image Type:   ARM Linux Kernel Image (uncompressed)    Data Size:    3035360 Bytes =  2.9 MB   

Re: [U-Boot] Entry point for uncompressed kernel image

2011-01-06 Thread Gigin Jose
Hi ,  Here goes my bootargs ..bootargs=noinitrd root=/dev/mtdblock2 init=/linuxrc console=ttySAC0.  From the exception, I was able to understand that a data abort has occurred and my pc is stopping at 30008010 address. But I was not able to locate this address in System.map. My System.map

[U-Boot] [PATCH v3] mpq101: initial support for Mercury Computer Systems MPQ101 board

2011-01-06 Thread Alex Dubov
Mpq101 is a RapidIO development board in AMC form factor, featuring MPC8548 processor, 512MB of hardwired DDR2 RAM, 128MB of hardwired NAND flash memory, real time clock and additional serial EEPROM on i2c bus (enabled). USB controller is available, but not presently enabled. Additional board