Re: [U-Boot] [PATCH 3/3] exynos: pinmux: remove unnecessary routine

2014-02-02 Thread Minkyu Kang
On 29/01/14 18:01, Rajeshwari Birje wrote: > Hi Minkyu Knag, > > On Wed, Jan 29, 2014 at 1:34 PM, Minkyu Kang wrote: >> Because of the list of peripherals is not sequential, >> such a routine does not check for valid correctly. >> Error check will be done when ca

Re: [U-Boot] [PATCH V5 5/6] exynos: Add a common DT based PMIC driver initialization

2014-02-02 Thread Minkyu Kang
wer/power_core.c > index a1c4fd0..f40be31 100644 > --- a/drivers/power/power_core.c > +++ b/drivers/power/power_core.c > @@ -228,6 +228,20 @@ int pmic_reg_update(struct pmic *p, int reg, u32 val) > return 0; > } > > +struct pmic *pmic_get_by_id(enum fdt_compat_id

Re: [U-Boot] [PATCH V2 1/8] arm:exynos: add cpu revision

2014-02-03 Thread Minkyu Kang
> > But this variable does not exist anywhere. It is only added in the > next patch. Adding this patch causes build breakage, i. e. your patch > series is not bisectable. s5p_cpu_id and s5p_cpu_rev exist on "arch/arm/cpu/armv7/s5p-common/cpu_info.c". This patch looks fi

Re: [U-Boot] [PATCH 2/3] exynos: pinmux: remove unnecessary define

2014-02-04 Thread Minkyu Kang
On 29/01/14 17:03, Minkyu Kang wrote: > The value of PERIPH_ID_COUNT was wrong, and unnecessary. > > Signed-off-by: Minkyu Kang > --- > arch/arm/cpu/armv7/exynos/clock.c |2 +- > arch/arm/include/asm/arch-exynos/periph.h |1 - > 2 files changed, 1 inse

Re: [U-Boot] [PATCH 1/3] exynos: pinmux: sort the list of peripherals

2014-02-04 Thread Minkyu Kang
On 29/01/14 17:03, Minkyu Kang wrote: > Signed-off-by: Minkyu Kang > --- > arch/arm/include/asm/arch-exynos/periph.h |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm/include/asm/arch-exynos/periph.h > b/arch/arm/include/asm/arch-ex

Re: [U-Boot] [PATCH 3/3] exynos: pinmux: remove unnecessary routine

2014-02-04 Thread Minkyu Kang
On 29/01/14 17:04, Minkyu Kang wrote: > Because of the list of peripherals is not sequential, > such a routine does not check for valid correctly. > Error check will be done when call the exynos_pinmux_config function. > > Signed-off-by: Minkyu Kang > --- > arch/arm/cpu/

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

2014-02-05 Thread Minkyu Kang
Song > Signed-off-by: Jaehoon Chung > --- > drivers/serial/serial_s5p.c |4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > applied to u-boot-samsung Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V2 0/8] arm: add runtime envs describing build

2014-02-06 Thread Minkyu Kang
s2.h | 12 +--- > include/samsung/misc.h | 12 > 12 files changed, 98 insertions(+), 12 deletions(-) > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 5/9] arm:exynos: add common board file for exynos 4

2014-02-06 Thread Minkyu Kang
; + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#ifndef __CONFIG_H > +#define __CONFIG_H > + > +/* High Level Configuration Options */ > +#define CONFIG_SAMSUNG /* in a SAMSUNG core */ > +#define CONFIG_S5P /* S5P Family */ > +#define CONFIG_EXYNOS4 /* which is in a Exynos5 Family > */ > +#define CONFIG_TIZEN /* TIZEN lib */ It's a board specific. > + > +#include /* get chip and board defs */ > + > +#define CONFIG_ARCH_CPU_INIT > +#define CONFIG_DISPLAY_CPUINFO > +#define CONFIG_DISPLAY_BOARDINFO > +#define CONFIG_BOARD_COMMON_EXYNOS4 > + > +/* Enable fdt support */ > +#define CONFIG_OF_CONTROL > +#define CONFIG_OF_EMBED > + > +#define CONFIG_SYS_CACHELINE_SIZE32 > + > +/* input clock of PLL: EXYNOS4 boards have 24MHz input clock */ > +#define CONFIG_SYS_CLK_FREQ 2400 > + > +#define CONFIG_SETUP_MEMORY_TAGS > +#define CONFIG_CMDLINE_TAG > +#define CONFIG_REVISION_TAG > +#define CONFIG_INITRD_TAG > +#define CONFIG_CMDLINE_EDITING > + > +#include > +/* Size of malloc() pool */ > +#define CONFIG_SYS_MALLOC_LEN(CONFIG_ENV_SIZE + (80 * SZ_1M)) > + > +/* select serial console configuration */ > +#define CONFIG_SERIAL2 ditto. I think you should re-arrange what is common feature (it means soc specific) and what is board specific. It looks confused to me. Please fix it. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/9] video:mipidsim:fdt: Add DT support for mipi dsim driver

2014-02-06 Thread Minkyu Kang
On 27/01/14 23:15, Piotr Wilczek wrote: > This patch enables parsing mipi data from device tree. > Non device tree case is still supported. > > Signed-off-by: Piotr Wilczek > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- > arch/arm/include/asm/arch-e

