Re: [U-Boot] [PATCH] sunxi: move CONFIG_SATAPWR to Kconfig option

2016-12-08 Thread Maxime Ripard
On Mon, Dec 05, 2016 at 09:43:45PM +0100, Jelle van der Waa wrote: > On 11/29/16 at 05:25pm, Tom Rini wrote: > > On Tue, Nov 29, 2016 at 10:17:42PM +0100, Maxime Ripard wrote: > > > Hi Tom, > > > > > > On Tue, Nov 29, 2016 at 04:11:38PM -0500, Tom Rini wrote: > > > > On Tue, Nov 29, 2016 at

Re: [U-Boot] [PATCH 12/14] fdt: eth_fixup: Add hook for board to override MAC

2016-12-08 Thread Olliver Schinagl
Hey simon On December 8, 2016 11:21:32 PM CET, Simon Glass wrote: >Hi Oliver, > >On 7 December 2016 at 02:26, Olliver Schinagl >wrote: >> >> >> On December 7, 2016 4:47:23 AM CET, Simon Glass >wrote: >>>Hi Oliver, >>> >>>On 5 December

[U-Boot] [PATCH] mmc: sdhci-cadence: add Cadence SD4HC support

2016-12-08 Thread Masahiro Yamada
Add a driver for the Cadence SD4HC SD/SDIO/eMMC Controller. Signed-off-by: Masahiro Yamada --- - This is a counterpart of the Linux driver, which has been merged in the MMC subsystem: (commit ff6af28fa in linux-next) The DT binding for this driver should

[U-Boot] [PATCH 1/2] common: miiphyutil: Add helper function for mdio bus name

2016-12-08 Thread Michal Simek
The most of ethernet drivers are using this mdio registration sequence. strcpy(priv->bus->name, "emac"); mdio_register(priv->bus); Where driver can be used only with one MDIO bus because only unique name should be used. Other drivers are using unique device name for MDIO registration to support

[U-Boot] [PATCH 2/2] net: xilinx: Use mdio_register_seq() to support multiple instances

2016-12-08 Thread Michal Simek
axi_emac, emaclite and gem have the same issue with registering multiple instances with mdio busses. mdio bus name has to be uniq but drivers are setting up only one name for all. Use mdio_register_seq() and pass dev->seq number to allow multiple mdio instances registration. Reported-by: Phani

Re: [U-Boot] [GIT PULL] Xilinx and SCSI changes

2016-12-08 Thread Michal Simek
Hi Tom, On 8.12.2016 17:04, Tom Rini wrote: > On Fri, Dec 02, 2016 at 02:55:00PM +0100, Michal Simek wrote: > >> Hi Tom, >> >> here are some patches I have collected for Xilinx devices, one miiphy >> patch and SCSI changes I have made. >> >> Simon: I have sent v4 of DM_SCSI + ceva sata driver

[U-Boot] [PATCH][v3] armv8: fsl-layerscape: Add support of GPIO structure

2016-12-08 Thread Prabhakar Kushwaha
Layerscape Gen2 SoC supports GPIO registers to control GPIO signals. Adding support of GPIO structure to access GPIO registers. Signed-off-by: Pratiyush Srivastava Signed-off-by: Prabhakar Kushwaha --- Changes for v2: Incorporated York's

[U-Boot] [PATCH v2] miniarm-rk3288: set isp/vop qos priority level

2016-12-08 Thread Nickey Yang
isp-camera image will be broken when enter dual screen display mode. We set isp qos high to solve this problem. Signed-off-by: Nickey Yang --- arch/arm/include/asm/arch-rockchip/qos_rk3288.h | 21 + board/rockchip/miniarm_rk3288/miniarm-rk3288.c

Re: [U-Boot] [PATCH v2 0/6] mmc: move some config options to Kconfig

2016-12-08 Thread Masahiro Yamada
Hi Jaehoon, 2016-12-09 8:34 GMT+09:00 Jaehoon Chung : > On 12/07/2016 10:10 PM, Masahiro Yamada wrote: >> I wrote a new SDHCI driver for my new SoCs, but before posting it, >> I just want to make a clean base for my driver entry. >> >> Of course, I could enable some

[U-Boot] [PATCH] calimain: Update maintainers and their email addresses

