Re: [U-Boot] [PATCH 3/6] sunxi: add Cubieboard2 support

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 00:12 +0300, Siarhei Siamashka wrote: The multi-soc support (within the Allwinner A10/A13/A20 family) is the feature, which is scheduled for this merge window. It is a present piece of work. I have never seen any such code, nor am I aware of any such thing being scheduled

Re: [U-Boot] [PATCH 2/2] sunxi: Set the AUXCR L2EN bit for sun4i/sun5i in FEL boot mode

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 03:21 +0300, Siarhei Siamashka wrote: On Mon, 21 Jul 2014 21:59:51 +0100 Ian Campbell i...@hellion.org.uk wrote: On Mon, 2014-07-21 at 22:39 +0200, Jeroen Hofstee wrote: Hello Ian, On 21-07-14 22:07, Ian Campbell wrote: On Fri, 2014-07-18 at 20:47 +0200,

Re: [U-Boot] [PATCH 1/2] sunxi: Use Thumb2 and move stack to gain more SRAM space in FEL mode

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 04:01 +0300, Siarhei Siamashka wrote: On Mon, 21 Jul 2014 19:31:45 +0100 Ian Campbell i...@hellion.org.uk wrote: On Fri, 2014-07-18 at 20:09 +0300, Siarhei Siamashka wrote: http://lists.phcomp.co.uk/pipermail/arm-netbook/2012-June/004341.html I think a

[U-Boot] [PATCH] fsl/usb: Add USB XHCI support

2014-07-25 Thread Ramneek Mehresh
Add USB XHCI stack support for USB2.0/USB3.0 devices Signed-off-by: Ramneek Mehresh ramneek.mehr...@freescale.com --- drivers/usb/host/Makefile| 1 + drivers/usb/host/xhci-fsl.c | 147 +++ include/linux/usb/xhci-fsl.h | 48 ++ 3 files

