Re: [U-Boot] [PATCH v2 0/4] sunxi: Add support for NanoPi M1

2017-05-29 Thread Jagan Teki
On Tue, May 23, 2017 at 10:51 PM, Jagan Teki wrote: > On Wed, May 10, 2017 at 11:56 AM, Mylène Josserand > wrote: >> Hi everyone, >> >> Here is a V2 of the support of the Sun8i NanoPi M1 platform. >> I created a patch serie instead

Re: [U-Boot] [PATCH 02/10] drivers: spi: add config to consider command bytes when writting to flash

2017-05-29 Thread Jagan Teki
On Sat, May 20, 2017 at 1:36 PM, Álvaro Fernández Rojas wrote: > Hi Simon, > > El 20/05/2017 a las 4:29, Simon Glass escribió: >> Hi Alvaro, >> >> On 18 May 2017 at 13:29, Álvaro Fernández Rojas wrote: >>> Command bytes are part of the written bytes and they

Re: [U-Boot] [linux-sunxi] [PATCH v2 1/2] sunxi: Rename bananapi board as bananapi m1

2017-05-29 Thread Chen-Yu Tsai
Hi, On Tue, May 30, 2017 at 5:58 AM, Karsten Merker wrote: > On Tue, May 30, 2017 at 01:06:54AM +0530, Jagan Teki wrote: >> From: Jagan Teki >> >> from BPI(BIPAI KEJI LIMITED) products the Bananapi board >> is named as 'Bananapi M1' and this is the

[U-Boot] [PATCH] video: ld9040: remove the unused defined

2017-05-29 Thread Jaehoon Chung
Remove the unused defined. When code is building, appearred the compiler warning. Signed-off-by: Jaehoon Chung --- drivers/video/ld9040.c | 16 1 file changed, 16 deletions(-) diff --git a/drivers/video/ld9040.c b/drivers/video/ld9040.c index

[U-Boot] [PATCH] odroid: remove COMPAT_DM_I2C_COMPAT config

2017-05-29 Thread Jaehoon Chung
Remove the COMPAT_DM_I2C_COMPAT config. Signed-off-by: Jaehoon Chung --- This patch is based on "Enable the CONFIG_DM_MMC for Exynos4 series" configs/odroid_defconfig | 2 +- include/configs/odroid.h | 5 - 2 files changed, 1 insertion(+), 6 deletions(-) diff --git

[U-Boot] [PATCH 1/2] ARM: dts: exynos4: change the nodes relevant to mmc/sd

2017-05-29 Thread Jaehoon Chung
Change the nodes relevant to mmc/sd for using DM. compatible are also changed to each SoCs. Signed-off-by: Jaehoon Chung --- arch/arm/dts/exynos4.dtsi | 25 +-- arch/arm/dts/exynos4210-origen.dts | 24 --

[U-Boot] [PATCH 2/2] configs: enable the CONFIG_DM_MMC for exynos4 series

2017-05-29 Thread Jaehoon Chung
Enable the CONFIG_DM_MMC for exynos4 series. Signed-off-by: Jaehoon Chung --- configs/odroid_defconfig| 1 + configs/origen_defconfig| 1 + configs/s5pc210_universal_defconfig | 1 + configs/trats2_defconfig| 1 +

[U-Boot] [PATCH 0/2] Enable the CONFIG_DM_MMC for Exynos4 series

2017-05-29 Thread Jaehoon Chung
Enable the CONFIG_DM_MMC for Exynos4 series. To use this, change the nodes relevant to mmc/sd in each dts. Tested with trats/trats2/universal_c210/odroid. But i didn't test origen board..someone can test it. It's helpful. Jaehoon Chung (2): ARM: dts: exynos4: change the nodes relevant to

[U-Boot] [PATCH] rtc: ds1337: drop "SYS" from config variables

2017-05-29 Thread Chris Packham
There is some inconsistency between uses of CONFIG_RTC_DS13xx and CONFIG_SYS_RTC_DS13xx. Address this by dropping the "SYS" from these variables. Signed-off-by: Chris Packham --- README | 2 +- drivers/rtc/ds1337.c | 16

[U-Boot] [PATCH v2 05/10] patman: Don't report unicode character