2016-12-08 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Manfred Rudigier Cc: Christoph Rüdisser --- board/omicron/calimain/MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [U-Boot] [PATCH v2 0/6] mmc: move some config options to Kconfig

2016-12-08 Thread Jaehoon Chung
On 12/07/2016 10:10 PM, Masahiro Yamada wrote: > I wrote a new SDHCI driver for my new SoCs, but before posting it, > I just want to make a clean base for my driver entry. > > Of course, I could enable some needed options in my header file > (for options in the "white-list"), but I just thought

Re: [U-Boot] [PATCH v2 6/6] mmc: move MMC_SDHCI_IO_ACCESSORS to Kconfig

2016-12-08 Thread Jaehoon Chung
On 12/07/2016 10:10 PM, Masahiro Yamada wrote: > This is a user-unconfigurable option that is selected by the > drivers that need to overwrite SDHCI IO memory accessors. > (BCM2835 SDHCI seems the only driver that needs to do so.) > > Signed-off-by: Masahiro Yamada

Re: [U-Boot] [PATCH v2 3/6] mmc: make MMC driver entries dependent on MMC

2016-12-08 Thread Jaehoon Chung
On 12/09/2016 08:30 AM, Jaehoon Chung wrote: > On 12/07/2016 10:10 PM, Masahiro Yamada wrote: >> Currently, CONFIG_MMC is not related to any other options by >> "depends on" or "select". One of big advantages of using Kconfig >> is automatic dependency tracking, but the current state is lacking

Re: [U-Boot] [PATCH v2 5/6] mmc: move some SDHCI related options to Kconfig

2016-12-08 Thread Jaehoon Chung
On 12/07/2016 10:10 PM, Masahiro Yamada wrote: > While I moved the options, I also renamed them so that they are all > prefixed with MMC_SDHCI_. > > This commit was created in the following steps. > > [1] Rename with the following command > find . -name .git -prune -o ! -path

Re: [U-Boot] [PATCH v2 3/6] mmc: make MMC driver entries dependent on MMC

2016-12-08 Thread Jaehoon Chung
On 12/07/2016 10:10 PM, Masahiro Yamada wrote: > Currently, CONFIG_MMC is not related to any other options by > "depends on" or "select". One of big advantages of using Kconfig > is automatic dependency tracking, but the current state is lacking > it. As the first step, make the existing MMC

Re: [U-Boot] [PATCH v2 4/6] mmc: move CONFIG_SDHCI to Kconfig, renaming to CONFIG_MMC_SDHCI

2016-12-08 Thread Jaehoon Chung
On 12/07/2016 10:10 PM, Masahiro Yamada wrote: > Move CONFIG_SDHCI to Kconfig and rename it to CONFIG_MMC_SDHCI. > My motivation for the rename is, ultimately, to make all the MMC > options prefixed with MMC_ and SDHCI options with MMC_SDHCI_, > like Linux. > > This commit was created as follows:

Re: [U-Boot] [PATCH 1/1] arm: mach-omap2: Fix secure file generation

2016-12-08 Thread Tom Rini
On Thu, Dec 08, 2016 at 04:48:07PM -0600, Andrew F. Davis wrote: > When TI_SECURE_DEV_PKG is not defined we warn that the file '*_HS' was > not generated but generate an unsigned one anyway. When TI_SECURE_DEV_PKG > is exported and the user re-builds, make will detect this file as > unchangedand

Re: [U-Boot] [PATCH 1/7] configs: Fixup defconfigs ordering

2016-12-08 Thread Andrew F. Davis
On 12/08/2016 04:04 PM, Andrew F. Davis wrote: > When Kconfig options are added, modified, or removed the may this > may change the 'natural' order of the defconfig files. This order > is produced with 'make savedefconfig' and tools that automaticaly > modifiy defconfigs need this order

[U-Boot] [PATCH 7/7] disk: Convert CONFIG_EFI_PARTITION to Kconfig

2016-12-08 Thread Andrew F. Davis
Signed-off-by: Andrew F. Davis --- configs/A10-OLinuXino-Lime_defconfig| 1 + configs/A10s-OLinuXino-M_defconfig | 1 + configs/A13-OLinuXinoM_defconfig| 1 + configs/A13-OLinuXino_defconfig | 1

