Re: [U-Boot] problem on SPL build

2014-03-19 Thread hua dillon
you can use board_init_f from arch/arm/lib/spl.c in SPL 2014-03-19 11:29 GMT+08:00 Simon shuminche...@gmail.com: Hi, I'am studying on u-boot, and i am trying to port it on smdkc100. I setup cross-compile on ubuntu12.04 and build the u-boot, it works okay. But i have a problem on SPL build.

[U-Boot] [PATCH 1/2] ARM: atmel: switch to main crystal osc for SPL boot

2014-03-19 Thread Bo Shen
If without switch to main crystal oscillator, the sama5d3 SoC will use internal on chip RC oscillator. In order to get better accuracy, switch to main crystal oscillator. Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/at91-common/spl.c| 39

[U-Boot] [PATCH 2/2] ARM: atmel: enable SPL on sama5d3_xplained board

2014-03-19 Thread Bo Shen
It supports boot from NAND and SD/MMC card. Signed-off-by: Bo Shen voice.s...@atmel.com --- board/atmel/sama5d3_xplained/sama5d3_xplained.c | 87 + include/configs/sama5d3_xplained.h | 50 ++ 2 files changed, 137 insertions(+) diff --git

Re: [U-Boot] [PATCH] build:arm: Remove setting of CROSS_COMPILE environment variable

2014-03-19 Thread Lukasz Majewski
Hi Masahiro, Hi Lukasz, Tom, Hi Tom, On Tue, Mar 18, 2014 at 04:46:48PM +0100, Lukasz Majewski wrote: After Kbuild introduction, the CROSS_COMPILE environment variable has been set to some default value (prefix arm-linux-). Note that this is quite a long-standing

[U-Boot] [PATCH] common, env: Fix support for environment in i2c eeprom

2014-03-19 Thread Matthias Fuchs
When using CONFIG_SYS_I2C i2c needs to be initialized by i2c_init_all(). This is done in some places but not in eeprom_init(). Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu --- common/cmd_eeprom.c |9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH] 4xx: add support for new PMC440 revision

2014-03-19 Thread Matthias Fuchs
This patch adds support for the new PMC440 hardware revision 1.4. The board now uses Micrel KSZ9031 phys. Add missing i2c initialization before reading bootstrap eeprom. Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu --- board/esd/pmc440/pmc440.c | 83

Re: [U-Boot] [PATCH] arm: Handle .gnu.hash section in ldscripts

2014-03-19 Thread Albert ARIBAUD
Hi Lukasz, On Fri, 14 Mar 2014 08:37:00 +0100, Lukasz Majewski l.majew...@samsung.com wrote: Hi Albert, Hi Lukasz, On Thu, 13 Mar 2014 16:43:09 +0100, Lukasz Majewski l.majew...@samsung.com wrote: I can report the same issue with OBS build of u-boot. When u-boot is build

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Wolfgang Denk
Dear Masahiro, In message 20140319135026.7a64.aa925...@jp.panasonic.com you wrote: +++ b/configs/beaver_defconfig @@ -0,0 +1,10 @@ +CONFIG_SPL=y +CONFIG_ARM=y +CONFIG_SYS_CPU=armv7 +CONFIG_SOC_DIR=y +CONFIG_SYS_SOC=tegra30 +CONFIG_SYS_BOARD=beaver +CONFIG_VENDOR_DIR=y

Re: [U-Boot] problem on SPL build

2014-03-19 Thread Minkyu Kang
On 19/03/14 15:25, hua dillon wrote: you can use board_init_f from arch/arm/lib/spl.c in SPL 2014-03-19 11:29 GMT+08:00 Simon shuminche...@gmail.com: Hi, I'am studying on u-boot, and i am trying to port it on smdkc100. I setup cross-compile on ubuntu12.04 and build the u-boot, it works

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Masahiro Yamada
Hi Wolfgang, On Wed, 19 Mar 2014 10:56:46 +0100 Wolfgang Denk w...@denx.de wrote: Dear Masahiro, In message 20140319135026.7a64.aa925...@jp.panasonic.com you wrote: +++ b/configs/beaver_defconfig @@ -0,0 +1,10 @@ +CONFIG_SPL=y +CONFIG_ARM=y +CONFIG_SYS_CPU=armv7

