Re: [U-Boot] [PATCH v2 08/13] video: exynos: fimd: add support for various display color modes

2013-12-18 Thread Donghwa Lee
ut console on LCD */ > + switch (pvid->vl_bpix) { > + case 4: > cfg |= EXYNOS_WINCON_BPPMODE_16BPP_565; > + break; > + default: > + cfg |= EXYNOS_WINCON_BPPMODE_24BPP_888; > + break; > + } > >

Re: [U-Boot] [PATCH 06/10] video: exynos: fimd: always use 16bpp display mode.

2013-12-10 Thread Donghwa Lee
On 10 Dec 2013 17:15, Przemyslaw Marczak wrote: > Hello Donghwa, > > On 12/10/2013 06:47 AM, Donghwa Lee wrote: >> Hi, >> >> On 3 Dec 2013 18:03, Przemyslaw wrote: >>> This change updates exynos board files too. >>> 16 bpp mode is required by LCD co

Re: [U-Boot] FW: [PATCH 06/10] video: exynos: fimd: always use 16bpp display mode.

2013-12-09 Thread Donghwa Lee
put console on LCD */ > - cfg |= EXYNOS_WINCON_BPPMODE_16BPP_565; > + cfg |= EXYNOS_WINCON_BPPMODE_16BPP_565; > Why does exynos fimd always use 16bpp display mode? It could be used as other bpp modes in exynos. How do you use above vl_bpix variable in panel_info structure to check bpp mode? BR, Donghwa Lee. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V2] Origen: Set FIMD as the default display path

2013-08-18 Thread Donghwa Lee
On 2013년 08월 19일 12:06, Tushar Behera wrote: > On 19 August 2013 07:22, Donghwa Lee wrote: >> On Fri, Aug 16, 2013 at 16:31, Ajay kumar wrote: >> >> On Thu, Aug 15, 2013 at 6:53 PM, Tushar Behera >> wrote: >>> On EXYNOS4210, there are three paths for display

Re: [U-Boot] [PATCH V2] Origen: Set FIMD as the default display path

2013-08-18 Thread Donghwa Lee
On Fri, Aug 16, 2013 at 16:31, Ajay kumar wrote: > On Thu, Aug 15, 2013 at 6:53 PM, Tushar Behera > wrote: > > On EXYNOS4210, there are three paths for display data to be processed, > namely MIE, MDNIE and FIMD. On Origen board, FIMD display controller >

[U-Boot] [PATCH RESEND] exynos: video: change mipi dsi write function parameters correctly

2013-08-04 Thread Donghwa Lee
This patch have changed mipi dsi write functions' parameters correctly so that type cast operations were removed. And mipi dsi payload is composed with array of panel commands to improve readability. Signed-off-by: Donghwa Lee --- arch/arm/include/asm/arch-exynos/mipi_dsim.h |2 +- dr

[U-Boot] [PATCH RESEND] video: exynos: change mipi dsi write function parameters correctly

2013-06-06 Thread Donghwa Lee
rs were changed to 'const unsigned char' type. - s6e8ax0 panel driver does not use type cast operations to write mipi dsi commands anymore. - mipi dsi payload is composed with array of panel commands to improve readability. - removes unused variable of exynos_mipi_dsi_wr_data() Signed-off-by: Don

[U-Boot] [PATCH] video: exynos: remove unused variable of exynos_mipi_dsi_wr_data()

2013-05-07 Thread Donghwa Lee
This patch removes unused variable of exynos_mipi_dsi_wr_data() Signed-off-by: Donghwa Lee --- drivers/video/exynos_mipi_dsi_common.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/exynos_mipi_dsi_common.c b/drivers/video/exynos_mipi_dsi_common.c index

[U-Boot] [PATCH] video: exynos: Change mipi dsi write function parameters correctly

2013-05-07 Thread Donghwa Lee
gned char' type. - s6e8ax0 panel driver does not use type cast operations to write mipi dsi commands anymore. - mipi dsi payload is composed with array of panel commands to improve readability. Signed-off-by: Donghwa Lee --- arch/arm/include/asm/arch-exynos/m

Re: [U-Boot] [PATCH] video: exynos_fb: Add the missing #else clause

2013-04-21 Thread Donghwa Lee
It looks good to me. Acked-by: Donghwa Lee Thank you, Donghwa Lee On Mon, Apr 22, 2013 at 02:03, Ajay kumar wrote: ping. On Thu, Apr 4, 2013 at 7:55 PM, Ajay Kumar <mailto:ajaykumar...@samsung.com>> wrote: This patch fixes a bug introduced while adding DT support to Ex