[U-Boot] [PATCH 1/1] arm: mach-omap2: Fix secure file generation

2016-12-08 Thread Andrew F. Davis
When TI_SECURE_DEV_PKG is not defined we warn that the file '*_HS' was not generated but generate an unsigned one anyway. When TI_SECURE_DEV_PKG is exported and the user re-builds, make will detect this file as unchangedand and so assume it does not need to be re-generated. This causes it to pack

Re: [U-Boot] [PATCH RESEND 7/9] video: Allow board hook before video init

2016-12-08 Thread Simon Glass
Hi Maxime, On 6 December 2016 at 12:39, Maxime Ripard wrote: > On Wed, Nov 23, 2016 at 07:21:07PM -0700, Simon Glass wrote: >> Hi Maxime, >> >> On 22 November 2016 at 05:41, Maxime Ripard >> wrote: >> > Hi Simon, >> > >> > On

Re: [U-Boot] [PATCH v3 3/6] arm64: mvebu: pinctrl: Add pin control driver for A8K family

2016-12-08 Thread Simon Glass
Hi, On 7 December 2016 at 03:03, Kostya Porotchkin wrote: > Hello, Simon, > > Thank you very much for your review. > Yes, this patch was only adding some help to Kconfig (as you requested), no > other changes from the previous version. > I have to re-send the entire series

Re: [U-Boot] [PATCH] Makefile: Fix linking with modern binutils

2016-12-08 Thread Simon Glass
On 7 December 2016 at 22:22, Joel Stanley wrote: > Since Binutils 1a9ccd70f9a7[1] u-boot will not link targets that set > CONFIG_SYS_TEXT_BASE=0 with the following error: > > LD u-boot > arm-linux-gnueabi-ld.bfd: u-boot: Not enough room for program headers, try > linking

Re: [U-Boot] [PATCH] regulator: fixed: Add support to handle enable-active-high DT property

2016-12-08 Thread Simon Glass
On 7 December 2016 at 06:25, Vignesh R wrote: > Add support to handle enable-active-high DT property. This property is > used to drive the gpio controlling fixed regulator as active high when > claiming gpio line. > > Signed-off-by: Vignesh R > --- >

Re: [U-Boot] [PATCH v2 08/23] armv8: move reset branch into boot hook

2016-12-08 Thread Simon Glass
On 5 December 2016 at 08:43, Andre Przywara wrote: > Hi, > > On 05/12/16 06:25, Simon Glass wrote: >> Hi Andre, >> >> On 4 December 2016 at 18:52, Andre Przywara wrote: >>> The boot0 hook we have so far is applied _after_ the initial branch >>> to

Re: [U-Boot] [PATCH] miniarm-rk3288: set isp/vop qos priority level

2016-12-08 Thread Simon Glass
Hi Nickey, On 7 December 2016 at 01:16, Nickey Yang wrote: > isp-camera image will be broken when enter dual screen display mode. > We set isp qos high to solve this problem. > > Signed-off-by: Nickey Yang > --- > >

Re: [U-Boot] [PATCH 12/14] fdt: eth_fixup: Add hook for board to override MAC

2016-12-08 Thread Simon Glass
Hi Oliver, On 7 December 2016 at 02:26, Olliver Schinagl wrote: > > > On December 7, 2016 4:47:23 AM CET, Simon Glass wrote: >>Hi Oliver, >> >>On 5 December 2016 at 03:28, Olliver Schinagl >>wrote: >>> Hey Simon, >>> >>> >>> >>> On

Re: [U-Boot] Use of QEMU UEFI payland with persistent environment

2016-12-08 Thread Simon Glass
Hi Otavio, On 8 December 2016 at 14:03, Otavio Salvador wrote: > On Thu, Dec 8, 2016 at 4:55 PM, Simon Glass wrote: >> Hi Otavio, >> >> On 8 December 2016 at 10:39, Otavio Salvador >> wrote: >>> Hello

[U-Boot] [PATCH 1/7] configs: Fixup defconfigs ordering