Re: [U-Boot] [PATCH 3/9] video:exynos_fb:fdt: add additional fdt data

2014-02-06 Thread Minkyu Kang
On 27/01/14 23:15, Piotr Wilczek wrote: > This patch adds additional data parsing from DTB. > > Signed-off-by: Piotr Wilczek > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- > drivers/video/exynos_fb.c | 19 +++ > 1 file changed, 19 inserti

Re: [U-Boot] [PATCH 5/9] arm:exynos: add common board file for exynos 4

2014-02-07 Thread Minkyu Kang
On 07/02/14 17:40, Piotr Wilczek wrote: > Dear Minkyu Kang, > >> -Original Message----- >> From: Minkyu Kang [mailto:mk7.k...@samsung.com] >> Sent: Friday, February 07, 2014 8:53 AM >> To: Piotr Wilczek >> Cc: u-boot@lists.denx.de; Kyungmin Park; Lukasz M

Re: [U-Boot] [PATCH] mmc:fix Call mmc_init() when executing mmc_get_dev()

2012-04-17 Thread Minkyu Kang
mc_device(dev); > +       if (mmc) { > +               mmc_init(mmc); > +               return &mmc->block_dev; > +       } > > -       return mmc ? &mmc->block_dev : NULL; > +       return NULL; >  } >  #endif > I think if (!mmc)

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

2012-04-23 Thread Minkyu Kang
  return pvid->vl_col * pvid->vl_row * (pvid->vl_bpix / 8); > +       return pvid->vl_col * pvid->vl_row * (NBITS(pvid->vl_bpix) / 8); ditto. >  } > diff --git a/include/configs/trats.h b/include/configs/trats.h > index 5f913ca..b326035 100644 &

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

2012-04-23 Thread Minkyu Kang
On 23 April 2012 19:16, Donghwa Lee wrote: > 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_

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

2012-04-25 Thread Minkyu Kang
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 files changed, 5 insertions(+), 5 deletions(-) > > Acked-by: Anat

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

2012-04-25 Thread Minkyu Kang
: modify the trats's configuration Minkyu Kang (1): SMDK5250: fix compiler warning Łukasz Majewski (3): ARM: Exynos4: ADC: Universal_C210: Enable LDO4 power line for ADC measurement misc:pmic:max8997 MAX8997 support for PMIC driver misc:pmic:samsung Convert TRATS target t

[U-Boot] [PATCH] Exynos: fix cpuinfo and cpu detecting

2012-04-26 Thread Minkyu Kang
Since Exynos architecture have new SoCs, need to fix cpuinfo correctly. Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park Tested-by: Jaehoon Chung Cc: Chander Kashyap --- arch/arm/cpu/armv7/s5p-common/cpu_info.c |5 ++- arch/arm/include/asm/arch-exynos/cpu.h | 42

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

2012-04-26 Thread Minkyu Kang
ectory.  Please move > this to the respective board or vendor directory, as I have asked you > do to before. > But I think TIZEN logo is not a board/vendor specific. It's a platform specific. How do you think that makes a new directory? (e.g: include/video/ or include/video/logo/) Thna

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

2012-04-26 Thread Minkyu Kang
vid) >        /* store panel info to global variable */ >        pvid = vid; > > -       rgb_mode = MODE_RGB_P; > +       rgb_mode = vid->rgb_mode; > >        if (vid->interface_mode == FIMD_RGB_INTERFACE) { >                cfg |= EXYNOS_VIDCON0_VIDOUT_RGB; > diff --git a/i

Re: [U-Boot] [PATCH 2/2 v8] Add support for MINI2440 (s3c2440).

2012-05-01 Thread Minkyu Kang
--git a/MAINTAINERS b/MAINTAINERS > index 708ded7..2611fb5 100644 > --- a/MAINTAINERS > +++ b/MAINTAINERS > @@ -566,6 +566,10 @@ Unknown / orphaned boards: >  #      Board           CPU                                             # >  # > > +Gabriel HUAU > + > +

Re: [U-Boot] [PATCH 2/2 v9] ARM : Add support for MINI2440 (s3c2440).

2012-05-01 Thread Minkyu Kang
S > @@ -566,6 +566,10 @@ Unknown / orphaned boards: >  #      Board           CPU                                             # >  ##### > > +Gabriel HUAU > + > +       mini2440        s3c2440 > + Please kee

Re: [U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-05-01 Thread Minkyu Kang
)) & 0x3; > +} > + > +int gpio_request(unsigned gpio, const char *label) > +{ > +       return 0; > +} > + > +int gpio_free(unsigned gpio) > +{ > +       return 0; > +} > + > +int gpio_direction_input(unsigned gpio) > +{ > +       return writel(GPIO_FULLP

Re: [U-Boot] [PATCH 1/2 v4] ARM : Add GPIO Driver and IOMUX definition for S3C2440

2012-05-01 Thread Minkyu Kang
amp;= ~(0x1 << GPIO_BIT(gpio)); >> > +               else >> > +                       l &= ~(0x3 << GPIO_BIT(gpio)); >> >> Need brace at this if..else statement. > > I wanted to ask why, but ... C isn't python, good point ;-) As I know, it's a rule of u-boot.. maybe. :) 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] TRATS: initialize panel_info data structure in board file