2017-05-29 Thread Simon Glass
Unicode characters may appear in input patches so we should not warn about them. Drop this warning. Signed-off-by: Simon Glass --- Changes in v2: None tools/patman/patchstream.py | 9 - 1 file changed, 9 deletions(-) diff --git a/tools/patman/patchstream.py

[U-Boot] [PATCH v2 07/10] patman: Add unicode to test patches

2017-05-29 Thread Simon Glass
Add some unicode to the test patches to make sure that patman does the right thing. Signed-off-by: Simon Glass --- Changes in v2: None tools/patman/test.py | 9 + 1 file changed, 9 insertions(+) diff --git a/tools/patman/test.py b/tools/patman/test.py index

[U-Boot] [PATCH v2 08/10] patman: Add a maintainer test feature to MakeCcFile()

2017-05-29 Thread Simon Glass
Allow the add_maintainers parameter to be a list of maintainers, thus allowing us to simulate calling the script in tests without actually needing it to work. Signed-off-by: Simon Glass --- Changes in v2: None tools/patman/series.py | 8 ++-- 1 file changed, 6

[U-Boot] [PATCH v2 06/10] patman: Don't return the series in FixPatches()

2017-05-29 Thread Simon Glass
There is no need for this function to return the same object that was passed in. Drop the return value. Signed-off-by: Simon Glass --- Changes in v2: None tools/patman/patchstream.py | 1 - tools/patman/patman.py | 4 ++-- 2 files changed, 2 insertions(+), 3

[U-Boot] [PATCH v2 03/10] patman: Don't convert input data to unicode

2017-05-29 Thread Simon Glass
The communication filter reads data in blocks and converts each block to unicode (if necessary) one at a time. In the unlikely event that a unicode character in the input spans a block this will not work. We get an error like: UnicodeDecodeError: 'utf8' codec can't decode bytes in position

[U-Boot] [PATCH v2 04/10] patman: Rename 'str' variable in EmailPatches()

2017-05-29 Thread Simon Glass
This is not a good variable name in Python because 'str' is a type. It shows up highlighted in some editors. Rename it. Signed-off-by: Simon Glass --- Changes in v2: None tools/patman/gitutil.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[U-Boot] [PATCH v2 02/10] patman: Adjust handling of unicode email address

2017-05-29 Thread Simon Glass
Don't mess with the email address when outputting them. Just make sure they are encoded with utf-8. Signed-off-by: Simon Glass --- Changes in v2: - Expand the patch to cover all cases - Drop RFC tag - Rewrite commit message tools/patman/gitutil.py | 2 ++

[U-Boot] [PATCH v2 00/10] patman: Fix unicode operation and add a functional test

2017-05-29 Thread Simon Glass
With more recent versions of Python 2.7 (and perhaps patman itself) something has changed such that patman sometimes reports unicode decode errors, particularly when getting a list of maintainers for code covered by a patch. This series attempts to correct this. It also adds a functional test so

[U-Boot] [PATCH v2 01/10] patman: encode CC list to UTF-8

