Re: [U-Boot] [PATCH 2/3] S5PC100: Function to configure the SROMC registers.

2010-02-10 Thread Minkyu Kang
Naveen Krishna Ch, On 10 February 2010 15:52, Minkyu Kang wrote: > Dear > > On 10 February 2010 15:31, Naveen Krishna Ch > wrote: >> Hi Kang, >> >> On 10 February 2010 11:43, Minkyu Kang wrote: >>> >>> Dear Naveen Krishna Ch, >>&g

Re: [U-Boot] [PATCH ARM 2/3 v2] s3c24x0 code style changes

2010-02-11 Thread Minkyu Kang
               cmd_name, >                              getenv(cmd_name) ? >                              getenv(cmd_name) : ""); > -                       return (getenv(cmd_name)); > +                       return getenv(cmd_name); >      

Re: [U-Boot] [PATCH V2 1/3] S5PC100: Memory SubSystem Header file, register description(SROMC).

2010-02-11 Thread Minkyu Kang
C100. > Note: Only SROM related registers are descibed now. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The header file is renamed to smc.h from mem.h > 2. The Macros are renamed according to TRM. > Comments from Minkyu kang are fixed. > >

Re: [U-Boot] RFC: split ARM repo and distribute workload

2009-09-07 Thread Minkyu Kang
t; > Marvell (PXA + IXP): Jean-Christophe Plagniol-Villard > > no changes here. > > Marvell (all other): Prafulla Wadaskar > > Prafulla has accepted his new responsibility. Thanks a lot >for that. > > Samsung (s3c, s5pc):

Re: [U-Boot] [PATCH] arm_cortexa8: support cache flush to other soc

2009-09-07 Thread Minkyu Kang
058492.html > > so that we can apply above patch, you are able to go on to bring Samsung > into mainline? And in parallel we discuss/change above topics? Or > > - we have to rewrite > > http://lists.denx.de/pipermail/u-boot/2009-August/058492.html > > what will stall Sam

Re: [U-Boot] [PATCH 4/4] s5pc1xx: add support SMDKC100 board

2009-09-07 Thread Minkyu Kang
"; run bootk\0" \ >> +     "boottrace=setenv opts initcall_debug; run bootcmd\0" \ >> +     "android=set bootargs root=ubi0!ramdisk ubi.mtd=${ubiblock}" \ >> +      " rootfstype=ubifs init=/init.sh " CONFIG_COMMON_BOOT "; run bootk\0" &

Re: [U-Boot] [PATCH] arm_cortexa8: support cache flush to other soc

2009-09-08 Thread Minkyu Kang
Tom wrote: > Dirk Behme wrote: >> Tom wrote: >>> Minkyu Kang wrote: >>>> Dear Dirk, >>>> >>>> >>> >>> >>> I have lost track of this thread. >> >> Yes, and I'm currently trying to get the track ba

Re: [U-Boot] [PATCH] arm_cortexa8: support cache flush to other soc

2009-09-09 Thread Minkyu Kang
Dear Tom, 2009/9/9 Tom : > Minkyu Kang wrote: >> Tom wrote: >>> Dirk Behme wrote: >>>> Tom wrote: >>>>> Minkyu Kang wrote: >>>>>> Dear Dirk, >>>>>> >>>>>> >>>>> >>>>>

[U-Boot] [PATCH 1/4 v2] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-10 Thread Minkyu Kang
This patch adds support for the Samsung s5pc100 and s5pc110 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- cpu/arm_cortexa8/s5pc1xx/Makefile| 53 ++ cpu/arm_cortexa8/s5pc1xx/cache.c | 43 + cpu

[U-Boot] [PATCH 2/4 v2] s5pc1xx: support onenand driver

2009-09-10 Thread Minkyu Kang
This patch includes the onenand driver for s5pc100 Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park --- drivers/mtd/onenand/Makefile|2 + drivers/mtd/onenand/samsung.c | 626 +++ include/linux/mtd/onenand.h |1 + include

[U-Boot] [PATCH 3/4 v2] s5pc1xx: support serial driver

2009-09-10 Thread Minkyu Kang
This patch includes the serial driver for s5pc1xx Signed-off-by: Minkyu Kang --- common/serial.c | 18 +++ drivers/serial/Makefile |1 + drivers/serial/serial_s5pc1xx.c | 308 +++ include/serial.h|7 + 4

[U-Boot] [PATCH 4/4 v2] s5pc1xx: add support SMDKC100 board

2009-09-10 Thread Minkyu Kang
Add new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- MAINTAINERS|4 + MAKEALL|1 + Makefile |3 + board/samsung/smdkc100/Makefile

Re: [U-Boot] [PATCH 1/4 v2] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-11 Thread Minkyu Kang
Dear Wolfgang 2009/9/10 Wolfgang Denk : > Dear Minkyu Kang, > > In message <4aa8ac30.2070...@samsung.com> you wrote: >> This patch adds support for the Samsung s5pc100 and s5pc110 >> SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. >> >> Signed-off-by:

Re: [U-Boot] [PATCH 4/4 v2] s5pc1xx: add support SMDKC100 board

