[U-Boot] [PATCH] exynos5: add trace feature #ifdef in exynos5-common.h

2015-03-13 Thread Inha Song
We can enable / disable trace feature from the FTRACE config options. To enable, compile U-Boot with FTRACE=1. This patch add #ifdef FTRACE in exynos5-common.h for enable/disable to use FTRACE configs instead of having to change board config files. Signed-off-by: Inha Song --- include/configs

Re: [U-Boot] [PATCH] Odroid-XU3: Undefine TRACE CONFIGs in Odroid XU3

2015-03-12 Thread Inha Song
Hi, Simon, On Thu, 12 Mar 2015 15:11:05 -0700 Simon Glass wrote: > Hi, > > On 12 March 2015 at 00:27, Sjoerd Simons > wrote: > > > > On Thu, 2015-03-12 at 14:32 +0900, Inha Song wrote: > > > This patch undefines Trace configs in Odroidx XU3. > >

[U-Boot] [PATCH] Odroid-XU3: Undefine TRACE CONFIGs in Odroid XU3

2015-03-11 Thread Inha Song
This patch undefines Trace configs in Odroidx XU3. Trace configs are defined in exynos5-common.h Signed-off-by: Inha Song --- include/configs/odroid_xu3.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/configs/odroid_xu3.h b/include/configs/odroid_xu3.h index c395020..f427fe2

Re: [U-Boot] [PATCH 2/2] usb: invoke board specific USB cleanup interface

2015-02-25 Thread Inha Song
Hi, Rob, On Tue, 24 Feb 2015 10:20:13 -0600 Rob Herring wrote: > On Mon, Jan 19, 2015 at 1:07 AM, Inha Song wrote: > > This patch invoke board-specific USB cleanup (board_usb_cleanup) > > interface. > > > > Signed-off-by: Inha Song > > --- > > common/c

Re: [U-Boot] [PATCH 0/2] Invoke board specific board_usb_cleanup function

2015-01-19 Thread Inha Song
() function. As a result, I have implemented board_usb_cleanup() function in smdk5420.c board file for called dwc3_uboot_exit() function. If "board_usb_cleanup" is dead code, I will fix it. Best Regards, Inha Song. On Mon, 19 Jan 2015 09:50:34 +0100 Marek Vasut wrote: > On Monday, Januar

[U-Boot] [PATCH 1/2] usb: common: provide a _weak board_usb_cleanup() function

2015-01-18 Thread Inha Song
This patch implement _weak function for board_usb_cleanup. This function (usb_board_cleanup) implementation is board-specific feature. board_usb_cleanup function can be used to clean up after failed board-specific USB initialization. Signed-off-by: Inha Song --- common/usb.c | 6 ++ 1 file

[U-Boot] [PATCH 2/2] usb: invoke board specific USB cleanup interface

2015-01-18 Thread Inha Song
This patch invoke board-specific USB cleanup (board_usb_cleanup) interface. Signed-off-by: Inha Song --- common/cmd_dfu.c | 1 + common/cmd_thordown.c | 1 + common/cmd_usb_mass_storage.c | 1 + 3 files changed, 3 insertions(+) diff --git a/common/cmd_dfu.c b/common

[U-Boot] [PATCH 0/2] Invoke board specific board_usb_cleanup function

2015-01-18 Thread Inha Song
This patches invoke board-specific usb cleanup interface (board_usb_cleanup) After USB initalization. Inha Song (2): usb: common: provide a _weak board_usb_cleanup() function usb: invoke board specific USB cleanup interface common/cmd_dfu.c | 1 + common/cmd_thordown.c

Re: [U-Boot] [PATCH v10 0/4] Adds support for Exynos5422 odroid xu3 board

2014-12-03 Thread Inha Song
Hi All, In Tizen mainline u-boot, CONFIG_ENV_OFFSET have already been fixed to SZ_1K * 3136 from SZ_1K * 1280. It looks good to change CONFIG_ENV_OFFSET also in u-boot mainline to use the same offset with Tizen u-boot. How about your opinion? Best Regards, Inha Song. 2014년 12월 04일 01:15

