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
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
>
> 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
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
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
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/
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
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
; + * 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
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
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
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
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)
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
&
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_
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
: 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
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
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
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
--git a/MAINTAINERS b/MAINTAINERS
> index 708ded7..2611fb5 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -566,6 +566,10 @@ Unknown / orphaned boards:
> # Board CPU #
> #
>
> +Gabriel HUAU
> +
> +
S
> @@ -566,6 +566,10 @@ Unknown / orphaned boards:
> # Board CPU #
> #####
>
> +Gabriel HUAU
> +
> + mini2440 s3c2440
> +
Please kee
)) & 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
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
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
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
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
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
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 ++
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
_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
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
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
);
> + }
> +}
> +
> +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
> +
> +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())
> +
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
++
> 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
> 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
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
___
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
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
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
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
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
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
;> 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
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
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
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
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
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
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);
> +
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
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
*/
> - 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
/emmc-reset.txt
--
Thanks,
Minkyu Kang.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
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
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
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
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
;
> 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
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
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
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
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
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
>>
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:
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
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(-)
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
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
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 +
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
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 <
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
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
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
/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
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
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/
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
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);
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
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:
>
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
>
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)
>
> 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
>> 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
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
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.
> >>
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
--
> 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
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
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
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.
>>>>>>>>
>>>>>
++-
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
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
_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
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
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
201 - 300 of 1563 matches
Mail list logo