2016-12-08 Thread Andrew F. Davis
When Kconfig options are added, modified, or removed the may this may change the 'natural' order of the defconfig files. This order is produced with 'make savedefconfig' and tools that automaticaly modifiy defconfigs need this order maintained. This can easily be accomplished by running

[U-Boot] [PATCH 6/7] disk: Convert CONFIG_AMIGA_PARTITION to Kconfig

2016-12-08 Thread Andrew F. Davis
Signed-off-by: Andrew F. Davis --- configs/sandbox_defconfig | 1 + configs/sandbox_noblk_defconfig | 1 + configs/sandbox_spl_defconfig | 1 + disk/Kconfig| 8 include/configs/sandbox.h | 1 - 5 files changed, 11 insertions(+), 1

[U-Boot] [PATCH 2/7] disk: Add CONFIG_PARTITION to Kconfig

2016-12-08 Thread Andrew F. Davis
Signed-off-by: Andrew F. Davis --- Kconfig | 2 ++ disk/Kconfig | 11 +++ include/config_defaults.h | 1 - 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 disk/Kconfig diff --git a/Kconfig b/Kconfig index

[U-Boot] [PATCH 3/7] disk: Convert CONFIG_MAC_PARTITION to Kconfig

2016-12-08 Thread Andrew F. Davis
Signed-off-by: Andrew F. Davis --- configs/CPCI4052_defconfig | 1 + configs/M5253DEMO_defconfig | 1 + configs/M5253EVBE_defconfig | 1 + configs/MIP405T_defconfig | 1

Re: [U-Boot] [PATCH v2] arm: am33xx: Initialize EMIF REG_PR_OLD_COUNT for BBB and am335x-evm

2016-12-08 Thread Jyri Sarha
On 12/08/16 16:30, Tom Rini wrote: > On Thu, Dec 08, 2016 at 12:19:01PM +0200, Jyri Sarha wrote: > >> Initialize EMIF OCP_CONFIG registers REG_COS_COUNT_1, REG_COS_COUNT_2, >> and REG_PR_OLD_COUNT field for Beaglebone-Black and am335x-evm. With >> the default values LCDC suffers from DMA FIFO

[U-Boot] [PATCH] zynq: spi: Honour the activation / deactivation delay

2016-12-08 Thread Moritz Fischer
This is not currently implemented. Add support for this so that the Chrome OS EC can be used reliably. Signed-off-by: Moritz Fischer Cc: Jagan Teki Cc: Simon Glass Cc: u-boot@lists.denx.de --- drivers/spi/zynq_spi.c | 24

Re: [U-Boot] [PATCH v6 1/2] armv8/fsl-layerscape: fdt: fixup LS1043A rev1 GIC node

2016-12-08 Thread york sun
On 11/16/2016 05:14 PM, Wenbin Song wrote: > [] ok, I will make this change in the next version of the patch. > Wenbin, Have you sent an update for this set? York ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] Use of QEMU UEFI payland with persistent environment

2016-12-08 Thread Otavio Salvador
On Thu, Dec 8, 2016 at 4:55 PM, Simon Glass wrote: > Hi Otavio, > > On 8 December 2016 at 10:39, Otavio Salvador > wrote: >> Hello everyone, >> >> We are trying to automate some tests and one of the parts of the >> project requires the use of

Re: [U-Boot] [PATCH 1/1] Adding MSCC PHY-VSC8530-VSC8531-VSC8540-VSC8541

2016-12-08 Thread Joe Hershberger
Hi John, I have some additional comments beyond Alexey's. On Wed, Dec 7, 2016 at 11:11 AM, John Haechten wrote: > From 127c5fb9ef390cad5cf58e446110a696cf111345 Mon Sep 17 00:00:00 2001 > From: John Haechten > Date: Wed, 7 Dec 2016

Re: [U-Boot] Use of QEMU UEFI payland with persistent environment

2016-12-08 Thread Simon Glass
Hi Otavio, On 8 December 2016 at 10:39, Otavio Salvador wrote: > Hello everyone, > > We are trying to automate some tests and one of the parts of the > project requires the use of persistent environment. > > Due performance advantages we would like to use x86

Re: [U-Boot] [PATCH] usb: gadget: dfu: add functional descriptor in descriptor set

