Re: [U-Boot] [PATCH] MAINTAINERS: add me as a maintainer of UBI

2014-11-18 Thread Kyungmin Park
On Tuesday, November 18, 2014, Stefan Roese s...@denx.de wrote: On 18.11.2014 09:08, Heiko Schocher wrote: Add me for UBI custodian. Signed-off-by: Heiko Schocher h...@denx.de Acked-by: Stefan Roese s...@denx.de Acked-by: Kyungmin Park kyungmin.p...@samsung.com Thanks, Stefan

Re: [U-Boot] [PATCH 2/2] usb: gadget: Use unaligned access for wMaxPacketSize

2013-05-13 Thread Kyungmin Park
, good job! Acked-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Vivek Gautam gautam.vi...@samsung.com Cc: Lukasz Majewski l.majew...@samsung.com Cc: Piotr Wilczek p.wilc...@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Lukasz Dalek luk0...@gmail.com Cc: Marek Vasut

Re: [U-Boot] [PATCH 2/2] SPL: ONENAND: Support SPL to boot u-boot from OneNAND.

2013-02-05 Thread Kyungmin Park
these. Thank you, Kyungmin Park + + debug(spl: onenand\n); + + /*use CONFIG_SYS_TEXT_BASE as temporary storage area */ + header = (struct image_header *)(CONFIG_SYS_TEXT_BASE); + /* Load u-boot */ + onenand_spl_load_image(CONFIG_SYS_ONENAND_U_BOOT_OFFS

Re: [U-Boot] [PATCH 1/4] SMDK5250: Convert lowlevel_init.S to lowlevel_init_c.c

2013-01-01 Thread Kyungmin Park
Hi, On 1/2/13, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi Kyungmin Park, Thank you for comments. On Mon, Dec 31, 2012 at 6:02 PM, Kyungmin Park kmp...@infradead.org wrote: On Fri, Dec 28, 2012 at 9:08 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch converts

Re: [U-Boot] [PATCH 1/4] SMDK5250: Convert lowlevel_init.S to lowlevel_init_c.c

2013-01-01 Thread Kyungmin Park
On 1/2/13, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi Kyungmin Park, On Wed, Jan 2, 2013 at 11:48 AM, Kyungmin Park kmp...@infradead.org wrote: Hi, On 1/2/13, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi Kyungmin Park, Thank you for comments. On Mon, Dec 31, 2012

Re: [U-Boot] [PATCH 1/4] SMDK5250: Convert lowlevel_init.S to lowlevel_init_c.c

2012-12-31 Thread Kyungmin Park
+ * + * @return 0 for a normal boot, non-zero for a resume + */ +int lowlevel_init_subsystems(void); do_lowlevle_init? Thank you, Kyungmin Park #endif diff --git a/board/samsung/smdk5250/spl_boot.c b/board/samsung/smdk5250/spl_boot.c index d8f3c1e..66bce5b 100644 --- a/board/samsung

Re: [U-Boot] [PATCH V3 1/9] FDT: Add compatible string for DWMMC

2012-12-31 Thread Kyungmin Park
, /* Exynos5 DWMMC controller */ You already know that exynos4 series also have DWMMC controller and it's strange to use this value at exynos4 series. so can you use 'SAMSUNG_EXYNOS_DWMMC'? Thank you, Kyungmin Park COMPAT_COUNT, }; diff --git a/lib/fdtdec.c b/lib/fdtdec.c index

Re: [U-Boot] [PATCH V4 4/4] EXYNOS5: Add support for FIMD and DP

2012-12-21 Thread Kyungmin Park
); + + /* Set Hotplug detect for DP */ + s5p_gpio_cfg_pin(gpio1-x0, 7, GPIO_FUNC(0x3)); +} Cant this GPIO changes go to pinmux file? No it's smdk5250 specific. Other board has different GPIOs. Thank you, Kyungmin Park + +vidinfo_t panel_info = { + .vl_freq

Re: [U-Boot] [PATCH 2/2] EXYNOS5: Add gpio pin numbering feature

2012-12-12 Thread Kyungmin Park
., EXYNOS5250_*. Since only exynos5250 is mainlined at this time. Thank you, Kyungmin Park Signed-off-by: Leela Krishna Amudala l.kris...@samsung.com Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com --- arch/arm/cpu/armv7/exynos/pinmux.c | 148 + arch/arm/include/asm/arch

Re: [U-Boot] [PATCH 2/5] EXYNOS5: Add pinmux for LCD

2012-12-12 Thread Kyungmin Park
(gpio1-x0, 7, GPIO_FUNC(0x3)); It should be SMDK5250 specific codes, it can't located at common file. Thank you, Kyungmin Park +} + static int exynos5_pinmux_config(int peripheral, int flags) { switch (peripheral) { @@ -321,6 +338,9 @@ static int exynos5_pinmux_config(int peripheral

Re: [U-Boot] [PATCH 1/2] EXYNOS5: Add pinmux for VBus

2012-12-03 Thread Kyungmin Park
*/ + s5p_gpio_direction_output(gpio1-x2,6, 1); it seems to be board specific GPIO value. doesn't it? Thank you, Kyungmin Park +} + static int exynos5_pinmux_config(int peripheral, int flags) { switch (peripheral) { @@ -322,6 +330,8 @@ static int exynos5_pinmux_config(int peripheral

