Re: [U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-05-04 Thread Mario Six
Hi Neil, On Fri, Apr 27, 2018 at 3:01 PM, Neil Armstrong wrote: > Hi, > > On 27/04/2018 14:53, Mario Six wrote: >> Some reset lines are implemented by toggling the line via a GPIO. >> >> Add a driver to properly drive such reset lines. > > You are defining a "gpio-reset" binding which has always

Re: [U-Boot] [PATCH v2 1/4] core: Add functions to set properties in live-tree

2018-05-04 Thread Mario Six
Hi Simon, On Tue, May 1, 2018 at 1:13 AM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:51, Mario Six wrote: >> >> Implement a set of functions to manipulate properties in a live device >> tree: >> >> * ofnode_set_property() to set generic properties of a node >> * ofnode_write_strin

Re: [U-Boot] [PATCH v2 2/5] regmap: Support reading from specific range

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 4:33 AM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:52, Mario Six wrote: >> >> It is useful to be able to treat the different ranges of a regmap >> separately to be able to use distinct offset for them, but this is >> currently not implemented in t

Re: [U-Boot] Re-introducing support for OLD hardware

2018-05-04 Thread Jason Mitchell
Hi everyone. In regards to re-introduction and ongoing maintenance of support for old SoC, we have determined that this would be a futile effort. More so when you consider that the team here wanted to run Jquery and all of the newer frameworks on this old SoC. We have therefore chosen to support

Re: [U-Boot] [RFC PATCH v2 13/20] fastboot: Merge reboot-bootloader handling

2018-05-04 Thread Alex Kiernan
On Thu, May 3, 2018 at 10:16 PM Joe Hershberger wrote: > On Mon, Apr 30, 2018 at 3:32 AM, Alex Kiernan wrote: > > Extract fb_set_reboot_flag() from USB code and ensure all the overides > > are included, then make the UDP fastboot code go through this same > > path. > > > > Note this changes the

Re: [U-Boot] [PATCH v2 3/4] core: Add dev_{disable,enable}_by_path

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 4:33 AM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:51, Mario Six wrote: >> We cannot use device structures to disable devices, since getting >> them with the API functions would bind and activate the device, which >> would fail if the underlying d

Re: [U-Boot] [RFC PATCH v2 13/20] fastboot: Merge reboot-bootloader handling

2018-05-04 Thread Joe Hershberger
On Fri, May 4, 2018 at 2:34 AM, Alex Kiernan wrote: > On Thu, May 3, 2018 at 10:16 PM Joe Hershberger > wrote: > >> On Mon, Apr 30, 2018 at 3:32 AM, Alex Kiernan > wrote: >> > Extract fb_set_reboot_flag() from USB code and ensure all the overides >> > are included, then make the UDP fastboot cod

Re: [U-Boot] [PATCH v2 01/10] ram: Add driver for MPC83xx

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 9:01 PM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:52, Mario Six wrote: >> Add a RAM driver for the MPC83xx architecture. >> >> Signed-off-by: Mario Six >> >> --- >> >> v1 -> v2: >> No changes >> >> --- >> arch/powerpc/cpu/mpc83xx/spd_sdram.c

Re: [U-Boot] [PATCH v2 3/5] regmap: Define regmap_{get,set}

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 4:33 AM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:52, Mario Six wrote: >> It would be convenient if one could use the regmap API in conjunction >> with register maps defined as structs (i.e. structs that directly mirror >> the memory layout of th

Re: [U-Boot] [PATCH v2 02/10] sysreset: Add get_status method

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 9:01 PM, Simon Glass wrote: > On 27 April 2018 at 06:52, Mario Six wrote: >> It's useful to have the reset status of the SoC printed out during reset >> (e.g. to learn whether the reset was caused by software or a watchdog). >> >> As a first step to implement thi

Re: [U-Boot] [PATCH v2 03/10] board_f: Add reset status printing

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 9:01 PM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:52, Mario Six wrote: >> To print the reset status during boot, add a method print_resetinfo to >> board_f, which is called in init_sequence_f[], that gets the reset >> information from the sysrese

Re: [U-Boot] [PATCH v2 2/3] mpc83xx/pci: Register IMMR region

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 9:02 PM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:53, Mario Six wrote: >> Register the IMMR region as a PCI region when PCI is used on MPC83xx. >> >> Signed-off-by: Mario Six >> --- >> >> v1 -> v2: >> No changes >> >> --- >> drivers/pci/pci-ucl

Re: [U-Boot] [PATCH v2 1/5] regmap: Add size parameter

2018-05-04 Thread Mario Six
Hi Neil, On Fri, Apr 27, 2018 at 3:00 PM, Neil Armstrong wrote: > Hi Mario, > > On 27/04/2018 14:51, Mario Six wrote: >> The regmap functions currently assume that all register map accesses >> have a data width of 32 bits, but there are maps that have different >> widths. >> >> Implement a size p

[U-Boot] [PATCH] bootm: fix 'memory-fixup' for vxWorks boot

2018-05-04 Thread Hannes Schmelzer
The check for having a memory node within the fdt blob is made wrong, we fix this here. Signed-off-by: Hannes Schmelzer --- arch/arm/lib/bootm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/lib/bootm.c b/arch/arm/lib/bootm.c index 91a64be..92780fd 100644 --- a/a

[U-Boot] [PATCH] rockchip: update emmc/sd index

2018-05-04 Thread Kever Yang
We define emmc/sdcard index in dts alias, emmc is 0 and sdcard is 1. Signed-off-by: Kever Yang --- include/configs/rockchip-common.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h index 4062480..d6

Re: [U-Boot] [PATCH v2 1/2] misc: uclass: Add enable/disable function

2018-05-04 Thread Mario Six
Hi Simon, On Thu, May 3, 2018 at 9:02 PM, Simon Glass wrote: > Hi Mario, > > On 27 April 2018 at 06:52, Mario Six wrote: >> Add generic enable/disable function to the misc uclass. >> >> Signed-off-by: Mario Six >> --- >> >> v1 -> v2: >> * Merged the two functions into one function >> * Explaine

Re: [U-Boot] [RFC PATCH v2 12/20] fastboot: net: Convert command lookup to a table

2018-05-04 Thread Alex Kiernan
On Thu, May 3, 2018 at 10:08 PM Joe Hershberger wrote: > On Mon, Apr 30, 2018 at 3:32 AM, Alex Kiernan wrote: > > Change command lookup to use a lookup table so it matches the existing > > USB fastboot code. > > > > Signed-off-by: Alex Kiernan > > --- > > > > Changes in v2: None > > > > driver

Re: [U-Boot] Logo for U-Boot

2018-05-04 Thread Marek Vasut
On 05/04/2018 08:46 AM, Alexander Graf wrote: > On 05/04/2018 01:04 AM, Marek Vasut wrote: >> On 05/03/2018 11:57 PM, Alexander Graf wrote: >>> >>> On 01.05.18 04:09, Marek Vasut wrote: On 04/30/2018 08:22 PM, Heinrich Schuchardt wrote: > U-Boot has currently no logo that we can use in pre

Re: [U-Boot] [PATCH] rockchip: update emmc/sd index

2018-05-04 Thread klaus . goger
Hi Kever > On 04.05.2018, at 10:50, Kever Yang wrote: > > We define emmc/sdcard index in dts alias, emmc is 0 and sdcard is 1. The commit message is a bit misleading at first. When reading it i thought you update or add dts alias indexes. But you actually change the default boot order of distro

Re: [U-Boot] [PATCH RFCv2 0/6] Beginning of migration of MPC8xx to DM model

2018-05-04 Thread Mario Six
Hi Christophe, On Fri, May 4, 2018 at 7:20 AM, Christophe LEROY wrote: > Hello, > > > Le 16/03/2018 à 17:32, Christophe Leroy a écrit : >> >> This serie is the beginning of MPC8xx migration to DM model. > > > I didn't get any feedback on this serie. I don't feel totally confortable as > it is my

Re: [U-Boot] [PATCH RFCv2 0/6] Beginning of migration of MPC8xx to DM model

2018-05-04 Thread Christophe LEROY
Hi Mario, Le 04/05/2018 à 11:56, Mario Six a écrit : Hi Christophe, On Fri, May 4, 2018 at 7:20 AM, Christophe LEROY wrote: Hello, Le 16/03/2018 à 17:32, Christophe Leroy a écrit : This serie is the beginning of MPC8xx migration to DM model. I didn't get any feedback on this serie. I d

[U-Boot] Getting issue while building u-boot with the revision v2018.01 for armv8.

2018-05-04 Thread Ashwin Kumar
I am getting the following error message when I configure u-boot to vexpress_aemv8a_dram_defconfig. *Error:* {standard input}: Assembler messages: {standard input}:36: Error: unexpected character `n' in type specifier {standard input}:36: Error: bad instruction `b.ne 1b' scripts/Makefile.build:280:

Re: [U-Boot] [PATCH 3/5] api: Flush cache when closing api

2018-05-04 Thread Emmanuel Vadot
On Mon, 30 Apr 2018 10:37:50 +0200 "Dr. Philipp Tomsich" wrote: > > > On 30 Apr 2018, at 10:34, Emmanuel Vadot wrote: > > > > Signed-off-by: Emmanuel Vadot > > --- > > api/api.c | 11 +++ > > 1 file changed, 11 insertions(+) > > > > diff --git a/api/api.c b/api/api.c > > index 7eee2fc

[U-Boot] [PATCH v2 0/3] drivers: Add reset ctrl to drivers

2018-05-04 Thread Ley Foon Tan
Add reset ctrl to dwmmc socfpga, designware Ethernet and ns16550 serial drivers. A reset property is an optional feature, so only print out a warning and do not fail if a reset property is not present. If a reset property is discovered, then use it to deassert, thus bringing the IP out of res

[U-Boot] [PATCH v2 1/3] mmc: dwmmc: socfpga: Add reset ctrl to driver

2018-05-04 Thread Ley Foon Tan
Add code to reset all reset signals as in mmc DT node. A reset property is an optional feature, so only print out a warning and do not fail if a reset property is not present. If a reset property is discovered, then use it to deassert, thus bringing the IP out of reset. Signed-off-by: Ley Foon T

[U-Boot] [PATCH v2 3/3] net: designware: Add reset ctrl to driver

2018-05-04 Thread Ley Foon Tan
Add code to reset all reset signals as in Ethernet DT node. A reset property is an optional feature, so only print out a warning and do not fail if a reset property is not present. If a reset property is discovered, then use it to deassert, thus bringing the IP out of reset. Signed-off-by: Ley F

[U-Boot] [PATCH v2 2/3] serial: ns16550: Add reset ctrl to driver

2018-05-04 Thread Ley Foon Tan
Add code to reset all reset signals as in serial DT node. A reset property is an optional feature, so do not fail if a reset property is not present. If a reset property is discovered, then use it to deassert, thus bringing the IP out of reset. Signed-off-by: Ley Foon Tan Reviewed-by: Marek Vas

Re: [U-Boot] Logo for U-Boot

2018-05-04 Thread Tom Rini
On Fri, May 04, 2018 at 11:18:48AM +0200, Marek Vasut wrote: > On 05/04/2018 08:46 AM, Alexander Graf wrote: > > On 05/04/2018 01:04 AM, Marek Vasut wrote: > >> On 05/03/2018 11:57 PM, Alexander Graf wrote: > >>> > >>> On 01.05.18 04:09, Marek Vasut wrote: > On 04/30/2018 08:22 PM, Heinrich Sc

[U-Boot] [PATCH v2 1/2] board: move ppa firmware address in board specific kconfig

2018-05-04 Thread Bhaskar Upadhaya
ppa firmware address may vary depending upon different boards, configure ppa firmware address in board specific kconfig Signed-off-by: Bhaskar Upadhaya --- Comments from v1: - move SYS_LS_PPA_FW_IN_MMC, SYS_LS_PPA_FW_IN_NAND in board files. arch/arm/cpu/armv8/fsl-layerscape/Kconfig | 17 -

Re: [U-Boot] [PATCH RFCv2 0/6] Beginning of migration of MPC8xx to DM model

2018-05-04 Thread Joakim Tjernlund
On Fri, 2018-05-04 at 12:33 +0200, Christophe LEROY wrote: > CAUTION: This email originated from outside of the organization. Do not click > links or open attachments unless you recognize the sender and know the > content is safe. > > > Hi Mario, > > Le 04/05/2018 à 11:56, Mario Six a écrit :

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

2018-05-04 Thread Tom Rini
On Thu, May 03, 2018 at 01:49:39AM +0200, Marek Vasut wrote: > The following changes since commit ec1754f091c3c06d76592a3f9fecf6184f27e4c9: > > Prepare v2018.05-rc3 (2018-05-01 09:09:31 -0400) > > are available in the Git repository at: > > git://git.denx.de/u-boot-sh.git master > > for yo

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

2018-05-04 Thread Tom Rini
On Thu, May 03, 2018 at 01:50:23AM +0200, Marek Vasut wrote: > The following changes since commit b25f8e2112b1582ce6386e846800a31bab688e50: > > Merge git://git.denx.de/u-boot-imx (2018-04-30 07:14:05 -0400) > > are available in the Git repository at: > > git://git.denx.de/u-boot-usb.git mas

[U-Boot] [PATCH v5 2/9] phy: ti-pip3-phy: Add support for USB3 PHY

2018-05-04 Thread Jean-Jacques Hiblot
From: Vignesh R Add support to handle USB3 PHYs present on AM57xx/DRA7xx SoCs. This is needed to move AM57xx to DM_USB. Signed-off-by: Vignesh R Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: - Add USB3 support to ti-pipe3-ph

[U-Boot] [PATCH v5 3/9] phy: Add a new driver for OMAP's USB2 PHYs

2018-05-04 Thread Jean-Jacques Hiblot
This drivers supports the USB2 PHY found on omap5 and dra7 SOCs. Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: - omap-usb2-phy: Implement power_on and power_off callbacks drivers/phy/Kconfig | 8 ++ drivers/phy/Make

[U-Boot] [PATCH v5 5/9] board; ti: am57xx: turn on USB clocks

2018-05-04 Thread Jean-Jacques Hiblot
From: Vignesh R Enable USB clocks in late init stage to support ports under DM_USB. Signed-off-by: Vignesh R Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: - am57xx boards: when DM_USB is used, turn on the required USB clocks

[U-Boot] [PATCH v5 0/9] Add support for DM_USB for TI's DRA7 EVMs and AM57 EVMs platforms

2018-05-04 Thread Jean-Jacques Hiblot
Supporting DM USB is required to support DM_ETH and USB network adapters with the same binary. This series adds support for DM_USB for the DRA7/AM57 families. As a bonus it adds support for USB3. limitation: - only Host mode is supported. The Device mode can be added later. Tested on: - dra7 evm

[U-Boot] [PATCH v5 8/9] configs: enable OMAP_USB2_PHY for all DRA7 platforms

2018-05-04 Thread Jean-Jacques Hiblot
Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: - Remove dependency on MISC - Renamed the commit (DM_USB is already enabled, the only missing option is for the USB2 phy driver) Changes in v3: None Changes in v2: None configs/dra7xx_evm_defconfig| 1 + configs/d

[U-Boot] [PATCH v5 7/9] dts: dra7x: Disable USB1 on all evms

2018-05-04 Thread Jean-Jacques Hiblot
On all the EVMs featuring a SOC of the DRA7 family, the USB1 port is used as a device for DFU. This port is managed by the platform code and must not be advertised to the DWC3 DM driver. This will be changed when/if support for the device mode is added to the dwc3-omap driver. Signed-off-by: Jean-

[U-Boot] [PATCH v5 4/9] board: ti: dra7xx-evm: turn on USB clocks in late init stage

2018-05-04 Thread Jean-Jacques Hiblot
For USB ports that use the Driver Model, turn on the clocks during the late init stage. Signed-off-by: Jean-Jacques Hiblot Reviewed-by: Tom Rini --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: None board/ti/dra7xx/evm.c | 19 +++ 1 file changed,

[U-Boot] [PATCH v5 1/9] syscon: dm: Add a new method to get a regmap from DTS

2018-05-04 Thread Jean-Jacques Hiblot
syscon_regmap_lookup_by_phandle() can be used to get the regmap of a syscon device from a reference in the DTS. It operates similarly to the linux version of the namesake function. Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: - Fix word missing in commit log Change

[U-Boot] [PATCH v5 9/9] configs: am57xx_evm: Enable DM_USB and dependencies

2018-05-04 Thread Jean-Jacques Hiblot
Enable DM_USB for AM57xx based boards. Signed-off-by: Vignesh R Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: - Remove dependency on MISC - Remove omap specific glue layer and use dwc3-of-simple glue layer Changes in v3: None Changes in v2: - Enable DM_USB in am57xx

[U-Boot] [PATCH v5 6/9] dts: dra7x: make ocp2scp@4a080000 compatible with simple-bus

2018-05-04 Thread Jean-Jacques Hiblot
This is required when DM_USB is used, to bind the USB phys. Signed-off-by: Jean-Jacques Hiblot --- Changes in v5: None Changes in v4: None Changes in v3: None Changes in v2: - split dts changes in 2 commits: one for binding the children of ocp2scp@4a08, and one to disable USB1 on all DRA

Re: [U-Boot] [PATCH v5 4/9] board: ti: dra7xx-evm: turn on USB clocks in late init stage

2018-05-04 Thread Marek Vasut
On 05/04/2018 04:34 PM, Jean-Jacques Hiblot wrote: > For USB ports that use the Driver Model, turn on the clocks during the > late init stage. > > Signed-off-by: Jean-Jacques Hiblot > Reviewed-by: Tom Rini > --- > > Changes in v5: None > Changes in v4: None > Changes in v3: None > Changes in v2

Re: [U-Boot] [PATCH v5 3/9] phy: Add a new driver for OMAP's USB2 PHYs

2018-05-04 Thread Marek Vasut
On 05/04/2018 04:34 PM, Jean-Jacques Hiblot wrote: > This drivers supports the USB2 PHY found on omap5 and dra7 SOCs. > > Signed-off-by: Jean-Jacques Hiblot > > --- > > Changes in v5: None > Changes in v4: None > Changes in v3: None > Changes in v2: > - omap-usb2-phy: Implement power_on and pow

Re: [U-Boot] [PATCH v5 4/9] board: ti: dra7xx-evm: turn on USB clocks in late init stage

2018-05-04 Thread Jean-Jacques Hiblot
On 04/05/2018 16:38, Marek Vasut wrote: On 05/04/2018 04:34 PM, Jean-Jacques Hiblot wrote: For USB ports that use the Driver Model, turn on the clocks during the late init stage. Signed-off-by: Jean-Jacques Hiblot Reviewed-by: Tom Rini --- Changes in v5: None Changes in v4: None Changes in

Re: [U-Boot] [PATCH v4] arm64: Add SMC and HVC commands

2018-05-04 Thread Michalis Pappas
On 05/02/2018 10:32 PM, Simon Glass wrote: You can see the patch status here: http://patchwork.ozlabs.org/patch/897869/ It is in Tom's queue. From the release page , the next release is 7th May, so me

Re: [U-Boot] [PATCH v5 4/9] board: ti: dra7xx-evm: turn on USB clocks in late init stage

2018-05-04 Thread Marek Vasut
On 05/04/2018 04:42 PM, Jean-Jacques Hiblot wrote: > > > On 04/05/2018 16:38, Marek Vasut wrote: >> On 05/04/2018 04:34 PM, Jean-Jacques Hiblot wrote: >>> For USB ports that use the Driver Model, turn on the clocks during the >>> late init stage. >>> >>> Signed-off-by: Jean-Jacques Hiblot >>> Re

Re: [U-Boot] [PATCH v2 3/3] net: designware: Add reset ctrl to driver

2018-05-04 Thread Nguyen, Dinh
> -Original Message- > From: Tan, Ley Foon > Sent: Friday, May 4, 2018 5:49 AM > To: u-boot@lists.denx.de > Cc: Marek Vasut ; Ley Foon Tan ; > See, Chin Liang ; Nguyen, Dinh > ; Tan, Ley Foon > Subject: [PATCH v2 3/3] net: designware: Add reset ctrl to driver > > Add code to reset all r

Re: [U-Boot] [PATCH v2 2/3] serial: ns16550: Add reset ctrl to driver

2018-05-04 Thread Nguyen, Dinh
> -Original Message- > From: Tan, Ley Foon > Sent: Friday, May 4, 2018 5:49 AM > To: u-boot@lists.denx.de > Cc: Marek Vasut ; Ley Foon Tan ; > See, Chin Liang ; Nguyen, Dinh > ; Tan, Ley Foon > Subject: [PATCH v2 2/3] serial: ns16550: Add reset ctrl to driver > > Add code to reset all r

[U-Boot] driver: net: fsl-mc: Initialization of MC memory

2018-05-04 Thread Ralf Göbel
Hi, I have a custom board using the LS2088A device. We are seeing problems regarding the DPAA2 network since the beginning (2016). The problem occurs usually after the first link is established after booting Linux. Example: [7.755443] fsl_dpaa2_eth dpni.0 ni0: Link Event: state up [7.791

Re: [U-Boot] [PATCH v5 4/9] board: ti: dra7xx-evm: turn on USB clocks in late init stage

2018-05-04 Thread Jean-Jacques Hiblot
On 04/05/2018 17:43, Marek Vasut wrote: On 05/04/2018 04:42 PM, Jean-Jacques Hiblot wrote: On 04/05/2018 16:38, Marek Vasut wrote: On 05/04/2018 04:34 PM, Jean-Jacques Hiblot wrote: For USB ports that use the Driver Model, turn on the clocks during the late init stage. Signed-off-by: Jean-

Re: [U-Boot] [PATCH 2/2] net: add Kconfig for MVGBE

2018-05-04 Thread Joe Hershberger
On Thu, May 3, 2018 at 6:03 PM, Chris Packham wrote: > On Fri, May 4, 2018 at 9:36 AM Joe Hershberger > wrote: > >> On Thu, May 3, 2018 at 6:00 AM, Chris Packham > wrote: >> > Add Kconfig for MVGBE and update boards to select this. >> > >> > Signed-off-by: Chris Packham >> > --- >> > >> > arch

Re: [U-Boot] [PATCH v5 4/9] board: ti: dra7xx-evm: turn on USB clocks in late init stage

2018-05-04 Thread Marek Vasut
On 05/04/2018 07:58 PM, Jean-Jacques Hiblot wrote: > > > On 04/05/2018 17:43, Marek Vasut wrote: >> On 05/04/2018 04:42 PM, Jean-Jacques Hiblot wrote: >>> >>> On 04/05/2018 16:38, Marek Vasut wrote: On 05/04/2018 04:34 PM, Jean-Jacques Hiblot wrote: > For USB ports that use the Driver Mo

Re: [U-Boot] Logo for U-Boot

2018-05-04 Thread Heinrich Schuchardt
Marek's eyes hurt from my first suggestions's colors. So here is something more decent: https://www.xypron.de/projects/u-boot/images/u-boot-3.svg Source: https://gist.github.com/xypron/a923ad8cca83e648fc91716f2f29beed License: GPL2+ (or CC-BY-SA if preferred by the U-Boot project) Regards Heinr

Re: [U-Boot] [PATCH v2] reset: Add generic GPIO reset driver

2018-05-04 Thread Simon Glass
Hi Mario, On 4 May 2018 at 01:01, Mario Six wrote: > Hi Neil, > > On Fri, Apr 27, 2018 at 3:01 PM, Neil Armstrong wrote: >> Hi, >> >> On 27/04/2018 14:53, Mario Six wrote: >>> Some reset lines are implemented by toggling the line via a GPIO. >>> >>> Add a driver to properly drive such reset lin

Re: [U-Boot] [PATCH v2 1/4] core: Add functions to set properties in live-tree

2018-05-04 Thread Simon Glass
Hi Mario, On 4 May 2018 at 01:14, Mario Six wrote: > Hi Simon, > > On Tue, May 1, 2018 at 1:13 AM, Simon Glass wrote: >> Hi Mario, >> >> On 27 April 2018 at 06:51, Mario Six wrote: >>> >>> Implement a set of functions to manipulate properties in a live device >>> tree: >>> >>> * ofnode_set_prop

Re: [U-Boot] Appended DTB Android boot image support

2018-05-04 Thread Simon Glass
Hi, On 1 May 2018 at 04:52, Ramon Fried wrote: > On Tue, May 1, 2018 at 12:20 PM, Alex Deymo wrote: >> Hi Ramon, >> >> What "header_version" is the boot image you have? The >> include/android_image.h in U-Boot is a little bit old so it only defines the >> v0 format. The "unused" field in v0 was

Re: [U-Boot] [PATCH 3/5] api: Flush cache when closing api

2018-05-04 Thread Simon Glass
Hi, On 4 May 2018 at 01:12, Emmanuel Vadot wrote: > On Mon, 30 Apr 2018 10:37:50 +0200 > "Dr. Philipp Tomsich" wrote: > >> >> > On 30 Apr 2018, at 10:34, Emmanuel Vadot wrote: >> > >> > Signed-off-by: Emmanuel Vadot >> > --- >> > api/api.c | 11 +++ >> > 1 file changed, 11 insertions(+)

Re: [U-Boot] [PATCH v2 01/10] ram: Add driver for MPC83xx

2018-05-04 Thread Simon Glass
+Tom for question below Hi Mario, On 4 May 2018 at 02:04, Mario Six wrote: > Hi Simon, > > On Thu, May 3, 2018 at 9:01 PM, Simon Glass wrote: >> Hi Mario, >> >> On 27 April 2018 at 06:52, Mario Six wrote: >>> Add a RAM driver for the MPC83xx architecture. >>> >>> Signed-off-by: Mario Six >>>

Re: [U-Boot] [PATCH v2 2/3] mpc83xx/pci: Register IMMR region

2018-05-04 Thread Simon Glass
Hi Mario, On 4 May 2018 at 02:15, Mario Six wrote: > Hi Simon, > > On Thu, May 3, 2018 at 9:02 PM, Simon Glass wrote: >> Hi Mario, >> >> On 27 April 2018 at 06:53, Mario Six wrote: >>> Register the IMMR region as a PCI region when PCI is used on MPC83xx. >>> >>> Signed-off-by: Mario Six >>> --

Re: [U-Boot] [PATCH v4 03/11] syscon: dm: Add a new method to get a regmap from DTS

2018-05-04 Thread Simon Glass
On 12 April 2018 at 02:41, Jean-Jacques Hiblot wrote: > syscon_regmap_lookup_by_phandle() can be used to get the regmap of a syscon > device from a reference in the DTS. It operates similarly to the linux > version of the namesake function. > > Signed-off-by: Jean-Jacques Hiblot > > --- > > Chang

Re: [U-Boot] [PATCH v2 1/2] misc: uclass: Add enable/disable function

2018-05-04 Thread Simon Glass
Hi Mario, On 4 May 2018 at 03:01, Mario Six wrote: > Hi Simon, > > On Thu, May 3, 2018 at 9:02 PM, Simon Glass wrote: >> Hi Mario, >> >> On 27 April 2018 at 06:52, Mario Six wrote: >>> Add generic enable/disable function to the misc uclass. >>> >>> Signed-off-by: Mario Six >>> --- >>> >>> v1 -

Re: [U-Boot] [PATCH v4] arm64: Add SMC and HVC commands

2018-05-04 Thread Simon Glass
Hi, On 4 May 2018 at 09:08, Michalis Pappas wrote: > On 05/02/2018 10:32 PM, Simon Glass wrote: > > > You can see the patch status here: http://patchwork.ozlabs.org/patch/897869/ > > It is in Tom's queue. From the release page, the next release is 7th May, so > merging should happen after that. >

Re: [U-Boot] [PATCH v5 1/9] syscon: dm: Add a new method to get a regmap from DTS

2018-05-04 Thread Simon Glass
On 4 May 2018 at 08:34, Jean-Jacques Hiblot wrote: > syscon_regmap_lookup_by_phandle() can be used to get the regmap of a syscon > device from a reference in the DTS. It operates similarly to the linux > version of the namesake function. > > Signed-off-by: Jean-Jacques Hiblot > > --- > > Changes

Re: [U-Boot] [PATCH v2 01/10] ram: Add driver for MPC83xx

2018-05-04 Thread Tom Rini
On Fri, May 04, 2018 at 09:37:54PM +, Simon Glass wrote: > +Tom for question below > > Hi Mario, > > On 4 May 2018 at 02:04, Mario Six wrote: > > Hi Simon, > > > > On Thu, May 3, 2018 at 9:01 PM, Simon Glass wrote: > >> Hi Mario, > >> > >> On 27 April 2018 at 06:52, Mario Six wrote: > >>>

Re: [U-Boot] [PATCH 3/5] api: Flush cache when closing api

2018-05-04 Thread Tom Rini
On Fri, May 04, 2018 at 09:12:49AM +0200, Emmanuel Vadot wrote: > On Mon, 30 Apr 2018 10:37:50 +0200 > "Dr. Philipp Tomsich" wrote: > > > > > > On 30 Apr 2018, at 10:34, Emmanuel Vadot wrote: > > > > > > Signed-off-by: Emmanuel Vadot > > > --- > > > api/api.c | 11 +++ > > > 1 file cha