2017-05-29 Thread Simon Glass
From: Philipp Tomsich This change encodes the CC list to UTF-8 to avoid failures on maintainer-addresses that include non-ASCII characters (observed on Debian 7.11 with Python 2.7.3). Without this, I get the following failure: Traceback (most recent call

[U-Boot] [PATCH v2 2/2] sunxi: Use proper naming convention for Bananapi boards

2017-05-29 Thread Jagan Teki
From: Jagan Teki Since Bananapi brand is owned by BIPAI KEJI(BPI) - Drop vendor prefix 'Sinovoip' for defconfig names - Drop Board name 'SINOVOIP' in MAINTAINERS file - Use small letters for defconfig files, since newly supported and/or longer stable defconfigs

[U-Boot] [PATCH v2 1/2] sunxi: Rename bananapi board as bananapi m1

2017-05-29 Thread Jagan Teki
From: Jagan Teki from BPI(BIPAI KEJI LIMITED) products the Bananapi board is named as 'Bananapi M1' and this is the starting bananapi board from M1 series. So rename the board defconfig, dts and suffix 'M1' on model for the same so-that next sequence on bananapi

[U-Boot] [PATCH v2 4/6] GPT: read partition table from device into a data structure

2017-05-29 Thread alison
From: Alison Chaiken Make the partition table available for modification by reading it from the user-specified device into a linked list. Provide an accessor function for command-line testing. Signed-off-by: Alison Chaiken --- cmd/gpt.c |

[U-Boot] [PATCH v2 6/6] GPT: fix error in partitions string doc

2017-05-29 Thread alison
From: Alison Chaiken The existing partitions-list parsing in cmd/gpt.c passes a value from gpt_default() to set_gpt_info() that README.gpt suggests should begin with 'partitions='. Partition-list strings should in fact begin with 'uuid_disk', as otherwise the call from

[U-Boot] [PATCH v2 5/6] rename GPT partitions to detect boot failure

2017-05-29 Thread alison
From: Alison Chaiken This patch provides support in u-boot for renaming GPT partitions. The renaming is accomplished via a new 'gpt flip' command which is enabled via a CONFIG_CMD_GPT_FLIP option. The concept for the bootloader state machine is the following: -- u-boot

[U-Boot] [PATCH v2 2/6] disk_partition: introduce macros for description string lengths

2017-05-29 Thread alison
From: Alison Chaiken Signed-off-by: Alison Chaiken --- include/part.h | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/part.h b/include/part.h index 6ace09f..87b 100644 --- a/include/part.h +++

[U-Boot] [PATCH v2 3/6] GPT: add accessor function for disk GUID

2017-05-29 Thread alison
From: Alison Chaiken In order to read the GPT, modify the partition name strings, and then write out a new GPT, the disk GUID is needed. While there is an existing accessor for the partition UUIDs, there is none yet for the disk GUID. Signed-off-by: Alison Chaiken

[U-Boot] [PATCH v2 1/6] EFI: replace number with UUID_STR_LEN macro

2017-05-29 Thread alison
From: Alison Chaiken Signed-off-by: Alison Chaiken --- disk/part_efi.c | 2 +- include/part.h | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/disk/part_efi.c b/disk/part_efi.c index 1b7ba27..20d33ef 100644 ---

[U-Boot] [PATCH v2 0/6] add support for GPT partition name manipulation

2017-05-29 Thread alison
From: Alison Chaiken One way for userspace and the bootloader to exchange information about dynamic image selection is via the storage device partition table, as described at https://source.android.com/devices/tech/ota/ab_updates The scheme described there relies on

Re: [U-Boot] [PATCH] sunxi: sinovoip: Use proper naming convention for BPI boards

2017-05-29 Thread Chen-Yu Tsai
On Mon, May 29, 2017 at 11:37 PM, Jagan Teki wrote: > On Mon, May 29, 2017 at 8:27 PM, Chen-Yu Tsai wrote: >> On Mon, May 29, 2017 at 10:24 PM, Jagan Teki wrote: >>> From: Jagan Teki >>> >>> - Rename

Re: [U-Boot] [PATCH] sunxi: sinovoip: Use proper naming convention for BPI boards

2017-05-29 Thread Jagan Teki
On Mon, May 29, 2017 at 8:27 PM, Chen-Yu Tsai wrote: > On Mon, May 29, 2017 at 10:24 PM, Jagan Teki wrote: >> From: Jagan Teki >> >> - Rename Sinovoip BPI defconfigs to use small letter >> - To avoid naming conflict with 'LeMaker'

Re: [U-Boot] [PATCH] ARM: zynq: Add support for the topic-miamilite system-on-module

2017-05-29 Thread Michal Simek
On 29.5.2017 15:41, Mike Looijmans wrote: > The topic-miamilite SoM contains a Zynq xc7z010 SoC, 1GB DDR3L RAM, > 64MB dual-parallel QSPI NOR flash and clock sources. > > Signed-off-by: Mike Looijmans > --- > arch/arm/dts/Makefile | 1 + >

Re: [U-Boot] [PATCH 26/26] dm: tegra: nyan-big: Move to livetree

2017-05-29 Thread Marcel Ziswiler
Hi Simon On Fri, 2017-05-19 at 08:31 -0600, Simon Glass wrote: > Change this board to use a live device tree after relocation. > > Signed-off-by: Simon Glass > --- > >  configs/nyan-big_defconfig | 1 + >  1 file changed, 1 insertion(+) > > diff --git

Re: [U-Boot] [PATCH] sunxi: sinovoip: Use proper naming convention for BPI boards

2017-05-29 Thread Chen-Yu Tsai
On Mon, May 29, 2017 at 10:24 PM, Jagan Teki wrote: > From: Jagan Teki > > - Rename Sinovoip BPI defconfigs to use small letter > - To avoid naming conflict with 'LeMaker' add sinovoip > prefix to BPI M2 Ultra defconfig since bananapi is > also

Re: [U-Boot] [PATCH 8/8] tegra: Convert MMC to use driver model for operations

2017-05-29 Thread Marcel Ziswiler
Hi Simon On Thu, 2017-05-18 at 10:35 -0600, Simon Glass wrote: > Hi Tom, > > On 18 May 2017 at 10:33, Tom Warren wrote: > > Simon, > > > > What testing did you do? > > This was tested on Nyan. I'd be grateful for any Tegra review / > testing that you can arrange. It seems

[U-Boot] [PATCH] sunxi: sinovoip: Use proper naming convention for BPI boards

2017-05-29 Thread Jagan Teki
From: Jagan Teki - Rename Sinovoip BPI defconfigs to use small letter - To avoid naming conflict with 'LeMaker' add sinovoip prefix to BPI M2 Ultra defconfig since bananapi is also name used by 'LeMaker' - Add 'SINOVOIP' prefix 'BANANAPI M2 ULTRA BOARD' under

[U-Boot] [PATCHv5 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Jorge Ramirez-Ortiz
This port adds support for: 1) Serial 2) eMMC 3) USB It has been tested with ARM TRUSTED FIRMWARE running u-boot as the BL33 executable [see board's README] eMMC has been tested for reading and booting the loader and linux kernels as well as saving the u-boot environment.

[U-Boot] [PATCHv5 2/3] driver: mmc: update debug info

2017-05-29 Thread Jorge Ramirez-Ortiz
This driver is used in another board; remove board information from the driver debug log. Signed-off-by: Jorge Ramirez-Ortiz --- drivers/mmc/hi6220_dw_mmc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/hi6220_dw_mmc.c

[U-Boot] [PATCHv5 1/3] ARM64: dts: hi3798cv200-poplar: add device tree bindings

2017-05-29 Thread Jorge Ramirez-Ortiz
Pulled from Linux 4.12-rc3 Signed-off-by: Jorge Ramirez-Ortiz --- arch/arm/dts/hi3798cv200-poplar.dts | 162 + arch/arm/dts/hi3798cv200.dtsi | 411 include/dt-bindings/clock/histb-clock.h | 66 +

[U-Boot] [PATCH] ARM: zynq: Add support for the topic-miamilite system-on-module

2017-05-29 Thread Mike Looijmans
The topic-miamilite SoM contains a Zynq xc7z010 SoC, 1GB DDR3L RAM, 64MB dual-parallel QSPI NOR flash and clock sources. Signed-off-by: Mike Looijmans --- arch/arm/dts/Makefile | 1 + arch/arm/dts/zynq-topic-miamilite.dts |

Re: [U-Boot] [PATCH v3] ARM: ti: Update layout for MMC and eMMC (env and dfu)

2017-05-29 Thread Sam Protsenko
On 24 May 2017 at 13:08, Jean-Jacques Hiblot wrote: > The problems with the current DFU layout are: > MMC: The space allocated for u-boot is too small for the latest u-boot > (>750KB). We need to increase it. eMMC uses a much bigger area (2MB). > eMMC: region

Re: [U-Boot] [PATCH 12/12] README: Add instructions for chain-loading U-Boot

2017-05-29 Thread Peter Robinson
On Mon, May 22, 2017 at 12:17 PM, Simon Glass wrote: > Most Chromebooks support chain-loading U-Boot but instructions are > somewhat scattered. Add a README to hold this information within the > U-Boot tree. Also add the standard developer keys to simplify the > instructions,

[U-Boot] [PATCH v2] sun50i: a64: Add initial Banana Pi M64 support

2017-05-29 Thread Jagan Teki
From: Jagan Teki BPI-M64 is a 64-bit quad-core mini single board computer using the Allwinner A64 SOC. BPI-M64 features - 1.2 Ghz Quad-Core ARM Cortex A53 - 2GB DDR3 SDRAM with 733MHz - MicroSD/eMMC(8GB) - 10/100/1000Mbps ethernet (Realtek RTL8211E/D) - Wifi + BT -

Re: [U-Boot] [PATCH v3] sunxi: A64/Pine64: update device tree from Linux

2017-05-29 Thread Jagan Teki
On Wed, May 24, 2017 at 3:04 PM, Andre Przywara wrote: > The Linux device tree for the Allwinner A64 SoC has changed a lot since > the U-Boot version was merged. > Let's replace the current DT with a exact copy of the Linux one as of: > commit

Re: [U-Boot] [PATCHv4 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Jorge Ramirez
On 05/29/2017 02:26 PM, Tom Rini wrote: On Mon, May 29, 2017 at 02:18:48PM +0200, Jorge Ramirez wrote: On 05/29/2017 01:57 PM, Tom Rini wrote: The issue is actually with serial-uclass.c when the kernel dts contains a chosen node that contains the stdout-path. chosen { stdout-path

Re: [U-Boot] [PATCHv4 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Tom Rini
On Mon, May 29, 2017 at 02:18:48PM +0200, Jorge Ramirez wrote: > On 05/29/2017 01:57 PM, Tom Rini wrote: > >>The issue is actually with serial-uclass.c when the kernel dts > >>contains a chosen node that contains the stdout-path. > >> chosen { > >> stdout-path = "serial0:115200n8"; >

Re: [U-Boot] [PATCHv4 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Jorge Ramirez
On 05/29/2017 02:18 PM, Jorge Ramirez wrote: On 05/29/2017 01:57 PM, Tom Rini wrote: The issue is actually with serial-uclass.c when the kernel dts contains a chosen node that contains the stdout-path. chosen { stdout-path = "serial0:115200n8"; }; Disabling uart0 (ie

Re: [U-Boot] [PATCHv4 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Jorge Ramirez
On 05/29/2017 01:57 PM, Tom Rini wrote: The issue is actually with serial-uclass.c when the kernel dts contains a chosen node that contains the stdout-path. chosen { stdout-path = "serial0:115200n8"; }; Disabling uart0 (ie serial0) in u-boot.dtsi loses the console instead of

Re: [U-Boot] [PATCHv4 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Tom Rini
On Mon, May 29, 2017 at 11:00:32AM +0200, Jorge Ramirez wrote: > On 05/26/2017 06:09 PM, Tom Rini wrote: > >>>So to sum up: > >>> > >>>In order to get the platform data for pl01x I have to either disable > >>>OF (so I lose the USB node as I said earlier) or*completely* remove > >>>the UART0 node

Re: [U-Boot] [PATCH 4/4] mx25pdk: Set the eSDHC PER clock to 48 MHz

2017-05-29 Thread Fabio Estevam
On Wed, May 3, 2017 at 6:59 AM, Benoît Thébaudeau wrote: > The maximum SD clock frequency in High Speed mode is 50 MHz. This change > makes it possible to get 48 MHz from the USB PLL (240 MHz / 5 / 1) > instead of the previous 33.25 MHz from the AHB clock (133 MHz / 2 / 2). >

Re: [U-Boot] [PATCH 3/4] mx25: Add function to set PER clocks

2017-05-29 Thread Fabio Estevam
On Wed, May 3, 2017 at 6:59 AM, Benoît Thébaudeau wrote: > Introduce the imx_set_perclk() function to make it possible to set the > PER clocks. > > Signed-off-by: Benoît Thébaudeau Reviewed-by: Fabio Estevam

Re: [U-Boot] [PATCH 2/4] mx25: Fix imx_get_perclk()

2017-05-29 Thread Fabio Estevam
On Wed, May 3, 2017 at 6:59 AM, Benoît Thébaudeau wrote: > imx_get_perclk() used the AHB clock as the clock source for all PER > clocks, but the USB PLL output can also be a PER clock source if the > corresponding PER CLK MUX bit is set in CCM.MCR. > > Signed-off-by: Benoît

[U-Boot] TPM2.0 support in u-boot

2017-05-29 Thread Peter.Huewe
Hi, I was wondering if anyone is currently working on u-boot support for TPM2.0 chips, especially the "native" spi versions. (i.e. direct access to the tpm via spi, not via something like the pch) Having support for TPM2.0 in u-boot is crucial in order to achieve some measured boot scenarios.

Re: [U-Boot] [PATCH 1/4] mmc: fsl_esdhc: Allow all supported prescaler values

2017-05-29 Thread Fabio Estevam
On Wed, May 3, 2017 at 6:59 AM, Benoît Thébaudeau wrote: > On i.MX, SYSCTL.SDCLKFS may be set to 0 in order to make the SD clock > frequency prescaler divide by 1 in SDR mode. In DDR mode, the prescaler > can divide by up to 512. Allow both of these settings. > > The maximum

Re: [U-Boot] [PATCH 3/3] rename GPT partitions to detect boot failure

2017-05-29 Thread Lothar Waßmann
ali...@peloton-tech.com wrote: > From: Alison Chaiken > > This patch provides support in u-boot for renaming GPT > partitions. The renaming is accomplished via a new 'gpt flip' > command. > > The concept for the bootloader state machine is the following: > > -- u-boot

Re: [U-Boot] [PATCHv4 3/3] ARM64: poplar: hi3798cv200: u-boot support for Poplar 96Boards

2017-05-29 Thread Jorge Ramirez
On 05/26/2017 06:09 PM, Tom Rini wrote: So to sum up: In order to get the platform data for pl01x I have to either disable OF (so I lose the USB node as I said earlier) or*completely* remove the UART0 node from from the kernel dts. I personally would rather not modify the kernel's DTS trees

Re: [U-Boot] i.Mx6q u-boot stuck

2017-05-29 Thread Fausto Sessego
2017-05-27 14:50 GMT+02:00 Fabio Estevam : > On Sat, May 27, 2017 at 8:00 AM, Fausto Sessego > wrote: > > > Starting kernel ... > > > > Uncompressing Linux... done, booting the kernel. > > > > Error: unrecognized/unsupported machine ID (r1 =

[U-Boot] [GIT PULL] Please pull u-boot-mmc master

2017-05-29 Thread Jaehoon Chung
Dear Tom, Could you pull these patches into u-boot/master? I have tested the buildman..but if there is a problem, let me know, plz. The following changes since commit 380e86f361e4e2aef83295972863654fde157560: Merge git://git.denx.de/u-boot-fsl-qoriq (2017-05-26 11:19:27 -0400) are available

[U-Boot] [PATCH] arm64: Add NOLOAD attribute NOLOAD to .bss sections

2017-05-29 Thread Michal Simek
Mark explicitly bss sections to not be loaded at run time. The similar patch was done in past by: "Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections" (sha1: 64134f011254123618798ff77c42ba196b2ec485) The problem is related to latest toolchain added to Xilinx v2017.1 design tools where

Re: [U-Boot] [PATCH v3] sunxi: A64/Pine64: update device tree from Linux

2017-05-29 Thread Maxime Ripard
On Wed, May 24, 2017 at 10:34:56AM +0100, Andre Przywara wrote: > The Linux device tree for the Allwinner A64 SoC has changed a lot since > the U-Boot version was merged. > Let's replace the current DT with a exact copy of the Linux one as of: > commit c6778ff813d2ca3e3c8733c87dc8b6831a64578b >

Re: [U-Boot] [PATCH v2] sun5i: a13: Add Olimex SOM board support

2017-05-29 Thread Maxime Ripard
On Tue, May 23, 2017 at 06:28:18PM +0530, Jagan Teki wrote: > From: Jagan Teki > > Add support for Olimex A13-512-SOM board, and this particular > design is like A13-SOM-WIFI can mount on-top of A13-SOM. > > https://www.olimex.com/Products/SOM/A13/A13-SOM-512/ >

Re: [U-Boot] [PATCH v3 3/4] drivers: phy: add generic_phy_valid() method

2017-05-29 Thread Patrice CHOTARD
Hi Jean-Jacques On 05/24/2017 03:24 PM, Jean-Jacques Hiblot wrote: > > > On 23/05/2017 11:57, patrice.chot...@st.com wrote: >> From: Patrice Chotard >> >> This allow to check if a PHY has been correctly >> initialised and avoid to get access to phy struct. >> >>

Re: [U-Boot] [PATCH v3 0/4] Extend xhci-dwc3

2017-05-29 Thread Patrice CHOTARD
Fyi, a v4 is available with a fix reported by Jean-Jacques Hiblot On 05/23/2017 11:57 AM, patrice.chot...@st.com wrote: > From: Patrice Chotard > > v3: _ introduce generic_phy_valid() method > _ add Reviewed-by > v2: _ use dev_get_addr() in PATCH 1 and removed

[U-Boot] [PATCH v4 5/5] usb: host: xhci-dwc3: Add generic PHY support

2017-05-29 Thread patrice.chotard
From: Patrice Chotard Add support of generic PHY framework support Signed-off-by: Patrice Chotard --- v4: _ none v3: _ use generic_phy_valid() method v2: _ none drivers/usb/host/xhci-dwc3.c | 32 1

[U-Boot] [PATCH v4 4/5] drivers: phy: add generic_phy_valid() method

2017-05-29 Thread patrice.chotard
From: Patrice Chotard This allow to check if a PHY has been correctly initialised and avoid to get access to phy struct. Signed-off-by: Patrice Chotard --- v4: _ none drivers/phy/phy-uclass.c | 5 + include/generic-phy.h| 8

[U-Boot] [PATCH v4 1/5] usb: host: xhci-dwc3: Convert driver to DM

2017-05-29 Thread patrice.chotard
From: Patrice Chotard Add Driver Model support with use of generic DT compatible string "snps,dwc3" Signed-off-by: Patrice Chotard --- v4: _ none v3: _ none v2: _ use dev_get_addr() and removed useless piece of code

[U-Boot] [PATCH v4 3/5] drivers: phy: Set phy->dev to NULL when generic_phy_get_by_index() fails

2017-05-29 Thread patrice.chotard
From: Patrice Chotard phy->dev need to be set to NULL in case of generic_phy_get_by_index() fails. Then phy->dev can be used to check if the phy is valid Reported-by: Jean-Jacques Hiblot Signed-off-by: Patrice Chotard --- v4:

[U-Boot] [PATCH v4 2/5] usb: host: xhci-dwc3: Add dual role mode support from DT

2017-05-29 Thread patrice.chotard
From: Patrice Chotard DWC3 dual role mode is selected using DT "dr_mode" property. If not found, DWC3 controller is configured in HOST mode by default Signed-off-by: Patrice Chotard --- d4: _ none v3: _ none v2: _ none

[U-Boot] [PATCH v4 0/5] Extend xhci-dwc3

2017-05-29 Thread patrice.chotard
From: Patrice Chotard This series extend xhci-dwc3.c drivers by : _ converting it to DM model, _ adding dual role mode support from DT _ adding new generic_phy_valid() method in PHY framework _ adding support of generic PHY framework v4:

Re: [U-Boot] [PATCH V7 4/4] rockchip: rk3288: enable rockusb support on rk3288 based device

2017-05-29 Thread Lukasz Majewski
Good morning Eddie, > this patch enable rockusb support on rk3288 based device. > > Signed-off-by: Eddie Cai > Reviewed-by: Simon Glass > I've give this patch set a try on travisCI: https://travis-ci.org/lmajewski/u-boot-dfu/jobs/237068149

[U-Boot] [PATCH] arm: Add support for poweroff via PSCI

2017-05-29 Thread Michal Simek
Add support for calling poweroff in case of psci is wired. Based on the same solution as is used for reset. Signed-off-by: Michal Simek --- arch/arm/cpu/armv8/fwcall.c | 7 +++ arch/arm/lib/Makefile | 1 + arch/arm/lib/poweroff.c | 47

[U-Boot] [PATCH] Kconfig: Add description for CMD_POWEROFF

2017-05-29 Thread Michal Simek
Add poweroff description to Kconfig to make it selectable via menuconfig. Signed-off-by: Michal Simek --- cmd/Kconfig | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/Kconfig b/cmd/Kconfig index 5ee52f62cc14..e2250cabfe12 100644 ---

[U-Boot] [PATCH] arm64: zynqmp: Add empty sleep.h file for psu_init* compilation

2017-05-29 Thread Michal Simek
psu_init* contain sleep.h header which is not present in u-boot. Instead of keep comment sleep.h in psu_init* it is easier to add empty file which is included. Signed-off-by: Michal Simek --- board/xilinx/zynqmp/sleep.h | 1 + 1 file changed, 1 insertion(+) create