Re: [U-Boot] [PATCH 1/2] EXYNOS5: Add pinmux for VBus

2012-12-03 Thread Kyungmin Park
On Mon, Dec 3, 2012 at 10:38 PM, Rajeshwari Birje rajeshwari.bi...@gmail.com wrote: Hi Kyungmin Park, On Mon, Dec 3, 2012 at 7:00 PM, Kyungmin Park kmp...@infradead.org wrote: On Mon, Dec 3, 2012 at 10:18 PM, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patch sets pinmux for VBus

Re: [U-Boot] [PATCH] EXYNOS: Add L2 Cache Support.

2012-11-29 Thread Kyungmin Park
v7_outer_cache_enable(void) +{ if (soc_is_exynos5250()) + exynos5_set_l2cache_params(); Since it's not working at exynos4 Thank you, Kyungmin Park +} +#endif + -- 1.7.4.4 ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

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

2012-11-22 Thread Kyungmin Park
Hi, On Thu, Nov 22, 2012 at 10:41 PM, Vasanth Ananthan vasanthanant...@gmail.com wrote: This patch adds the macro definition of SATA controller and PHY controller base addresses. Signed-off-by: Vasanth Ananthan vasant...@samsung.com --- arch/arm/include/asm/arch-exynos/cpu.h|3 +++

Re: [U-Boot] [PATCH] arm: trats: Power down core 1

2012-10-09 Thread Kyungmin Park
FYI: Piotr and Lukasz are working together for samsung board. Minkyu, can you pick up this patch? Thank you, Kyungmin Park -Original Message- From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] Sent: Wednesday, October 10, 2012 2:07 AM To: Piotr Wilczek Cc: u-boot@lists.denx.de

Re: [U-Boot] u-boot/master slight regression with trats

2012-10-02 Thread Kyungmin Park
- I posses one and I actively develop and test code for it. No problem with that. Acked-by: Kyungmin Park kyungmin.p...@samsung.com Note that Mr. Kim left the company and Lukasz can take over trats board support. Thank you, Kyungmin Park -- Best regards, Lukasz Majewski Samsung Poland RD

Re: [U-Boot] [PATCH 3/4] EXYNOS: additional Exynos4 SoC series support

2012-08-28 Thread Kyungmin Park
EXYNOS4_GPIO_PART4_BASE DEVICE_NOT_AVAILABLE int exynos4_get_gpio_part4_base(void) { if (cpu_is_exynos4412()) return EXYNOS4412_GPIO_PART4_BASE; return EXYNOS4_GPIO_PART4_BASE; } Thank you, Kyungmin Park #define EXYNOS4_DP_BASE DEVICE_NOT_AVAILABLE /* EXYNOS5 */ diff

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

2012-08-09 Thread Kyungmin Park
On 8/10/12, Wolfgang Denk w...@denx.de wrote: Dear Donghwa Lee, In message 4fa08f0a.6040...@samsung.com you wrote: This patch manipulates GUID Papartition Tables. I send this patch on behalf of Gwuieon Jin. Signed-off-by: Gwuieon Jin ge@samsung.com Signed-off-by: Kyungmin Park

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

2012-05-14 Thread Kyungmin Park
On 5/14/12, Mike Frysinger vap...@gentoo.org wrote: On Monday 14 May 2012 01:37:10 Kyungmin Park wrote: On 5/14/12, Mike Frysinger vap...@gentoo.org wrote: On Thursday 10 May 2012 01:23:40 Donghwa Lee wrote: Makefile |1 + include/libtizen.h | 30

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

2012-05-13 Thread Kyungmin Park
, where are the boards that actually use this ? board/samsung/trats uses this logo. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/5] exynos5: Add system register structure

2012-05-02 Thread Kyungmin Park
+ Minkyu, On 5/3/12, Marek Vasut ma...@denx.de wrote: Dear Rajeshwari Shinde, This patch add structure for SYSREG. Ccing Minkyu. Can I get your opinion on these patches please? Signed-off-by: Che-Liang Chiou clch...@chromium.org Signed-off-by: Rajeshwari Shinde rajeshwar...@samsung.com

Re: [U-Boot] [PATCH 0/5] exynos5: usb: Enable USB 2.0 support

2012-05-02 Thread Kyungmin Park
Hi, Can you share the purpose of USB host support at bootloader? Just curious. Thank you, Kyungmin Park On 5/2/12, Rajeshwari Shinde rajeshwar...@samsung.com wrote: This patchset series adds support to enable USB 2.0 on smdk5250. It includes addition of system and power management registers

Re: [U-Boot] [PATCH 2/2] cmd_fat: add FAT write command

2012-03-26 Thread Kyungmin Park
Acked-by: Kyungmin Park kyungmin.p...@samsung.com Maybe some debug codes are included. On 3/26/12, Anatolij Gustschin ag...@denx.de wrote: On Mon, 26 Mar 2012 09:34:07 +0900 Kyungmin Park kyungmin.p...@samsung.com wrote: ... Hmm, emails to dg77@samsung.com address are now rejected

Re: [U-Boot] [PATCH 2/2] cmd_fat: add FAT write command

