Re: [U-Boot] ERROR: CTL:TIMEOUT - USB porting issue for UBoot on S3C2450

2012-11-23 Thread rui Yang
dongdaking dongdaking at hotmail.com writes: Hi friend I have met the same problem with you ,haven't you solve it yet! thank you1 ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 5/8] arm: Add boottime support for the ARM architecture

2012-11-23 Thread Lee Jones
Ideally I'd like to keep it all as data, as it will save lots of text parsing code in the kernel. Surely there must be a call for passing data structures from the bootloader to the kernel. After all, that's why ATAGs were brought about wasn't it? Look at which ATAGS exist to see what

Re: [U-Boot] Reg Bootstrapping u-boot on x86-64 for tizen

2012-11-23 Thread manohar . betham
Dear Marek, Thank you for the reply. Can you please send me the steps/procedure to build/support u-boot on x86_64 bit (Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz. We need help from you is there any documentation to enable x86_64 bit pc or links to post my query. What are the config/code i

Re: [U-Boot] Reg Bootstrapping u-boot on x86-64 for tizen

2012-11-23 Thread manohar . betham
Dear Graeme, Thank you! I downloaded the u-boot-x86 on Ubuntu 11.10 loaded(Linux smart-OptiPlex-390 3.0.0-26-generic x86_64 GNU/Linux) intel i5 M1H61R-MB montherboard from the given below link. http://git.denx.de/?p=u-boot/u-boot-x86.git;a=summary and yes I am planning to run u-boot on

Re: [U-Boot] Reg Bootstrapping u-boot on x86-64 for tizen

2012-11-23 Thread Graeme Russ
Hi Manohar, On 11/23/2012 09:10 PM, manohar.bet...@smartplayin.com wrote: Dear Graeme, Thank you! I downloaded the u-boot-x86 on Ubuntu 11.10 loaded(Linux smart-OptiPlex-390 3.0.0-26-generic x86_64 GNU/Linux) intel i5 M1H61R-MB montherboard from the given below link.

[U-Boot] [PATCH 1/3] video: tegra: Update line length to match resolution

2012-11-23 Thread Thierry Reding
Instead of storing the computed line length in a local variable, store it in the global lcd_line_length variable to make sure the LCD subsystem can properly draw content for the display resolution. This probably wasn't noticed yet because the only board where LCD support is currently enabled is

[U-Boot] [PATCH 2/3] tegra: Enable LCD on Medcom-Wide

2012-11-23 Thread Thierry Reding
The Medcom-Wide has a 15 LCD panel with a resolution of 1366x768 pixels. Add a corresponding panel description to the device tree and enable LCD support in the configuration. Signed-off-by: Thierry Reding thierry.red...@avionic-design.de --- board/avionic-design/dts/tegra20-medcom-wide.dts | 32

[U-Boot] [PATCH 3/3] tegra: Enable LCD on TEC

2012-11-23 Thread Thierry Reding
The TEC ships with a 7 LCD panel that provides a resolution of 800x480 pixels. Add a corresponding panel description to the device tree and enable LCD support in the configuration. Signed-off-by: Thierry Reding thierry.red...@avionic-design.de --- board/avionic-design/dts/tegra20-tec.dts | 32

[U-Boot] [PATCH] Check eth_get_dev() for null on NetLoop entry

2012-11-23 Thread Josef Holzmayr
If using an usb ethernet interface and starting usb is forgot, any attempt to use ethernet will try to init networking and dereference eth_get_dev() to null. This patch adds a check and aborts in case of a null pointer. --- net/net.c | 11 +++ 1 file changed, 11 insertions(+) diff

[U-Boot] [PATCH 0/6 V3] EXYNOS5: FDT Support for I2C

2012-11-23 Thread Rajeshwari Shinde
This patch set adds FDT support for I2C driver and API's to acess the bus number using the fdt node and also reset the port. Changes in V2: - Baord i2c init moved to I2C driver in case of FDT. - Added Periph id to device node. - Modified i2c_get_bus_num_fdt api to compare

[U-Boot] [PATCH 1/6 V3] EXYNOS5: FDT: Add I2C device node data

2012-11-23 Thread Rajeshwari Shinde
Add I2C device node data for exynos Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Added Periph id to the I2C device node Changes in V3: - Removed Periph id as decoding done based on interrupts. arch/arm/dts/exynos5250.dtsi | 64

[U-Boot] [PATCH 2/6 V3] EXYNOS5 : FDT: Add Aliases for I2C device

2012-11-23 Thread Rajeshwari Shinde
This patch adds aliases for I2C. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org Acked-by: Heiko Schocher h...@denx.de --- Changes in V2: - None. Changes in V3: - None. board/samsung/dts/exynos5250-smdk5250.dts | 11 +++

[U-Boot] [PATCH 3/6 V3] EXYNOS5: FDT: Add compatible string for I2C

2012-11-23 Thread Rajeshwari Shinde
Add required compatible information for I2C driver. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org Acked-by: Heiko Schocher h...@denx.de --- Changes in V2: - None. Chnages in V3: - None. include/fdtdec.h |1 + lib/fdtdec.c

[U-Boot] [PATCH 4/6 V3] EXYNOS5: FDT : Decode peripheral id

2012-11-23 Thread Rajeshwari Shinde
Api is added to decode peripheral id based on the interrupt number of the peripheral. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Chnages in V3: - New patch added. arch/arm/cpu/armv7/exynos/pinmux.c| 28

[U-Boot] [PATCH 5/6 V3] I2C: Driver changes for FDT support

2012-11-23 Thread Rajeshwari Shinde
Functions added to get the I2C bus number and reset I2C bus using FDT node. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- Changes in V2: - Added periph id to I2C bus structure. - Modified i2c_get_bus_num_fdt function to compare with node. - Board i2c init

[U-Boot] [PATCH 6/6 V3] SMDK5250: Initialise I2C using FDT

2012-11-23 Thread Rajeshwari Shinde
This patch initialises I2C using FDT. Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com Acked-by: Simon Glass s...@chromium.org Acked-by: Heiko Schocher h...@denx.de --- Changes in V2: - board_i2c_init moved to driver in case of FDT. Chnges in V3: - None.

[U-Boot] [PATCH v2 0/4] Support for SATA on EXYNOS5

2012-11-23 Thread Vasanth Ananthan
This patch set adds support for SATA on Exynos5250 Vasanth Ananthan (4): Exynos5: Add clock support for SATA Exynos5: Add base addresses for SATA Drivers: block: Support for SATA in Exynos5 SMDK55250: Enable SATA arch/arm/cpu/armv7/exynos/clock.c | 22 ++

[U-Boot] [PATCH v2 1/4] Exynos5: Add clock support for SATA

2012-11-23 Thread Vasanth Ananthan
This patch adds clock support for SATA Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- arch/arm/cpu/armv7/exynos/clock.c | 22 ++ arch/arm/include/asm/arch-exynos/clk.h |1 + 2 files changed, 23 insertions(+) diff --git

[U-Boot] [PATCH v2 2/4] Exynos5: Add base addresses for SATA

2012-11-23 Thread Vasanth Ananthan
This patch adds the macro definition of SATA controller and PHY controller base addresses. Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- arch/arm/include/asm/arch-exynos/cpu.h|3 +++ arch/arm/include/asm/arch-exynos/periph.h |1 + 2 files changed, 4 insertions(+) diff

[U-Boot] [PATCH v2 3/4] Drivers: block: Support for SATA in Exynos5

2012-11-23 Thread Vasanth Ananthan
This patch provides support for SATA in Exynos5250 Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- drivers/block/dwc_ahsata.c | 394 +++- 1 file changed, 387 insertions(+), 7 deletions(-) diff --git a/drivers/block/dwc_ahsata.c

[U-Boot] [PATCH v2 4/4] SMDK55250: Enable SATA

2012-11-23 Thread Vasanth Ananthan
This patch adds required macros for enabling SATA. Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- include/configs/smdk5250.h | 11 +++ 1 file changed, 11 insertions(+) diff --git a/include/configs/smdk5250.h b/include/configs/smdk5250.h index e412da8..123fcc3 100644 ---

Re: [U-Boot] Reg Bootstrapping u-boot on x86-64 for tizen

2012-11-23 Thread manohar . betham
Dear Graeme, Thank you! As of now I will try it for coreboot target on x86_64 machine. I followed the steps given in patch file for x86 machine and modified and getting the below error. manoharb@smart-OptiPlex-390:~/Kernel_Tizen/intel_tizen/latest/u-boot$ make coreboot_config make: ***

Re: [U-Boot] Reg Bootstrapping u-boot on x86-64 for tizen

2012-11-23 Thread manohar . betham
Dear Graeme, I am getting the below error once after build with coreboot.Please help me. ..only error part copied. ld.bfd --emit-relocs -Bsymbolic -Bsymbolic-functions -m elf_i386 -r -o libserial.o ns16550.o serial.o serial_ns16550.o

[U-Boot] [RFC/PATCH 0/4] BCH8 support for OMAP3

2012-11-23 Thread Andreas Bießmann
This RFC series implements BCH8 for OMAP3 as provided by linux kernel in commit 0e618ef0a6a33cf7ef96c2c824402088dd8ef48c. This series is heavily influenced by Ilyas series 'NAND support for AM33XX' thus could share some code. I have managed to load kernel from an ubifs written by the kernel

[U-Boot] [RFC/PATCH 1/4] omap3/cpu.h: add BCH support

2012-11-23 Thread Andreas Bießmann
This patch adds the BCH result registers to register mapping for OMAP3 gpmc. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Tom Rini tr...@ti.com Cc: Ilya Yanok ilya.ya...@cogentembedded.com Cc: Scott Wood scottw...@freescale.com --- arch/arm/include/asm/arch-omap3/cpu.h |6

[U-Boot] [RFC/PATCH 2/4] omap3/omap_gpmc.h: add ooblayout for BCH8 as in kernel

2012-11-23 Thread Andreas Bießmann
This patch adds BCH8 ooblayout for NAND as provided by 0e618ef0a6a33cf7ef96c2c824402088dd8ef48c in linux kernel. This Layout is currently only provided for 64 byte OOB. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Tom Rini tr...@ti.com Cc: Ilya Yanok

[U-Boot] [RFC/PATCH 3/4] omap_gpmc: add support for hw assisted BCH8

2012-11-23 Thread Andreas Bießmann
The BCH for OMAP3 is implemented as the linux kernel in 0e618ef0a6a33cf7ef96c2c824402088dd8ef48c does. The kernel states: ---8--- The OMAP3 GPMC hardware BCH engine computes remainder polynomials, it does not provide automatic error location and correction: this step is implemented using the BCH

[U-Boot] [RFC/PATCH 4/4] tricorder: enable hw assisted BCH8 in SPL and u-boot

2012-11-23 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Tom Rini tr...@ti.com Cc: Thomas Weber we...@corscience.de Cc: Ilya Yanok ilya.ya...@cogentembedded.com Cc: Scott Wood scottw...@freescale.com --- include/configs/tricorder.h | 10 +++--- 1 file changed, 7 insertions(+), 3

[U-Boot] [PATCH 1/2] OMAP3: fix panel timing on the mt_ventoux board

2012-11-23 Thread Stefano Babic
Signed-off-by: Stefano Babic sba...@denx.de --- board/teejet/mt_ventoux/mt_ventoux.c |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/board/teejet/mt_ventoux/mt_ventoux.c b/board/teejet/mt_ventoux/mt_ventoux.c index 9622a81..98b92f3 100644 ---

[U-Boot] [PATCH 2/2] OMAP3: TAM3517: add macros for reading eeprom

2012-11-23 Thread Stefano Babic
Added macros to read SOM information from the I2C EEPROM. Signed-off-by: Stefano Babic sba...@denx.de --- board/technexion/twister/twister.c | 10 -- board/teejet/mt_ventoux/mt_ventoux.c | 15 ++--- include/configs/tam3517-common.h | 58 +- 3

[U-Boot] [PATCH v4 2/3] OMAP3: drop CONFIG_SPL_OS_BOOT_KEY and use local define

2012-11-23 Thread Stefano Babic
CONFIG_SPL_OS_BOOT_KEY is used only in board files. It is not required to have a general CONFIG_ option. Rename it and define it in board directory. Signed-off-by: Stefano Babic sba...@denx.de --- board/technexion/twister/twister.c |8 board/technexion/twister/twister.h |2 ++

[U-Boot] [PATCH v4 3/3] SPL: Change description for spl command

2012-11-23 Thread Stefano Babic
Add a more descriptive text to the help of the spl command. Signed-off-by: Stefano Babic sba...@denx.de --- common/cmd_spl.c | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/common/cmd_spl.c b/common/cmd_spl.c index 9ec054a..b3d9834 100644 ---

[U-Boot] [PATCH v4 1/3] Add README for the Falcon mode

2012-11-23 Thread Stefano Babic
Simple howto to add support to a board for booting the kernel from SPL (Falcon mode). Signed-off-by: Stefano Babic sba...@denx.de --- Changes in v4: - fix capitalization, styling, in spl help (Andreas Biessmann) - move CONFIG_SPL_OS_BOOT before function in doc (Andreas Biessmann) Changes in v3:

Re: [U-Boot] [PATCH v2 3/4] Drivers: block: Support for SATA in Exynos5

2012-11-23 Thread Luka Perkov
Hi Vasanth, On Fri, Nov 23, 2012 at 05:38:57PM +0530, Vasanth Ananthan wrote: This patch provides support for SATA in Exynos5250 Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- drivers/block/dwc_ahsata.c | 394 +++- 1 file changed, 387

Re: [U-Boot] [PATCH v4 1/3] Add README for the Falcon mode

2012-11-23 Thread Vikram Narayanan
Hi Stefano, Sorry for bumping in at v4. Below are some of my comments. On 11/23/2012 9:01 PM, Stefano Babic wrote: Simple howto to add support to a board for booting the kernel from SPL (Falcon mode). Signed-off-by: Stefano Babicsba...@denx.de --- Changes in v4: - fix capitalization, styling,

Re: [U-Boot] [PATCH v4 1/3] Add README for the Falcon mode

2012-11-23 Thread Andreas Bießmann
Dear Vikram Narayanan, On 23.11.12 19:10, Vikram Narayanan wrote: snip +The parameters generated with this step can be saved into NAND at the offset +0x80 (value for twister for CONFIG_CMD_SPL_NAND_OFS) + +nand erase.part bootparms +nand write 0x8100 bootparms 0x4000 If the

[U-Boot] [PATCH 1/1] m68k/lib: fix serial driver relocation

2012-11-23 Thread Angelo Dureghello
Fix coldfire serial driver bindings no more relocated to ram after last changes to drivers/serial/serial.c (regression). Serial initialization in ram has to be called after that gd-reloc_off is calculated. Signed-off-by: Angelo Dureghello sysa...@gmail.com Cc: Jason Jin jason@freescale.com

Re: [U-Boot] common/xyzmodem.c, ymodem, slow behavior receiving bytes

2012-11-23 Thread Angelo Dureghello
Dear all, i have found out that this issue was also and probably mainly caused from the issue fixed in my last patch posted: http://patchwork.ozlabs.org/patch/201421/ All serial driver routines (for mcfuart.c in my case) was executed from the flash memory, even after monitor relocation to ram.

Re: [U-Boot] common/xyzmodem.c, ymodem, slow behavior receiving bytes

2012-11-23 Thread Wolfgang Denk
Dear Angelo, In message 20121123225721.GA28751@angel3 you wrote: i have found out that this issue was also and probably mainly caused from the issue fixed in my last patch posted: http://patchwork.ozlabs.org/patch/201421/ All serial driver routines (for mcfuart.c in my case) was

Re: [U-Boot] Reg Bootstrapping u-boot on x86-64 for tizen

2012-11-23 Thread manohar . betham
Hi, I am getting the following error after running make all for coreboot target,from /usr/bin/ld.bfd.real: skipping incompatible /home/manoharb/Kernel_Tizen/intel_tizen/latest/u-boot/arch/x86/lib/libgcc.a when searching for -lgcc /usr/bin/ld.bfd.real: cannot find -lgcc make: *** [u-boot]