2012-05-02 Thread Minkyu Kang
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 files changed, 36 insertion

Re: [U-Boot] [PATCH] Exynos: fix cpuinfo and cpu detecting

2012-05-02 Thread Minkyu Kang
On 26 April 2012 16:55, Minkyu Kang wrote: > Since Exynos architecture have new SoCs, > need to fix cpuinfo correctly. > > Signed-off-by: Minkyu Kang > Signed-off-by: Kyungmin Park > Tested-by: Jaehoon Chung > Cc: Chander Kashyap > --- >  arch/arm/cpu/armv7/s

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

2012-05-02 Thread Minkyu Kang
d-off-by: Kyungmin Park > --- >  arch/arm/include/asm/arch-exynos/mipi_dsim.h |    1 + >  board/samsung/trats/trats.c                  |    8 >  drivers/video/s6e8ax0.c                      |   17 - >  3 files changed, 25 insertions(+), 1 deletions(-) > Ac

Re: [U-Boot] [PATCH] misc:pmic:trats: Correct procedure of enabling/disabling USB regulators

2012-05-02 Thread Minkyu Kang
Dear Marek Vasut, On 26 April 2012 18:30, Lukasz Majewski wrote: > In the MAX8997, LDO regulators needs to preserve previously set voltage > values. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- >  board/sams

Re: [U-Boot] [PATCH] misc:pmic:trats: Correct procedure of enabling/disabling USB regulators

2012-05-02 Thread Minkyu Kang
On 26 April 2012 18:30, Lukasz Majewski wrote: > In the MAX8997, LDO regulators needs to preserve previously set voltage > values. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Minkyu Kang > --- >  board/samsung/trats/trats.c |   15 ++

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

2012-05-03 Thread Minkyu Kang
igned int    hdcp_e_fuse_mem_cfg; > +       unsigned int    gsclblk_cfg0; > +       unsigned int    gsclblk_cfg1; > +       unsigned int    ispblk_cfg; > +       unsigned int    usb20_phy_cfg; > +       unsigned char   res2[0x29c]; > +       unsigned int    m

Re: [U-Boot] [PATCH 3/5] exynos5: Add power Enable/Disable for USB-EHCI

2012-05-03 Thread Minkyu Kang
_phy *usb) >  { > +       power_enable_usb_phy(); need space here. and you should separate the function for power and system. >        clrbits_le32(&usb->usbphyctrl0, >                        HOST_CTRL0_FSEL_MASK | >                        HOST_CTRL0_COMMONON_N | > @@ -70,6 +71,8 @@ static void reset_usb_phy(struct s5p_usb_phy *usb) >                        HOST_CTRL0_SIDDQ | >                        HOST_CTRL0_FORCESUSPEND | >                        HOST_CTRL0_FORCESLEEP); > + > +       power_disable_usb_phy(); >  } > >  /* > -- 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 5/5] exynos5: usb: Enable USB 2.0 on smdk5250

2012-05-03 Thread Minkyu Kang
t;  #define EXYNOS5_USBPHY_BASE            0x1213 >  #define EXYNOS5_USBOTG_BASE            0x1214 >  #define EXYNOS5_MMC_BASE               0x1220 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] USB: S5P: Add ehci support

2012-05-03 Thread Minkyu Kang
ccr *)(EXYNOS5_USB_HOST_EHCI_BASE); NAK. We don't allow direct access to base address. > +       hcor = (struct ehci_hcor *)((uint32_t) hccr > +                               + HC_LENGTH(ehci_readl(&hccr->cr_capbase))); > + > +       debug("Exynos5-ehci: init hccr %x and hcor %x hc_length %d\n", > +               (uint32_t)hccr, (uint32_t)hcor, > +               (uint32_t)HC_LENGTH(ehci_readl(&hccr->cr_capbase))); > + > +       return 0; > +} > + > +/* > + * Destroy the appropriate control structures corresponding > + * the EHCI host controller. > + */ > +int ehci_hcd_stop() > +{ > +       struct s5p_usb_phy *usb; > + > +       usb = (struct s5p_usb_phy *)samsung_get_base_usb_phy(); > +       reset_usb_phy(usb); > + > +       return 0; > +} > -- > 1.7.4.4 > 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 3/6 V2] EXYNOS5 : USB: Set USB 2.0 HOST Link mode

2012-05-07 Thread Minkyu Kang
); > +       } > +} > + > +void enable_usbhost_mode(unsigned int mode) API's name should be set_* or get_*. Please fix it. > +{ > +       if (cpu_is_exynos5()) > +               exynos5_enable_usbhost_mode(mode); > +} 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 4/6 V2] Exynos5: Add power Enable/Disable for USB-EHCI

2012-05-07 Thread Minkyu Kang
> + > +void ps_hold_setup(void) set_ps_hold_ctrl. > +{ > +       if (cpu_is_exynos5()) > +               exynos5_ps_hold_setup(); > +} > + > +void power_enable_usb_phy(unsigned int enable) set_usbhost_phy_ctrl. > +{ > +       if (cpu_is_exynos5()) > +        

Re: [U-Boot] [PATCH 1/6 V2] EXYNOS5: Fix system register structure

2012-05-07 Thread Minkyu Kang
clude/asm/arch-exynos/system.h |    1 + >  1 files changed, 1 insertions(+), 0 deletions(-) > Acked-by: 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 2/6 V2] EXYNOS: Add structure for PMU registers

