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] Err

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) wa

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.

[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 Cc: Jason Jin --- diff --git a/arch/m68k/lib/board.c b/a

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: >> +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 > > I

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 Babic --- Changes in v4: - fix capitalization, styling, in spl help

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 > --- > drivers/block/dwc_ahsata.c | 394 > +++- > 1 file changed, 387 insertions(+),

[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 --- 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: - parameter i

[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 --- 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 --- a/common/cmd_spl.c +++ b/common/

[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 --- board/technexion/twister/twister.c |8 board/technexion/twister/twister.h |2 ++ board/timll/d

[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 --- board/technexion/twister/twister.c | 10 -- board/teejet/mt_ventoux/mt_ventoux.c | 15 ++--- include/configs/tam3517-common.h | 58 +- 3 files changed, 6

[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 --- 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 --- a/board/teejet/mt_ventoux/mt_ventoux.

[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 Cc: Tom Rini Cc: Thomas Weber Cc: Ilya Yanok Cc: Scott Wood --- include/configs/tricorder.h | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/include/configs/tricorder.h b/include/configs/tricorder.h index 4e4e089..9b8fe14 100644

[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 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 Cc: Tom Rini Cc: Ilya Yanok Cc: Scott Wood --- arch/arm/include/asm/arch-omap3/omap_gpmc.h |

[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 Cc: Tom Rini Cc: Ilya Yanok Cc: Scott Wood --- arch/arm/include/asm/arch-omap3/cpu.h |6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/include/asm/arch-omap3/cpu.h

[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 driver

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 make[1]

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: ***

[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 --- 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 --- a/include/configs/smdk525

[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 --- drivers/block/dwc_ahsata.c | 394 +++- 1 file changed, 387 insertions(+), 7 deletions(-) diff --git a/drivers/block/dwc_ahsata.c b/drivers/block/dwc_ahsata.c index c9b

[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 --- arch/arm/include/asm/arch-exynos/cpu.h|3 +++ arch/arm/include/asm/arch-exynos/periph.h |1 + 2 files changed, 4 insertions(+) diff --git a/arch/arm/include

[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 --- arch/arm/cpu/armv7/exynos/clock.c | 22 ++ arch/arm/include/asm/arch-exynos/clk.h |1 + 2 files changed, 23 insertions(+) diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch/arm/cpu/armv

[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 ++ arch/arm/include/asm/a

[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 Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes in V2: - board_i2c_init moved to driver in case of FDT. Chnges in V3: - None. board/samsung/smdk5250/smdk5250.c | 20 +--- 1 file

[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 --- Changes in V2: - Added periph id to I2C bus structure. - Modified i2c_get_bus_num_fdt function to compare with node. - Board i2c init moved to driver in case of

[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 --- Chnages in V3: - New patch added. arch/arm/cpu/armv7/exynos/pinmux.c| 28 arch/arm/include/asm/arch-exynos/periph.h | 28 +++

[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 Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes in V2: - None. Chnages in V3: - None. include/fdtdec.h |1 + lib/fdtdec.c |1 + 2 files changed, 2 insertions(+), 0 deleti

[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 Acked-by: Simon Glass Acked-by: Heiko Schocher --- Changes in V2: - None. Changes in V3: - None. board/samsung/dts/exynos5250-smdk5250.dts | 11 +++ 1 files changed, 11 insertions(+), 0 deletions(-) di

[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 --- 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 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

[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 --git

[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 --- board/avionic-design/dts/tegra20-tec.dts | 32

[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 --- board/avionic-design/dts/tegra20-medcom-wide.dts | 32 includ

[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 Se

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. > >

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 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 n

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 se

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

2012-11-23 Thread rui Yang
dongdaking 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