[U-Boot] [PATCH 0/2] EXYNOS: EXYNOS5250: Separate setting configuration of exynos5250 from exynos5

2013-01-03 Thread Donghwa Lee
: EXYNOS5250: add gpio structure for EXYNOS5250 Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/2] EXYNOS: EXYNOS5250: add exynos5250 register addresses

2013-01-03 Thread Donghwa Lee
This patch add exynos5250 register addresses. Exynos5xxx series has each different register, so it is needed to separate. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/cpu.h | 33 1 files changed, 33

[U-Boot] [PATCH 2/2] EXYNOS: EXYNOS5250: add gpio structure for EXYNOS5250

2013-01-03 Thread Donghwa Lee
This patch add gpio structure of exynos5250. Exynos5xxx series has each different gpio bank, so it is needed to separate. After separation task, useless variables will be removed. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/gpio.h | 80

Re: [U-Boot] [PATCH V3 3/4] video: Modify exynos_fimd driver to support LCD console

2012-12-20 Thread Donghwa Lee
vid->logo_on)' instead of #ifdef CONFIG_EXYNOS_LOGO? In the vidinfo_t structure, 'logo_on' flag already exist. Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V3 2/4] EXYNOS: Add dummy definition to fix compilation dependency on CONFIG_EXYNOS_MIPI_DSIM

2012-12-20 Thread Donghwa Lee
(void); +#else +int exynos_mipi_dsi_init(void) +{ + return 0; +} +#endif /* * register mipi_dsim_lcd_driver object defined by lcd panel driver It looks good to me. Acked-by: Donghwa Lee Thank you, Donghwa Lee ___ U-Boot mailing list U

Re: [U-Boot] [PATCH RESEND V2 1/4] EXYNOS5: Change parent clock of FIMD to MPLL