2012-05-07 Thread Minkyu Kang
++ >  1 files changed, 622 insertions(+), 0 deletions(-) > Acked-by: 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 5/6 V2] EXYNOS5: USB: Fix incorrect USB base addresses

2012-05-07 Thread Minkyu Kang
>  1 files changed, 2 insertions(+), 2 deletions(-) > Acked-by: 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 6/6 V2] config: EXYNOS5: USB: Enable USB 2.0 on smdk5250

2012-05-07 Thread Minkyu Kang
On 4 May 2012 20:12, Rajeshwari Shinde wrote: > Signed-off-by: Vivek Gautam > --- >  include/configs/smdk5250.h |    6 ++ >  1 files changed, 6 insertions(+), 0 deletions(-) > Acked-by: Minkyu Kang -- from. prom. www.promsoft.net ___

Re: [U-Boot] [PATCH 3/6 V3] USB: EXYNOS: Set USB 2.0 HOST Link mode

2012-05-10 Thread Minkyu Kang
ch is based on: > USB: EXYNOS: Add ehci support.patch >  arch/arm/cpu/armv7/exynos/system.c        |   22 ++ >  arch/arm/include/asm/arch-exynos/system.h |    3 +++ >  drivers/usb/host/ehci-exynos.c            |    3 +++ >  3 files changed, 28 insertions(+), 0

Re: [U-Boot] [PATCH 4/6 V3] EXYNOS: Add power Enable/Disable for USB-EHCI

2012-05-10 Thread Minkyu Kang
le32(&power->usbhost_phy_control, > +                               POWER_USB_HOST_PHY_CTRL_EN); > +       } > +} > + > +void set_usb_phy_ctrl(unsigned int enable) > +{ > +       if (cpu_is_exynos5()) > +               exynos5_set_usb_phy_ctrl(enable); > +} 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 v5 3/3] EXYNOS: display 32bpp bitmap TIZEN logo

2012-05-10 Thread Minkyu Kang
rs/video/exynos_fb.h   |    7 --- >  drivers/video/exynos_fimd.c |    2 +- >  include/configs/trats.h     |    6 +- >  include/lcd.h               |   13 + >  6 files changed, 53 insertions(+), 9 deletions(-) > Acked-by: Minkyu Kang -- from. prom. www.promsoft.n

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

2012-05-10 Thread Minkyu Kang
s(-) >  create mode 100644 include/libtizen.h >  create mode 100644 lib/tizen/Makefile >  create mode 100644 lib/tizen/tizen.c >  create mode 100644 lib/tizen/tizen_hd_logo.h >  create mode 100644 lib/tizen/tizen_hd_logo_data.h > Acked-by: 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/2 V2] EXYNOS5: PINMUX: Added default pinumx settings

2012-05-31 Thread Minkyu Kang
C(2)); > +                       s5p_gpio_set_pull(&gpio1->y5, i, GPIO_PULL_UP); > + > +                       s5p_gpio_cfg_pin(&gpio1->y6, i, GPIO_FUNC(2)); > +                       s5p_gpio_set_pull(&gpio1->y6, i, GPIO_PULL_UP); > +               } > +               break; > +       default: > +               debug("%s: invalid peripheral %d", __func__, peripheral); > +               return -1; > +       } > + > +       return 0; > +} > + > +int exynos_pinmux_config(int peripheral, int flags) > +{ > +       if (cpu_is_exynos5()) > +               return exynos5_pinmux_config(peripheral, flags); > +       else{ need space between else and { Well, I think you don't need this else statement. > +               debug("pinmux functionality not supported\n"); > +               return -1; > +       } > +} 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/2 V2] EXYNOS5: PINMUX: Added default pinumx settings

2012-05-31 Thread Minkyu Kang
Dear Simon Glass, On 1 June 2012 10:40, Simon Glass wrote: > Hi, > > On Thu, May 31, 2012 at 2:57 AM, Minkyu Kang wrote: >> >> Dear Rajeshwari Shinde, >> >> On 23 May 2012 17:54, Rajeshwari Shinde wrote: >> > This patch performs the pinmux configura

Re: [U-Boot] [PATCH 1/2 V6] EXYNOS5: PINMUX: Added default pinumx settings

2012-06-14 Thread Minkyu Kang
;>  create mode 100644 arch/arm/cpu/armv7/exynos/pinmux.c >>  create mode 100644 arch/arm/include/asm/arch-exynos/periph.h >>  create mode 100644 arch/arm/include/asm/arch-exynos/pinmux.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 2/2 V6] EXYNOS: SMDK5250: Enable the pinmux setup

2012-06-14 Thread Minkyu Kang
ded a error return for smc9115_pre_init and board_uart_init. >> Changes in V6: >>        - none >>  board/samsung/smdk5250/smdk5250.c |  176 >> - > 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

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

2012-06-18 Thread Minkyu Kang
11388a3b06a23323f9d964573d08e1bdd70322bd: EXYNOS: SMDK5250: Enable the pinmux setup (2012-06-15 10:50:36 +0900) Donghwa Lee (1): TRATS: initialize panel_info data structure in board file Minkyu Kang (1): Exynos: fix cpuinfo and cpu

Re: [U-Boot] [PATCH v3 00/12] exynos: enable dm i2c

2015-01-28 Thread Minkyu Kang
er model. > > I plan to pick this series up for the driver model tree and hopefully > get it in in time for RC1. Minkyu is that OK with you? > Sure. It's OK. Do you have plan to merge dm with main tree? I will accept few patches to sa

Re: [U-Boot] Samsung patches

2015-02-10 Thread Minkyu Kang
Thanks! > plan to accept this week. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 0/3] Support eMMC reset using DT for some exynos boards

2015-02-13 Thread Minkyu Kang
5 files changed, 53 insertions(+), 8 deletions(-) > create mode 100644 doc/device-tree-bindings/exynos/emmc-reset.txt > applied to u-boot-samsung. Thank, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] EXYNOS5: Add function to enable exynos5420 usbdev phy ctrl