2012-03-25 Thread Kyungmin Park
://article.gmane.org/gmane.comp.boot-loaders.u-boot/121847 Reported-by: Donggeun Kim dg77@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com --- README |8 +- common/cmd_fat.c | 57 ++ 2 files changed, 63 insertions(+), 2

Re: [U-Boot] [PATCH] EXYNOS: Rename exynos5_tzpc structure to s5p_tzpc

2012-03-14 Thread Kyungmin Park
' is preferable. Even though each SOC has different number of tzpc. It can be covered one exynos_tzpc. or we can define it for each SoC. Thank you, Kyungmin Park        unsigned int r0size;        char res1[0x7FC];        unsigned int decprot0stat; diff --git a/board/samsung/smdk5250/tzpc_init.c

Re: [U-Boot] OneNAND custodian (was: Re: [RESEND 0/4] onenand: OneNAND board dependent probe and fixes for Samsung targets)

2012-03-06 Thread Kyungmin Park
this patches. Next time, Mr. Kang handle both samsung and onenand together. How do you think? Thank you, Kyungmin Park -Scott ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 0/4] Add SMDK5250 board support

2012-01-09 Thread Kyungmin Park
size limitation. Thank you, Kyungmin Park Regards, Simon board/samsung/smdk5250/mmc_boot.c | 58 +++ board/samsung/smdk5250/smdk5250.c | 125 + board/samsung/smdk5250/smdk5250_setup.h | 589 board/samsung/smdk5250/tools

Re: [U-Boot] [PATCH v2] S5PC2XX: Rename S5pc2XX to exynos4

2011-11-25 Thread Kyungmin Park
Hi, New Cortex-A15 also uses the armv7. So it's better to use the exynos itself. Just remove the number 4. Thank you, Kyungmin Park On 11/25/11, Chander Kashyap chander.kash...@linaro.org wrote: As per new conventions Samsung SoC's are named as Exynos. Cortex-A9 based Soc's are named

Re: [U-Boot] [PATCH 1/4] onenand:samsung Target dependent OneNAND chip probe function

2011-11-20 Thread Kyungmin Park
...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- ./tools/checkpatch.pl - total: 0 errors, 0 warnings, 108 lines checked NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE --- drivers/mtd/onenand/onenand_base.c | 43

Re: [U-Boot] [PATCH 3/4 V2] OneNAND: Add simple OneNAND SPL

2011-11-02 Thread Kyungmin Park
Hi all, Marek, did you see the onenand_ipl/onenand_read.c at u-boot? It's already implemented and used for OneNAND boot. How do you think migrate this file into generic SPL framework? Thank you, Kyungmin Park -Original Message- From: Marek Vasut [mailto:marek.va...@gmail.com] Sent

Re: [U-Boot] [PATCH] ubifs bad superblock bug

2011-10-04 Thread Kyungmin Park
-by: Lars Poeschel la...@wh2.tu-dresden.de Cc: Kyungmin Park kmp...@infradead.org --- The message I got before u-boot freezes: UBI: max/mean erase counter: 53/32 UBIFS: mounted UBI device 0, volume 1, name rootfs UBIFS: mounted read-only UBIFS: file system size:   49140 bytes (50319360 KiB, 0 MiB

Re: [U-Boot] How to use the NEON instruction at u-boot?

2010-11-11 Thread Kyungmin Park
2010/11/11 Måns Rullgård m...@mansr.com: Kyungmin Park kmp...@infradead.org writes: Hi, Now I'm trying to use the NEON instruction at u-boot. but it's failed and got the data abort. Are there any way to use the NEON instruction at u-boot? No, just like you can't use floating-point. I

Re: [U-Boot] How to use the NEON instruction at u-boot?

2010-11-11 Thread Kyungmin Park
On Thu, Nov 11, 2010 at 5:58 PM, V, Aneesh ane...@ti.com wrote: Hi Kyungmin Park, -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot- boun...@lists.denx.de] On Behalf Of Kyungmin Park Sent: Thursday, November 11, 2010 11:05 AM To: u-boot@lists.denx.de Cc: Minkyu

[U-Boot] How to use the NEON instruction at u-boot?

2010-11-10 Thread Kyungmin Park
vld4.8 {d0[0], d1[0], d2[0], d3[0]}, [r1]! vst4.8 {d0[0], d1[0], d2[0], d3[0]}, [r0, :32]! 1: bcc 2f Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCHv3 1/3] mtd: OneNAND: add support for OneNAND manufactured by Numonyx

2010-10-10 Thread Kyungmin Park
Acked-by: Kyungmin Park kyungmin.p...@samsung.com On Mon, Oct 11, 2010 at 7:12 AM, Enric Balletbo i Serra eballe...@gmail.com wrote: This patch adds the Numonyx manufacturer code (0x20) to onenand manufacturers. Signed-off-by: Enric Balletbo i Serra eballe...@gmail.com ---  drivers/mtd

Re: [U-Boot] [PATCH 1/4] OneNAND: Move largepage_memorybased

2010-10-04 Thread Kyungmin Park
Hi, I tested it with the latest u-boot codes. and without OneNAND patch, it's boot and working well. Of course I used the relocation method at u-boot. Thank you, Kyungmin Park On Tue, Oct 5, 2010 at 7:31 AM, Marek Vasut marek.va...@gmail.com wrote: Dne Po 4. října 2010 23:18:51 Scott Wood