2009-09-11 Thread Minkyu Kang
Dear Wolfgang 2009/9/10 Wolfgang Denk : > Dear Minkyu Kang, > > In message <4aa8ac52.4010...@samsung.com> you wrote: >> Add new board SMDKC100 that uses s5pc100 SoC >> >> Signed-off-by: Minkyu Kang >> Signed-off-by: HeungJun, Kim > ... >> +#ifnde

Re: [U-Boot] [PATCH 3/4 v2] s5pc1xx: support serial driver

2009-09-11 Thread Minkyu Kang
Dear Wolfgang, 2009/9/10 Wolfgang Denk : > Dear Minkyu Kang, > > In message <4aa8ac42.50...@samsung.com> you wrote: >> This patch includes the serial driver for s5pc1xx >> >> Signed-off-by: Minkyu Kang > ... >> +static inline struct s5pc1xx

Re: [U-Boot] [PATCH 2/4 v2] s5pc1xx: support onenand driver

2009-09-14 Thread Minkyu Kang
Dear Wolfgang 2009/9/10 Wolfgang Denk : > Dear Minkyu Kang, > > In message <4aa8ac3b.5000...@samsung.com> you wrote: >> This patch includes the onenand driver for s5pc100 >> >> Signed-off-by: Minkyu Kang >> Signed-off-by: Kyungmin Park > ... >>

Re: [U-Boot] I found an error

2009-09-15 Thread Minkyu Kang
Dear sun peng 2009/9/16 Wolfgang Denk : > Dear Minkyu Kang, > > In message <3fa5fd300909100724x18b2a8bdve0bd6e9fb7194...@mail.gmail.com> Sun > Peng wrote: >> >> Recently I'm playing with u-boot and want it be able to boot from nand. >> When I config

Re: [U-Boot] [PATCH 3/4 v2] s5pc1xx: support serial driver

2009-09-16 Thread Minkyu Kang
Dear Jean-Christophe 2009/9/11 Minkyu Kang : > Dear Wolfgang, > > 2009/9/10 Wolfgang Denk : >> Dear Minkyu Kang, >> >> In message <4aa8ac42.50...@samsung.com> you wrote: >>> This patch includes the serial driver for s5pc1xx >>> >>>

Re: [U-Boot] I found an error

2009-09-17 Thread Minkyu Kang
ou think that is the difference of bash or make between yours and mine > cause the issue ? > -Original Message- > From: Minkyu Kang [mailto:proms...@gmail.com] > Sent: Wednesday, September 16, 2009 9:44 AM > To: Wolfgang Denk > Cc: Minkyu Kang; u-boot@lists.denx.de; sun peng &

Re: [U-Boot] nand_scan() in ARM9 S3C2410

2009-09-21 Thread Minkyu Kang
oot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > Did you check the kevin's mail? He said "u-boot for s3c2410 doesn't support". http://lists.denx.de/pipermail/u-boot/2009-September/060855.html And I think.. you can trace nand_scan()

[U-Boot] [PATCH 1/4 v3] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-22 Thread Minkyu Kang
This patch adds support for the Samsung s5pc100 and s5pc110 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- Changes since v1: - make C struct instead of base+offset - use writel/readl function - use the strmhz function - fix some

[U-Boot] [PATCH 2/4 v3] s5pc1xx: support onenand driver

2009-09-22 Thread Minkyu Kang
This patch includes the onenand driver for s5pc100 Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park --- Changes since v1: - move samsung_onenand.h to include/linux/mtd/ - make C struct instead of base+offset - Remove the "1 &&" in while loop Changes since v2: - drop