2015-02-13 Thread Minkyu Kang
igned int enable) > { > - if (cpu_is_exynos5()) > - exynos5_set_usbdrd_phy_ctrl(enable); > + if (cpu_is_exynos5()) { > + if (proid_is_exynos5420() || proid_is_exynos5800()) > + exynos5420_set_usbdev_phy_ctrl(enable); > +

Re: [U-Boot] [PATCH v6 0/7] Exynos5: Fix warnings and enrich clock_get_periph_rate

2015-02-13 Thread Minkyu Kang
k_get_periph_rate generic API > Exynos: clock: change mask bits as per peripheral > Exynos: Clock: Cleanup soc_get_periph_rate > > arch/arm/cpu/armv7/exynos/clock.c | 617 > - > arch/arm/include/asm/arch-exynos/clk.h | 4 + > 2 files

Re: [U-Boot] [PATCH] arm: exynos: fix the div value for set_mmc_clk

2015-02-13 Thread Minkyu Kang
t; + div -= 1; > + > if (cpu_is_exynos5()) { > if (proid_is_exynos5420() || proid_is_exynos5800()) > exynos5420_set_mmc_clk(dev_index, div); > applied to u-boot-samsung. Thank, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] odroid: fix g2d sclk rate

2015-02-13 Thread Minkyu Kang
*/ > - set = G2D_ACP_RATIO(1) | C2C_RATIO(1) | PWI_RATIO(5) | > + set = G2D_ACP_RATIO(3) | C2C_RATIO(1) | PWI_RATIO(5) | > C2C_ACLK_RATIO(1) | DVSEM_RATIO(1) | DPM_RATIO(1); > > clrsetbits_le32(&clk->div_dmc1, clr, set); > applied to u-boot-samsung. T

[U-Boot] please pull u-boot-samsung master

2015-02-13 Thread Minkyu Kang
/emmc-reset.txt -- Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2015-02-17 Thread Minkyu Kang
Dear Simon, On 14/02/15 00:13, Simon Glass wrote: > Hi Minkyu, > > On 13 February 2015 at 01:31, Minkyu Kang wrote: >> Dear Tom, >> >> The following changes since commit bd2a4888b123713adec271d6c8040ca9f609aa2f: >> >> sunxi: configs/sunxi-common.h: Enab

Re: [U-Boot] [PATCH v2 07/11] Exynos542x: cache: Disable clean/evict push to external

2015-02-17 Thread Minkyu Kang
uot; : "=r" (val)); > + /* Disable clean/evict push to external */ > + val |= (0x1 << 3); > + /* Write new vlaue to L2ACTLR */ > + asm volatile("mcr p15, 1, %0, c15, c0, 0" : : "r" (val)); > +#endif > } > > /* > Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 08/11] Exynos542x: add L2 control register configuration

2015-02-17 Thread Minkyu Kang
AM_LATENCY = (2 << 6), > CACHE_DATA_RAM_LATENCY = (2 << 0) > }; > @@ -39,10 +41,15 @@ static void exynos5_set_l2cache_params(void) > > asm volatile("mrc p15, 1, %0, c9, c0, 2\n" : "=r"(val)); > > +#ifndef CONFIG_EXYNOS5420 > val |= CACHE_TAG_RAM_SETUP | > CACHE_DATA_RAM_SETUP | > CACHE_TAG_RAM_LATENCY | > CACHE_DATA_RAM_LATENCY; > +#else > + val |= CACHE_TAG_RAM_LATENCY | > + CACHE_DATA_RAM_LATENCY; > +#endif > > asm volatile("mcr p15, 1, %0, c9, c0, 2\n" : : "r"(val)); > > Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/2] odroid: adjust get_dfu_alt_*() functions to new declarations

2015-02-22 Thread Minkyu Kang
en Warren >> Cc: Marek Vasut >> --- > > > Acked-by: Lukasz Majewski > > Tested-by: Lukasz Majewski > Test HW: Odroid U3 (Exynos 4412) > > Minkyu - I would prefer to take this patch to -dfu tree since it deals > with dfu_alt_info env

Re: [U-Boot] [PATCH 2/2] exynos: clock: use the clear and set bits macros.

2014-02-09 Thread Minkyu Kang
; > Singed-off-by: Inha Song typo, singed -> signed > Signed-off-by: Jaehoon Chung > --- > arch/arm/cpu/armv7/exynos/clock.c | 85 > + > 1 file changed, 20 insertions(+), 65 deletions(-) > anyway- typo was

