Re: [U-Boot] Regarding u-boot patch about accurate boot time measurement

2014-02-18 Thread Abdullah Yıldız
Hi, On Tue, Feb 18, 2014 at 12:16 AM, Simon Glass s...@chromium.org wrote: Hi, On 17 February 2014 05:07, abdullah Yıldız ayil...@cse.yeditepe.edu.tr wrote: Hi Albert, On Mon, Feb 17, 2014 at 1:58 PM, Albert ARIBAUD albert.u.b...@aribaud.net wrote: Hi Abdullah, On Mon, 17 Feb 2014

Re: [U-Boot] [PATCH v8 0/38] Switch over to real Kbuild

2014-02-18 Thread Masahiro Yamada
Hello Simon, I'm not sure whether to start a new thread or not, but here in one observations which might be useful. With current master, a 'null' build (with nothing changed) takes about 5s for me. time

Re: [U-Boot] [PATCH v2 1/3] dts: re-write dts/Makefile more simply with Kbuild

2014-02-18 Thread Masahiro Yamada
Hello Simon, Useful rules in scripts/Makefile.lib allows us to easily generate a device tree blob and wrap it in assembly code. We do not need to parse a linker script to get output format and arch. This commit deletes ./u-boot.dtb since it is a copy of dts/dt.dtb I'd rather have

Re: [U-Boot] [PATCH] dts: re-write dts/Makefile more simply with Kbuild

2014-02-18 Thread Masahiro Yamada
Hello Simon, - dts/dt.dtb This is a temporary file, probably deleted during the build. No. It is a temporary file, but it must not be deleted during the build. Otherwise, dts/dt.dtb will be re-generated at every build even when it shouldn't. I'm not even sure if it is created when

Re: [U-Boot] [PATCH v2 2/3] dts: move device tree sources to arch/$(ARCH)/dts/

2014-02-18 Thread Masahiro Yamada
Hello Simon, On 4 February 2014 02:38, Masahiro Yamada yamad...@jp.panasonic.com wrote: Unlike Linux Kernel, U-Boot historically had *.dts files under board/$(VENDOR)/dts/ and *.dtsi files under arch/$(ARCH)/dts/. I think arch/$(ARCH)/dts dicretory is a better location to

Re: [U-Boot] u-boot - timestamp

2014-02-18 Thread TigerLiu
Hi, Denk: Thanks a lot! I have tried it, and it seemed wonderful! Its mechanism is: Using host pc's time stamp to tag the kermit's every output msg line, right? Best wishes, ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] pre-compiled ARC gcc

2014-02-18 Thread Masahiro Yamada
Hello Alexey, Can I download ARC gcc from somewhere? I prefer a pre-built one. I want to build all boards over all architectures. Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] RFC unified boot environment

2014-02-18 Thread Stefano Babic
Hi Dennis, On 17/02/2014 18:56, Dennis Gilmore wrote: Hi All, The attached patches build on the work for generic distro config, as well as Stephen Warrens implementation for tegra. First, thanks to make order on this issue. I have added a header to be included that will allow all boards

Re: [U-Boot] [PATCH] endian dependency fix