Re: [U-Boot] [PATCH v6] nand/denali: Adding Denali NAND driver support

2014-03-19 Thread Masahiro Yamada
Hi Chin, --- /dev/null +++ b/drivers/mtd/nand/denali.c @@ -0,0 +1,1132 @@ +/* + * Copyright (C) 2013-2014 Altera Corporation www.altera.com + * Copyright (C) 2009-2010, Intel Corporation and its suppliers. + * + * SPDX-License-Identifier: GPL-2.0+ + */ If you don't mind, is it OK to

Re: [U-Boot] [PATCH] 4xx: add support for new PMC440 revision

2014-03-19 Thread Stefan Roese
Hi Matthias, On 19.03.2014 10:25, Matthias Fuchs wrote: This patch adds support for the new PMC440 hardware revision 1.4. The board now uses Micrel KSZ9031 phys. Add missing i2c initialization before reading bootstrap eeprom. Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu ---

Re: [U-Boot] [PATCH] 4xx: add support for new PMC440 revision

2014-03-19 Thread Matthias Fuchs
On 19.03.2014 12:44, Stefan Roese wrote: -if (miiphy_write(ppc_4xx_eth0, CONFIG_PHY_ADDR, 0x1f, 0x0001) == 0) { -miiphy_write(ppc_4xx_eth0, CONFIG_PHY_ADDR, 0x11, 0x0010); -miiphy_write(ppc_4xx_eth0, CONFIG_PHY_ADDR, 0x11, val_behavior); -

[U-Boot] Question about mpc85xx startup using Nor Flash

2014-03-19 Thread 郭佳
I'm porting u-boot to P2040 based board these days. As u-boot/arch/powerpc/mpc85xx/start.s commented: *The processor starts at 0x_fffc and the code is first executed in the last 4K page in flash/rom.* The E500MCRM Chapter 6.6 mentioned: *This default TLB entry translates the first

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Daniel Schwierzeck
2014-03-19 11:51 GMT+01:00 Masahiro Yamada yamad...@jp.panasonic.com: Hi Wolfgang, On Wed, 19 Mar 2014 10:56:46 +0100 Wolfgang Denk w...@denx.de wrote: Dear Masahiro, In message 20140319135026.7a64.aa925...@jp.panasonic.com you wrote: +++ b/configs/beaver_defconfig @@ -0,0 +1,10

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Tom Rini
On Mon, Mar 17, 2014 at 05:52:59PM +0900, Masahiro Yamada wrote: In Kconfig, we use *_defconfig files for board configuration. In Linux Kernel, they are located under arch/${ARCH}/configs/ directory. It works in Linux Kernel because ARCH is always given from the command line for cross

[U-Boot] u-boot doesnt execute

2014-03-19 Thread Donkor, Cletus-Afrifa
Dear Sir/Madam, i am currently facing a few problems with my U-boot. I am using a customised Xilinx Zynq 7045 board. I have been struggling for the past few days to run linux on this board. I aquired the u-boot file from the Zynq 2013.4-release.tar.xz. I have been able to successfully download

Re: [U-Boot] u-boot doesnt execute

2014-03-19 Thread Michal Simek
Hi, This is not the list where you should ask this question. Please use forums.xilinx.com instead. Thanks, Michal On 03/19/2014 01:33 PM, Donkor, Cletus-Afrifa wrote: Dear Sir/Madam, i am currently facing a few problems with my U-boot. I am using a customised Xilinx Zynq 7045 board. I

[U-Boot] [PATCH] config:trats2: Change u-boot's TEXT_BASE from 0x78100000 to 0x43e00000

2014-03-19 Thread Lukasz Majewski
The u-boot's image TEXT_BASE needs to be changed to 0x43e0 from 0x7810. This change provides compatibility with other trats2 (RD_PQ) devices (http://download.tizen.org/releases/system/). Signed-off-by: Lukasz Majewski l.majew...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com ---

[U-Boot] MMC and buffer alignment question

2014-03-19 Thread Markus Niebel
Hello Pantelis, short question to the usage of the mmc command (and also the mmc driver API): is it intended that mmc read / write may fail when the supplied address in RAM is not aligned? ARMV7 will give output like this: U-Boot mmc read 1202 44 44 MMC read: dev # 0, block # 68, count

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Wolfgang Denk
Dear Daniel Schwierzeck, please do not full-quote. Thanks. In message CACUy__Uc8-xDMRiJm7SM1UfF_hVAdHKN9_MZC5FV0D=zdra...@mail.gmail.com you wrote: maybe we should import get_maintainers.pl from kernel and readd MAINTAINERS in the according format. So we could easily maintain infos about

[U-Boot] Porting U-Boot Issue - Linking fails

2014-03-19 Thread soderstrom
Hi, I'm attempting to port u-boot for NS7520 (arm7tdmi). My idea was to first revive the port of NS9750 (removed in commit4cfc611b4a4ce009cfad46804bec2a1caad8e329) and then rename and configure it for NS7520 which is quite similar. But I've kind of hit a wall, that I don't understand.

[U-Boot] Question about mpc85xx startup using Nor Flash

2014-03-19 Thread 郭佳
I'm porting u-boot to P2040 based board these days. As u-boot/arch/powerpc/mpc85xx/start.s commented: *The processor starts at 0x_fffc and the code is first executed in the last 4K page in flash/rom.* The E500MCRM Chapter 6.6 mentioned: *This default TLB entry translates the first

Re: [U-Boot] MMC and buffer alignment question

2014-03-19 Thread Eric Nelson
Hi Markus, On 03/19/2014 07:16 AM, Markus Niebel wrote: Hello Pantelis, short question to the usage of the mmc command (and also the mmc driver API): is it intended that mmc read / write may fail when the supplied address in RAM is not aligned? If not intended, it is known. ARMV7 will

Re: [U-Boot] MMC and buffer alignment question

2014-03-19 Thread Wolfgang Denk
Dear Eric Nelson, In message 5329a80b.9020...@boundarydevices.com you wrote: short question to the usage of the mmc command (and also the mmc driver API): is it intended that mmc read / write may fail when the supplied address in RAM is not aligned? If not intended, it is known. I

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Tom Rini
On Wed, Mar 19, 2014 at 03:20:49PM +0100, Wolfgang Denk wrote: Dear Daniel Schwierzeck, please do not full-quote. Thanks. In message CACUy__Uc8-xDMRiJm7SM1UfF_hVAdHKN9_MZC5FV0D=zdra...@mail.gmail.com you wrote: maybe we should import get_maintainers.pl from kernel and readd

Re: [U-Boot] MMC and buffer alignment question

2014-03-19 Thread Markus Niebel
Am 19.03.2014 15:44, wrote Wolfgang Denk: Dear Eric Nelson, In message 5329a80b.9020...@boundarydevices.com you wrote: short question to the usage of the mmc command (and also the mmc driver API): is it intended that mmc read / write may fail when the supplied address in RAM is not

[U-Boot] [PATCH v4 6/6] trats/trats2: enable CONFIG_RANDOM_UUID

2014-03-19 Thread Przemyslaw Marczak
Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com Cc: Minkyu Kang mk7.k...@samsung.com Cc: Piotr Wilczek p.wilc...@samsung.com Cc: Stephen Warren swar...@nvidia.com Cc: Lukasz Majewski l.majew...@samsung.com Cc: tr...@ti.com --- include/configs/trats.h | 1 + include/configs/trats2.h | 1 +

[U-Boot] [PATCH v4 1/6] part_efi: move uuid-string conversion functions into lib/uuid.c

2014-03-19 Thread Przemyslaw Marczak
Changes: - move uuid-string conversion functions into lib/uuid.c so they can be used by code outside part_efi.c. - rename uuid_string() to uuid_bin_to_str() for consistency with existing uuid_str_to_bin() - add an error return code to uuid_str_to_bin() Update existing code to the new library

[U-Boot] [PATCH v4 3/6] lib: uuid: add functions to generate UUID version 4

2014-03-19 Thread Przemyslaw Marczak
This patch adds support to generate UUID (Universally Unique Identifier) in version 4 based on RFC4122, which is randomly. Source: https://www.ietf.org/rfc/rfc4122.txt Changes: - add new config: CONFIG_RANDOM_UUID: compile uuid.c and rand.c lib/uuid.c: - add gen_rand_uuid() - this function

[U-Boot] [PATCH v4 5/6] cmd:gpt: randomly generate each partition uuid if undefined

2014-03-19 Thread Przemyslaw Marczak
Changes: - randomly generate partition uuid if any is undefined and CONFIG_RAND_UUID is defined - print debug info about set/unset/generated uuid - update doc/README.gpt Signed-off-by: Przemyslaw Marczak p.marc...@samsung.com Acked-by: Lukasz Majewski l.majew...@samsung.com Cc: Piotr Wilczek

[U-Boot] [PATCH v4 2/6] lib: uuid: code refactor for proper maintain between uuid bin and string

2014-03-19 Thread Przemyslaw Marczak
Changes in lib/uuid.c to: - uuid_str_to_bin() - uuid_bin_to_str() New parameter is added to specify input/output string format in listed functions This change allows easy recognize which UUID type is or should be stored in given string array. Binary data of UUID and GUID is always stored in big

[U-Boot] [PATCH v4 4/6] new commands: uuid and guid - generate random unique identifier

2014-03-19 Thread Przemyslaw Marczak
Those commands basis on implementation of random UUID generator version 4 which is described in RFC4122. The same algorithm is used for generation both ids but string representation is different as below. char: 0914 19 24 36 ----

Re: [U-Boot] MMC and buffer alignment question

2014-03-19 Thread Eric Nelson
Hi Markus and Wolfgang, On 03/19/2014 10:40 AM, Markus Niebel wrote: Am 19.03.2014 15:44, wrote Wolfgang Denk: Dear Eric Nelson, In message 5329a80b.9020...@boundarydevices.com you wrote: short question to the usage of the mmc command (and also the mmc driver API): is it intended that mmc

Re: [U-Boot] Secure booting

2014-03-19 Thread Simon Glass
+U-Boot mailing list Hi Jyoti, On 17 March 2014 22:25, JYOTI DUBEY jyoti0...@gmail.com wrote: I am using i.mx6 board (Sabre lite design). The document that I have followed is attached with this mail. But since there are differences between u-boot 2009(as per the document) and u-boot 2013 I

Re: [U-Boot] [PATCH v4 6/6] PPC 85xx: Add qemu-ppce500 machine

2014-03-19 Thread York Sun
On 02/20/2014 07:59 AM, Scott Wood wrote: On Thu, 2014-02-20 at 13:52 +0100, Alexander Graf wrote: diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index 3e99b07..51f2085 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu.c +++ b/arch/powerpc/cpu/mpc85xx/cpu.c @@ -272,6

Re: [U-Boot] MMC and buffer alignment question

2014-03-19 Thread Wolfgang Denk
Dear Eric Nelson, In message 5329df5a.7090...@boundarydevices.com you wrote: IMHO, this seems like overkill. Should we also prevent over-writing the stack or heap? No. But we should not add any specific alignment requirements to commands that transfer data to memory. If some driver has

Re: [U-Boot] [PATCH v4 2/6] lib: uuid: code refactor for proper maintain between uuid bin and string

2014-03-19 Thread Wolfgang Denk
Dear Przemyslaw Marczak, In message 1395251911-26540-2-git-send-email-p.marc...@samsung.com you wrote: Changes in lib/uuid.c to: - uuid_str_to_bin() - uuid_bin_to_str() Checkpatch says: WARNING: do not add new typedefs #199: FILE: include/uuid.h:10: +typedef enum { WARNING: line over 80

Re: [U-Boot] [PATCH v4 1/6] part_efi: move uuid-string conversion functions into lib/uuid.c

2014-03-19 Thread Wolfgang Denk
Dear Przemyslaw Marczak, In message 1395251911-26540-1-git-send-email-p.marc...@samsung.com you wrote: Changes: - move uuid-string conversion functions into lib/uuid.c so they can be used by code outside part_efi.c. - rename uuid_string() to uuid_bin_to_str() for consistency with existing

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Stephen Warren
On 03/18/2014 10:50 PM, Masahiro Yamada wrote: diff --git a/configs/beaver_defconfig b/configs/beaver_defconfig new file mode 100644 index 000..fbf00f3 --- /dev/null +++ b/configs/beaver_defconfig @@ -0,0 +1,10 @@ +CONFIG_SPL=y +CONFIG_ARM=y +CONFIG_SYS_CPU=armv7 +CONFIG_SOC_DIR=y

[U-Boot] [PATCH] 4xx: cleanup ethernet phy initialization on PMC440 boards

2014-03-19 Thread Matthias Fuchs
This patch moves phy initialization for VSC8601 ethernet phys that are used on early board revisions into a separate setup function. Signed-off-by: Matthias Fuchs matthias.fu...@esd.eu --- board/esd/pmc440/pmc440.c | 45 ++--- 1 files changed, 22

[U-Boot] ARMv8/FSL_LSCH3: SoC and board support

2014-03-19 Thread York Sun
[Patch v2 1/5] Added 64-bit MMIO accessors for ARMv8 [Patch v2 2/5] ARMv8/FSL_LSCH3: Add FSL_LSCH3 SoC [Patch v2 3/5] ARMv8/ls2100a_emu: Add LS2100A emulator board support [Patch v2 4/5] armv8/fsl-lsch3: Add support to load and start MC [Patch v2 5/5] fsl-lsch3/ls2100a_emu: Enabled MC I have sent

[U-Boot] [Patch v2 1/5] Added 64-bit MMIO accessors for ARMv8

2014-03-19 Thread York Sun
From: J. German Rivera german.riv...@freescale.com This is needed for accessing peripherals with 64-bit MMIO registers, from ARMv8 processors. Signed-off-by: J. German Rivera german.riv...@freescale.com --- arch/arm/include/asm/io.h |8 1 file changed, 8 insertions(+) diff --git

[U-Boot] [Patch v2 2/5] ARMv8/FSL_LSCH3: Add FSL_LSCH3 SoC

2014-03-19 Thread York Sun
Freescale LayerScape with Chassis Generation 3 is a set of SoCs with ARMv8 cores and 3rd generation of Chassis. We use different MMU setup to support memory map and cache attribute for these SoCs. MMU and cache are enabled very early to bootst performance, especially for early development on

[U-Boot] [Patch v2 3/5] ARMv8/ls2100a_emu: Add LS2100A emulator board support

2014-03-19 Thread York Sun
LS2100A is an ARMv8 implementation. This adds board support for emulator: Two DDR controllers UART2 is used as the console IFC timing is tightened for speedy booting Signed-off-by: York Sun york...@freescale.com Signed-off-by: Arnab Basu arnab.b...@freescale.com ---

[U-Boot] [Patch v2 5/5] fsl-lsch3/ls2100a_emu: Enabled MC

2014-03-19 Thread York Sun
Reserve last 512MB from main memory for MC to use. Specify the location of MC firmware and DPL image in NOR flash. Signed-off-by: J. German Rivera german.riv...@freescale.com Signed-off-by: York Sun york...@freescale.com --- board/freescale/ls2100a_emu/ls2100a_emu.c | 10 ++

[U-Boot] [PATCH] driver/fsl_ifc: Add a function to finalize CS0 address binding

2014-03-19 Thread York Sun
For fsl-lsch3 NOR flash boot, IFC CS0 needs to be binded with address within 32-bit at fist. After u-boot relocates to DDR, CS0 can be binded to higher address to support large space. Signed-off-by: York Sun york...@freescale.com CC: Prabhakar Kushwaha prabha...@freescale.com ---

[U-Boot] [Patch v2 4/5] armv8/fsl-lsch3: Add support to load and start MC Firmware

2014-03-19 Thread York Sun
From: J. German Rivera german.riv...@freescale.com Adding supoort to load and start the Layerscape Management Complex (MC) firmware. First, the MC GCR register is set to 0 to reset all cores. MC firmware and DPL images are copied from their location in NOR flash to DDR. MC registers are updated

Re: [U-Boot] ARMv8/FSL_LSCH3: SoC and board support

2014-03-19 Thread York Sun
On 03/19/2014 02:02 PM, York Sun wrote: [Patch v2 1/5] Added 64-bit MMIO accessors for ARMv8 [Patch v2 2/5] ARMv8/FSL_LSCH3: Add FSL_LSCH3 SoC [Patch v2 3/5] ARMv8/ls2100a_emu: Add LS2100A emulator board support [Patch v2 4/5] armv8/fsl-lsch3: Add support to load and start MC [Patch v2 5/5]

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Masahiro Yamada
Hi Tom, So, what this series is doing, roughly, is turning just the boards.cfg entry into a small Kconfig snippet, and saying we'll keep using include/configs/foo.h for most of the work. This is just the first step in moving away from include/configs/foo.h eventually, yes? Yes, exactly.

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Masahiro Yamada
Hi Tom, In message CACUy__Uc8-xDMRiJm7SM1UfF_hVAdHKN9_MZC5FV0D=zdra...@mail.gmail.com you wrote: maybe we should import get_maintainers.pl from kernel and readd MAINTAINERS in the according format. So we could easily maintain infos about board maintainers, custodians,

Re: [U-Boot] [RFC PATCH 04/17] kconfig: add defconfig files for all boards

2014-03-19 Thread Masahiro Yamada
Hi Daniel, agree. But at first we should introduce Kconfig files in all arch, CPU, SOC, SOC common, board vendor, board and driver directories where we put all CONFIG_SYS_ symbols. We also need to convert the current config options for CPU, SOC, vendor and board. For example:

Re: [U-Boot] problem on SPL build

2014-03-19 Thread Simon
Hi Minkyu, I want to try to support SPL at smdkc100, but I just a newer to u-boot and linux. I am afraid that it's a difficult job to me. Still, I will try. If you could contribute this, It will be a wonderful job. Best regards, Simon 2014-03-19 18:17 GMT+08:00 Minkyu Kang mk7.k...@samsung.com:

[U-Boot] [PATCH v3 0/4] samsung: Add mmc controller to use dwmmc

2014-03-19 Thread Beomho Seo
This patch set for use dw mmc controller. Patch enable supporting device tree for dw mmc controller. For use dwmmc controller on trats2 board, enable configuration dw_mmc, exynos_dwmmc, bounce_buffer and then disable sdhci configuration. This patch set tested on TRATS2 board. Changes for v3: -

[U-Boot] [PATCH v3 1/4]drivers: mmc: dwmmc: enable support for DT

2014-03-19 Thread Beomho Seo
This patch enables for device tree for dw-mmc driver. Driver have been fixed because it is used exynos5 and exynos4. Add, fdt compat id of exynos4 dwmmc. Signed-off-by: Beomho Seo beomho@samsung.com Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Tested-by: Piotr Wilczek

[U-Boot] {PATCH v3 3/4] arm: exynos: clock: Remove exynos4x12_set_mmc_clk function

2014-03-19 Thread Beomho Seo
exynos4x12_set_mmc_clk function have been removed. Because, exynos4x12_clock and exynos4_clock return smae div_fsys* value. Signed-off-by: Beomho Seo beomho@samsung.com Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Tested-by: Piotr Wilczek p.wilc...@samsung.com Cc: Lukasz Majewski

[U-Boot] {PATCH v3 4/4] board: trats2: Enable device tree on Trats2

2014-03-19 Thread Beomho Seo
This patch add dwmmc emmc controller node on exynos4 and exynos4412 device tree. Signed-off-by: Beomho Seo beomho@samsung.com Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Tested-by: Piotr Wilczek p.wilc...@samsung.com Cc: Lukasz Majewski l.majew...@samsung.com Cc: Piotr Wilczek

[U-Boot] [PATCH v3 2/4] arm: exynos: pinmux: add sdmmc4 gpio configratuion

2014-03-19 Thread Beomho Seo
For use dwmmc controller at exynos4, add SDMMC4 gpio configuration. In case SDMMC2, do not use 8 bit mode at exynos4. Signed-off-by: Beomho Seo beomho@samsung.com Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Tested-by: Piotr Wilczek p.wilc...@samsung.com Cc: Lukasz Majewski

Re: [U-Boot] {PATCH v3 4/4] board: trats2: Enable device tree on Trats2

2014-03-19 Thread Beomho Seo
On 03/20/2014 01:14 PM, Beomho Seo wrote: This patch add dwmmc emmc controller node on exynos4 and exynos4412 device tree. Signed-off-by: Beomho Seo beomho@samsung.com Signed-off-by: Jaehoon Chung jh80.ch...@samsung.com Tested-by: Piotr Wilczek p.wilc...@samsung.com Cc: Lukasz