2012-12-20 Thread Donghwa Lee
) */ cfg = readl(&clk->src_disp1_0); cfg &= ~(0xf); - cfg |= 0x8; + cfg |= 0x6; writel(cfg, &clk->src_disp1_0); /* It looks good to me. Acked-by: Donghwa Lee Thank you, Donghwa Lee ___ U-B

Re: [U-Boot] [PATCH] input: Add MELFAS mms144 touchscreen driver

2012-12-18 Thread Donghwa Lee
On 2012-12-18 01:41, Wolfgang Denk wrote: Dear Donghwa Lee, In message <50ce7957.6070...@samsung.com> you wrote: From: Sanggun Lee This is a TSP driver for touchscreen chip mms144 of MELFAS. It uses soft I2C interface and supports single touch. This driver uses polling method. If

[U-Boot] [PATCH] input: Add MELFAS mms144 touchscreen driver

2012-12-16 Thread Donghwa Lee
From: Sanggun Lee This is a TSP driver for touchscreen chip mms144 of MELFAS. It uses soft I2C interface and supports single touch. This driver uses polling method. If there are touch events, mms144_interrupt() reads and returns 0. If not, mms144_interrupt() returns -1. Signed-off-by: SangGun

Re: [U-Boot] [PATCH V2 1/4] EXYNOS5: Change parent clock of FIMD to MPLL

2012-12-16 Thread Donghwa Lee
than using VPLL as source clock. Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH RESEND 2/4] video: Fix compilation dependency of exynos_dp and exynos_mipi on exynos_fb

2012-12-16 Thread Donghwa Lee
a, how you think? I agree with you. It looks better than using #ifdef. Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v3]: video: support exynos fimd driver for various exynos series

2012-07-26 Thread Donghwa Lee
This patch supports exynos fimd driver for various exynos series different from existing it supports only exynos4 chip. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- Changes for v1: - moves exynos_fimd_get_base_offset() to exynos_fb.h Changes for v2: - moves

[U-Boot] [PATCH v2] video: support exynos fimd driver for various exynos series

2012-07-18 Thread Donghwa Lee
This patch support exynos fimd driver for various exynos series different from existing it supports only exynos4 chip. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- Changes for v1: - moves exynos_fimd_get_base_offset() to exynos_fb.h arch/arm/include/asm/arch-exynos/fb.h

Re: [U-Boot] [PATCH] video: fixed exynos_mipi_dsi_init() declaration

2012-07-03 Thread Donghwa Lee
On 4 July 2012 12:29, Minkyu Kang wrote: > On 2 July 2012 20:18, Donghwa Lee wrote: >> To avoid compilers error in case of not using >> CONFIG_EXYNOS_MIPI_DSIM, add no operation function. >> >> Signed-off-by: Donghwa Lee >> Signed-off-by: Kyungmin Park >

[U-Boot] [PATCH] video: fixed exynos_mipi_dsi_init() declaration

2012-07-02 Thread Donghwa Lee
To avoid compilers error in case of not using CONFIG_EXYNOS_MIPI_DSIM, add no operation function. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/mipi_dsim.h |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/arch/arm

[U-Boot] [PATCH 8/8] video: support exynos pwm backlight driver

2012-07-02 Thread Donghwa Lee
This patch support exynos pwm backlight driver. It can control backlight power and brightness by using pwm. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/pwm_backlight.h | 34 + drivers/video/Makefile |1

[U-Boot] [PATCH 7/8] video: exynos fb driver supports display port feature

2012-07-02 Thread Donghwa Lee
If dp_enabled was set, exynos fb driver support display port feature. This patch depends on [PATCH] video: support exynos fimd driver for various exynos series. http://marc.info/?l=u-boot&m=134119605104467&w=2 Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/inc

[U-Boot] [PATCH 3/8] EXYNOS5: support display port phy control function

2012-07-02 Thread Donghwa Lee
This patch support display port phy control function. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/power.c| 21 + arch/arm/include/asm/arch-exynos/power.h |5 + 2 files changed, 26 insertions(+), 0 deletions

[U-Boot] [PATCH 6/8] video: add dp_enabled variable in vidinfo structure

2012-07-02 Thread Donghwa Lee
To support display port in exynos fb driver, added dp_enabled variable in vidinfo structure that set in board file. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- include/lcd.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/lcd.h b/include/lcd.h

[U-Boot] [PATCH 4/8] EXYNOS5: add display port base address

2012-07-02 Thread Donghwa Lee
This patch add display port base address for EXYNOS5. In case of EXYNOS4, use DEVICE_NOT_AVAILABLE macro because DP is not supported. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/cpu.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions

[U-Boot] [PATCH 2/8] EXYNOS5: support display system register control

2012-07-02 Thread Donghwa Lee
This patch supports display block system regisger control. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/system.c | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/exynos/system.c b/arch/arm

[U-Boot] [PATCH 1/8] EXYNOS5: support exynos5 lcd clock control

2012-07-02 Thread Donghwa Lee
This patch support exynos5 lcd clock control. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/clock.c | 108 - 1 files changed, 107 insertions(+), 1 deletions(-) diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch

[U-Boot] [PATCH 0/8] video: support newly exynos5 display feature

2012-07-02 Thread Donghwa Lee
This patch set supports newly exynos5 display features. [1/8] EXYNOS5: support exynos5 lcd clock control [2/8] EXYNOS5: support display system register control [3/8] EXYNOS5: support display port phy control function [4/8] EXYNOS5: add display port base address [5/8] video: support exynos display

[U-Boot] [PATCH] video: support exynos fimd driver for various exynos series

2012-07-01 Thread Donghwa Lee
This patch supports exynos fimd driver for various exynos series different from existing it supports only exynos4 chip. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/fb.h | 15 +- drivers/video/exynos_fimd.c | 85

Re: [U-Boot] FDT: Question about embedded fdt enable

2012-05-30 Thread Donghwa Lee
On Wed, May 23, 2012 at 15:13, Simon Glass wrote: > HI Donghwa, > > On Wed, May 23, 2012 at 12:39 AM, Donghwa Lee <mailto:dh09@samsung.com>> wrote: > > Dear, Simon Glass > > I am preparing device tree in Exynos SoC and had already tested by using &g

[U-Boot] FDT: Question about embedded fdt enable

2012-05-23 Thread Donghwa Lee
anged configuration from CONFIG_OF_SEPARATE to CONFIG_OF_EMBED, it had a same problem. How did you test in seaboard as it embedded? Is there any more configuration to compile ebedded option? please reply my question. Thank you, Donghwa Lee ___ U-Boot ma

Re: [U-Boot] [PATCH v5 2/3] create lib/tizen directory

2012-05-16 Thread Donghwa Lee
> On Monday 14 May 2012 03:27:55 Kyungmin Park wrote: >> On 5/14/12, Mike Frysinger wrote: >> > On Monday 14 May 2012 01:37:10 Kyungmin Park wrote: >> >> On 5/14/12, Mike Frysinger wrote: >> >> > On Thursday 10 May 2012 01:23:40 Donghwa Lee wrote: &g

[U-Boot] [PATCH v5 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-05-09 Thread Donghwa Lee
-by: Donghwa Lee Signed-off-by: Kyungmin Park yy --- Changes for v4: - revert RGB order from BGR to RGB to suite lcd_display_bmp() - get_tizen_logo_info() is called only defined CONFIG_TIZEN Changes for v3: - use logo resulution variable. - get logo info through

[U-Boot] [PATCH v5 1/3] LCD: display 32bpp decompressed bitmap image

2012-05-09 Thread Donghwa Lee
This patch supports drawing 32bpp decompressed bitmap image. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- Changes for v4: - read image sequentially just as it is. Changes for v1/v2/v3: - use lcd_line_length variable - convert BGR to RGB because BMP data

[U-Boot] [PATCH v5 0/3] support 32bpp bitmap image drawing and TIZEN logo

2012-05-09 Thread Donghwa Lee
This patch set supports 32bpp bitmap image drwaing and TIZEN logo. LCD: display 32bpp decompressed bitmap image create lib/tizen directory EXYNOS: display 32bpp bitmap TIZEN logo Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http

[U-Boot] [PATCH v3 3/3]: EXYNOS: display 32bpp bitmap TIZEN logo

2012-05-03 Thread Donghwa Lee
-by: Donghwa Lee Signed-off-by: Kyungmin Park --- Changes for v1: - set CONFIG_SYS_VIDEO_LOGO_MAX_SIZE bigger than BMP header file size. - drawing logo when boot_logo_on variable sets in board file. - move trats_logo* header file to another patch. - set RGB order

[U-Boot] [PATCH v4 1/3]: LCD: display 32bpp decompressed bitmap image

2012-05-03 Thread Donghwa Lee
This patch supports drawing 32bpp decompressed bitmap image. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- Changes for v1/v2/v3: - use lcd_line_length variable - convert RGB to BGR because BMP data format aligned BGR. common/lcd.c | 27

[U-Boot] [PATCH] disk: generate GUID Partiton Tables

2012-05-01 Thread Donghwa Lee
This patch manipulates GUID Papartition Tables. I send this patch on behalf of Gwuieon Jin. Signed-off-by: Gwuieon Jin Signed-off-by: Kyungmin Park --- disk/part_efi.c | 107 +++ disk/part_efi.h |2 + include/part.h |2 + 3 files ch

[U-Boot] [PATCH v 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-04-30 Thread Donghwa Lee
-by: Donghwa Lee Signed-off-by: Kyungmin Park --- Changes for v1: - set CONFIG_SYS_VIDEO_LOGO_MAX_SIZE bigger than BMP header file size. - drawing logo when boot_logo_on variable sets in board file. - move trats_logo* header file to another patch. - set RGB order

[U-Boot] [PATCH v3 1/3] LCD: display 32bpp decompressed bitmap image

2012-04-30 Thread Donghwa Lee
This patch supports drawing 32bpp decompressed bitmap image. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- Changes for v1/v2: - use lcd_line_length variable - convert RGB to BGR because BMP data format aligned BGR. common/lcd.c | 27

Re: [U-Boot] [PATCH v2 2/3] LCD: add compressed 32bpp BMP image data

2012-04-29 Thread Donghwa Lee
you, Donghwa Lee On 27 April 2012 09:18, Minkyu Kang wrote: > Dear Wolfgang Denk, > > On 26 April 2012 21:43, Wolfgang Denk wrote: >> Dear Donghwa Lee, >> >> In message <4f99057f.5040...@samsung.com> you wrote: >>> This patch is 32bpp BMP image data tha

[U-Boot] [PATCH] LCD: support another s6e8ax0 panel type

2012-04-26 Thread Donghwa Lee
s6e8ax0 panel has many panel of types. This patch support another panel on TIZEN lunchbox board(HWREVISION 2). This panel has reversed panel display type. So, I had added necessary command. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/mipi_dsim.h

[U-Boot] [PATCH v2 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-04-26 Thread Donghwa Lee
v1: - set CONFIG_SYS_VIDEO_LOGO_MAX_SIZE bigger than BMP header file size. - drawing logo when boot_logo_on variable sets in board file. - move trats_logo* header file to another patch. - set RGB order depending on file format in board file. - and so on. Signed-off-by: Donghwa Lee Signed-off

[U-Boot] [PATCH v2 1/3] LCD: display 32bpp decompressed bitmap image

2012-04-26 Thread Donghwa Lee
This patch supports drawing 32bpp decompressed bitmap image. change of v1: - use lcd_line_length variable - convert RGB to BGR because BMP data format aligned BGR. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- common/lcd.c | 27 --- 1 files changed

[U-Boot] [PATCH v2] TRATS: initialize panel_info data structure in board file

2012-04-25 Thread Donghwa Lee
that must do not included variables of vidinfo_t data structure was included in the file. So, I removed it. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- board/samsung/trats/trats.c | 71 ++- drivers/video/exynos_fb.c |3 -- 2

[U-Boot] [PATCH] TRATS: initialize panel_info data structure in board file

2012-04-25 Thread Donghwa Lee
panel_info data structure is global variable, so, I have initialized it in board file. If it is initialized in init_panel_info() like existing, it can't be used in drv_lcd_init() in common/lcd.c because init_panel_info() is called after drv_lcd_init(). Signed-off-by: Donghwa Lee Signed-o

[U-Boot] [PATCH] LCD: change s6e8ax0 panel gamma value

2012-04-25 Thread Donghwa Lee
s6e8ax0 panel init gamma value is changed because existing it was not proper value for this panel. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- drivers/video/s6e8ax0.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a

Re: [U-Boot] [PATCH 2/2] EXYNOS: draw 32bpp bitmap TIZEN logo

2012-04-23 Thread Donghwa Lee
Dear Wolfgang, On 23 April 2012 18:22, Wolfgang Denk wrote: > Dear Donghwa Lee, > > In message <4f94b49e.5020...@samsung.com> you wrote: >> This patches support drawing 32bpp bitmap TIZEN logo in exynos fb. >> asm/arch/trats_logo.h data is compressed by zip and decom

[U-Boot] [PATCH] EXYNOS: Change bits per pixel value proper for u-boot.

2012-04-23 Thread Donghwa Lee
vl_bpix of vidinfo_t was changed proper value for u-boot. It is used to multiple of 2 by using NBITS() macro. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- board/samsung/trats/trats.c |2 +- drivers/video/exynos_fb.c |2 +- drivers/video/exynos_fimd.c |6 +++--- 3

Re: [U-Boot] [PATCH 2/2] EXYNOS: draw 32bpp bitmap TIZEN logo

2012-04-23 Thread Donghwa Lee
Thank you for your comment. On 23 April 2012 18:00, Minkyu Kang wrote: > On 23 April 2012 10:47, Donghwa Lee wrote: >> This patches support drawing 32bpp bitmap TIZEN logo in exynos fb. >> asm/arch/trats_logo.h data is compressed by zip and decomressed at >> the exynos

[U-Boot] [PATCH 1/2] LCD: drawing 32bpp uncompressed bitmap image

2012-04-22 Thread Donghwa Lee
This patch supports drawing 32bpp uncompressed bitmap image. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin.park --- common/lcd.c | 26 ++ 1 files changed, 22 insertions(+), 4 deletions(-) diff --git a/common/lcd.c b/common/lcd.c index bf1a6a9..a7b04d2 100644

[U-Boot] Question about toots/bmp_logo.c

2012-04-12 Thread Donghwa Lee
k about it? Does it can be merged in u-boot mainline? Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2 7/7] EXYNOS: support TRATS board display function

2012-04-05 Thread Donghwa Lee
This patch support TRATS board configuration and display function. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- board/samsung/trats/trats.c | 147 +++ include/configs/trats.h |8 +++ 2 files changed, 155

[U-Boot] [PATCH v2 6/7] LCD: support S6E8AX0 amoled driver based on EXYNOS MIPI DSI.

2012-04-05 Thread Donghwa Lee
>From f3326ff482ebebe3eea72621b354fd6e93f957a7 Mon Sep 17 00:00:00 2001 From: Donghwa Lee Date: Fri, 6 Apr 2012 14:24:01 +0900 Subject: [PATCH] PATCH v2: LCD: support S6E8AX0 amoled driver based on EXYNOS MIPI DSI This patch support S6E8AX0 amoled driver based on EXYNOS MIPI DSI interf

[U-Boot] [PATCH v2 4/7] EXYNOS: support EXYNOS framebuffer and FIMD display drivers.

2012-04-05 Thread Donghwa Lee
This patch support EXYNOS FB and FIMD display drivers. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- arch/arm/include/asm/arch-exynos/fb.h | 446 + drivers/video/Makefile|1 + drivers/video/exynos_fb.c

[U-Boot] [PATCH v2 3/7] LCD: add data structure for EXYNOS display driver

2012-04-05 Thread Donghwa Lee
Add vidinfo data structure for EXYNOS display driver Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- include/lcd.h | 64 + 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/include

[U-Boot] [PATCH v2 2/7] EXYNOS: add LCD and MIPI DSI clock interface.

2012-04-05 Thread Donghwa Lee
To sets up lcd and mipi clock in EXYNOS display driver, added clock interface. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- arch/arm/cpu/armv7/exynos/clock.c | 184 arch/arm/include/asm/arch-exynos/clk.h |3 + 2

[U-Boot] [PATCH v2 1/7] EXYNOS: definitions of system resgister and power management registers.

2012-04-05 Thread Donghwa Lee
This is definitions of system registers and power mananagement registers for EXYNOS SoC. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- arch/arm/cpu/armv7/exynos/Makefile|2 +- arch/arm/cpu/armv7/exynos/power.c | 54

[U-Boot] [PATCH v2 0/7] EXYNOS: support display drivers

2012-04-05 Thread Donghwa Lee
of v1: - modify minor issues(code style, remove compiler warnings, and so on) Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 7/7] EXYNOS: support TRATS board display function

2012-04-05 Thread Donghwa Lee
Thank you for your comment. I will fix all this patch according to your comments and send version2. Thank you, Donghwa Lee On Fri, 06 Apr 2012 08:44, Anatolij Gustschin wrote: > Hi, > > On Thu, 05 Apr 2012 15:29:34 +0900 > Donghwa Lee wrote: > >> This patch support TRAT

[U-Boot] [PATCH 7/7] EXYNOS: support TRATS board display function

2012-04-04 Thread Donghwa Lee
This patch support TRATS board configuration and display function. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- board/samsung/trats/trats.c | 147 +++ include/configs/trats.h |8 +++ 2 files changed, 155

[U-Boot] [PATCH 6/7] LCD: support S6E8AX0 amoled driver based on EXYNOS MIPI DSI.

2012-04-04 Thread Donghwa Lee
This patch support S6E8AX0 amoled driver based on EXYNOS MIPI DSI interface. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- drivers/video/s6e8ax0.c | 289 +++ 1 files changed, 289 insertions(+), 0 deletions

[U-Boot] [PATCH 4/7] EXYNOS: support EXYNOS framebuffer and FIMD display drivers.

2012-04-04 Thread Donghwa Lee
This patch support EXYNOS FB and FIMD display drivers. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- arch/arm/include/asm/arch-exynos/fb.h | 446 + drivers/video/Makefile|4 + drivers/video/exynos_fb.c

[U-Boot] [PATCH 3/7] LCD: add data structure for EXYNOS display driver

2012-04-04 Thread Donghwa Lee
Add vidinfo data structure for EXYNOS display driver Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- include/lcd.h | 64 + 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/include

[U-Boot] [PATCH 2/7] EXYNOS: add LCD and MIPI DSI clock interface.

2012-04-04 Thread Donghwa Lee
To sets up lcd and mipi clock in EXYNOS display driver, added clock interface. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- arch/arm/cpu/armv7/exynos/clock.c | 184 arch/arm/include/asm/arch-exynos/clk.h |3 + 2

[U-Boot] [PATCH 1/7] EXYNOS: definitions of system resgister and power management registers.

2012-04-04 Thread Donghwa Lee
This is definitions of system registers and power mananagement registers for EXYNOS SoC. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park Signed-off-by: Inki Dae --- arch/arm/cpu/armv7/exynos/Makefile|2 +- arch/arm/cpu/armv7/exynos/power.c | 54

[U-Boot] [PATCH 0/7] EXYNOS: support display drivers

2012-04-04 Thread Donghwa Lee
[PATCH 4/7] EXYNOS: support EXYNOS framebuffer and FIMD display drivers. [PATCH 5/7] EXYNOS: support EXYNOS MIPI DSI interface driver. [PATCH 6/7] LCD: support S6E8AX0 amoled driver based on EXYNOS MIPI DSI. [PATCH 7/7] EXYNOS: support TRATS board display function Thank you, Donghwa Lee

Re: [U-Boot] [PATCH 0/2] ARM: EXYNOS: support MIPI DSI interface driver

2012-04-04 Thread Donghwa Lee
Hi, I will abandon this patch set because of some dependency on previously sended patch set and update next version. Thank you. On Wen 4 Apr 2012 15:28, Donghwa Lee wrote: > EXYNOS SoC platform has MIPI-DSI controller and MIPI-DSI > based LCD Panel could be used with it. This patch su

Re: [U-Boot] [PATCH v3 2/4] ARM: EXYNOS: add data structure for EXYNOS display driver

2012-04-04 Thread Donghwa Lee
on which subsystem the patch is > doing the changes, so I would suggest using the patch subject like > "LCD: add data structure for EXYNOS display driver" > Ok, I will change the title. > On Mon, 02 Apr 2012 17:39:24 +0900 > Donghwa Lee wrote: > >> add vidinfo d

Re: [U-Boot] [PATCH v3 0/4] ARM: EXYNOS: add display driver for EXYNOS SoC

2012-04-04 Thread Donghwa Lee
Hi, I will modify as your comments. On Wen, 04 Apr 2012 23:25, Anatolij Gustschin wrote: > Hi! > > On Wed, 4 Apr 2012 17:24:17 +0900 > Minkyu Kang wrote: > >> On 2 April 2012 17:39, Donghwa Lee wrote: >>> This patch is for display driver version 3 of EXYNOS So

[U-Boot] [PATCH 1/2]ARM: EXYNOS: add mipi dsi control operation

2012-04-03 Thread Donghwa Lee
Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/Makefile |2 +- arch/arm/cpu/armv7/exynos/clock.c| 34 + arch/arm/cpu/armv7/exynos/power.c| 47 ++ arch/arm

[U-Boot] [PATCH 0/2] ARM: EXYNOS: support MIPI DSI interface driver

2012-04-03 Thread Donghwa Lee
EXYNOS SoC platform has MIPI-DSI controller and MIPI-DSI based LCD Panel could be used with it. This patch supports MIPI-DSI driver based Samsung SoC chip. LCD panel driver based MIPI-DSI should be registered to MIPI-DSI driver at board file and LCD panel driver specific function registered to mip

[U-Boot] [PATCH v3 4/4] ARM: EXYNOS: support EXYNOS display driver

2012-04-02 Thread Donghwa Lee
This patch is for EXYNOS Display driver. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/fb.h | 446 + drivers/video/Makefile|1 + drivers/video/exynos_fb.c

[U-Boot] [PATCH v3 3/4] ARM: EXYNOS: add exynos lcd clock interface

2012-04-02 Thread Donghwa Lee
To get lcd clock in EXYNOS display driver, added get_lcd_clk() interface. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/clock.c | 79 arch/arm/include/asm/arch-exynos/clk.h |2 + 2

[U-Boot] [PATCH v3 2/4] ARM: EXYNOS: add data structure for EXYNOS display driver

2012-04-02 Thread Donghwa Lee
add vidinfo data structure for EXYNOS display driver Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- include/lcd.h | 63 + 1 files changed, 63 insertions(+), 0 deletions(-) diff --git a/include

[U-Boot] [PATCH v3 1/4] ARM: EXYNOS: definition of system registers

2012-04-02 Thread Donghwa Lee
This is definition of system registers for EXYNOS SoC. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/Makefile|2 +- arch/arm/cpu/armv7/exynos/system.c| 48 ++ arch/arm/include/asm/arch-exynos/cpu.h|2

[U-Boot] [PATCH v3 0/4] ARM: EXYNOS: add display driver for EXYNOS SoC

2012-04-02 Thread Donghwa Lee
declaration - correct the wrong return value for some function - etc Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH v2 4/4] ARM: EXYNOS: support EXYNOS display driver

2012-04-01 Thread Donghwa Lee
This patch is for EXYNOS Display driver. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/fb.h | 446 + drivers/video/Makefile|1 + drivers/video/exynos_fb.c

[U-Boot] [PATCH v2 3/4] ARM: EXYNOS: add exynos lcd clock interface

2012-04-01 Thread Donghwa Lee
To get lcd clock in EXYNOS display driver, added get_lcd_clk() interface. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/clock.c | 72 + 1 files changed, 72 insertions(+), 0 deletions(-) diff

[U-Boot] [PATCH v2 2/4] ARM: EXYNOS: add data structure for EXYNOS display driver

2012-04-01 Thread Donghwa Lee
add vidinfo data structure for EXYNOS display driver Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- include/lcd.h | 62 + 1 files changed, 62 insertions(+), 0 deletions(-) diff --git a/include

[U-Boot] [PATCH v2 1/4] ARM: EXYNOS: definition of system registers

2012-04-01 Thread Donghwa Lee
This is definition of system registers for EXYNOS SoC. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/Makefile|2 +- arch/arm/cpu/armv7/exynos/system.c| 44 + arch/arm/include/asm/arch-exynos/cpu.h|2

[U-Boot] [PATCH v2 0/4] ARM: EXYNOS: add display driver for EXYNOS SoC

2012-04-01 Thread Donghwa Lee
function to system.c - move lcd clock control function to clock driver - remove private debug macro - etc Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 5/5] ARM: EXYNOS: add Makefile for exynos display driver

2012-03-29 Thread Donghwa Lee
Update Makefile for EXYNOS display driver. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- drivers/video/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/video/Makefile b/drivers/video/Makefile index 6252f6a..8896abe

[U-Boot] [PATCH 4/5] ARM: EXYNOS: support EXYNOS display driver

2012-03-29 Thread Donghwa Lee
This patch is for EXYNOS Display driver. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- drivers/video/exynos_fb.c | 160 + drivers/video/exynos_fb.h | 62 +++ drivers/video/exynos_fimd.c | 416

[U-Boot] [PATCH 3/5] ARM: EXYNOS: add exynos lcd clock interface

2012-03-29 Thread Donghwa Lee
To get lcd source clock in EXYNOS display driver, added get_lcd_clk() interface. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/exynos/clock.c | 50 + 1 files changed, 50 insertions(+), 0 deletions

[U-Boot] [PATCH 2/5]: ARM: EXYNOS: add data structure for EXYNOS display driver

2012-03-29 Thread Donghwa Lee
add vidinfo data structure for EXYNOS display driver. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- include/lcd.h | 63 - 1 files changed, 62 insertions(+), 1 deletions(-) diff --git a/include

[U-Boot] [PATCH 0/5] ARM: EXYNOS: add display driver for EXYNOS SoC

2012-03-29 Thread Donghwa Lee
Thank you, Donghwa Lee ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/5] ARM: EXYNOS: definition of system registers

2012-03-29 Thread Donghwa Lee
This is definition of system registers for EXYNOS SoC. Signed-off-by: Donghwa Lee Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/cpu.h|2 + arch/arm/include/asm/arch-exynos/system.h | 51 + 2 files changed, 53

Re: [U-Boot] [PATCH] ARM: EXYNOS: definition of system registers

2012-03-29 Thread Donghwa Lee
Hi, On 29 March 2012 23:37, Minkyu Kang wrote: > Dear Donghwa, > > On 29 March 2012 17:50, Donghwa Lee wrote: >> This is definition of system registers for EXYNOS SoC. >> >> Signed-off-by: Donghwa Lee >> Signed-off-by: Kyungmin Park >> --- >> arc

[U-Boot] [PATCH] ARM: EXYNOS: definition of system registers

2012-03-29 Thread Donghwa Lee
This is definition of system registers for EXYNOS SoC. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/include/asm/arch-exynos/cpu.h|2 + arch/arm/include/asm/arch-exynos/system.h | 51 + 2 files changed, 53 insertions(+), 0 deletions

[U-Boot] [PATCH v4] ARM: S5P: pwm driver support

2011-03-07 Thread Donghwa Lee
This is common pwm driver of S5P. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- Changes since v3: - fixed pwm register offset - move definitions of register to header file Changes since v2: - Timer4 was blocked to access compare buffer register - code clean arch/arm/cpu/armv7

[U-Boot] [PATCH v3] ARM: s5p: pwm driver support

2011-03-07 Thread Donghwa Lee
This is common pwm driver of S5P. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- Changes since v2: - Timer4 was blocked to access compare buffer register - code clean arch/arm/cpu/armv7/s5p-common/Makefile |1 + arch/arm/cpu/armv7/s5p-common/pwm.c | 198

[U-Boot] [PATCH v2] armv7: s5p: pwm driver support

2011-03-01 Thread Donghwa Lee
This is common pwm driver version2 of S5P. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/s5p-common/Makefile |1 + arch/arm/cpu/armv7/s5p-common/pwm.c | 218 +++ arch/arm/include/asm/arch-s5pc1xx/pwm.h | 14 ++ arch/arm

Re: [U-Boot] [PATCH] armv7: s5p: pwm driver support

2011-03-01 Thread Donghwa Lee
Dear Minkyu Kang, On 2011-02-28 8:36 Minkyu Kang wrote: > Dear Donghwa Lee, > > On 24 February 2011 16:56, Donghwa Lee wrote: >> This is common pwm driver of S5P. >> >> Signed-off-by: Donghwa Lee >> Signed-off-by: Kyungmin Park >> >> --- >&

[U-Boot] [PATCH] armv7: s5p: pwm driver support

2011-02-24 Thread Donghwa Lee
This is common pwm driver of S5P. Signed-off-by: Donghwa Lee Signed-off-by: Kyungmin Park --- arch/arm/cpu/armv7/s5p-common/Makefile |1 + arch/arm/cpu/armv7/s5p-common/pwm.c | 214 +++ arch/arm/include/asm/arch-s5pc1xx/pwm.h | 14 ++ arch/arm/include

Re: [U-Boot] [PATCH] tools: fw_printenv supports mmc device

2010-12-16 Thread Donghwa Lee
On 2010-12-17 오전 3:45 , Steve Sakoman wrote: > On Wed, Dec 15, 2010 at 5:22 PM, Donghwa Lee wrote: >> I modified fw_printenv tools to use /dev/mmcblk0 node. Original fw_printenv >> tool >> can be access MTD devices, but, in some cases, environment variables can be >

  1   2   >