Re: [U-Boot] [PATCH 4/4] OneNAND: Use generic_onenand_read_page in IPL

2010-10-03 Thread Kyungmin Park
Hi, No it's used another place. that's reason not static function pointer. I'll update it soon. Thank you, Kyungmin Park On Sun, Oct 3, 2010 at 2:33 AM, Marek Vasut marek.va...@gmail.com wrote: There apparantly is no reason for having onenand_read_page abstracted. Besides, it's static data

Re: [U-Boot] [PATCH 3/4] OneNAND: Introduce CONFIG_SYS_IPL_LOAD_ADDR

2010-10-03 Thread Kyungmin Park
Acked-by: Kyungmin Park kyungmin.p...@samsung.com On Sun, Oct 3, 2010 at 2:33 AM, Marek Vasut marek.va...@gmail.com wrote: This allows to specify where the OneNAND IPL should load the U-Boot binary. The purpose of CONFIG_SYS_LOAD_ADDR is different I believe. On PXA, this is needed

Re: [U-Boot] [PATCH 4/4] OneNAND: Use generic_onenand_read_page in IPL

2010-10-03 Thread Kyungmin Park
. It's the reason do you need to fixup. I'll prepare the patches to fix this issue. So don't delete the codes. Thank you, Kyungmin Park -Original Message- From: Marek Vasut [mailto:marek.va...@gmail.com] Sent: Monday, October 04, 2010 8:34 AM To: Kyungmin Park Cc: u-boot@lists.denx.de

Re: [U-Boot] [PATCH] LZO: Add a LZO compression feature

2010-10-01 Thread Kyungmin Park
at: + *  http://www.oberhumer.com/opensource/lzo/ + * + *  Changed for kernel use by: + *  Nitin Gupta nitingupta...@gmail.com + *  Richard Purdie rpur...@openedhand.com + */ What exactly are the licensing terms? It's from kernel code. do you want to add the GPL v2? Thank you, Kyungmin Park Best

Re: [U-Boot] [PATCH] LZO: Add a LZO compression feature