Re: [U-Boot] [PATCH 1/2] exynos: clock: fixed that cfg is set to wrong value.

2014-02-09 Thread Minkyu Kang
Inha Song > Signed-off-by: Jaehoon Chung > --- > arch/arm/cpu/armv7/exynos/clock.c |3 +++ > 1 file changed, 3 insertions(+) > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 5/9] arm:exynos: add common board file for exynos 4

2014-02-10 Thread Minkyu Kang
Dear Piotr, On 10/02/14 17:52, Piotr Wilczek wrote: > >> -Original Message- >> From: Minkyu Kang [mailto:mk7.k...@samsung.com] >> Sent: Friday, February 07, 2014 10:48 AM >> To: Piotr Wilczek >> Cc: u-boot@lists.denx.de; 'Kyungmin Park'; Luka

[U-Boot] please pull u-boot-samsung master

2014-02-13 Thread Minkyu Kang
d that cfg is set to wrong value. exynos: clock: use the clear and set bits macros. Minkyu Kang (3): exynos: pinmux: sort the list of peripherals exynos: pinmux: remove unnecessary define exynos: pinmux: remove unnecessary routine Piotr Wilczek (8): arm:exyn

Re: [U-Boot] [PATCH v5 3/3] arm: remove unneeded symbol offsets and _TEXT_BASE

2014-02-13 Thread Minkyu Kang
s.h | 26 +++------- > 28 files changed, 25 insertions(+), 399 deletions(-) > About samsung boards, Acked-by: Minkyu Kang Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V2 05/12] board:samsung:common: remove unused max77686 init function

2014-02-21 Thread Minkyu Kang
mic support to >>> SMDK5420" by Leela Krishna Amudala It adds a generic way for PMIC >>> support. >>> http://lists.denx.de/pipermail/u-boot/2014-January/171113.html >>> >> MAX77686 is also used at Trats2 so max77686_init must be either generic >>

Re: [U-Boot] [PATCH V2 05/12] board:samsung:common: remove unused max77686 init function

2014-02-24 Thread Minkyu Kang
On 24/02/14 15:39, Piotr Wilczek wrote: > Dear Minkyu Kang, > >> -Original Message----- >> From: Minkyu Kang [mailto:mk7.k...@samsung.com] >> Sent: Saturday, February 22, 2014 8:38 AM >> To: Rajeshwari Birje; Piotr Wilczek; Rajeshwari S Shinde >> Cc:

Re: [U-Boot] [PATCH V3 09/12] board:origen: Enable device tree on Origen

2014-02-25 Thread Minkyu Kang
d specific options. > > Signed-off-by: Piotr Wilczek > Signed-off-by: Kyungmin Park > Cc: Chander Kashyap > Cc: Minkyu Kang > --- > Changes for v3: > - dts file moved to arch/arm/dts > > Changes for v2: > - no changes > > arch/arm/dts/Makefile

Re: [U-Boot] [PATCH 1/3] samsung: misc: check_keys(), key_pressed() - remove type static.

2014-03-05 Thread Minkyu Kang
nd the patch together. > > Change-Id: I2244ca3568b73251401e5102f26cc113ea69c1a4 > Signed-off-by: Przemyslaw Marczak > cc: Minkyu Kang > --- > board/samsung/common/misc.c |5 ++--- > include/samsung/misc.h |4 > 2 files changed, 6 insertions(+), 3 deletions(-)

Re: [U-Boot] [PATCH 2/3] arm: exynos: pinmux: Add sdmmc4 gpio configuration

2014-03-05 Thread Minkyu Kang
On 05/03/14 10:57, Beomho Seo wrote: > For use dwmmc controller, add SDMMC4 gpio configuration. > > Signed-off-by: Beomho Seo > Signed-off-by: Jaehoon Chung > Cc: Minkyu Kang > --- > arch/arm/cpu/armv7/exynos/pinmux.c | 20 +++- > 1 file chan

Re: [U-Boot] [PATCH 1/3] board: samsung: trats2: Add DW MMC controller initialization

2014-03-05 Thread Minkyu Kang
On 05/03/14 10:57, Beomho Seo wrote: > Add DW MMC controller initialization. > Selectively use DW MMC controller instead of SDHCI controller. > > Signed-off-by: Beomho Seo > Signed-off-by: Jaehoon Chung > Cc: Minkyu Kang > --- > board/samsun

Re: [U-Boot] [PATCH 3/3] arm: exynos: clock: Remove exynos4x12_set_mmc_clk function

2014-03-05 Thread Minkyu Kang
On 05/03/14 10:57, Beomho Seo wrote: > Remove exynos4x12_set_mmc_clk. Please describe here why you remove it. > > Signed-off-by: Beomho Seo > Signed-off-by: Jaehoon Chung > Cc: Minkyu Kang > --- > arch/arm/cpu/armv7/exynos/clock.c | 29 +

Re: [U-Boot] [PATCH V5 00/12] Exynos4: add support for device tree