Re: [U-Boot] [PATCH v4 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Stefan Roese
Hi Gerald, On 24.07.2014 21:07, Gerald Kerma wrote: Signed-off-by: Gerald Kerma drea...@doukki.net --- Changes in v4: - rename drivers files to MVSDIO - fix MMC clock init which now use dev ID - clean debug strings - remove MVSDIO_TWEAK_NOSDHS quirk - remove dead code Thanks. But

Re: [U-Boot] [PATCH 04/14] sunxi: dram: Code cleanup and comments for the CKE delay handling

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 04:41 +0300, Siarhei Siamashka wrote: On Mon, 21 Jul 2014 19:51:50 +0100 Ian Campbell i...@hellion.org.uk wrote: On Fri, 2014-07-18 at 19:22 +0300, Siarhei Siamashka wrote: Before driving the CKE pin (Clock Enable) high, the DDR3 spec requires to wait for

Re: [U-Boot] [linux-sunxi] Re: [PATCH 05/14] sunxi: dram: Code cleanup for the impedance calibration

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 06:44 +0300, Siarhei Siamashka wrote: I'd also steer clear of describing this as a code cleanup when it also has functional changes. The 'cleanup' was just a bad choice of word. It is a reimplementation. Right, I think that's the crux of all issues raised (hence I

Re: [U-Boot] [PATCH 06/14] sunxi: dram: Configurable MBUS clock speed (use PLL5 or PLL6)

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 07:00 +0300, Siarhei Siamashka wrote: On Mon, 21 Jul 2014 20:31:30 +0100 Ian Campbell i...@hellion.org.uk wrote: On Fri, 2014-07-18 at 19:22 +0300, Siarhei Siamashka wrote: The sun5i hardware (Allwinner A13) introduced configurable MBUS clock speed. Allwinner

Re: [U-Boot] [PATCH 09/14] sunxi: dram: Add a helper function 'mctl_get_number_of_lanes'

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 07:26 +0300, Siarhei Siamashka wrote: + number_of_lanes = mctl_get_number_of_lanes(); There is a subtle functional change here since number_of_lanes can be 1 whereas n could never have been 2. Is that intended/ok? Please mention in the commit message. I tried

[U-Boot] [PATCH v2 2/2] board: Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards

2014-07-25 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Add the generic board infrastructure to all gdsys boards. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: None include/configs/controlcenterd.h | 2 ++ include/configs/dlvision-10g.h | 1 + include/configs/dlvision.h | 1 +

[U-Boot] [PATCH v2 0/2] Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards

2014-07-25 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v2: - make this work for all 4xx flavours Dirk Eibach (2): ppc: Make ppc4xx ready for CONFIG_SYS_GENERIC_BOARD board: Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards arch/powerpc/cpu/ppc4xx/cpu_init.c | 4 ++--

[U-Boot] [PATCH v2 1/2] ppc: Make ppc4xx ready for CONFIG_SYS_GENERIC_BOARD

2014-07-25 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc The generic board infrastructure assumes that gd is set by arch code. Signed-off-by: Dirk Eibach dirk.eib...@gdsys.cc --- Changes in v2: - make this work for all 4xx flavours arch/powerpc/cpu/ppc4xx/cpu_init.c | 4 ++-- 1 file changed, 2 insertions(+),

Re: [U-Boot] [PATCH v2 0/2] Add CONFIG_SYS_GENERIC_BOARD to all gdsys boards

2014-07-25 Thread Stefan Roese
On 25.07.2014 10:10, dirk.eib...@gdsys.cc wrote: From: Dirk Eibach dirk.eib...@gdsys.cc Changes in v2: - make this work for all 4xx flavours Thanks Dirk. Both patches applied to u-boot-ppc4xx/master. Thanks, Stefan ___ U-Boot mailing list

[U-Boot] Please pull u-boot-ppc4xx/master

2014-07-25 Thread Stefan Roese
Hi Tom! Please pull the following 2 patches from Dirk: The following changes since commit fbe79a17fddb7f0b11aa15b9c93e9a4a26165ed8: m68k: define __kernel_size_t as unsinged int again (2014-07-22 09:46:50 -0400) are available in the git repository at:

Re: [U-Boot] [PATCH v3 0/5] ARM: Allwinner sunxi USB Host EHCI support

2014-07-25 Thread Roman B.
Hi Marek, On Thu, Jul 24, 2014 at 10:54 PM, Roman Byshko rbys...@gmail.com wrote: This patch series adds USB Host EHCI support to the sunxi SoCs. It was tested on Cubietruck. Now you could boot from a USB stick or use a compatible Ethernet dongle to add a second Ethernet port in U-Boot.

[U-Boot] [PATCH] powerpc/T4240QDS/eth: fix for XFI

2014-07-25 Thread shh.xie
From: Shaohui Xie shaohui@freescale.com XFI is supported on T4QDS-XFI board, which removed slot3, and four LANEs of serdes2 are routed to a SFP+ cages, which to house fiber cable or direct attach cable(copper), the copper cable is used to emulate the 10GBASE-KR scenario. So, for XFI usage,

Re: [U-Boot] [PATCH] powerpc/T4240QDS/eth: fix for XFI

2014-07-25 Thread Shaohui Xie
Please ignore this patch, it has some info only meaningful for Freescale. Best Regards, Shaohui Xie -Original Message- From: shh@gmail.com [mailto:shh@gmail.com] Sent: Friday, July 25, 2014 4:55 PM To: u-boot@lists.denx.de Cc: Xie Shaohui-B21989 Subject: [PATCH]

Re: [U-Boot] [PATCH v2 0/2] OMAP/GPMC: speed up NAND read access

2014-07-25 Thread Gupta, Pekon
Hi Daniel, From: Gupta, Pekon Hi Daniel, From: Daniel Mack [mailto:zon...@gmail.com] Resending this since I got no replies on the first version. I also fixed up the commit log of #1. I plan to test this, but there is still a long pending list of patches which for me to test in kernel and

[U-Boot] [PATCH 1/2] powerpc/t2080qds: fixup dtb for 10g-kr

2014-07-25 Thread shh.xie
From: Shaohui Xie shaohui@freescale.com XFI ports on t2080qds can work with fiber cable and direct attach cable(copper). We use hwconfig to define cable type for XFI, and fixup dtb based on the cable type. For copper cable, set below env in hwconfig: fsl_10gkr_copper:10g_mac_name the

[U-Boot] [PATCH 2/2] powerpc/t2080qds: fix dtb when runnig 1000BASE-KX protocol

2014-07-25 Thread shh.xie
From: Shaohui Xie shaohui@freescale.com 1000BASE-KX(1GKX) uses same SGMII interface but the serdes lane run in 1GKX mode. By default, the lane runs in SGMII mode, when a MAC runs in 1GKX mode, the corresponding lane mode needs to be set accordingly. DTB needs the fixup for kernel to do proper

[U-Boot] [PATCH v5 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Gerald Kerma
This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net --- Changes in v5: - purge uneeded code - remove some extra debug Changes in v4: - rename drivers files to MVSDIO - fix MMC clock init which

Re: [U-Boot] [PATCH v4 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread drEagle
Hi Stefan, On 25/07/2014 09:15, Stefan Roese wrote: Hi Gerald, Thanks. But still some more comments below. Thanks for the review. Just sent a new version of the patch. I still don't see why this function is needed for the MMC driver. It seems to only be used from a debug() output. I

Re: [U-Boot] [PATCH 3/6] sunxi: add Cubieboard2 support

2014-07-25 Thread Tom Rini
On Fri, Jul 25, 2014 at 12:40:04AM +0300, Siarhei Siamashka wrote: On Thu, 24 Jul 2014 11:00:31 -0400 Tom Rini tr...@ti.com wrote: On Thu, Jul 24, 2014 at 03:47:53PM +0300, Siarhei Siamashka wrote: On Thu, 24 Jul 2014 11:18:15 +0800 Chen-Yu Tsai w...@csie.org wrote: On Thu, Jul

Re: [U-Boot] [PATCH 3/6] sunxi: add Cubieboard2 support

2014-07-25 Thread Tom Rini
On Fri, Jul 25, 2014 at 07:52:28AM +0100, Ian Campbell wrote: On Fri, 2014-07-25 at 00:12 +0300, Siarhei Siamashka wrote: The multi-soc support (within the Allwinner A10/A13/A20 family) is the feature, which is scheduled for this merge window. It is a present piece of work. I have never

Re: [U-Boot] [PATCH] Makefile: use $(shell ...) for determining file_size

2014-07-25 Thread Simon Glass
Hi Chris, On 24 July 2014 06:14, Chris Packham judge.pack...@gmail.com wrote: Hi Simon, On Wed, Jul 23, 2014 at 10:27 PM, Simon Glass s...@chromium.org wrote: On 22 July 2014 18:08, Chris Packham judge.pack...@gmail.com wrote: file_size was being calculated using back-ticks but map_size uses

Re: [U-Boot] [PATCH v2] Makefile: use $(shell ...) for determining file_size

2014-07-25 Thread Simon Glass
On 24 July 2014 01:44, Chris Packham judge.pack...@gmail.com wrote: file_size was being calculated using back-ticks but map_size uses $(shell ...). Update the file_size calculation to use $(shell ...). From: Jeroen Hofstee jer...@myspectrum.nl The binary_size_check target relies on stat -c

Re: [U-Boot] [PATCH 0/8] samsung: Use common config files with Samsung boards (help wanted)

2014-07-25 Thread Simon Glass
Hi Lucasz, On 24 July 2014 09:34, Lukasz Majewski l.majew...@samsung.com wrote: Hi Simon, This series tries to unify the Samsung board configs into a few header files for exynos5 and exynos5. The purpose is to make it easier to move to driver model. In that case I would like things like

Re: [U-Boot] [PATCH v4 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Stefan Roese
Hi Gerald, On 25.07.2014 15:34, drEagle wrote: Hi Stefan, On 25/07/2014 09:15, Stefan Roese wrote: Hi Gerald, Thanks. But still some more comments below. Thanks for the review. Just sent a new version of the patch. Great. I still have a few comments though. Sorry for not pointing out

Re: [U-Boot] [PATCH v5 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Stefan Roese
On 25.07.2014 15:27, Gerald Kerma wrote: This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net Please don't send this patch as base64 encoded. It makes it impossible to apply this patch or run

[U-Boot] Please pull u-boot-dm.git

2014-07-25 Thread Simon Glass
Hi Tom, This is the first of the driver model changes. I will progressively work through the series that follow (gpio, serial, SPI/SPI flash) but probably need more testing/feedback from maintainers in some cases. The following changes since commit fbe79a17fddb7f0b11aa15b9c93e9a4a26165ed8:

Re: [U-Boot] [PATCH v3 2/5] sunxi: add USB EHCI driver

2014-07-25 Thread Marek Vasut
On Thursday, July 24, 2014 at 10:54:21 PM, Roman Byshko wrote: The Allwinner aka sunxi SoCs have one or more USB host controllers. This adds a driver for their EHCI. Signed-off-by: Roman Byshko rbys...@gmail.com Did you verify the patches to be checkpatch clean please ? Also, they don't

[U-Boot] [PATCH] arm: m53evk: Fix RTC bus number

2014-07-25 Thread Marek Vasut
A previous update to the I2C stack introduced a typo in the configuration option. Fix the typo and therefore allow the RTC to work correctly with the 'date' command again. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de --- include/configs/m53evk.h | 2 +- 1 file

Re: [U-Boot] [PATCH] arm: mx5: Fix RTC bus number

2014-07-25 Thread Marek Vasut
On Friday, July 25, 2014 at 04:27:58 AM, Fabio Estevam wrote: On Thu, Jul 24, 2014 at 7:05 PM, Marek Vasut ma...@denx.de wrote: A previous update to the I2C stack introduced a typo in the configuration option. Fix the typo and therefore allow the RTC to work correctly with the 'date'

Re: [U-Boot] [PATCH] cosmetic: boards.cfg: fix some maintainers fields

2014-07-25 Thread Simon Glass
On 22 July 2014 04:58, Masahiro Yamada yamad...@jp.panasonic.com wrote: Add a whitespace between the name and the email address. When switching to Kconfig, the first version of MAINTAINERS files will be generated based on the boards.cfg file. So, the maintainers field should be corrected

Re: [U-Boot] [PATCH] arm: mx5: Fix RTC bus number

2014-07-25 Thread Marek Vasut
On Friday, July 25, 2014 at 05:22:47 PM, Marek Vasut wrote: A previous update to the I2C stack introduced a typo in the configuration option. Fix the typo and therefore allow the RTC to work correctly with the 'date' command again. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic

Re: [U-Boot] [PATCH v2 2/3] MAKEALL: make sure to invoke GNU Make

2014-07-25 Thread Simon Glass
On 22 July 2014 03:19, Masahiro Yamada yamad...@jp.panasonic.com wrote: Since the command name 'make' may not be GNU Make on some platforms such as FreeBSD, MAKEALL should call scripts/show-gnu-make to get the command name for GNU MAKE (and error out if it is not found). The GNU Make should

Re: [U-Boot] [PATCH v3 2/5] sunxi: add USB EHCI driver

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 17:01 +0200, Marek Vasut wrote: On Thursday, July 24, 2014 at 10:54:21 PM, Roman Byshko wrote: The Allwinner aka sunxi SoCs have one or more USB host controllers. This adds a driver for their EHCI. Signed-off-by: Roman Byshko rbys...@gmail.com Did you verify the

Re: [U-Boot] [PATCH v3 2/5] sunxi: add USB EHCI driver

2014-07-25 Thread Marek Vasut
On Friday, July 25, 2014 at 05:38:20 PM, Ian Campbell wrote: On Fri, 2014-07-25 at 17:01 +0200, Marek Vasut wrote: On Thursday, July 24, 2014 at 10:54:21 PM, Roman Byshko wrote: The Allwinner aka sunxi SoCs have one or more USB host controllers. This adds a driver for their EHCI.

[U-Boot] [PATCH] arm: mx5: Fix RTC bus number

2014-07-25 Thread Marek Vasut
A previous update to the I2C stack introduced a typo in the configuration option. Fix the typo and therefore allow the RTC to work correctly with the 'date' command again. Signed-off-by: Marek Vasut ma...@denx.de Cc: Stefano Babic sba...@denx.de --- include/configs/m53evk.h | 2 +- 1 file

Re: [U-Boot] [PATCH v3 2/5] sunxi: add USB EHCI driver

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 17:41 +0200, Marek Vasut wrote: On Friday, July 25, 2014 at 05:38:20 PM, Ian Campbell wrote: On Fri, 2014-07-25 at 17:01 +0200, Marek Vasut wrote: On Thursday, July 24, 2014 at 10:54:21 PM, Roman Byshko wrote: The Allwinner aka sunxi SoCs have one or more USB host

Re: [U-Boot] [PATCH v6] arm: ep9315: Return back Cirrus Logic EDB9315A board support

2014-07-25 Thread sergey kostanbaev
Hi Masahiro, Sorry I missed you mail since I was on vacation. On Mon, Jul 7, 2014 at 2:57 PM, Masahiro Yamada yamad...@jp.panasonic.com wrote: I have two questions: [1] Is this board really working? This patch added a linker script board/cirrus/edb93xx/u-boot.lds But '.vectors' section

Re: [U-Boot] [PATCH v3 2/5] sunxi: add USB EHCI driver

2014-07-25 Thread Ian Campbell
On Fri, 2014-07-25 at 18:31 +0200, Marek Vasut wrote: On Friday, July 25, 2014 at 06:06:45 PM, Ian Campbell wrote: On Fri, 2014-07-25 at 17:41 +0200, Marek Vasut wrote: On Friday, July 25, 2014 at 05:38:20 PM, Ian Campbell wrote: On Fri, 2014-07-25 at 17:01 +0200, Marek Vasut wrote:

Re: [U-Boot] [PATCH v5 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread drEagle
Hi Stefan, On 25/07/2014 16:50, Stefan Roese wrote: On 25.07.2014 15:27, Gerald Kerma wrote: This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net Please don't send this patch as base64 encoded. It

Re: [U-Boot] [PATCH v3 2/5] sunxi: add USB EHCI driver

2014-07-25 Thread Marek Vasut
On Friday, July 25, 2014 at 06:06:45 PM, Ian Campbell wrote: On Fri, 2014-07-25 at 17:41 +0200, Marek Vasut wrote: On Friday, July 25, 2014 at 05:38:20 PM, Ian Campbell wrote: On Fri, 2014-07-25 at 17:01 +0200, Marek Vasut wrote: On Thursday, July 24, 2014 at 10:54:21 PM, Roman Byshko

Re: [U-Boot] [PATCH v5 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread drEagle
Please don't send this patch as base64 encoded. It makes it impossible to apply this patch or run checkpatch on it. I use git send-email and I have used the default encoding [UTF-8], what is the preferred format that I may specify ? My first name is Gérald. So the message are sent in

[U-Boot] [PATCH v6 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Gerald Kerma
This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net --- Changes in v6: - rename driver to mvebu_mmc - renames constants and functions - move mmc_init to kirkwood/cpu - code cleaning Changes in

Re: [U-Boot] [PATCH v6 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Stefan Roese
On 25.07.2014 19:07, Gerald Kerma wrote: This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net --- Changes in v6: - rename driver to mvebu_mmc - renames constants and functions - move mmc_init

Re: [U-Boot] Please pull u-boot-dm.git

2014-07-25 Thread Tom Rini
On Fri, Jul 25, 2014 at 04:02:03PM +0100, Simon Glass wrote: Hi Tom, This is the first of the driver model changes. I will progressively work through the series that follow (gpio, serial, SPI/SPI flash) but probably need more testing/feedback from maintainers in some cases. The

Re: [U-Boot] [PATCH v6 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Jeroen Hofstee
Hi, On 25-07-14 20:19, Stefan Roese wrote: On 25.07.2014 19:07, Gerald Kerma wrote: This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net --- Changes in v6: - rename driver to mvebu_mmc -

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

2014-07-25 Thread Tom Rini
On Thu, Jul 24, 2014 at 12:11:15PM +0900, Nobuhiro Iwamatsu wrote: Dear Tom Rini. Please pull u-boot-sh master branch. The following changes since commit fbe79a17fddb7f0b11aa15b9c93e9a4a26165ed8: m68k: define __kernel_size_t as unsinged int again (2014-07-22 09:46:50 -0400) are

Re: [U-Boot] [PATCH v6 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread drEagle
On 25/07/2014 20:19, Stefan Roese wrote: On 25.07.2014 19:07, Gerald Kerma wrote: This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net Thanks. This really looks better. Only some mostly

[U-Boot] [PATCH v7 1/1] ARM: kirkwood: add mvsdio driver

2014-07-25 Thread Gerald Kerma
This patch add Marvell kirkwood MVSDIO/MMC driver and enable it for Sheevaplugs and OpenRD boards. Signed-off-by: Gerald Kerma drea...@doukki.net --- Changes in v7: - removed unrelated stuff - minor code cleaning Changes in v6: - rename driver to mvebu_mmc - renames constants and

[U-Boot] [U-boot] [Patch] keystone2: use EFUSE_BOOTROM information to configure PLLs

2014-07-25 Thread Ivan Khoronzhuk
From: Vitaly Andrianov vita...@ti.com This patch reads EFUSE_BOOTROM register to see the maximum supported clock for CORE and TETRIS PLLs and configure them accordingly. Acked-by: Murali Karicheri m-kariche...@ti.com Signed-off-by: Vitaly Andrianov vita...@ti.com Signed-off-by: Ivan Khoronzhuk

Re: [U-Boot] pcm051: use ti_am335x_common.h config

2014-07-25 Thread Tom Rini
On Sat, Jul 05, 2014 at 06:43:14AM -0700, matwey.korni...@gmail.com wrote: From c76a75e963224e269aeab5b93a7ae5316fc53582 Mon Sep 17 00:00:00 2001 From: Matwey V. Kornilov matwey.korni...@gmail.com Date: Fri, 13 Jun 2014 18:37:34 +0400 Subject: [PATCH] pcm051: use ti_am335x_common.h config

Re: [U-Boot] [PATCH v3 5/5] sun7i: cubietruck: enable USB EHCI

2014-07-25 Thread Ian Campbell
On Thu, 2014-07-24 at 22:54 +0200, Roman Byshko wrote: Cubietruck has two USB host controllers. This makes them usable by enabling the EHCI driver for them. Did you not want to enable for the Cubietruck_FEL config too? What about other boards with A20 on them? And does this same driver work

[U-Boot] [PATCH] Change Andy Fleming's email address

2014-07-25 Thread Andy Fleming
Messages to aflem...@freescale.com now bounce, and should be directed to my personal address at aflem...@gmail.com Signed-off-by: Andy Fleming aflem...@gmail.com --- doc/feature-removal-schedule.txt | 2 +- doc/git-mailrc | 2 +- drivers/net/fm/memac_phy.c | 2 +-

[U-Boot] [PATCH] ARM: tegra: enable DFU too

2014-07-25 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Enable DFU protocol support (via the dfu command) on Tegra boards where USB device/gadget mode is enabled. Note that for DFU to operate correctly on Tegra, we still need some DFU fixes/enhancements that are going through the DFU - USB trees. However, the

Re: [U-Boot] [PATCH v5 11/15] MAKEALL: adjust for Kconfig

2014-07-25 Thread Simon Glass
Hi Masahiro, On 24 July 2014 05:00, Masahiro Yamada yamad...@jp.panasonic.com wrote: Use make board_defconfig instead of make board_config. Invoke tools/genboardscfg.py to generate boards.cfg when it is missing. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com --- Acked-by: Simon

Re: [U-Boot] [PATCH v5 04/15] kconfig: add basic Kconfig files

2014-07-25 Thread Simon Glass
On 24 July 2014 05:00, Masahiro Yamada yamad...@jp.panasonic.com wrote: This commit adds more Kconfig files, which were written by hand. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Acked-by: Simon Glass s...@chromium.org ___ U-Boot

[U-Boot] [PATCH] net: BOOTP retry timeout improvements

2014-07-25 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com Currently, the BOOTP code sends out its initial request as soon as the Ethernet driver indicates link up. If this packet is lost or not replied to for some reason, the code waits for a 1s timeout before retrying. For some reason, such early packets are

[U-Boot] [PATCH] arm: bcm281xx: Add Ethernet Clock support

2014-07-25 Thread Steve Rae
From: Jiandong Zheng jdzh...@broadcom.com Enable Ethernet clock when Broadcom StarFighter2 Ethernet block (CONFIG_BCM_SF2_ETH) is enabled. Signed-off-by: Jiandong Zheng jdzh...@broadcom.com Signed-off-by: Steve Rae s...@broadcom.com --- - added board with this feature enabled

Re: [U-Boot] [PATCH v5 06/15] kconfig: switch to Kconfig

2014-07-25 Thread Simon Glass
Hi Masahiro, On 24 July 2014 05:00, Masahiro Yamada yamad...@jp.panasonic.com wrote: This commit enables Kconfig. Going forward, we use Kconfig for the board configuration. mkconfig will never be used. Nor will include/config.mk be generated. Kconfig must be adjusted for U-Boot because our

Re: [U-Boot] [PATCH v5 08/15] Add MAINTAINERS files

2014-07-25 Thread Simon Glass
2014-07-24 5:00 GMT+01:00 Masahiro Yamada yamad...@jp.panasonic.com: We have switched to Kconfig and the boards.cfg file is going to be removed. We have to retrieve the board status and maintainers information from it. The MAINTAINERS format as in Linux Kernel would be nice because we can

Re: [U-Boot] [PATCH v5 09/15] tools: add genboardscfg.py

2014-07-25 Thread Simon Glass
Hi Masahiro, On 24 July 2014 05:00, Masahiro Yamada yamad...@jp.panasonic.com wrote: Now the primary data for each board is in Kconfig, defconfig and MAINTAINERS. It is true boards.cfg is needed for MAKEALL and buildman and might be useful to brouse boards in a single database. But it would

[U-Boot] Reading multiple bytes using I2C in U-Boot

2014-07-25 Thread Nildo Junior
I am having a problem with the I2C driver for a Freescale p1022tw board. There is the command on U-Boot's console to read from an I2C device: i2c md chip address[.0, .1, .2] [# of objects] When I read 4 bytes from a device with id 0x60, at address 0x0, I get: tw=i2c md 60 0 4 :

Re: [U-Boot] [PATCH 0/3] ARM: DRA72x: Add CPSW Ethernet support for DRA72x SoC

2014-07-25 Thread Tom Rini
On Thu, May 22, 2014 at 02:37:09PM +0530, Mugunthan V N wrote: CPSW Ethernet second port is pinned out as default Ethernet, so adding support for CPSW ethernet for downloading images via Ethernet. Mugunthan V N (3): drivers: net: cpsw: add support for using second port as ethernet ARM:

Re: [U-Boot] [U-Boot,2/3] ARM: DRA7xx: Add cpsw second port pinmux

2014-07-25 Thread Tom Rini
On Thu, May 22, 2014 at 02:37:11PM +0530, Mugunthan V N wrote: Add cpsw second slave port pinmux to use it as primary ethernet port Signed-off-by: Mugunthan V N mugunthan...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 1/3] drivers: net: cpsw: add support for using second port as ethernet

2014-07-25 Thread Tom Rini
On Thu, May 22, 2014 at 02:37:10PM +0530, Mugunthan V N wrote: Add support for using the second slave port of cpsw to be used as primary ethernet. Signed-off-by: Mugunthan V N mugunthan...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 1/2] power/pmic.h: Add prototype for power_init_board.

2014-07-25 Thread Tom Rini
On Mon, Jun 23, 2014 at 04:06:28PM -0400, Tom Rini wrote: As this is a weak function that we may override, provide a prototype for it. Cc: Łukasz Majewski l.majew...@samsung.com Signed-off-by: Tom Rini tr...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description:

Re: [U-Boot] [U-Boot, 1/3] ARM: omap: Fix GPMC init for OMAP3 platforms

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 05:18:09PM +0200, Stefan Roese wrote: Commit a0a37183 (ARM: omap: merge GPMC initialization code for all platform) broke NAND on OMAP3 based platforms. I noticed this while testing the latest 2014.07-rc version on the TAO3530 board. NAND detection did not work with

Re: [U-Boot] [U-Boot, 3/3] ARM: dra7_evm: Add Ethernet support for dra72x platform

2014-07-25 Thread Tom Rini
On Thu, May 22, 2014 at 02:37:12PM +0530, Mugunthan V N wrote: Set the active_slave to 1 as slave 1 is pinned out in dra72x base board Signed-off-by: Mugunthan V N mugunthan...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, U-boot, v2, 2/3] keystone: add support for NAND gpheader image

2014-07-25 Thread Tom Rini
On Fri, Jul 04, 2014 at 03:03:26PM +0300, Khoronzhuk, Ivan wrote: Add support for NAND gpheader image. TI Keystone2 ROM bootloader expects 8 bytes of trailing zeroes in the nand u-boot image. So add zeros at the end of the nand gph image. Acked-by: Murali Karicheri m-kariche...@ti.com

Re: [U-Boot] [U-Boot, U-boot, v2, 1/3] mtd: nand: davinci: add opportunity to write keystone U-boot image

2014-07-25 Thread Tom Rini
On Fri, Jul 04, 2014 at 03:03:25PM +0300, Khoronzhuk, Ivan wrote: The Keystone SoCs use the same NAND driver as Davinci. This patch adds opportunity to write Keystone U-boot image to NAND device using appropriate RBL ECC layout. This is needed only if RBL boots U-boot from NAND device and

Re: [U-Boot] [U-Boot, 2/2] tps65218/am43xx_evm: Add power framework support to TPS65218

2014-07-25 Thread Tom Rini
On Mon, Jun 23, 2014 at 04:06:29PM -0400, Tom Rini wrote: Add in an init function for the drivers/power framework so we can dump and read the registers via i2c. Cc: Łukasz Majewski l.majew...@samsung.com Signed-off-by: Tom Rini tr...@ti.com Applied to u-boot-ti/master, thanks! -- Tom

Re: [U-Boot] [U-Boot, U-boot, v2, 3/3] k2hk_evm: add script to automate NAND flash process

2014-07-25 Thread Tom Rini
On Fri, Jul 04, 2014 at 03:03:27PM +0300, Khoronzhuk, Ivan wrote: Add script to automate NAND flash process. As for now the board has two burn scripts - burn to boot from SPI NOR flash and burn to boot from AEMIF NAND flash, rename burn_uboot script to burn_uboot_spi. Also update README to

Re: [U-Boot] tricorder: convert to generic board

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 05:10:34PM +0200, Andreas Bießmann wrote: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Thomas Weber thomas.we...@corscience.de Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] am335x_evm / gumstix pepper: Correct DDR settings

2014-07-25 Thread Tom Rini
On Mon, Jul 07, 2014 at 09:40:16PM -0400, Tom Rini wrote: As noted by clang, we have been shifting certain values out of 32bit range when setting some DDR registers. Upon further inspection these had been touching reserved fields (and having no impact). These came in from historical

Re: [U-Boot] [U-Boot, 2/3] ARM: omap: Remove unused arch/arm/cpu/armv7/omap3/mem.c

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 05:18:10PM +0200, Stefan Roese wrote: These functions have been merged into the common GPMC init code with this commit a0a37183 (ARM: omap: merge GPMC initialization code for all platform). The file is not compiled any more. So remove it as well. Signed-off-by:

Re: [U-Boot] [U-Boot, 3/3] ARM: omap: tao3530: Convert to generic board

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 05:18:11PM +0200, Stefan Roese wrote: Use generic board setup functions by defining CONFIG_SYS_GENERIC_BOARD. Signed-off-by: Stefan Roese s...@denx.de Cc: Tom Rini tr...@ti.com Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital

Re: [U-Boot] [U-Boot, U-boot, v2, 1/6] ARM: keystone2: psc: use common PSC base

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 07:48:39PM +0300, Khoronzhuk, Ivan wrote: Use common keystone2 Power Sleep controller base address instead of directly deciding which keystone2 SoC is used in psc module. Acked-by: Murali Karicheri m-kariche...@ti.com Signed-off-by: Ivan Khoronzhuk

Re: [U-Boot] [U-Boot, U-boot, v2, 4/6] ARM: keystone2: keystone_nav: make it dependent on keystone driver

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 07:48:42PM +0300, Khoronzhuk, Ivan wrote: This driver is needed in case if keystone driver is used. Currently only keystone_net driver uses it. So to avoid redundant code compilation make the keystone_nav dependent on keystone net driver. It also leads to compilation

Re: [U-Boot] [U-Boot, U-boot, v2, 2/6] keystone: ddr3: add ddr3.h to hold ddr3 API

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 07:48:40PM +0300, Khoronzhuk, Ivan wrote: It's convinient to hold ddr3 function definitions in separate file such as ddr3.h. So move this from hardware.h to ddr3.h. Acked-by: Murali Karicheri m-kariche...@ti.com Signed-off-by: Ivan Khoronzhuk ivan.khoronz...@ti.com

Re: [U-Boot] [U-Boot, U-boot, v2, 3/6] keystone2: ddr: add DDR3 PHY configs updated for PG 2.0

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 07:48:41PM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com Add DDR3 PHY configs updated for PG 2.0 Also add DDR3A PHY reset before init for PG2.0 SoCs. Acked-by: Murali Karicheri m-mariche...@ti.com Signed-off-by: Hao Zhang hzh...@ti.com

Re: [U-Boot] [U-Boot, U-boot, v2, 6/6] keystone2: add possibility to turn off all dsps

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 07:48:44PM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com By default all DSPs are turned off, for another case option to turn off them is added in this commit. Also add command to turn off itself. Acked-by: Murali Karicheri m-mariche...@ti.com

Re: [U-Boot] [U-Boot, U-boot, v2, 5/6] keystone2: move cpu_to_bus() to keystone.c

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 07:48:43PM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com The SoC related common functions in board.c should be placed to a common keystone.c arch file. Acked-by: Murali Karicheri m-mariche...@ti.com Signed-off-by: Hao Zhang hzh...@ti.com

Re: [U-Boot] [U-Boot, U-boot, 1/6] k2hk: use common KS2_ prefix for all hardware definitions

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 11:44:44PM +0300, Khoronzhuk, Ivan wrote: Use KS2_ prefix in all definitions, for that replace K2HK_ prefix and add KS2_ prefix where it's needed. It requires to change names also in places where they're used. Align lines and remove redundant definitions in

Re: [U-Boot] [U-Boot, U-boot, 3/6] ARM: keystone2: move K2HK board files to common KS2 board directory

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 11:44:46PM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch moves K2HK board directory to a common Keystone II board directory. The Board related common functions are moved to a common keystone board file. Acked-by: Murali Karicheri

Re: [U-Boot] [U-Boot, U-boot, 5/6] configs: k2hk_evm: config: add common EVM configuration header

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 11:44:48PM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch adds a common config header file for all the Keystone II EVM platforms. It combines a lot of general definitions in one file. The common header included in the EVM should be specific

Re: [U-Boot] [U-Boot, U-boot, 1/6] ARM: keystone2: add K2E SoC hardware definitions

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:22AM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch adds hardware definitions specific to Keystone II K2E device. It has a lot common definitions with k2hk SoC, so move them to common hardware.h. This is preparation patch for adding

Re: [U-Boot] [U-Boot, U-boot, 1/6] ARM: keystone2: add K2E SoC hardware definitions

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:22AM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch adds hardware definitions specific to Keystone II K2E device. It has a lot common definitions with k2hk SoC, so move them to common hardware.h. This is preparation patch for adding

Re: [U-Boot] [U-Boot, U-boot, 6/6] keystone: ddr3: move K2HK DDR3 configuration to a common file

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 11:44:49PM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com It's convenient to hold configurations for DDR3 PHY and EMIF in separate common place. This patch moves K2HK DDR3 PHY and EMIF configuration data with different rates and memory size to a common

Re: [U-Boot] [U-Boot, U-boot, 4/6] ARM: keystone: clock: move K2HK SoC dependent code in separate file

2014-07-25 Thread Tom Rini
On Wed, Jul 09, 2014 at 11:44:47PM +0300, Khoronzhuk, Ivan wrote: This patch in general spit SoC type clock dependent code and general clock code. Before adding keystone II Edison k2e SoC which has slightly different dpll set, move k2hk dependent clock code to separate clock-k2hk.c file.

Re: [U-Boot] [U-Boot, U-boot, 3/6] ARM: keystone2: add MSMC cache coherency support for K2E SOC

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:24AM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch adds Keystone2 K2E SOC specific code to support MSMC cache coherency. Also create header file for msmc to hold its API. Acked-by: Murali Karicheri m-kariche...@ti.com

Re: [U-Boot] ARM: OMAP: Fix handling of errata i727

2014-07-25 Thread Tom Rini
On Fri, Jul 18, 2014 at 11:18:48AM +0530, Lokesh Vutla wrote: From: Rajendra Nayak rna...@ti.com The errata is applicable on all OMAP4 (4430 and 4460/4470) and OMAP5 ES 1.0 devices. The current revision check erroneously implements this on all DRA7 varients and with DRA722 device (which has

Re: [U-Boot] [U-Boot, v1, 1/3] ARM: omap: fix GPMC address-map size for NAND and NOR devices

2014-07-25 Thread Tom Rini
On Fri, Jul 18, 2014 at 05:59:40PM +0530, pekon gupta wrote: Fixes commit a0a37183bd75e74608bc78c8d0e2a34454f95a91 ARM: omap: merge GPMC initialization code for all platform 1) NAND device are not directly memory-mapped to CPU address-space, they are indirectly accessed via following

Re: [U-Boot] [U-Boot, U-boot, 2/6] ARM: keystone2: clock: add K2E clock support

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:23AM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch adds clock definitions and commands to support Keystone2 K2E SOC. Signed-off-by: Hao Zhang hzh...@ti.com Signed-off-by: Ivan Khoronzhuk ivan.khoronz...@ti.com Applied to

Re: [U-Boot] [U-Boot, U-boot, 5/6] ARM: keystone2: spl: add K2E SoC support

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:26AM +0300, Khoronzhuk, Ivan wrote: Keystone2 K2E SoC has slightly different spl pll settings then K2HK, so correct this. Acked-by: Murali Karicheri m-kariche...@ti.com Signed-off-by: Ivan Khoronzhuk ivan.khoronz...@ti.com Applied to u-boot-ti/master, thanks!

Re: [U-Boot] [U-Boot, U-boot, 4/6] keystone2: use CONFIG_SOC_KEYSTONE in common places

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:25AM +0300, Khoronzhuk, Ivan wrote: Use CONFIG_SOC_KEYSTONE in common places instead of defining a lot of if def .. || if def for different Keystone2 SoC types. Acked-by: Murali Karicheri m-kariche...@ti.com Signed-off-by: Ivan Khoronzhuk

Re: [U-Boot] [U-Boot,U-boot,6/6] board: k2e-evm: add board support

2014-07-25 Thread Tom Rini
On Wed, Jul 16, 2014 at 12:59:27AM +0300, Khoronzhuk, Ivan wrote: From: Hao Zhang hzh...@ti.com This patch adds Keystone2 k2e_evm evaluation board support. Signed-off-by: Hao Zhang hzh...@ti.com Signed-off-by: Ivan Khoronzhuk ivan.khoronz...@ti.com Applied to u-boot-ti/master, thanks!

Re: [U-Boot] [U-Boot, v1, 2/3] ARM: omap: clean redundant PISMO_xx macros used in OMAP3

2014-07-25 Thread Tom Rini
On Fri, Jul 18, 2014 at 05:59:41PM +0530, pekon gupta wrote: PISMO_xx macros were used to define 'Platform Independent Storage MOdule' related GPMC configurations. This patch - Replaces these OMAP3 specific macros with generic CONFIG_xx macros as provided by current u-boot infrastructure.

  1   2   >