2010-10-01 Thread Kyungmin Park
On Fri, Oct 1, 2010 at 10:54 PM, Wolfgang Denk w...@denx.de wrote: Dear Kyungmin Park, In message aanlkti=hnkqfunozmrwgg_=ghjor6efigwwukggzc...@mail.gmail.com you wrote: There's request from other team. They want to transfer the binary but it's written as ubifs filesystem. So download

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Kyungmin Park
address. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Kyungmin Park
spl/onenand spl/mmc spl/board Good, and use the CONFIG_PRELOADER as existing. but what's the SPL stand for? SPL (secondary program loader)? Thank you, Kyungmin Park ... Comments welcome. Cheers, Stefan -- DENX Software Engineering GmbH,      MD: Wolfgang Denk Detlev Zundel HRB 165235

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Kyungmin Park
program loader. OneNAND IPL ues the symlink method and compile the code only when CONFIG_PRELOADER is defined. you can find it at arm/*/start.S. As I remover arm1176 and armv7 support it. Thank you, Kyungmin Park Since the directory structure, the build system and flow of xloader is similar

Re: [U-Boot] Multiple binaries built through u-boot source

2010-09-14 Thread Kyungmin Park
On Tue, Sep 14, 2010 at 11:26 PM, Stefan Roese s...@denx.de wrote: Hi Kyungmin, On Tuesday 14 September 2010 16:18:00 Kyungmin Park wrote: This looks promising. However, our SPL has to load u-boot from MMC. Is it OK to keep it under nand_spl directory or should we create something like

Re: [U-Boot] USB CDC branch

2010-07-14 Thread Kyungmin Park
). CDC works much more stable, and much more faster compared to rndis. We also implemented the CDC and RNDIS on our board and working well. If you merge your usb gadget tree then we will send the patches also. To Minkyu, Can you prepare the patches and send to u-boot? Thank you, Kyungmin Park

Re: [U-Boot] U-boot: Beagle board as a USB Mass Storage Device Class

2010-06-11 Thread Kyungmin Park
it. Thank you, Kyungmin Park I have seen below page with the same proposal from Mike. http://elinux.org/CELF_Project_Proposal/Add_DFU_support_to_U-Boot Mike, Are you working on this? Regards, Ajay Cheers   Detlev -- It's very important  that you sleep because that's  when your brain

Re: [U-Boot] UBI: initialise update marker

2010-06-11 Thread Kyungmin Park
Deal all, Sent. Thank you, Kyungmin Park On Sat, Jun 12, 2010 at 4:32 AM, Wolfgang Denk w...@denx.de wrote: Dear Kyungmin Stefan,K In message aanlktikrmmd7hb6j8veb5xycp5rfy7rswpxxcbp3n...@mail.gmail.com Karl Beldan wrote: I suggest someone apply commit ff99879 from Linux. I think

[U-Boot] [PATCH] UBI: initialise update marker

2010-06-11 Thread Kyungmin Park
functionality was broken. Signed-off-by: Peter Horton z...@colonel-panic.org Signed-off-by: Artem Bityutskiy artem.bityuts...@nokia.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/drivers/mtd/ubi/vtbl.c b/drivers/mtd/ubi/vtbl.c index 1afc61e..4004402 100644 --- a/drivers

[U-Boot] [PATCH] UBI: initialise update marker

2010-06-11 Thread Kyungmin Park
functionality was broken. Signed-off-by: Peter Horton z...@colonel-panic.org Signed-off-by: Artem Bityutskiy artem.bityuts...@nokia.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/drivers/mtd/ubi/vtbl.c b/drivers/mtd/ubi/vtbl.c index 1afc61e..4004402 100644 --- a/drivers/mtd

Re: [U-Boot] Support similar boards at same board file?

2010-05-25 Thread Kyungmin Park
Hi, My bet is goni. Since it's new GPIO based board. Thank you, Kyungmin Park -Original Message- From: Minkyu Kang [mailto:proms...@gmail.com] Sent: Tuesday, May 25, 2010 12:38 PM To: Wolfgang Denk Cc: u-boot@lists.denx.de; 박경민 Subject: Re: Support similar boards at same board

Re: [U-Boot] RFC: U-Boot OneNAND IPL TEXT_BASE

2010-05-02 Thread Kyungmin Park
On Sun, May 2, 2010 at 3:39 PM, Marek Vasut marek.va...@gmail.com wrote: Dne Ne 2. května 2010 05:54:41 Kyungmin Park napsal(a): Hi, Which CPU do you use? In most ARM cpu, CPU load the IPL into its internal SRAM, and runs at here. PXA270 ... the BootRAM is mapped to 0x0 and the code runs

Re: [U-Boot] RFC: U-Boot OneNAND IPL TEXT_BASE

2010-05-01 Thread Kyungmin Park
#define ONENAND_IPL_TEXT_BASE BOARD_IPL_TEXT_BASE #endif load IPL code ONENAND_IPL_TEXT_BASE instead of current code. Thank you, Kyungmin Park On Sat, May 1, 2010 at 11:48 AM, Marek Vasut marek.va...@gmail.com wrote: Hey, I've been tinkering with OneNAND IPL in uboot. I found out it wan't to load

Re: [U-Boot] Custodian for SMDK 6410, 6400, C100 and C110 boards

2010-01-11 Thread Kyungmin Park
Hi, We got the several samsung SoC board, just send your patch and can test it with our board And current samsung SoC maintainer for u-boot is Minkyu Kang. Thank you, Kyungmin Park. On Mon, Jan 11, 2010 at 7:50 PM, Naveen Krishna Ch naveenkrishna...@gmail.com wrote: Hi Liakhovetski, I

Re: [U-Boot] [PATCH 1/3] [OneNAND] Flex-OneNAND driver support

2009-11-04 Thread Kyungmin Park
H Scott, If you you don't mind, I'm okay to this patch. Can you merge it? Thank you, Kyungmin Park On Wed, Nov 4, 2009 at 2:00 PM, Amul Kumar Saha amul.s...@samsung.com wrote: Hi Scott, +static loff_t flexonenand_addr(struct onenand_chip *this, int block) +{ + loff_t ofs = 0; + int die

Re: [U-Boot] [PATCH] OneNAND partial read/write support

2009-10-20 Thread Kyungmin Park
On Wed, Oct 21, 2009 at 7:48 AM, Scott Wood scottw...@freescale.com wrote: On Mon, Oct 12, 2009 at 04:27:10PM +0900, Kyungmin Park wrote: Now OneNAND handles block operation only. With this patch OneNAND handles all read/write size. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

[U-Boot] [PATCH] OneNAND partial read/write support

2009-10-12 Thread Kyungmin Park
Now OneNAND handles block operation only. With this patch OneNAND handles all read/write size. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/common/cmd_onenand.c b/common/cmd_onenand.c index 9090940..2b8f01b 100644 --- a/common/cmd_onenand.c +++ b/common/cmd_onenand.c

Re: [U-Boot] [PATCH] Reduce apollon OneNAND IPL code

2009-10-12 Thread Kyungmin Park
On Tue, Oct 13, 2009 at 1:48 AM, Scott Wood scottw...@freescale.com wrote: On Mon, Oct 12, 2009 at 09:17:49AM +0900, Kyungmin Park wrote: After OneNAND IPL updated, apollon boot code exceeds 1KiB size, This patch reduces the apollon boot code Signed-off-by: Kyungmin Park kyungmin.p

Re: [U-Boot] [PATCH] OneNAND partial read/write support

2009-10-12 Thread Kyungmin Park
Hi, If you use the gmail, Select the raw message, and copy and paste Others are similar. Don't copy html format to your text file. Thank you, Kyungmin Park On Mon, Oct 12, 2009 at 5:51 PM, Tuma chernigovs...@spb.gs.ru wrote: Hi, Kyungmin Park! Thank you for patch! But I have a question - how

Re: [U-Boot] OneNAND operations.

2009-10-09 Thread Kyungmin Park
Sorry for late reply. At current implementation. only block write supported. Of course, I wrote the partial write. I will post the latest patches. Sorry. Please wait until next Monday Thank you, Kyungmin Park On Thu, Oct 8, 2009 at 6:10 PM, Tuma chernigovs...@spb.gs.ru wrote: Hello, All! My

[U-Boot] [PATCH] [OneNAND IPL] OneNAND board init support

2009-10-06 Thread Kyungmin Park
Some Samsung SoCs, s3c64xx, s5pc100 has own OneNAND controller and different OneNAND access method. To support this, each board has own init and set onenand_read_page for it. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/onenand_read.c b/onenand_ipl

Re: [U-Boot] [PATCH] [OneNAND IPL] OneNAND board init support

2009-10-06 Thread Kyungmin Park
) { pagesize = 4096; /* OneNAND has 4KiB pagesize */ On Wed, Oct 7, 2009 at 10:24 AM, Kyungmin Park kmp...@infradead.org wrote: Some Samsung SoCs, s3c64xx, s5pc100 has own OneNAND controller and different OneNAND access method. To support this, each board has own init and set

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