2014-03-12 Thread Minkyu Kang
h/arm/dts/exynos4210-origen.dts > create mode 100644 arch/arm/dts/exynos4210-trats.dts > create mode 100644 arch/arm/dts/exynos4210-universal_c210.dts > create mode 100644 arch/arm/dts/exynos4412-trats2.dts > create mode 100644 doc/device-tree-bindings/video/exynos_mipi_dsi.txt > create mode 100644 include/configs/exynos4-dt.h > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] arm: exynos: Squash bogus warnings in pinmux

2014-03-12 Thread Minkyu Kang
gt;>> ^ >>>>>> >>>>>> /arch/arm/cpu/armv7/exynos/pinmux.c:687:28: warning: 'start' >>>>>> may be used uninitialized in this function >>>>>> [-Wmaybe-uninitialized] for (i = start; i <

Re: [U-Boot] [PATCH V2 1/3] cpu: exynos4: ace_sha: add hardware random number generator support.

2014-03-12 Thread Minkyu Kang
On 06/03/14 01:57, Przemyslaw Marczak wrote: > This patch adds implementation of function hw_rand() based on exynos > security sub system. > > Signed-off-by: Przemyslaw Marczak > cc: Akshay Saraswat > cc: ARUN MANKUZHI > cc: Minkyu Kang > --- > Changes v2: > - n

Re: [U-Boot] [PATCH] Trats/Trats2: Update Tizen partitions layout and dfu entities

2014-03-12 Thread Minkyu Kang
On 01/03/14 02:53, Przemyslaw Marczak wrote: > Changes: > - update partitions layout > - update dfu entities > to be consistent with Tizen images for trats/trats2 > > Signed-off-by: Przemyslaw Marczak > Acked-by: Łukasz Majewski > cc: Piotr Wilczek > cc: Minkyu Kan

Re: [U-Boot] [PATCH] usb: dfu: add static alt num count in dfu_config_entities()

2014-03-12 Thread Minkyu Kang
Majewski >>>> --- >>>> drivers/dfu/dfu.c |6 +- >>>> 1 file changed, 5 insertions(+), 1 deletion(-) >> >> Tested on the dxr2 board. >> >> Tested-by: Heiko Schocher >> >> bye, >> Heiko > > > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] please pull u-boot-samsung master

2014-03-12 Thread Minkyu Kang
/exynos4210-universal_c210.dts create mode 100644 arch/arm/dts/exynos4412-trats2.dts create mode 100644 doc/device-tree-bindings/video/exynos_mipi_dsi.txt create mode 100644 include/configs/exynos4-dt.h -- Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot

Re: [U-Boot] problem on SPL build