[U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-22 Thread Minkyu Kang
This patch includes the serial driver for s5pc1xx Signed-off-by: Minkyu Kang --- Changes since v1: - use serial multi API - use writel/readl function - remove duplicate code Changes since v2: - use sizeof() instead of the constant common/serial.c | 18 +++ drivers/serial

[U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Minkyu Kang
Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- Changes since v1: - arrange env values for more readable - make C struct instead of base+offset - use MACH_TYPE_SMDKC100 directly - fix the CONFIG_SYS_HZ to 1000 - enable LOADB, LOADS

Re: [U-Boot] [PATCH 1/4 v3] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-23 Thread Minkyu Kang
Dear Tom 2009/9/22 Tom : > Minkyu Kang wrote: >> This patch adds support for the Samsung s5pc100 and s5pc110 >> SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. >> >> Signed-off-by: Minkyu Kang >> Signed-off-by

Re: [U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-23 Thread Minkyu Kang
Dear Tom 2009/9/22 Tom : > Minkyu Kang wrote: >> This patch includes the serial driver for s5pc1xx >> >> Signed-off-by: Minkyu Kang > > Nak. > > This looks like the zoom2 serial driver. > In the case of zoom2, special handling is needed because the > s

Re: [U-Boot] [PATCH 2/4 v3] s5pc1xx: support onenand driver

2009-09-23 Thread Minkyu Kang
Dear Tom. 2009/9/22 Tom : > Minkyu Kang wrote: >> This patch includes the onenand driver for s5pc100 >> >> Signed-off-by: Minkyu Kang >> Signed-off-by: Kyungmin Park >> --- >> Changes since v1: >> - move samsung_onenand.h to include/linux/m

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-23 Thread Minkyu Kang
Dear Tom 2009/9/23 Tom : > Minkyu Kang wrote: >> Adds new board SMDKC100 that uses s5pc100 SoC >> >> Signed-off-by: Minkyu Kang >> Signed-off-by: HeungJun, Kim >> --- >> Changes since v1: >> - arrange env values for more readable >&

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-23 Thread Minkyu Kang
Dear Tom 2009/9/23 Tom : > Minkyu Kang wrote: >> >> Dear Tom >> >> 2009/9/23 Tom : >>> >>> Minkyu Kang wrote: >>>> >>>> Adds new board SMDKC100 that uses s5pc100 SoC >>>> >>>> Signed-off-by: Min

Re: [U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-26 Thread Minkyu Kang
Dear Tom 2009/9/23 Tom : > Minkyu Kang wrote: >> This patch includes the serial driver for s5pc1xx >> >> Signed-off-by: Minkyu Kang > > Add a better commit log. > Explain why a special serial driver is needed instead > of using the generic serial driver.

Re: [U-Boot] [PATCH-ARM 1/4, v2] Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code

2009-09-29 Thread Minkyu Kang
Dear kevin Morfitt sorry for blank message 2009/9/30 Minkyu Kang : > Dear Kevin Morfitt > > 2009/9/26 kevin.morf...@fearnside-systems.co.uk > : >> Changes since v1: >> - re-formatted patch to remove line wrapping >> >> Note that patch 2/4 of this series

[U-Boot] [PATCH 1/4 v4] s5pc1xx: support Samsung s5pc1xx SoC

2009-10-01 Thread Minkyu Kang
This patch adds support for the Samsung s5pc100 and s5pc110 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- Changes since v1: - make C struct instead of base+offset - use writel/readl function - use the strmhz function - fix some

[U-Boot] [PATCH 2/4 v4] s5pc1xx: support onenand driver

2009-10-01 Thread Minkyu Kang
This patch includes the onenand driver for s5pc100 Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park --- Changes since v1: - move samsung_onenand.h to include/linux/mtd/ - make C struct instead of base+offset - Remove the "1 &&" in while loop Changes since v2: - drop

[U-Boot] [PATCH 3/4 v4] s5pc1xx: support serial driver

2009-10-01 Thread Minkyu Kang
This patch includes the serial driver for s5pc1xx. s5pc1xx uart driver needs own register setting and clock configuration. So, need to special driver. Signed-off-by: Minkyu Kang --- Changes since v1: - use serial multi API - use writel/readl function - remove duplicate code Changes since v2

[U-Boot] [PATCH 4/4 v4] s5pc1xx: add support SMDKC100 board

2009-10-01 Thread Minkyu Kang
Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- Changes since v1: - arrange env values for more readable - make C struct instead of base+offset - use MACH_TYPE_SMDKC100 directly - fix the CONFIG_SYS_HZ to 1000 - enable LOADB, LOADS

Re: [U-Boot] [PATCH] This modification will make the binay of smdk6400 nand spl in correct size

2009-10-08 Thread Minkyu Kang
t; I'm sorry to late response. I missed your mail. Dear all, It seems to be occured specific systems. so, please test this patch Thank you Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/4 v4] s5pc1xx: support Samsung s5pc1xx SoC

2009-10-08 Thread Minkyu Kang
Minkyu Kang wrote: > This patch adds support for the Samsung s5pc100 and s5pc110 > SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. > > Signed-off-by: Minkyu Kang > Signed-off-by: HeungJun, Kim > --- > Changes since v1: > - make C struct instead of base+offset >

Re: [U-Boot] [PATCH 2/4 v4] s5pc1xx: support onenand driver

2009-10-08 Thread Minkyu Kang
Minkyu Kang wrote: > This patch includes the onenand driver for s5pc100 > > Signed-off-by: Minkyu Kang > Signed-off-by: Kyungmin Park > --- > Changes since v1: > - move samsung_onenand.h to include/linux/mtd/ > - make C struct instead of base+offset > - Remo

Re: [U-Boot] [PATCH 3/4 v4] s5pc1xx: support serial driver

2009-10-08 Thread Minkyu Kang
Minkyu Kang wrote: > This patch includes the serial driver for s5pc1xx. > s5pc1xx uart driver needs own register setting and clock configuration. > So, need to special driver. > > Signed-off-by: Minkyu Kang > --- > Changes since v1: > - use serial multi API >

Re: [U-Boot] [PATCH 4/4 v4] s5pc1xx: add support SMDKC100 board

2009-10-08 Thread Minkyu Kang
Minkyu Kang wrote: > Adds new board SMDKC100 that uses s5pc100 SoC > > Signed-off-by: Minkyu Kang > Signed-off-by: HeungJun, Kim > --- > Changes since v1: > - arrange env values for more readable > - make C struct instead of base+offset > - use MACH_TYPE_SM

Re: [U-Boot] [PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards

2009-10-08 Thread Minkyu Kang
> value than 1000? >> >> CONFIG_SYS_HZ is a constant with the value 1000. Board that use >> different values shall be fixed. >> >> Best regards, >> >> Wolfgang Denk >> > > > > __ Information from ESET NOD32 Antivirus, version of virus signature

Re: [U-Boot] [PATCH-ARM 1/4, v2] Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code

2009-10-08 Thread Minkyu Kang
ad and make available >> changes to support s3c2440 and your board. >> > I've missed the merge window for this u-boot release so I may as well > submit the s3c2440 and sbc2440-ii board patches after this release. > > So far only 1 of the 5 existing p

Re: [U-Boot] [PATCH-ARM 2/4, v2] Clean-up of s3c24x0 header files

2009-10-11 Thread Minkyu Kang
>  include/s3c24x0.h |  605 > ++------- >  3 files changed, 137 insertions(+), 1121 deletions(-) > applied to u-boot-samsung Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH-ARM 4/4, v3] Clean-up of s3c24x0 nand driver]

2009-10-11 Thread Minkyu Kang
|   62 +++--- >  1 files changed, 25 insertions(+), 37 deletions(-) > applied to u-boot-samsung Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH-ARM 1/4, v3] Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code

2009-10-11 Thread Minkyu Kang
i.c   | 1323 > -- >  cpu/arm920t/s3c24x0/usb_ohci.h   |  209 +++--- >  cpu/arm920t/start.S              |   63 +- >  7 files changed, 915 insertions(+), 830 deletions(-) > applied to u-boot-samsung Thanks Minkyu Kang -- from. prom. www.prom

Re: [U-Boot] [PATCH-ARM 3/4, v3] Clean-up of s3c24x0 drivers excluding nand driver

2009-10-11 Thread Minkyu Kang
           |   12 +- >  drivers/i2c/s3c24x0_i2c.c         |  273 > +++-- >  drivers/rtc/s3c24x0_rtc.c         |  130 +- >  drivers/serial/serial_s3c24x0.c   |  160 -- >  15 files changed, 374 insertions(+), 339 deletions(-) > appli

[U-Boot] Please pull u-boot-samsung/master

2009-10-12 Thread Minkyu Kang
Dear Tom, The following changes since commit 617da90c1dcf65428ddfb63fef897439950bc915: Tom Rix (1): Merge branch 't-next-marvell' into t-next-at91 are available in the git repository at: git://git.denx.de/u-boot-samsung master Minkyu Kang (5): s5pc1xx: support Samsu

Re: [U-Boot] Please pull u-boot-samsung/master

2009-10-14 Thread Minkyu Kang
Dear Tom 2009/10/14 Tom Rix : > Stefan Roese wrote: >> Hi Tom, >> >> On Wednesday 14 October 2009 05:31:04 Tom Rix wrote: >>>>   git://git.denx.de/u-boot-samsung master >>>> >>>> Minkyu Kang (5): >>>>       s5pc1xx: s

[U-Boot] [PATCH] s5pc1xx: SMDKC100: fix compile warnings

2009-10-14 Thread Minkyu Kang
fix the following compile warnings warning: dereferencing type-punned pointer will break strict-aliasing rules Signed-off-by: Minkyu Kang --- drivers/serial/serial_s5pc1xx.c |2 +- include/asm-arm/arch-s5pc1xx/clock.h | 88 +- include/asm-arm/arch

Re: [U-Boot] [PATCH] s5pc1xx: SMDKC100: fix compile warnings

2009-10-14 Thread Minkyu Kang
Dear Tom 2009/10/15 Minkyu Kang : > fix the following compile warnings > warning: dereferencing type-punned pointer will break strict-aliasing rules > > Signed-off-by: Minkyu Kang > --- >  drivers/serial/serial_s5pc1xx.c      |    2 +- >  include/asm-arm/arch-s

Re: [U-Boot] CONFIG_GENERIC_MMC Usage

2009-10-16 Thread Minkyu Kang
er heavy development? generic mmc interface is ready > 3.) Does it support SDHC or just SD? support both of them > > Regards, > Shane > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/li

Re: [U-Boot] ARM pull request

2009-10-18 Thread Minkyu Kang
Dear Dirk and Tom 2009/10/18 Dirk Behme : > Dirk Behme wrote: >> Tom wrote: > ... >>> Minkyu Kang (4): >>>        s5pc1xx: support Samsung s5pc1xx SoC >>>        s5pc1xx: support onenand driver >>>        s5pc1xx: support serial driver >>>

Re: [U-Boot] [PATCH] ARM S3C2410 add new board GEC2410

2009-10-29 Thread Minkyu Kang
checked) Second, please separate your patch (board, cpu, soc, spl, etc..) Third, please fix the copyright. I couldn't find your name. And then, we will review your patch. Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] S3C6400/SMDK6400: fix stack_setup in start.S