2009-09-23 Thread Kyungmin Park
@samsung.com --- snip +#ifndef CONFIG_ONENAND_IPL +     /* setting SRAM */ +     ldr     r0, =S5PC100_SROMC_BASE +     ldr     r1, =0x9 +     str     r1, [r0] +#endif Where is CONFIG_ONENAND_IPL defined ? If it is not being used, the #ifndef logic should be reduced. Kyungmin Park sent

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

2009-09-23 Thread Kyungmin Park
On Wed, Sep 23, 2009 at 7:49 PM, Minkyu Kang proms...@gmail.com wrote: Dear Tom. 2009/9/22 Tom tom@windriver.com: Minkyu Kang wrote: This patch includes the onenand driver for s5pc100 Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

Re: [U-Boot] [PATCH] [OneNAND IPL] OneNAND board init support

2009-09-21 Thread Kyungmin Park
On Tue, Sep 22, 2009 at 1:15 AM, Scott Wood scottw...@freescale.com wrote: On Sat, Sep 19, 2009 at 10:32:30AM +0900, Kyungmin Park wrote: On Sat, Sep 19, 2009 at 4:26 AM, Scott Wood scottw...@freescale.com wrote: On Sat, Aug 29, 2009 at 01:00:59PM +0900, Kyungmin Park wrote:  #define

[U-Boot] [PATCH] [OneNAND IPL] Refactor OneNAND IPL code

2009-09-21 Thread Kyungmin Park
Refactoring the OneNAND IPL code and some minor fixed: - Remove unnecessary header file - Fix wrong access at read interrupt - The recent OneNAND has 4KiB pagesize Also Board can override OneNAND IPL image Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com diff --git a/Makefile b/Makefile

Re: [U-Boot] [PATCH] [OneNAND] Board can override OneNAND IPL image

2009-09-18 Thread Kyungmin Park
On Sat, Sep 19, 2009 at 4:37 AM, Scott Wood scottw...@freescale.com wrote: On Wed, Sep 02, 2009 at 06:05:03PM +0900, Kyungmin Park wrote: Some board use more then 2KiB OneNAND IPL. E.G., S5PC100 loads 16KiB OneNAND IPL Why do we need a different image name based on how large the loader

Re: [U-Boot] [PATCH] [OneNAND IPL] OneNAND board init support

2009-09-18 Thread Kyungmin Park
On Sat, Sep 19, 2009 at 4:26 AM, Scott Wood scottw...@freescale.com wrote: On Sat, Aug 29, 2009 at 01:00:59PM +0900, Kyungmin Park wrote:  #define READ_INTERRUPT()                                                \ -     onenand_readw(THIS_ONENAND(ONENAND_REG_INTERRUPT

Re: [U-Boot] Flashing images bigger than ram

2009-09-15 Thread Kyungmin Park
the code. it's better to understand. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2009-09-06 Thread Kyungmin Park
internal security policy it's hard to use ssh on u-boot git. so we want to use u-boot-arm as base. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2009-09-04 Thread Kyungmin Park
board for s5pc100 s5pc110. He will be modify it. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2009-09-04 Thread Kyungmin Park
On Fri, Sep 4, 2009 at 7:45 PM, Dirk Behmedirk.be...@googlemail.com wrote: Kyungmin Park wrote: Hi, As he goes to home, I reply it instead. Nice weekend then :) On Fri, Sep 4, 2009 at 5:43 PM, Dirk Behmedirk.be...@googlemail.com wrote: Dear Minkyu Kang, Minkyu Kang wrote: Current

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

2009-09-04 Thread Kyungmin Park
Hi, On Fri, Sep 4, 2009 at 7:44 PM, Wolfgang Denkw...@denx.de wrote: Dear Minkyu Kang, In message 4aa0ce3f.60...@samsung.com you wrote: This patch includes the onenand driver for s5pc1xx Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com

[U-Boot] [PATCH] [OneNAND] Board can override OneNAND IPL image

2009-09-02 Thread Kyungmin Park
Some board use more then 2KiB OneNAND IPL. E.G., S5PC100 loads 16KiB OneNAND IPL diff --git a/Makefile b/Makefile index c9727f8..1af42ce 100644 --- a/Makefile +++ b/Makefile @@ -285,6 +285,7 @@ endif ifeq ($(CONFIG_ONENAND_U_BOOT),y) ONENAND_IPL = onenand_ipl U_BOOT_ONENAND =

[U-Boot] [PATCH] [OneNAND IPL] OneNAND board init support