2016-12-08 Thread Marek Vasut
On 12/08/2016 06:10 PM, Patrick Delaunay wrote: > From: Patrick Delaunay > > The "DFU descriptor set" must contain the "DFU functional descriptor" > but it is missing today in U-Boot code > (cf: DFU spec 1.1, chapter 4.2 DFU Mode Descriptor Set) > This patch only

Re: [U-Boot] net/phy/vitesse: Rework RGMII skew configuration for VSC8601

2016-12-08 Thread Joe Hershberger
Hi Alex, https://patchwork.ozlabs.org/patch/697937/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] net: usb: r8152: Use ALLOC_CACHE_ALIGN_BUFFER() to allocate the buffers

2016-12-08 Thread Joe Hershberger
Hi Stefan, https://patchwork.ozlabs.org/patch/697749/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] net: phy: realtek: Only force master mode on rtl8211b/c

2016-12-08 Thread Joe Hershberger
Hi oli...@schinagl.nl, https://patchwork.ozlabs.org/patch/692378/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] net: phy: realtek: make define more consistent

2016-12-08 Thread Joe Hershberger
Hi oli...@schinagl.nl, https://patchwork.ozlabs.org/patch/692377/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] net: fman: fix 2.5G SGMII settings

2016-12-08 Thread Joe Hershberger
Hi shaohui, https://patchwork.ozlabs.org/patch/694848/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] net: phy: realtek: Use the BIT() macro

2016-12-08 Thread Joe Hershberger
Hi oli...@schinagl.nl, https://patchwork.ozlabs.org/patch/692379/ was applied to u-boot-net.git. Thanks! -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] usb: gadget: dfu: add functional descriptor in descriptor set

2016-12-08 Thread Patrick Delaunay
From: Patrick Delaunay The "DFU descriptor set" must contain the "DFU functional descriptor" but it is missing today in U-Boot code (cf: DFU spec 1.1, chapter 4.2 DFU Mode Descriptor Set) This patch only allocate buffer and copy DFU functional descriptor after

Re: [U-Boot] [PATCH 1/1] Adding MSCC PHY-VSC8530-VSC8531-VSC8540-VSC8541