2009-11-01 Thread Minkyu Kang
55-6007  F +82-2-6442-6462 > M +82-10-2790-0657 > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > Thanks for patch :) Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH-ARM 1/3] Add support for the s3c2440 cpu excluding nand driver

2009-11-01 Thread Minkyu Kang
een one function definition > and the next.  They also need to use tabs > >>  23 files changed, 471 insertions(+), 119 deletions(-) >>  create mode 100644 cpu/arm920t/s3c24x0/arch_pre_lowlevel_init.S >>  create mode 100644 include/s3c2440.h >>  create mode 100644 include/s3c24x0_cpu.h >> > > Tom > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 04/10] ARM Add New Board GEC2410

2009-11-03 Thread Minkyu Kang
onfig does, > > Would you please give me some advice where should I put the gec2410 > board config? I think, It is better to put bottom of s3c24x0 board series. (next to VCMA9) > > Thanks. > > BR. > Hui. > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH ARM] Clean-up of s3c24x0 header files

2009-11-03 Thread Minkyu Kang
base_sdi(void) >  { >        return (struct s3c2410_sdi *)S3C2410_SDI_BASE; > diff --git a/include/asm-arm/arch-s3c24x0/s3c24x0.h > b/include/asm-arm/arch-s3c24x0/s3c24x0.h > index 56a551a..c363afc 100644 > --- a/include/asm-arm/arch-s3c24x0/s3c24x0.h > +++ b/include/asm-arm/arch-s3c24x0/s3c24x0.h > @@ -31,9 +31,9 @@ >  #ifndef __S3C24X0_H__ >  #define __S3C24X0_H__ > > -typedef volatile u8    S3C24X0_REG8; > -typedef volatile u16   S3C24X0_REG16; > -typedef volatile u32   S3C24X0_REG32; > +typedef u8     S3C24X0_REG8; > +typedef u16    S3C24X0_REG16; > +typedef u32    S3C24X0_REG32; We can remove typedef also. How about it? > >  /* Memory controller (see manual chapter 5) */ >  struct s3c24x0_memctl { > -- > 1.6.0.6 > > Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH ARM] Move s3c24x0 header files to asm-arm/arch-s3c24x0/

2009-11-03 Thread Minkyu Kang
0.h >  create mode 100644 include/asm-arm/arch-s3c24x0/s3c24x0.h >  delete mode 100644 include/s3c2400.h >  delete mode 100644 include/s3c2410.h >  delete mode 100644 include/s3c24x0.h > applied to u-boot-samsung Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] samsung: move DRAM parameters