2009-08-28 Thread Kyungmin Park
pagesize Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/onenand_boot.c b/onenand_ipl/onenand_boot.c index 63995ce..22baebb 100644 --- a/onenand_ipl/onenand_boot.c +++ b/onenand_ipl/onenand_boot.c @@ -24,7 +24,6 @@ */ #include common.h -#include version.h

Re: [U-Boot] [PATCH 6/6] S5PC100: Add onenand_ipl for SMDKC100 support

2009-07-31 Thread Kyungmin Park
in case of s5pc100. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] OneNAND: S5PC100 OneNAND IPL support

2009-07-28 Thread Kyungmin Park
On Tue, Jul 28, 2009 at 10:42 PM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 07:58 Tue 28 Jul     , Kyungmin Park wrote: On Tue, Jul 28, 2009 at 5:09 AM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 14:28 Fri 24 Jul     , Kyungmin Park wrote: On Fri

Re: [U-Boot] [PATCH] OneNAND: S5PC100 OneNAND IPL support

2009-07-27 Thread Kyungmin Park
On Tue, Jul 28, 2009 at 5:09 AM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 14:28 Fri 24 Jul     , Kyungmin Park wrote: On Fri, Jul 24, 2009 at 7:42 AM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 09:55 Tue 21 Jul     , Kyungmin Park wrote: S5PC100

Re: [U-Boot] ubi attaching error (UBI error: ubi_read_volume_table)

2009-07-24 Thread Kyungmin Park
0x20 # ubi part ubifs Thank you, Kyungmin Park On Thu, Jul 23, 2009 at 11:57 PM, naveen yadavyad.nav...@gmail.com wrote: Hi All, I am using flex-onenand for my u-boot. i have added the patch for flex-onenand and UBI and UBIFS published by kyungmin park. I have done following steps: 1

Re: [U-Boot] [PATCH] OneNAND: S5PC100 OneNAND IPL support

2009-07-23 Thread Kyungmin Park
On Fri, Jul 24, 2009 at 7:42 AM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 09:55 Tue 21 Jul     , Kyungmin Park wrote: S5PC100 has own OneNAND controller and has different interface. OneNAND IPL use it to S5PC100 board. Signed-off-by: Kyungmin Park kyungmin.p

[U-Boot] [PATCH] OneNAND: Runtime badblock support

2009-07-21 Thread Kyungmin Park
At bootloader, we don't need to read full page. It takes too long time. Instead it only read pages required for boot. Of course, this patch reduces the boot time Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/drivers/mtd/onenand/onenand_bbt.c b/drivers/mtd/onenand

Re: [U-Boot] [PATCH] OneNAND: Runtime badblock support

2009-07-21 Thread Kyungmin Park
Hi, On Tue, Jul 21, 2009 at 7:50 PM, Wolfgang Denkw...@denx.de wrote: Dear Kyungmin Park, In message 20090721095528.ga23...@july you wrote: At bootloader, we don't need to read full page. It takes too long time. Instead it only read pages required for boot. Of course, this patch reduces

Re: [U-Boot] [PATCH] OneNAND IPL: Move u-boot-onenand linker script to common use

2009-07-20 Thread Kyungmin Park
Hi, On Sun, Jul 12, 2009 at 9:58 PM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 17:10 Sat 11 Jul     , Kyungmin Park wrote: Use the common OneNAND linker script. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/board/apollon/u

[U-Boot] [PATCH] OneNAND: S5PC100 OneNAND IPL support

2009-07-20 Thread Kyungmin Park
S5PC100 has own OneNAND controller and has different interface. OneNAND IPL use it to S5PC100 board. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/onenand_ipl.h b/onenand_ipl/onenand_ipl.h index 412572a..b43ddfb 100644 --- a/onenand_ipl/onenand_ipl.h +++ b

Re: [U-Boot] [PATCH 6/6] S5PC100: Add onenand_ipl for SMDKC100 support