2014-02-18 Thread Masahiro Yamada
Hi Yoshinori, You should read the patch submission rules (http://www.denx.de/wiki/U-Boot/Patches) before posting patches. - Use the imperative tense in your summary line I mean, fix blah blah rather than blah blah fix - If applicable, prefix the summary line with a word describing what

Re: [U-Boot] pre-compiled ARC gcc

2014-02-18 Thread Alexey Brodkin
Hello Masahiro-san, On Tue, 2014-02-18 at 19:04 +0900, Masahiro Yamada wrote: Hello Alexey, Can I download ARC gcc from somewhere? I prefer a pre-built one. I want to build all boards over all architectures. Indeed there're pre-built versions of tools for ARC. Please look here:

[U-Boot] [PATCH] arc: fix relocation for big-endian target

2014-02-18 Thread Alexey Brodkin
In case of little-endian ARC700 instructions (which may include target address) are encoded as middle-endian. That's why it's required to swap bytes after read and ten right before write back. But in case of big-endian ARC700 instructions are encoded as a plain big-endian. Thus no need for byte

Re: [U-Boot] booting i.mx6

2014-02-18 Thread Christian Gmeiner
2014-02-18 8:35 GMT+01:00 JYOTI DUBEY jyoti0...@gmail.com: While launching the imx_usb script with a u-boot.imx, I've got the following message error : config file ./imx_usb.conf main:Could not open device vid=0x15a2 pid=0x54 err=-3 I gave many tries to correct it. Can some body help me to

Re: [U-Boot] [PATCH v2 3/7] usb: eth: introduce support for Moschip USB ethernet

2014-02-18 Thread Marek Vasut
Hello Wolfgang, Dear Marek, In message 20140217.38911.ma...@denx.de you wrote: +#define PHY_CMD1_READ BIT(6) +#define PHY_CMD1_WRITE BIT(5) +#define PHY_CMD1_PHYADDR BIT(0) + +#define PHY_CMD2_PEND BIT(7) +#define PHY_CMD2_READY

[U-Boot] [PATCH 02/10] ARM: AM43xx: clocks: Enable CPGMAC clock control

2014-02-18 Thread Tom Rini
From: Mugunthan V N mugunthan...@ti.com Enable CPGMAC clock control for AM43xx to use ethernet in U-Boot Signed-off-by: Mugunthan V N mugunthan...@ti.com --- arch/arm/cpu/armv7/am33xx/clock_am43xx.c |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/cpu/armv7/am33xx/clock_am43xx.c

[U-Boot] [PATCH 01/10] drivers: net: cpsw: add support to have phy address from cpsw platform data

2014-02-18 Thread Tom Rini
From: Mugunthan V N mugunthan...@ti.com Some platforms like AM437x have different EVMs with different phy addresses, so this patch adds support for passing phy address via cpsw plaform data. Also renamed phy_id to phy_addr so better understanding of the code. Reviewed-by: Felipe Balbi

[U-Boot] [PATCH 07/10] ARM: AM43xx: Add Ethernet boot support to SPL

2014-02-18 Thread Tom Rini
From: Mugunthan V N mugunthan...@ti.com Add Ethernet Boot support to SPL Acked-by: Tom Rini tr...@ti.com Signed-off-by: Mugunthan V N mugunthan...@ti.com --- board/ti/am43xx/board.c |2 -- include/configs/am43xx_evm.h | 10 -- 2 files changed, 8 insertions(+), 4 deletions(-)

[U-Boot] [PATCH 04/10] ARM: AM335x: add support for reading cpsw 2nd mac address from efuse

2014-02-18 Thread Tom Rini
From: Mugunthan V N mugunthan...@ti.com Adding support for reading cpsw 2nd mac address from efuse and pass it to kernel via dtb which will be used in dual emac mode of cpsw. Also adding mii command support to am335x common config. Acked-by: Tom Rini tr...@ti.com Signed-off-by: Mugunthan V N

[U-Boot] [PATCH 03/10] ARM: AM43xx: Add CPSW support to AM43xx EPOS and GP EVM

2014-02-18 Thread Tom Rini
From: Mugunthan V N mugunthan...@ti.com Adding support for CPSW to AM43xx EPOS nad GP EVM which is connected to RMII and RGMII phy respectively and enable cpsw in config. Reviewed-by: Felipe Balbi ba...@ti.com Signed-off-by: Mugunthan V N mugunthan...@ti.com --- board/ti/am43xx/board.c |

[U-Boot] [PATCH 08/10] ARM: AM43xx: EMIF: configure self-refresh entry delay

2014-02-18 Thread Tom Rini
From: Dave Gerlach d-gerl...@ti.com Per a suggestion from the hardware team, program the emif_pwr_mgmt_ctrl and emif_pwr_mgmt_ctrl_shdw registers within the EMIF to hold the desired delay in cycles that the EMIF waits without an access to enter self-refresh, in this case 8192 cycles. With this,

[U-Boot] [PATCH 06/10] ARM: AM4372: Update EMIF registers for DDR3

2014-02-18 Thread Tom Rini
From: Lokesh Vutla lokeshvu...@ti.com Updating EMIF_PHY_CTRL and adding EMIF_READ_WRITE_EXECUTION_THRESHOLD registers. In EMIF_PHY_CTRL: Updating [4:0]READ_LATENCY to 8, because at higher frequencies like 400MHz the read latency expected will be CL+3 as per tests from HW folks. Clearing

[U-Boot] [PATCH 10/10] ARM: AM43xx: Change DDR3 Reset Value

2014-02-18 Thread Tom Rini
From: Dave Gerlach d-gerl...@ti.com The bit DDR3_RST_DEF_VAL inside CTRL_DDR_IO represents the default value of the ddr reset value for DDR3 before the EMIF takes over. We must have this bit set high so that on exit from DeepSleep0 within the kernel the reset line has the proper value.

[U-Boot] [PATCH 09/10] ARM: AM43xx: Write sdram_config to secure_emif_sdram_config

2014-02-18 Thread Tom Rini
From: Dave Gerlach d-gerl...@ti.com The register secure_emif_sdram_config in control module is copied to the EMIF sdram_config register when it is coming out of DeepSleep0 in order to ensure that the EMIF comes up for the correct type of DDR. Without this, resume can hang from within the kernel.

[U-Boot] [PATCH 05/10] ARM: DRA7xx: add support for reading cpsw 2nd mac from efuse

2014-02-18 Thread Tom Rini
From: Mugunthan V N mugunthan...@ti.com Adding support for reading cpsw 2nd mac address from efuse and pass it to kernel via dtb which will be used in dual emac mode of cpsw. Also correct the bit masking of mac id read from the efuse. Acked-by: Tom Rini tr...@ti.com Signed-off-by: Mugunthan V N

Re: [U-Boot] u-boot - timestamp

2014-02-18 Thread Wolfgang Denk
Dear tiger...@via-alliance.com, In message fe7aded5c2218b4786c09cd97dc4c49fdae...@exchbj02.viatech.com.bj you wrote: I have tried it, and it seemed wonderful! fine. Its mechanism is: Using host pc's time stamp to tag the kermit's every output msg line, right? Yes. We use the conole

[U-Boot] [RFC] [PATCH] rewrite doc/README.arm-unaligned-accesses

2014-02-18 Thread Albert ARIBAUD
Signed-off-by: Albert ARIBAUD albert.u.b...@aribaud.net --- There has been a few back-and-forths (and sideways too) about how unaligned accesses are considered in ARM U-Boot. This post is to (try and) get us together in one place, get things straight about what is currently done and why as far as

[U-Boot] Error Code rm cannot remove directory 'asm/arch' : Is a directory

2014-02-18 Thread Ambuj Saxena
Hello All, I am trying to learn u-boot in xp. *http://d1.amobbs.com/bbs_upload782111/files_41/ourdev_649777NIY8KG.pdf http://d1.amobbs.com/bbs_upload782111/files_41/ourdev_649777NIY8KG.pdf* When I am trying to build u-boot I got an error. When I call command *make am3517_evm_config*

Re: [U-Boot] Error Code rm cannot remove directory 'asm/arch' : Is a directory

2014-02-18 Thread Albert ARIBAUD
Hi Ambuj, On Tue, 18 Feb 2014 16:51:12 +0530, Ambuj Saxena am...@sarvajal.com wrote: Hello All, I am trying to learn u-boot in xp. *http://d1.amobbs.com/bbs_upload782111/files_41/ourdev_649777NIY8KG.pdf http://d1.amobbs.com/bbs_upload782111/files_41/ourdev_649777NIY8KG.pdf* Why

Re: [U-Boot] [PATCH v2 2/3] dts: move device tree sources to arch/$(ARCH)/dts/

2014-02-18 Thread Tom Rini
On Thu, Feb 06, 2014 at 02:50:50PM +0900, Masahiro Yamada wrote: Hello Simon, Hi Masahiro, On 4 February 2014 02:38, Masahiro Yamada yamad...@jp.panasonic.com wrote: Unlike Linux Kernel, U-Boot historically had *.dts files under board/$(VENDOR)/dts/ and *.dtsi files under

Re: [U-Boot] [PATCH v8 0/38] Switch over to real Kbuild

2014-02-18 Thread Tom Rini
On Sat, Feb 15, 2014 at 06:30:59PM -0700, Simon Glass wrote: Hi Masahiro, On 6 February 2014 14:10, Tom Rini tr...@ti.com wrote: On Mon, Feb 03, 2014 at 12:46:30PM +0900, Masahiro Yamada wrote: Hello Simon and Tom, This is my analysis of Kbuild performance. [snip] Conclusion:

Re: [U-Boot] [PATCH 5/5] NAND: DaVinci: allow forced disable of subpage writes

2014-02-18 Thread Tom Rini
On Wed, Feb 12, 2014 at 06:00:22PM -0600, Scott Wood wrote: On Tue, 2014-01-28 at 23:19 +, Karicheri, Muralidharan wrote: -Original Message- From: Scott Wood [mailto:scottw...@freescale.com] Sent: Wednesday, January 22, 2014 3:48 PM To: Karicheri, Muralidharan Cc:

Re: [U-Boot] [PATCH v2 2/3] dts: move device tree sources to arch/$(ARCH)/dts/

2014-02-18 Thread Michal Simek
On 02/18/2014 03:32 PM, Tom Rini wrote: On Thu, Feb 06, 2014 at 02:50:50PM +0900, Masahiro Yamada wrote: Hello Simon, Hi Masahiro, On 4 February 2014 02:38, Masahiro Yamada yamad...@jp.panasonic.com wrote: Unlike Linux Kernel, U-Boot historically had *.dts files under board/$(VENDOR)/dts/

Re: [U-Boot] RFC unified boot environment

2014-02-18 Thread Dennis Gilmore
On Tue, 18 Feb 2014 11:18:22 +0100 Stefano Babic sba...@denx.de wrote: Hi Dennis, On 17/02/2014 18:56, Dennis Gilmore wrote: Hi All, The attached patches build on the work for generic distro config, as well as Stephen Warrens implementation for tegra. First, thanks to make

Re: [U-Boot] [RFC] try to merge different i.MX environment

2014-02-18 Thread Tom Rini
On Sat, Feb 15, 2014 at 12:57:43PM +0100, Stefano Babic wrote: Hi Dennis, On 14/02/2014 17:14, Dennis Gilmore wrote: On Fri, 14 Feb 2014 16:06:55 +0100 Stefano Babic sba...@denx.de wrote: Signed-off-by: Stefano Babic sba...@denx.de CC: Fabio Estevam fabio.este...@freescale.com CC:

[U-Boot] Pull request: u-boot-spi/master

2014-02-18 Thread Jagannadha Sutradharudu Teki
Hi Tom, Please take this PR, few fixes and pending patches on qspi am43xx. thanks! -- Jagan. The following changes since commit 22a240c32c1340183fce12867ae5f8736b92a638: serial/serial_arc - add driver for ARC UART (2014-02-07 12:55:07 -0500) are available in the git repository at:

Re: [U-Boot] Pull request: u-boot-nios/master

2014-02-18 Thread Tom Rini
On Tue, Feb 11, 2014 at 04:08:36PM +0800, Thomas Chou wrote: Hi Tom, The following changes since commit 22a240c32c1340183fce12867ae5f8736b92a638: serial/serial_arc - add driver for ARC UART (2014-02-07 12:55:07 -0500) are available in the git repository at:

Re: [U-Boot] Pull request: u-boot-mmc 07022014

2014-02-18 Thread Tom Rini
On Fri, Feb 07, 2014 at 06:37:13PM +0200, Pantelis Antoniou wrote: Hi Tom, The following changes since commit dbf3de2dd26cae37d16b00b348828c883b658cc5: include/usb/s3c_udc.h: Add asm/sizes.h (2014-02-06 14:26:05 -0500) are available in the git repository at:

Re: [U-Boot] Pull request: u-boot-arm/master

2014-02-18 Thread Tom Rini
On Thu, Feb 13, 2014 at 06:43:41PM +0100, Albert ARIBAUD wrote: Hi Tom, The following changes since commit 0876703cf2ee107372b56037d4eeeb7604c56796: boards.cfg: Keep the entries sorted (2014-01-27 08:28:35 -0500) are available in the git repository at:

[U-Boot] [PATCH] DRA7: fix ABB efuse offset for OPP_NOM

2014-02-18 Thread Nishanth Menon
commit 194dd74ad919e57026f385aaab7f89acf7ea79ef (DRA7: add ABB setup for MPU voltage domain) Made an offset typo error by using 0x4A003B24 as the efuse offset for OPP_NOM. As per TI documentation, 0x4A003B24 is for OPP_OD, and 0x4A003B20 is for OPP_NOM. Fix the same. Reported-by: Praveen Rao

Re: [U-Boot] Pull request: u-boot-arm/master

2014-02-18 Thread Stephen Warren
On 02/18/2014 10:50 AM, Tom Rini wrote: On Thu, Feb 13, 2014 at 06:43:41PM +0100, Albert ARIBAUD wrote: Hi Tom, The following changes since commit 0876703cf2ee107372b56037d4eeeb7604c56796: boards.cfg: Keep the entries sorted (2014-01-27 08:28:35 -0500) are available in the git

Re: [U-Boot] [PATCH v3 1/3] usb: tegra: fix USB2 powerdown for Tegra30 and later

2014-02-18 Thread Stephen Warren
On 02/16/2014 12:50 PM, Stefan Agner wrote: Clear the forced powerdown bit in the UTMIP_PLL_CFG2_0 register which brings USB2 in UTMI mode to work. This was clearly missing since the forced powerdown bit is set in reset by default for all USB ports. Acked-by: Stephen Warren swar...@nvidia.com

Re: [U-Boot] Pull request: u-boot-arm/master

2014-02-18 Thread Tom Rini
On Tue, Feb 18, 2014 at 11:21:28AM -0700, Stephen Warren wrote: On 02/18/2014 10:50 AM, Tom Rini wrote: On Thu, Feb 13, 2014 at 06:43:41PM +0100, Albert ARIBAUD wrote: Hi Tom, The following changes since commit 0876703cf2ee107372b56037d4eeeb7604c56796: boards.cfg: Keep the

Re: [U-Boot] [PATCH v3 2/3] usb: tegra: fix PHY configuration

2014-02-18 Thread Stephen Warren
On 02/16/2014 12:50 PM, Stefan Agner wrote: On Tegra30 and later, the PTS (parallel transceiver select) and STS (serial transceiver select) are part of the HOSTPC1_DEVLC_0 register rather than PORTSC1_0 register. Since the reset configuration usually matches the intended configuration, this

Re: [U-Boot] Pull request: u-boot-arm/master

2014-02-18 Thread Albert ARIBAUD
Hi Tom, On Tue, 18 Feb 2014 12:50:40 -0500, Tom Rini tr...@ti.com wrote: On Thu, Feb 13, 2014 at 06:43:41PM +0100, Albert ARIBAUD wrote: Hi Tom, The following changes since commit 0876703cf2ee107372b56037d4eeeb7604c56796: boards.cfg: Keep the entries sorted (2014-01-27

Re: [U-Boot] [PATCH v3 3/3] usb: tegra: combine header file

2014-02-18 Thread Stephen Warren
On 02/16/2014 12:50 PM, Stefan Agner wrote: Combine the Tegra USB header file into one header file for all SoCs. Use ifdef to account for the difference, especially Tegra20 is quite different from newer SoCs. This avoids duplication especially between Tegra30 and newer devices. Aside from a

Re: [U-Boot] [PATCH v3 3/3] usb: tegra: combine header file

2014-02-18 Thread Stefan Agner
Am 2014-02-18 20:27, schrieb Stephen Warren: On 02/16/2014 12:50 PM, Stefan Agner wrote: +#if defined(CONFIG_TEGRA20) || defined(CONFIG_TEGRA30) +/* USB2_IF_ULPI_TIMING_CTRL_0 */ +#define ULPI_OUTPUT_PINMUX_BYP (1 10) +#define ULPI_CLKOUT_PINMUX_BYP

Re: [U-Boot] [PATCH v3 3/3] usb: tegra: combine header file

2014-02-18 Thread Stephen Warren
On 02/18/2014 03:20 PM, Stefan Agner wrote: Am 2014-02-18 20:27, schrieb Stephen Warren: On 02/16/2014 12:50 PM, Stefan Agner wrote: +#if defined(CONFIG_TEGRA20) || defined(CONFIG_TEGRA30) +/* USB2_IF_ULPI_TIMING_CTRL_0 */ +#define ULPI_OUTPUT_PINMUX_BYP (1 10) +#define

Re: [U-Boot] [PATCH v3 4/6] PPC: 85xx: Generalize DDR TLB mapping function

2014-02-18 Thread Scott Wood
On Tue, 2014-02-11 at 01:10 +0100, Alexander Graf wrote: - if (memsize) - print_size(memsize, left unmapped\n); + if (size) + print_size(size, left unmapped\n); +} The print_size should move to the caller, with some way to pass back the amout left unmapped.

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

2014-02-18 Thread Scott Wood
On Tue, 2014-02-11 at 01:10 +0100, Alexander Graf wrote: diff --git a/arch/powerpc/cpu/mpc85xx/start.S b/arch/powerpc/cpu/mpc85xx/start.S index bb0025c..8982c78 100644 --- a/arch/powerpc/cpu/mpc85xx/start.S +++ b/arch/powerpc/cpu/mpc85xx/start.S @@ -80,6 +80,11 @@ _start_e500: li

Re: [U-Boot] [PATCH] endian dependency fix

2014-02-18 Thread Nobuhiro Iwamatsu
Hi, all. Masahiro, thank you for the explanation. Yoshinori, please resend patches after read patch submission rules. Best regards, Nobuhiro 2014-02-18 19:19 GMT+09:00 Masahiro Yamada yamad...@jp.panasonic.com: Hi Yoshinori, You should read the patch submission rules

Re: [U-Boot] [PATCH v8 0/38] Switch over to real Kbuild

2014-02-18 Thread Masahiro Yamada
Hello Tom, I notice Kbuild fails to build venice2 board because commit 52ef43b0529 added an empty Makefile, arch/arm/cpu/armv7/tegra124/Makefile. What shall we do with this? Do you need v10 or shall I fix it in a follow-up patch? Best Regards Masahiro Yamada

Re: [U-Boot] [PATCH 0/15] Follow-up for Kbuild series: more misc targets and short logs

2014-02-18 Thread Masahiro Yamada
Hello Simon, git am ~/Downloads/bundle-5618-masap.mbox Applying: kbuild: consolidate version and timestamp headers generation error: patch failed: Makefile:1128 error: Makefile: patch does not apply error: patch failed: doc/DocBook/Makefile:131 error: doc/DocBook/Makefile: patch does not

Re: [U-Boot] [PATCH v2] cosmetic: FIT: fix a strange comment

2014-02-18 Thread Simon Glass
On 17 February 2014 22:39, Masahiro Yamada yamad...@jp.panasonic.com wrote: There is a strange comment in fit_image_load(). This function can be used for loading Kernel Image, FDT as well as ramdisk. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Simon Glass s...@chromium.org

Re: [U-Boot] Regarding u-boot patch about accurate boot time measurement

2014-02-18 Thread Simon Glass
Hi, On 18 February 2014 00:30, Abdullah Yıldız ayil...@cse.yeditepe.edu.tr wrote: Hi, On Tue, Feb 18, 2014 at 12:16 AM, Simon Glass s...@chromium.org wrote: Hi, On 17 February 2014 05:07, abdullah Yıldız ayil...@cse.yeditepe.edu.tr wrote: Hi Albert, On Mon, Feb 17, 2014 at 1:58 PM,

Re: [U-Boot] [PATCH v2 1/3] dts: re-write dts/Makefile more simply with Kbuild

2014-02-18 Thread Simon Glass
Hi Masahiro, On 18 February 2014 01:27, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon, Useful rules in scripts/Makefile.lib allows us to easily generate a device tree blob and wrap it in assembly code. We do not need to parse a linker script to get output format and

[U-Boot] introduction of www.xrefs.info

2014-02-18 Thread John Smith
hello, I made http://www.xrefs.info available to open source community in the hope of making open source developers more productive. The site hosts many open source code projects' cross references based on OpenGrok, which is a very fast cross reference tool, and easy to use. To access, you can go

Re: [U-Boot] [PATCH v2 2/3] dts: move device tree sources to arch/$(ARCH)/dts/

2014-02-18 Thread Simon Glass
Hi Masahiro, On 18 February 2014 01:43, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon, On 4 February 2014 02:38, Masahiro Yamada yamad...@jp.panasonic.com wrote: Unlike Linux Kernel, U-Boot historically had *.dts files under board/$(VENDOR)/dts/ and *.dtsi files

Re: [U-Boot] [PATCH v2 1/3] dts: re-write dts/Makefile more simply with Kbuild

2014-02-18 Thread Masahiro Yamada
Hello Simon, On Tue, 18 Feb 2014 21:45:12 -0800 Simon Glass s...@chromium.org wrote: Hi Masahiro, On 18 February 2014 01:27, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon, Useful rules in scripts/Makefile.lib allows us to easily generate a device tree blob and

Re: [U-Boot] [PATCH v8 0/38] Switch over to real Kbuild

2014-02-18 Thread Simon Glass
Hi Masahiro, On 18 February 2014 01:02, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon, I'm not sure whether to start a new thread or not, but here in one observations which might be useful. With current master, a 'null' build (with nothing changed) takes about 5s for me.

Re: [U-Boot] [PATCH v2 1/3] dts: re-write dts/Makefile more simply with Kbuild

2014-02-18 Thread Simon Glass
Hi Masahiro, On 18 February 2014 22:06, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon, On Tue, 18 Feb 2014 21:45:12 -0800 Simon Glass s...@chromium.org wrote: Hi Masahiro, On 18 February 2014 01:27, Masahiro Yamada yamad...@jp.panasonic.com wrote: Hello Simon,