2009-11-04 Thread Minkyu Kang
___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > yes, DRAM parameters are board specific. But I think it is not good way to move DRAM parameters to board configuration file. At first,

Re: [U-Boot] s3c64xx: move s3c64xx header files to include/asm-arm/arch-s3c64xx

2009-11-06 Thread Minkyu Kang
2009/11/5 Tom : > Minkyu Kang wrote: >> This patch moves the s3c64xx header files from include/ >> to include/asm-arm/arch-s3c64xx >> >> Signed-off-by: Minkyu Kang >> --- > > Thanks! > Please send me a pull request when convenient > > Tom > &g

Re: [U-Boot] [PATCH ARM v2] Clean-up of s3c24x0 header files

2009-11-09 Thread Minkyu Kang
include/asm-arm/arch-s3c24x0/s3c24x0.h |  904 > ---- >  4 files changed, 490 insertions(+), 461 deletions(-) > applied to u-boot-samsung Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] S3C6400/SMDK6400: fix stack_setup in start.S

2009-11-10 Thread Minkyu Kang
Dear Seunghyeon Rhee, 2009/11/2 "Seunghyeon Rhee (이승현)" : > Dear Minkyu Kang, > > 2009/11/2 Minkyu Kang : >> Dear Seunghyeon Rhee >> >> 2009/10/31 "Seunghyeon Rhee (이승현)" : >>> stack_setup is modified to initialize the stack on the cor

[U-Boot] s5pc1xx: serial: fix the error check logic

2009-11-10 Thread Minkyu Kang
Because of Frame error, Parity error and Overrun error are occured only receive operation, need to masking when error checking. Signed-off-by: Minkyu Kang --- drivers/serial/serial_s5pc1xx.c | 24 +--- 1 files changed, 17 insertions(+), 7 deletions(-) diff --git a/drivers

Re: [U-Boot] [PATCH ARM 3/3 v3] change s3c24x0 register struct members to lower case

2010-02-11 Thread Minkyu Kang
gnature >> database 4859 (20100211) ______ >> >> The message was checked by ESET NOD32 Antivirus. >> >> http://www.eset.com >> >> >> >> > ___ > U-Boot mailing list > U-Boot@lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V2 1/3] S5PC100: Memory SubSystem Header file, register description(SROMC).

2010-02-12 Thread Minkyu Kang
C100. > Note: Only SROM related registers are descibed now. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The header file is renamed to smc.h from mem.h > 2. The Macros are renamed according to TRM. > Comments from Minkyu kang are fixed. > >

Re: [U-Boot] [PATCH v2 2/3] S5PC100: Function to configure the SROMC registers.

2010-02-12 Thread Minkyu Kang
by: Naveen Krishna Ch > --- > Changes since V1: > > 1. Funtion config_sromc() is renamed to s5pc1xx_config_sromc(). > Comments from Minkyu Kang are fixed > >  cpu/arm_cortexa8/s5pc1xx/Makefile  |    1 + >  cpu/arm_cortexa8/s5pc1xx/sromc.c   |   54 > ++

[U-Boot] [PATCH 1/2] s5pc1xx: support the GPIO interface

2010-02-12 Thread Minkyu Kang
This patch adds support the GPIO interface Signed-off-by: Minkyu Kang --- cpu/arm_cortexa8/s5pc1xx/Makefile |1 + cpu/arm_cortexa8/s5pc1xx/gpio.c | 143 +++ include/asm-arm/arch-s5pc1xx/gpio.h | 29 +++ 3 files changed, 173 insertions(+), 0

[U-Boot] [PATCH 2/2] s5pc1xx: update the README file

2010-02-12 Thread Minkyu Kang
Because adds support the GPIO Interface, README file is updated. Signed-off-by: Minkyu Kang --- doc/README.s5pc1xx | 18 +- 1 files changed, 17 insertions(+), 1 deletions(-) diff --git a/doc/README.s5pc1xx b/doc/README.s5pc1xx index 5a0fe33..ab1f024 100644 --- a/doc

Re: [U-Boot] [PATCH v2 2/3] S5PC100: Function to configure the SROMC registers.

2010-02-12 Thread Minkyu Kang
Dear Naveen Krishna Ch, On 12 February 2010 19:38, Naveen Krishna Ch wrote: > HI Kang, > Thanks for your comments. > On 12 February 2010 13:50, Minkyu Kang wrote: >> >> Dear Naveen Krishna Ch, >> >> On 11 February 2010 11:48, Naveen Krishna Ch >&

Re: [U-Boot] [PATCH ARM 3/3 v3] change s3c24x0 register struct members to lower case

2010-02-13 Thread Minkyu Kang
Dear Tom, On 12 February 2010 22:07, Tom wrote: > Minkyu Kang wrote: >> >> Dear Kevin, >> >> On 12 February 2010 05:29, kevin.morf...@fearnside-systems.co.uk >> wrote: >>> >>> On 11/02/2010 19:04, Tom wrote: >>>> >>>>

Re: [U-Boot] [PATCH 1/2] s5pc1xx: support the GPIO interface

2010-02-17 Thread Minkyu Kang
On 12 February 2010 18:29, Minkyu Kang wrote: > This patch adds support the GPIO interface > > Signed-off-by: Minkyu Kang > --- >  cpu/arm_cortexa8/s5pc1xx/Makefile   |    1 + >  cpu/arm_cortexa8/s5pc1xx/gpio.c     |  143 > +++ >  incl

Re: [U-Boot] [PATCH 2/2] s5pc1xx: update the README file

2010-02-17 Thread Minkyu Kang
On 12 February 2010 18:29, Minkyu Kang wrote: > Because adds support the GPIO Interface, README file is updated. > > Signed-off-by: Minkyu Kang > --- >  doc/README.s5pc1xx |   18 +- >  1 files changed, 17 insertions(+), 1 deletions(-) > applied to u-boot

Re: [U-Boot] [PATCH 2/2] s5pc1xx: update the README file

2010-02-17 Thread Minkyu Kang
Dear Wolfgang, On 17 February 2010 20:58, Wolfgang Denk wrote: > Dear Minkyu Kang, > > In message <1f3430fb1002170236q7bdb3262q1eb929fdafab2...@mail.gmail.com> you > wrote: >> On 12 February 2010 18:29, Minkyu Kang wrote: >> > Because adds support the GPIO

Re: [U-Boot] [PATCH 2/2] s5pc1xx: update the README file

2010-02-17 Thread Minkyu Kang
Dear Wolfgang, On 18 February 2010 05:26, Wolfgang Denk wrote: > Dear Minkyu Kang, > > In message <1f3430fb1002170629p2528fdd2x3ffa396775715...@mail.gmail.com> you > wrote: >> >> > Would it be possible to squash these two commits into one? They >> >

Re: [U-Boot] [PATCH 2/3 v3] S5PC100: Function to configure the SROMC registers.

2010-02-23 Thread Minkyu Kang
; --- > Changes since V1: > > 1. Funtion config_sromc() is renamed to s5pc1xx_config_sromc(). > Comments from Minkyu Kang are fixed > > Changes since V2: > > 1.cpu_is_s5pc100() function is used instead of Macros. > >  cpu/arm_cortexa8/s5pc1xx/Makefile

Re: [U-Boot] [PATCH 3/3 v3] SAMSUNG: SMDKC100: Adds ethernet support.

2010-02-23 Thread Minkyu Kang
OM Bank 3. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The CONFIG_BOOTP* and Net config Macros are removed from config header. > Comments from Ben Warren are fixed > 2. The GPIO configuration is modified & Macro and Function are renamed.

Re: [U-Boot] [PATCH 1/3 v4] S5PC100: Memory SubSystem Header file, register description(SROMC).