2009-07-20 Thread Kyungmin Park
On Tue, Jul 21, 2009 at 6:18 AM, Wolfgang Denkw...@denx.de wrote: Dear Kyungmin Park, In message 9c9fda240907192016i32c7312dh490629f2f2bb3...@mail.gmail.com you wrote:  /* read a page with ECC */  static inline int onenand_read_page(ulong block, ulong page

[U-Boot] [PATCH] OneNAND: Remove unused read_spareram

2009-07-20 Thread Kyungmin Park
Remove unused read_spareram and add unlock_all as kernel does Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/drivers/mtd/onenand/onenand_base.c b/drivers/mtd/onenand/onenand_base.c index d482437..368fa6e 100644 --- a/drivers/mtd/onenand/onenand_base.c +++ b/drivers/mtd

[U-Boot] [PATCH] [OneNAND] Fix compiler warnings after loff_t change

2009-07-19 Thread Kyungmin Park
Now 'env_addr' type is loff_t so use correct field type. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/common/env_onenand.c b/common/env_onenand.c index 476fdbc..dcf09de 100644 --- a/common/env_onenand.c +++ b/common/env_onenand.c @@ -101,7 +101,7 @@ int saveenv(void

Re: [U-Boot] env_onenand compiler warning

2009-07-19 Thread Kyungmin Park
Hi, Thank you for pointing compiler warning. I post the patch. Thank you, Kyungmin Park On Sun, Jul 19, 2009 at 3:47 PM, Dirk Behmedirk.be...@googlemail.com wrote: Testing recent mainline git head for omap3_evm_config I get compiler warning env_onenand.c: In function 'saveenv

Re: [U-Boot] [PATCH] ARM Cortex A8: Move OMAP3 specific reset handler

2009-07-19 Thread Kyungmin Park
Hi, It's already discussed. Actually it's required for adding new S5PC1xx series based on arm cortext8. Please apply it. Thank you, Kyungmin Park On Mon, Jul 20, 2009 at 11:40 AM, Minkyu Kangmk7.k...@samsung.com wrote: Because of the reset_cpu is soc specific, should be move to soc Cc: Dirk

Re: [U-Boot] [PATCH 6/6] S5PC100: Add onenand_ipl for SMDKC100 support

2009-07-19 Thread Kyungmin Park
= ONENAND_PAGES_PER_BLOCK * pagesize;       nblocks = (CONFIG_SYS_MONITOR_LEN + erasesize - 1) erase_shift; +#ifdef CONFIG_S5PC1XX +     nblocks = 1; +#endif Again: why do we need such board specific code here? It should be fixed. Thank you, Kyungmin Park ___ U-Boot

Re: [U-Boot] [PATCH] OneNAND IPL: Move u-boot-onenand linker script to common use

2009-07-12 Thread Kyungmin Park
Hi, On Sun, Jul 12, 2009 at 9:58 PM, Jean-Christophe PLAGNIOL-VILLARDplagn...@jcrosoft.com wrote: On 17:10 Sat 11 Jul     , Kyungmin Park wrote: Use the common OneNAND linker script. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/board/apollon/u

[U-Boot] [PATCH] MTD: OneNAND: Increase the environment size to 4KiB

2009-07-11 Thread Kyungmin Park
Also use mtd operatoin instead of onenand functions Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/common/env_onenand.c b/common/env_onenand.c index 48089a9..476fdbc 100644 --- a/common/env_onenand.c +++ b/common/env_onenand.c @@ -1,5 +1,5 @@ /* - * (C) Copyright 2005

[U-Boot] [PATCH] OneNAND IPL: Move u-boot-onenand linker script to common use

2009-07-11 Thread Kyungmin Park
Use the common OneNAND linker script. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/board/apollon/u-boot.onenand.lds b/onenand_ipl/u-boot-onenand.lds similarity index 100% rename from onenand_ipl/board/apollon/u-boot.onenand.lds rename to onenand_ipl/u-boot

[U-Boot] [PATCH] Apollon board use common OneNAND IPL linker

2009-07-11 Thread Kyungmin Park
Use common OneNAND IPL linker script. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- diff --git a/onenand_ipl/board/apollon/Makefile b/onenand_ipl/board/apollon/Makefile index 49a8e90..f0744f6 100644 --- a/onenand_ipl/board/apollon/Makefile +++ b/onenand_ipl/board/apollon/Makefile

Re: [U-Boot] [PATCH 4/6] S5PC100: onenand driver for SMDKC100 support

2009-06-27 Thread Kyungmin Park
NAKed this patch. next time Mr Kim will post the new OneNAND drivers Thank you, Kyungmin Park I don't understand OneNAND very well (and google doesn't turn up much but marketing), which makes including it under the same custodianship as NAND somewhat awkward. :-( diff --git a/drivers/mtd/onenand

Re: [U-Boot] [PATCH 5/6] S5PC100: MTD: change env_address type

2009-06-25 Thread Kyungmin Park
the accurate value of env_addr. Signed-off-by: HeungJun, Kim riverful@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] apollon: Fix a OBJCFLAGS typo

2009-06-10 Thread Kyungmin Park
Acked-by: Kyungmin Park kyungmin.p...@samsung.com -Original Message- From: Shinya Kuribayashi [mailto:skuri...@ruby.dti.ne.jp] Sent: Sunday, June 07, 2009 9:45 PM To: kyungmin.p...@samsung.com Cc: u-boot@lists.denx.de Subject: apollon: Fix a OBJCFLAGS typo Signed-off-by: Shinya

Re: [U-Boot] [PATCH 2/2] Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN

2009-05-06 Thread Kyungmin Park
Hi, Please apply this patch for fixing broken apollon build. Acked-by: Kyungmin Park kyungmin.p...@samsung.com On Mon, Mar 9, 2009 at 11:15 PM, Rohit Hagargundgi h.ro...@samsung.com wrote: Add CONFIG_SYS_MONITOR_LEN macro to apollon board config. CONFIG_SYS_MONITOR_LEN defines the U-Boot

Re: [U-Boot] [PATCH 1/2] Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN

2009-04-23 Thread Kyungmin Park
128KiB, Flex-OneNAND also can boot it. For simplicity How about to use block scheme? we always use block 0 for boot (IPL + u-boot) whatever block size. Thank you, Kyungmin Park ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

Re: [U-Boot] [PATCH] [ARM] Move machine specific code to board at s3c64xx (v2)

2009-04-02 Thread Kyungmin Park
On Thu, Apr 2, 2009 at 2:18 PM, Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com wrote: On 13:43 Thu 02 Apr     , Kyungmin Park wrote: Hi, If there's no objection, could you apply this patch to ARM git tree? Just one question is the OneNand always 16bits? Sure as I know, there's

  1   2   >