2014-03-19 Thread Minkyu Kang
gt; make distclean >> make smdkc100_config >> make all >> but get error: >> /u-boot-2014.01/arch/arm/lib/crt0.S:74: undefined reference to >> `board_init_f' >> SPL is not supported at smdkc100. You can contribute on this. Patches always welcome. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v4 2/4] cpu: exynos4: add ace sha base address

2014-03-22 Thread Minkyu Kang
Dear Przemyslaw Marczak, On 21 March 2014 17:56, Przemyslaw Marczak wrote: > Signed-off-by: Przemyslaw Marczak > Cc: Minkyu Kang > > --- > Changes v3: > - new commit - after separate changes from next commit > > Changes v4: > - none > --- > arch/arm/

Re: [U-Boot] [PATCH v4 2/4] cpu: exynos4: add ace sha base address

2014-03-24 Thread Minkyu Kang
On 24/03/14 16:44, Przemyslaw Marczak wrote: > Hello Minkyu, > > On 03/22/2014 04:18 PM, Minkyu Kang wrote: >> Dear Przemyslaw Marczak, >> >> >> On 21 March 2014 17:56, Przemyslaw Marczak wrote: >> >>> Signed-off-by: Przemyslaw Marczak >>&g

Re: [U-Boot] [PATCH 09/10] exynos: Enable the LCD backlight for snow

2014-03-27 Thread Minkyu Kang
gt; 10ms) */ > + mdelay(10); > + > + /* board_dp_backlight_pwm */ > + s5p_gpio_direction_output(&gpio1->b2, 0, 1); > + > + /* T6 in the LCD timing spec (defined as > 10ms) */ > + mdelay(10);

Re: [U-Boot] [PATCH 05/10] exynos5: support tps65090 pmic

2014-03-27 Thread Minkyu Kang
t. It should be /* * ... * ... */ > + ret = tps65090_init(); > + if (ret == 0 || ret == -ENODEV) > + return 0; #endif > + > return ret; > } > #endif > Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2014-07-26 Thread Minkyu Kang
t; - enable XCL205 - power for board peripherials > - check board type: U3 or X2. > - enable Odroid U3 FAN cooler > > Signed-off-by: Przemyslaw Marczak > Cc: Minkyu Kang > Cc: Tom Rini > > --- > Changes v2: > - enable fan on odroid U3 > > Changes v3: >

Re: [U-Boot] [PATCH V3 1/9] exynos_fb: Remove usage of static defines

2014-07-26 Thread Minkyu Kang
debug("Can't get proper panel info\n"); > #ifdef CONFIG_EXYNOS_MIPI_DSIM > exynos_init_dsim_platform_data(&panel_info); > #endif > diff --git a/include/configs/exynos5250-dt.h > b/include/configs/exynos5250-dt.h > index 74e72a5..c24984b 100644 >

Re: [U-Boot] [PATCH V3 3/9] arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420

2014-07-26 Thread Minkyu Kang
lse > - return exynos5_get_lcd_clk(); > + else { > + if (proid_is_exynos5420()) > + return exynos5420_get_lcd_clk(); > + else > + return exynos5_get_lcd_clk(); > + } > } > > void set_lcd_clk(void) >

Re: [U-Boot] [PATCH v2 07/15] exynos: kconfig: move board select menu and common settings

2014-08-11 Thread Minkyu Kang
> Signed-off-by: Masahiro Yamada > Cc: Minkyu Kang > --- > > Changes in v2: None > > arch/arm/Kconfig | 41 +++ > arch/arm/cpu/armv7/exynos/Kconfig| 55 > > board/samsun

Re: [U-Boot] [PATCH] samsung: dfu: Provide correct Vendor and Product IDs for UMS gadget

2014-08-18 Thread Minkyu Kang
>> Windows7. > > Do you have any comments to this patch? > > Would you consider taking this patch to u-boot-samsung tree or should I > take it to u-boot-dfu since it fixes things related to UMS gadget? > How you think? If you want to take this patch to dfu, I'm OK. If

Re: [U-Boot] [PATCH] samsung: dfu: Provide correct Vendor and Product IDs for UMS gadget

2014-08-18 Thread Minkyu Kang
board/samsung/common/gadget.c > delete mode 100644 board/samsung/common/thor.c > Acked-by: Minkyu Kang Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.

2015-03-31 Thread Minkyu Kang
Hi, On Thursday, March 26, 2015, Simon Glass wrote: > Hi Minkyu, > > On 24 March 2015 at 01:45, Minkyu Kang > > wrote: > > hi, > > > > On 20 March 2015 at 02:06, Guillaume Gardet > > ');>> > wrote: > > > >> Ping. > >>

Re: [U-Boot] [PATCH] Exynos: Clock: Fix exynos5_get_periph_rate for I2C.

2015-04-05 Thread Minkyu Kang
On 31/03/15 18:07, Minkyu Kang wrote: > Hi, > > On Thursday, March 26, 2015, Simon Glass wrote: > >> Hi Minkyu, >> >> On 24 March 2015 at 01:45, Minkyu Kang > >> wrote: >>> hi, >>> >>> On 20 March 2015 at 02:06, Guillaum

Re: [U-Boot] [PATCH 1/3] config: exynos: common: Provide env variables to support Image.itb

2015-04-05 Thread Minkyu Kang
-- > include/configs/exynos4-common.h | 54 > > 1 file changed, 54 insertions(+) > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 3/3] config: exynos: trats2: Enable support for Image.itb at trats2 device

2015-04-05 Thread Minkyu Kang
t; 1 file changed, 6 insertions(+), 2 deletions(-) > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/3] config: exynos: trats: Enable support for Image.itb at trats device

2015-04-05 Thread Minkyu Kang
t; 1 file changed, 6 insertions(+), 2 deletions(-) > applied to u-boot-samsung. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] config: peach: Correct memory layout environment settings

2015-04-05 Thread Minkyu Kang
t;>> >>>>>>>> Define a custom MEM_LAYOUT_ENV_SETTINGS for both peach boards which >>>>>>>> uses >>>>>>>> the same offsets from start of memory as the common exynos5 settings. >>>>>>>> >>>>>

[U-Boot] please pull u-boot-samsung master

2015-04-05 Thread Minkyu Kang
++- include/configs/trats2.h |8 ++- 16 files changed, 193 insertions(+), 28 deletions(-) -- Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH V3 0/8] peach_pi: Add support for FIMD and DP

2015-04-05 Thread Minkyu Kang
mdk5420.c | 15 -- > doc/device-tree-bindings/video/exynos-fb.txt |2 + > drivers/video/exynos_fb.c | 21 > drivers/video/parade.c | 11 > 10 files changed, 107 insertions(+), 20 deletions(-) > app

Re: [U-Boot] [PATCH] samsung: s5p_goni: fix: Add missing definitions for G_DNL_UMS gadget

2014-08-28 Thread Minkyu Kang
_MANUFACTURER "Samsung" >>> >>> /* Actual modem binary size is 16MiB. Add 2MiB for bad block >>> handling */ >>> >> >> Acked-by: Robert Baldyga > > Tom, since Robert - the maintainer of the GONI board has acked the > patch and the

Re: [U-Boot] [PATCH V4 0/9] peach_pit: Add support for FIMD, DP and parade chip

2014-08-28 Thread Minkyu Kang
e.c >>>> Removed TEST_ONLY patches. >>>> >>>> Changes from V3: >>>> [PATCH V4 1/9] : Fix comment style. >>>> [PATCH V4 3/9] : Use 'else if' clause instead of 'if'. >>> >>> Is this series ready to be merged? I have several series dependent on it. >> I have addressed all the comments from Minkyu. >> Hopefully, it should get in this time! > > Can this series be applied please? > Will check soon. Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v8 00/12] Add support to Odroid U3/X2

2014-09-04 Thread Minkyu Kang
setup.h > create mode 100644 configs/odroid_defconfig > create mode 100644 doc/README.odroid > create mode 100644 include/configs/odroid.h > applied to u-boot-samsung Thanks, Minkyu Kang. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

<    1   2   3   4   5   6   7   8   9   10   >