2010-02-25 Thread Minkyu Kang
te: Only SROM related registers are descibed now. > Now, your patchset looks fine but sorry, please fix this commit message. It's not mem.h Thanks Minkyu Kang -- from. prom. www.promsoft.net ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/3 v4] S5PC100: Memory SubSystem Header file, register description(SROMC).

2010-02-25 Thread Minkyu Kang
Naveen Krishna Ch, On 25 February 2010 20:37, Naveen Krishna Ch wrote: > Sure sure, > Do i need to send as v5 > or can i send this patch alone Please don't top posting. And please send v5. > > On 25 February 2010 17:03, Minkyu Kang wrote: >> >> Dear Naveen

Re: [U-Boot] [PATCH 3/3 v5] SAMSUNG: SMDKC100: Adds ethernet support.

2010-02-25 Thread Minkyu Kang
OM Bank 3. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The CONFIG_BOOTP* and Net config Macros are removed from config header. > Comments from Ben Warren are fixed > 2. The GPIO configuration is modified & Macro and Function are renamed.

Re: [U-Boot] [PATCH 3/3 v6] SAMSUNG: SMDKC100: Adds ethernet support.

2010-02-26 Thread Minkyu Kang
OM Bank 3. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The CONFIG_BOOTP* and Net config Macros are removed from config header. > Comments from Ben Warren are fixed > 2. The GPIO configuration is modified & Macro and Function are renamed.

Re: [U-Boot] [PATCH 3/3 v6] SAMSUNG: SMDKC100: Adds ethernet support.

2010-03-01 Thread Minkyu Kang
Dear Naveen Krishna Ch, On 1 March 2010 14:05, Naveen Krishna Ch wrote: > Hi kang, > > On 26 February 2010 21:21, Minkyu Kang wrote: >> >> Dear Naveen Krishna CH, >> >> On 26 February 2010 20:47,   wrote: >> > From: Naveen Krishna CH >> >

Re: [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs

2010-03-03 Thread Minkyu Kang
NERS b/MAINTAINERS >> index dd1579e..49a3762 100644 >> --- a/MAINTAINERS >> +++ b/MAINTAINERS >> @@ -771,6 +771,13 @@ Minkyu Kang >> >>       SMDKC100        ARM CORTEX-A8 (S5PC100 SoC) >> > The smdkc100 is a mistake. > Minkyu, > Please move this up to be

Re: [U-Boot] [PATCH 1/2] SPEAr : Adding maintainer name for spear SoCs

2010-03-04 Thread Minkyu Kang
phabetical. > > It should be. If you notice errors, then please submit a patch to fix > this. > >> Is there any other logic followed for arranging maintainer names > > They are sorted within the respective architecture group > alphabetically by the maintain

Re: [U-Boot] [PATCH 2/3 v7] S5PC100: Function to configure the SROMC registers.

2010-03-05 Thread Minkyu Kang
; --- > Changes since V1: > > 1. Funtion config_sromc() is renamed to s5pc1xx_config_sromc(). > Comments from Minkyu Kang are fixed > > Changes since V2: > > 1.cpu_is_s5pc100() function is used instead of Macros. > > Changes since V3: > 1. Comments from Minkyu Kang are

Re: [U-Boot] [PATCH 3/3 v7] SAMSUNG: SMDKC100: Adds ethernet support.

2010-03-05 Thread Minkyu Kang
Bank 3. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The CONFIG_BOOTP* and Net config Macros are removed from config header. > Comments from Ben Warren are fixed > 2. The GPIO configuration is modified & Macro and Function are renamed. > Comment

Re: [U-Boot] [PATCH 1/3 v7] S5PC100: Memory SubSystem Header file, register description(SROMC).

2010-03-05 Thread Minkyu Kang
ROM related registers are descibed now. > > Signed-off-by: Naveen Krishna Ch > --- > Changes since V1: > > 1. The header file is renamed to smc.h from smc.h > > 2. The Macros are renamed according to TRM. > Comments from Minkyu kang are fixed. > > Changes si

[U-Boot] Please pull u-boot-samsung/master

2010-03-05 Thread Minkyu Kang
Dear Tom, The following changes since commit f687ebf82dbe44dcde5901232ade4f19ecedbf58: Minkyu Kang (1): Merge branch 'master' of git://git.denx.de/u-boot-arm are available in the git repository at: git://git.denx.de/u-boot-samsung master Joonyoung Shim (1): s3c64xx:

Re: [U-Boot] Please pull u-boot-samsung/master

2010-03-07 Thread Minkyu Kang
Dear Tom, On 6 March 2010 05:29, Tom wrote: > Minkyu Kang wrote: >> Dear Tom, >> >> The following changes since commit f687ebf82dbe44dcde5901232ade4f19ecedbf58: >>   Minkyu Kang (1): >>         Merge branch 'master' of git://git.denx.de/u-boot-arm &

[U-Boot] [PATCH] MAINTAINERS: sort the list of ARM Maintainers by last name

2010-03-07 Thread Minkyu Kang
Signed-off-by: Minkyu Kang --- MAINTAINERS | 22 +++--- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 0340c19..29096ec 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -618,6 +618,10 @@ Simon Kagstrom openrd_base

Re: [U-Boot] [PATCH] MAINTAINERS: sort the list of ARM Maintainers by last name

2010-03-11 Thread Minkyu Kang
Dear Tom, On 8 March 2010 16:22, Minkyu Kang wrote: > Signed-off-by: Minkyu Kang > --- >  MAINTAINERS |   22 +++--- >  1 files changed, 11 insertions(+), 11 deletions(-) > Please apply this patch to arm tree. Or, please give your opinion. Thanks Minkyu Kang

[U-Boot] [PATCH] SAMSUNG: make s5p common gpio functions

2010-03-24 Thread Minkyu Kang
Because of s5pc1xx gpio is same as s5p seires SoC, move gpio functions to drvier/gpio/ and modify structure's name from s5pc1xx_ to s5p_. Signed-off-by: Minkyu Kang --- cpu/arm_cortexa8/s5pc1xx/Makefile |1 - cpu/arm_cortexa8/s5pc1xx/gpio.c | 143 -- dr

[U-Boot] [PATCH] SAMSUNG: serial: modify name from s5pc1xx to s5p

2010-03-24 Thread Minkyu Kang
Because of other s5p series SoC will use these serial functions, modify function's name and structure's name. Signed-off-by: Minkyu Kang --- common/serial.c | 16 ++-- drivers/serial/Makefile |2 +- drivers/serial/serial_s5p.c

Re: [U-Boot] [PATCH] SAMSUNG: make s5p common gpio functions

2010-03-25 Thread Minkyu Kang
On 24 March 2010 17:41, Minkyu Kang wrote: > Because of s5pc1xx gpio is same as s5p seires SoC, > move gpio functions to drvier/gpio/ > and modify structure's name from s5pc1xx_ to s5p_. > > Signed-off-by: Minkyu Kang > --- >  cpu/arm_cortexa8/s5pc1xx/Makefile   |

Re: [U-Boot] [PATCH] SAMSUNG: serial: modify name from s5pc1xx to s5p

2010-03-25 Thread Minkyu Kang
On 24 March 2010 17:41, Minkyu Kang wrote: > Because of other s5p series SoC will use these serial functions, > modify function's name and structure's name. > > Signed-off-by: Minkyu Kang > --- >  common/serial.c                     |   16 ++-- >  drivers/ser

Re: [U-Boot] [PATCH 4/4] s5p6442: Add support SMDK6442 board

2010-03-28 Thread Minkyu Kang
Dear Joonyoung Shim, On 29 March 2010 11:56, Joonyoung Shim wrote: > This patch adds the new board SMDK6442 that uses s5p6442 SoC. > > Cc: Minkyu Kang > Cc: Kyungmin Park > Signed-off-by: Joonyoung Shim > --- >  MAKEALL                              

Re: [U-Boot] [PATCH 3/4] s5p6442: Support serial driver

2010-03-28 Thread Minkyu Kang
Dear Joonyoung Shim, On 29 March 2010 11:56, Joonyoung Shim wrote: > This patch is for serial support of s5p6442 SoC. > > Cc: Minkyu Kang > Cc: Kyungmin Park > Signed-off-by: Joonyoung Shim > --- >  common/serial.c             |    2 +- >  drivers/serial/Makefile

Re: [U-Boot] [PATCH 1/4] s5p6442: Support Samsung s5p6442 SoC

2010-03-28 Thread Minkyu Kang
Dear Joonyoung Shim, On 29 March 2010 11:56, Joonyoung Shim wrote: > This patch adds support s5p6442 SoC. The s5p6442 SoC is ARM1176 > processor. > > Cc: Minkyu Kang > Cc: Kyungmin Park > Signed-off-by: Joonyoung Shim > --- >  cpu/arm1176/s5p64xx/Makefile        

Re: [U-Boot] [PATCH 1/4] s5p6442: Support Samsung s5p6442 SoC

2010-03-30 Thread Minkyu Kang
Dear Wolfgang Denk, On 31 March 2010 06:00, Wolfgang Denk wrote: > Dear Joonyoung Shim, > > In message <4bb016dc.5000...@samsung.com> you wrote: >> This patch adds support s5p6442 SoC. The s5p6442 SoC is ARM1176 >> processor. >> >> Cc: Minkyu Kang

Re: [U-Boot] [PATCH] mmc: modified calculated mmc-capacity & set mmc trans_speed

2010-04-08 Thread Minkyu Kang
card's trans_speed. > > > Signed-off-by: Jaehoon Chung > > --- >  drivers/mmc/mmc.c |   13 - >  1 files changed, 8 insertions(+), 5 deletions(-) > I tested it on SMDK board. It works fine. Tested-by: Minkyu Kang Than

[U-Boot] Please pull u-boot-samsung/master

2010-04-13 Thread Minkyu Kang
Dear Tom, The following changes since commit 45e565337a90bbca0c1bb712b5e008b7c0b18bd5: Minkyu Kang (1): Merge branch 'master' of git://git.denx.de/u-boot-arm are available in the git repository at: git://git.denx.de/u-boot-samsung master Minkyu Kang (2): SAMSUNG

<    3   4   5   6   7   8   9   10   11   12   >