2016-12-08 Thread Joe Hershberger
Hi Alexey, Thanks for the review. I agree with most of your comments, but I'll note where I don't. On Thu, Dec 8, 2016 at 6:24 AM, Alexey Brodkin wrote: ... >> +static int mscc_vsc8531_vsc8541_init_scripts(struct phy_device *phydev) >> +{ >> + u16 reg_val17;

[U-Boot] Pull request: u-boot-net.git master

2016-12-08 Thread Joe Hershberger
Hi Tom, The following changes since commit 388019f1e2166638453bc4e0cc5d138c2a19e0c9: Merge branch 'master' of git://git.denx.de/u-boot-usb (2016-12-06 08:07:20 -0500) are available in the git repository at: git://git.denx.de/u-boot-net.git master for you to fetch changes up to

Re: [U-Boot] [GIT PULL] Xilinx and SCSI changes

2016-12-08 Thread Tom Rini
On Fri, Dec 02, 2016 at 02:55:00PM +0100, Michal Simek wrote: > Hi Tom, > > here are some patches I have collected for Xilinx devices, one miiphy > patch and SCSI changes I have made. > > Simon: I have sent v4 of DM_SCSI + ceva sata driver moved to DM which > should go through your tree because

Re: [U-Boot] [PATCH v3 1/4] arm: am57xx: cl-som-am57x: add initial board support

2016-12-08 Thread Tom Rini
On Thu, Dec 08, 2016 at 05:37:52PM +0200, Uri Mashiach wrote: > From: Dmitry Lifshitz > > Features supported : > > * Serial console > * SPI Flash > * MMC/SD Card > * eMMC storage > * SATA > * PCA9555 - GPIO expander over I2C5 bus > * USB > > Use spl alternate boot

[U-Boot] Use of QEMU UEFI payland with persistent environment

2016-12-08 Thread Otavio Salvador
Hello everyone, We are trying to automate some tests and one of the parts of the project requires the use of persistent environment. Due performance advantages we would like to use x86 with KVM to execute the tests however after booting QEMU with the UEFI payload it turns out the environment

[U-Boot] [PATCH v3 3/4] arm: am57xx: cl-som-am57x: add ETH support

2016-12-08 Thread Uri Mashiach
From: Dmitry Lifshitz Add MAC support. Use PHY, connected to RGMII1 as a default Eth adapter, by appropriate setting of 'cpsw_data.active_slave'. 'cpsw_phy' env variable can override this setting. Set the MAC addresses in the U-Boot environment. The addresses are

[U-Boot] [PATCH v3 1/4] arm: am57xx: cl-som-am57x: add initial board support

2016-12-08 Thread Uri Mashiach
From: Dmitry Lifshitz Features supported : * Serial console * SPI Flash * MMC/SD Card * eMMC storage * SATA * PCA9555 - GPIO expander over I2C5 bus * USB Use spl alternate boot device feature to define fallback to the main boot device as it is defined by hardware.

[U-Boot] [PATCH v3 2/4] arm: am57xx: cl-som-am57x: fetch board rev from EEPROM

2016-12-08 Thread Uri Mashiach
From: Dmitry Lifshitz Add PCB revision message. Implement board revision get_board_rev API. Signed-off-by: Dmitry Lifshitz Commit description update. Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg

[U-Boot] [PATCH v3 0/4] cl-som-am57x: initial support

2016-12-08 Thread Uri Mashiach
This patch series adds support for CompuLab CL-SOM-AM57X board and the SBC-AM57X evaluation kit. CL-SOM-AM57x is a miniature System-on-Module (SoM) based on TI Sitara AM57x ARM Cortex-A15 System-on-Chip family. SBC-AM57x is a single board computer, implemented with the CL-SOM-AM57x

[U-Boot] [PATCH v3 4/4] arm: am57xx: cl-som-am57x: update default env

2016-12-08 Thread Uri Mashiach
Modify U-Boot default env settings. Boot sequence: 1. SD card boot script 2. SD card boot no script 3. SATA boot script 4. SATA boot no script 5. eMMC boot script 6. eMMC boot no script Signed-off-by: Uri Mashiach Acked-by: Igor Grinberg

Re: [U-Boot] How to make I2C probe like commands working in u-boot

2016-12-08 Thread Heiko Schocher
Hello lsunkara, Am 08.12.2016 um 06:37 schrieb lsunkara: Hi, Am trying to validate I2C peripheral on xilinx zynq zc702 evaluation board in u-boot. When am trying to run the command like i2c probe and i2c write am facing the issue like i2c commands are not known. Please can someone tell me

Re: [U-Boot] [PATCH v5 2/6] ARMv8: Add secure sections for PSCI text and data

2016-12-08 Thread Tom Rini
On Thu, Dec 08, 2016 at 11:58:22AM +0800, Hongbo Zhang wrote: > This patch adds secure_text, secure_data and secure_stack sections for ARMv8 > to > hold PSCI text and data, and it is based on the legacy implementation of > ARMv7. > > ARMV8_SECURE_BASE defines the address for PSCI secure

Re: [U-Boot] [PATCH v5 1/6] ARMv8: LS1043A: change macro CONFIG_ARMV8_PSCI definition

2016-12-08 Thread Tom Rini
On Thu, Dec 08, 2016 at 11:58:21AM +0800, Hongbo Zhang wrote: > NXP/Freescale uses macro CONFIG_ARMV8_PSCI to enable their private PSCI > implementation in PPA firmware, but this macro naming too generic, so this > patch replaces it with a specic one CONFIG_FSL_PPA_ARMV8_PSCI. > And this macro

Re: [U-Boot] [PULL] u-boot-socfpga/master

2016-12-08 Thread Tom Rini
On Tue, Dec 06, 2016 at 05:53:10AM +0100, Marek Vasut wrote: > The following changes since commit 3cfb67d0419c645998b440592d8c2ce010134b8e: > > Prepare v2017.01-rc1 (2016-12-05 18:36:23 -0500) > > are available in the git repository at: > > git://git.denx.de/u-boot-socfpga.git master > >

Re: [U-Boot] [PULL] u-boot-usb/master

2016-12-08 Thread Tom Rini
On Tue, Dec 06, 2016 at 05:54:19AM +0100, Marek Vasut wrote: > The following changes since commit 3cfb67d0419c645998b440592d8c2ce010134b8e: > > Prepare v2017.01-rc1 (2016-12-05 18:36:23 -0500) > > are available in the git repository at: > > git://git.denx.de/u-boot-usb.git master > > for

Re: [U-Boot] [PATCH v2 5/6] mmc: move some SDHCI related options to Kconfig

2016-12-08 Thread Tom Rini
On Wed, Dec 07, 2016 at 10:10:29PM +0900, Masahiro Yamada wrote: > While I moved the options, I also renamed them so that they are all > prefixed with MMC_SDHCI_. > > This commit was created in the following steps. > > [1] Rename with the following command > find . -name .git -prune -o ! -path

Re: [U-Boot] [PATCH v2] arm: am33xx: Initialize EMIF REG_PR_OLD_COUNT for BBB and am335x-evm

2016-12-08 Thread Tom Rini
On Thu, Dec 08, 2016 at 12:19:01PM +0200, Jyri Sarha wrote: > Initialize EMIF OCP_CONFIG registers REG_COS_COUNT_1, REG_COS_COUNT_2, > and REG_PR_OLD_COUNT field for Beaglebone-Black and am335x-evm. With > the default values LCDC suffers from DMA FIFO underflows and frame > synchronization lost

Re: [U-Boot] [PATCH v3 0/2] ARM: dts: at91: add dts files for the boards of SAMA5D4

2016-12-08 Thread Wenyou.Yang
Hi, Do you have any comments on this series? > -Original Message- > From: Wenyou Yang [mailto:wenyou.y...@atmel.com] > Sent: 2016年10月31日 13:20 > To: U-Boot Mailing List > Cc: Stephen Warren ; andreas.de...@googlemail.com; > Simon Glass

[U-Boot] [PATCH][v2] armv8: fsl-layerscape: Add support of GPIO structure

2016-12-08 Thread Prabhakar Kushwaha
Layerscape Gen2 SoC supports GPIO registers to control GPIO signals. Adding support of GPIO structure to access GPIO registers.t rebase --continue Signed-off-by: Pratiyush Srivastava Signed-off-by: Prabhakar Kushwaha --- Changes for v2:

Re: [U-Boot] VAR-SOM-MX6 - Boot Count Limit support?

2016-12-08 Thread Otavio Salvador
On Thu, Dec 8, 2016 at 4:05 AM, brendan wrote: > I am new to this and was wondering if anyone could shed any light on what I > need to look at or how I can somehow implement the Boot Count Limit > functionality or similar. ... You need to choose the backend for use.

Re: [U-Boot] [PATCH 1/1] Adding MSCC PHY-VSC8530-VSC8531-VSC8540-VSC8541

2016-12-08 Thread Alexey Brodkin
Hi John, First of all I'm wondering if there was a real need to add that many people in Cc? Normally sybsystem maintainer and active contributors to code you modified are good options here. Then have you run your patch through checkpatch? Obviously it was not the case because it says me:

[U-Boot] How to make I2C probe like commands working in u-boot

2016-12-08 Thread lsunkara
Hi, Am trying to validate I2C peripheral on xilinx zynq zc702 evaluation board in u-boot. When am trying to run the command like i2c probe and i2c write am facing the issue like i2c commands are not known. Please can someone tell me how to enable these commands to use it in u-boot -- View

[U-Boot] Warm reset problems in U-Boot

2016-12-08 Thread Oehen, Marcel
Dear sir or madam, We are using an Altera cyclone V SoC FPGA and have a problem on warm reset in the U-Boot environment. I would be very grateful if you could send this e-mail to a responsible person. It is possible to answer in English or German. Kind regards, Marcel Oehen Siemens Schweiz

[U-Boot] VAR-SOM-MX6 - Boot Count Limit support?

2016-12-08 Thread brendan
Hello, I have a VAR-SOM-MX6 with the following details: Board: Variscite VAR_SOM_MX6 SOM-Solo SOC_FAMILY = "mx6:mx6q:mx6dl" PREFERRED_PROVIDER_virtual/kernel_var-som-mx6 ?= "linux-variscite" PREFERRED_VERSION_linux-imx_mx6 = "4.1.15" and the following u-boot details: U-Boot SPL

Re: [U-Boot] [PATCH] Makefile: Fix linking with modern binutils

2016-12-08 Thread Alan Modra
On Thu, Dec 08, 2016 at 02:22:51PM +1100, Joel Stanley wrote: > error, we are technically creating invalid ELF files without this > option. I don't think you were creating invalid ELF files, just unusual ones. Anyway, passing --no-dynamic-linker is a good idea. That tells ld that the PIE or

[U-Boot] [PATCH v3 6/6] arm64: mvebu: Enable pin control support in A8K default config

2016-12-08 Thread kostap
From: Konstantin Porotchkin Enable mvebu pin control support in the default configuration files for Armada-7040 and Armada-8040 development boards Signed-off-by: Konstantin Porotchkin Cc: Stefan Roese Cc: Nadav Haklai

[U-Boot] [PATCH v3 5/6] arm64: mvebu: Enable BUBT command support in A8K default config

2016-12-08 Thread kostap
From: Konstantin Porotchkin Enable mvebu "bubt" command support in the default configuration file for Armada-7040 and Armada-8040 development boards Signed-off-by: Konstantin Porotchkin Cc: Stefan Roese Cc: Nadav Haklai

[U-Boot] [PATCH v3 0/6] arm64: mvebu: Armada-8K family patches

2016-12-08 Thread kostap
From: Konstantin Porotchkin This set of patches is adding more features for bards based on new Marvell MoChi platforms - Armada-70x0 and Armada-80x0. The patches were applied on top of Stefan's mvebu-related patch set v2 with the last patch named "dm: core: Add

[U-Boot] [PATCH v3 4/6] arm64: mvebu: Add pin control nodes to A8K family DTS files

2016-12-08 Thread kostap
From: Konstantin Porotchkin Add pin control nodes to APN806, CP-master, CP-slave and Armada-7040 and Armada-8040 boards DTS files Signed-off-by: Konstantin Porotchkin Cc: Stefan Roese Cc: Nadav Haklai Cc: Neta Zur

[U-Boot] [PATCH v3 3/6] arm64: mvebu: pinctrl: Add pin control driver for A8K family

2016-12-08 Thread kostap
From: Konstantin Porotchkin Add a DM port of Marvell pin control driver. The A8K SoC family contains several silicone dies interconnected in a single package. Every die is normally equipped with its own pin controller unit. There are 2 pin controllers in A70x0 SoC and 3 in

[U-Boot] [PATCH v3 2/6] arm64: mvebu: Add bubt command for flash image burn

2016-12-08 Thread kostap
From: Konstantin Porotchkin Add support for mvebu bubt command for flash image load, check and burn on boot device. Signed-off-by: Konstantin Porotchkin Reviewed-by: Stefan Roese Cc: Stefan Roese Cc: Nadav Haklai

[U-Boot] [PATCH v3 1/6] arm64: mvebu: Modify the A8K SPI and I2C config in DTS

2016-12-08 Thread kostap
From: Konstantin Porotchkin Align the Armada-8040-db and Armada-7040-db SPI and I2C DTS settings with latest DB settings: - 8040-db: disable i2c0 and spi0 on AP (MPPs are reserved for SDIO) - 8040-db: disable cps_i2c0 on CP1 - 8040-db: enable spi1 on CP1 (the new location of

[U-Boot] [PATCH v2] arm: am33xx: Initialize EMIF REG_PR_OLD_COUNT for BBB and am335x-evm

2016-12-08 Thread Jyri Sarha
Initialize EMIF OCP_CONFIG registers REG_COS_COUNT_1, REG_COS_COUNT_2, and REG_PR_OLD_COUNT field for Beaglebone-Black and am335x-evm. With the default values LCDC suffers from DMA FIFO underflows and frame synchronization lost errors. The initialization values are the highest that work flawlessly

Re: [U-Boot] net: e1000: support for intel 82579

2016-12-08 Thread Marcel Ziswiler
On Wed, 2016-12-07 at 16:08 +0100, Markus Valentin wrote: > Hi, > > did somebody already did some effort to support the intel 82579 > Gigabit > Ethernet PHY with the e1000 driver? I have not tried 82579 in particular but back when I brought up our i210/i211 based modules I do remember that one