Re: [U-Boot] [PATCH 04/10] samsung: misc: set the dfu bootloader setting at boot time.

2014-06-10 Thread Inha Song
t_info" env for DFU entities configuration. Is there any patch to support multiple "dfu_alt" environment, or "dfu_alt_info" environment settings to use "dfu_alt_bootloader" env? best regards, Inha Song. On Tue, 10 Jun 2014 13:32:58 +0200 Przemyslaw Marczak wrote:

Re: [U-Boot] [PATCH 08/10] odroid: add board file for Odroid X2/U3 based on Samsung Exynos4412

2014-06-10 Thread Inha Song
Hi Przemyslaw, In U3 board, cooling pan is not work. I think, cooling pan setting is need in board_gpio_init(). (X2 board use cooling pan pwr form USB port) best regards, Inha Song. On Tue, 10 Jun 2014 13:33:02 +0200 Przemyslaw Marczak wrote: > This board file supports standard features

[U-Boot] [PATCH] serial: s5p: set automatically clears after resetting Rx FIFO

2014-02-03 Thread Inha Song
This patch fix the u-boot shell problem on TRATS2 board. - If hold the key while booting is in progress, white spaces are written in u-boot shell. Set Automatically clears after resetting Rx FIFO. Signed-off-by: Inha Song Signed-off-by: Jaehoon Chung --- drivers/serial/serial_s5p.c |4

[U-Boot] [PATCH v3] arm: exynos: change to use clrbits macro instead of readl/writel function

2014-01-26 Thread Inha Song
Use setbits/clrbits macro instead of readl/writel function Signed-off-by: Inha Song --- Changes for v2: - Coding Style cleanup - add signed-off-by Changes for v3: - Modified to use mask value for clear bit - Use clrsetbits instead of clrbits in exynos5_set_lcd_clk(void) function arch/arm/cpu

Re: [U-Boot] [PATCH v2] arm: exynos: change to use clrbits macro instead of readl/writel function

2014-01-16 Thread Inha Song
Hi, On Thu, 16 Jan 2014 16:50:37 +0900 Minkyu Kang wrote: > On 15/01/14 14:27, Inha Song wrote: > > Use setbits/clrbits macro instead of readl/writel function > > > > Signed-off-by: Inha Song > > Signed-off-by: Minkyu Kang > > Tested-by: Przemyslaw Ma

[U-Boot] [PATCH v2] arm: exynos: change to use clrbits macro instead of readl/writel function

2014-01-14 Thread Inha Song
Use setbits/clrbits macro instead of readl/writel function Signed-off-by: Inha Song Signed-off-by: Minkyu Kang Tested-by: Przemyslaw Marczak --- Changes for v2: - Coding Style cleanup - add signed-off-by arch/arm/cpu/armv7/exynos/clock.c | 82 + 1 file

[U-Boot] [PATCH] arm: exynos: change to use clrbits macro instead of readl/writel function

2014-01-13 Thread Inha Song
Use setbits/clrbits macro instead of readl/writel function Signed-off-by: Inha Song --- arch/arm/cpu/armv7/exynos/clock.c | 87 +++-- 1 file changed, 25 insertions(+), 62 deletions(-) diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch/arm/cpu/armv7/exynos

[U-Boot] [PATCH] arm: exynos: add missing readl

2014-01-11 Thread Inha Song
The readl function was missing in exynos/clock.c Signed-off-by: Inha Song --- arch/arm/cpu/armv7/exynos/clock.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch/arm/cpu/armv7/exynos/clock.c index 5bde9d1..08e7d50 100644 --- a/arch/arm/cpu/armv7

Re: [U-Boot] [PATCH v2 06/13] common: makefile: Add optional cflags to object: common/lcd.o

2013-12-18 Thread Inha Song
bj)fdt_support.o: CFLAGS += $(PLATFORM_NO_UNALIGNED) > +$(obj)lcd.o: CFLAGS += $(PLATFORM_NO_UNALIGNED) > -- > 1.7.9.5 > Certainly, unaligned data access exception doesn't occur on trats2 board. - arm-linux-gnueabi-gcc 4.6.3 Thank you. -- Inha Song ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot