Re: [U-Boot] [PATCH v5 04/11] usb: host: xhci-rockchip: use fixed regulator to control vbus

2017-06-17 Thread Marek Vasut
On 06/18/2017 12:10 AM, Simon Glass wrote: > Hi Marek, > > On 17 June 2017 at 13:33, Marek Vasut wrote: >> On 06/17/2017 07:28 PM, Simon Glass wrote: >>> Hi Marek, >>> >>> On 17 June 2017 at 00:22, Marek Vasut wrote: On 06/17/2017 05:41 AM, Simon Glass wrote: > Hi Marek, > > On

Re: [U-Boot] [PATCH v5 04/11] usb: host: xhci-rockchip: use fixed regulator to control vbus

2017-06-17 Thread Simon Glass
Hi Marek, On 17 June 2017 at 13:33, Marek Vasut wrote: > On 06/17/2017 07:28 PM, Simon Glass wrote: >> Hi Marek, >> >> On 17 June 2017 at 00:22, Marek Vasut wrote: >>> On 06/17/2017 05:41 AM, Simon Glass wrote: Hi Marek, On 15 June 2017 at 10:53, Marek Vasut wrote: > On 06/15

Re: [U-Boot] [PATCH v5 04/11] usb: host: xhci-rockchip: use fixed regulator to control vbus

2017-06-17 Thread Marek Vasut
On 06/17/2017 07:28 PM, Simon Glass wrote: > Hi Marek, > > On 17 June 2017 at 00:22, Marek Vasut wrote: >> On 06/17/2017 05:41 AM, Simon Glass wrote: >>> Hi Marek, >>> >>> On 15 June 2017 at 10:53, Marek Vasut wrote: On 06/15/2017 05:51 AM, rock-chips(daniel.meng) wrote: > > > O

Re: [U-Boot] [PATCH v5 04/11] usb: host: xhci-rockchip: use fixed regulator to control vbus

2017-06-17 Thread Simon Glass
Hi Marek, On 17 June 2017 at 00:22, Marek Vasut wrote: > On 06/17/2017 05:41 AM, Simon Glass wrote: >> Hi Marek, >> >> On 15 June 2017 at 10:53, Marek Vasut wrote: >>> On 06/15/2017 05:51 AM, rock-chips(daniel.meng) wrote: On 2017/6/13 17:11, Marek Vasut wrote: > On 06/12/2017

Re: [U-Boot] [PATCH 19/20] x86: minnowmax: Enable USB xHCI support

2017-06-17 Thread Bin Meng
Hi Simon, On Sat, Jun 17, 2017 at 11:44 AM, Simon Glass wrote: > On 16 June 2017 at 07:31, Bin Meng wrote: >> BayTrail SoC supports both EHCI and xHCI controllers. However only >> one host controller (either EHCI or xHCI) can be used. To enable >> HSIC and SS ports, xHCI must be used. This turns

Re: [U-Boot] [PATCH 17/20] x86: minnowmax: Configure GPIO pins to turn on USB ports VBUS

2017-06-17 Thread Bin Meng
Hi Simon, On Sat, Jun 17, 2017 at 11:44 AM, Simon Glass wrote: > On 16 June 2017 at 07:31, Bin Meng wrote: >> GPIO bank E pin 8 & 9 are used to control the on-board two USB ports >> VBUS on/off. Let's configure them in the misc_init_r(). >> >> Signed-off-by: Bin Meng >> --- >> >> board/intel/m

[U-Boot] [PATCH 3/3] cmd: scsi: Fix null pointer dereference in 'scsi reset'

2017-06-17 Thread Bin Meng
During 'scsi reset', scsi_bus_reset() is called with udevice pointed to NULL, which causes exception. As a temporary fix, disable the call for DM SCSI for now. Signed-off-by: Bin Meng --- cmd/scsi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/scsi.c b/cmd/scsi.c index 5709718..8e3

[U-Boot] [PATCH 2/3] dm: ahci: Avoid scsi_scan_dev() in ahci_probe_scsi()

2017-06-17 Thread Bin Meng
Running 'scsi scan' command causes scsi_scan_dev() to be called, from which device_probe() is called and consequently AHCI driver probe routine will be called as SCSI driver's parent, and finally ahci_probe_scsi() calls scsi_scan_dev() again. Remove the call to scsi_scan_dev() in ahci_probe_scsi()

[U-Boot] [PATCH 1/3] dm: ahci: Add a generic PCI-based AHCI driver

2017-06-17 Thread Bin Meng
This adds support for PCI-based AHCI controller and enables it on x86 by default. Signed-off-by: Bin Meng --- drivers/ata/Kconfig| 7 +++ drivers/ata/Makefile | 1 + drivers/ata/ahci-pci.c | 42 ++ 3 files changed, 50 insertions(+) create mod

Re: [U-Boot] [PATCH 14/20] configs: Remove CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS in all boards

2017-06-17 Thread Simon Glass
On 16 June 2017 at 07:31, Bin Meng wrote: > Now that EHCD does not use CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS, > remove it in all boards' config files. > > Signed-off-by: Bin Meng > --- > > arch/arm/include/asm/ehci-omap.h| 4 > include/configs/MPC8572DS.h | 1 - > include/configs/c

Re: [U-Boot] [PATCH 12/20] configs: Remove CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS in all boards

2017-06-17 Thread Simon Glass
On 16 June 2017 at 07:31, Bin Meng wrote: > Now that xHCD does not use CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS, > remove it in all boards' config files. > > Signed-off-by: Bin Meng > --- > > include/configs/am43xx_evm.h | 1 - > include/configs/am57xx_evm.h | 1 - > include/configs/cl

[U-Boot] [PATCH] ARM: rmobile: salvator-x: Enable CMD_MMC

2017-06-17 Thread Marek Vasut
The CONFIG_CMD_MMC is not automatically enabled, explicitly add it into the default configuration files. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- configs/r8a7795_salvator-x_defconfig | 1 + configs/r8a7796_salvator-x_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/co

Re: [U-Boot] [PATCH v5 04/11] usb: host: xhci-rockchip: use fixed regulator to control vbus

2017-06-17 Thread Marek Vasut
On 06/17/2017 05:41 AM, Simon Glass wrote: > Hi Marek, > > On 15 June 2017 at 10:53, Marek Vasut wrote: >> On 06/15/2017 05:51 AM, rock-chips(daniel.meng) wrote: >>> >>> >>> On 2017/6/13 17:11, Marek Vasut wrote: On 06/12/2017 11:19 AM, Meng Dongyang wrote: > Use fixed regulator to contr

[U-Boot] [PATCH] ARM: rmobile: Increase console buffer sizes

2017-06-17 Thread Marek Vasut
Allow pasting extra long lines into the U-Boot console on RCar Gen3. This is OK since we have plenty of resources and it's convenient. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- include/configs/rcar-gen3-common.h | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff -

Re: [U-Boot] [PATCH 5/6] board: ti: am43xx: Add TEE loading and firewall setup

2017-06-17 Thread Lokesh Vutla
On Saturday 17 June 2017 12:57 AM, Andrew F. Davis wrote: > Add support for loading a TEE and setting up firewalled regions to > AM43xx HS boards. > > Signed-off-by: Andrew F. Davis > --- > board/ti/am43xx/board.c | 7 +++ > configs/am43xx_hs_evm_defconfig | 3 +++ > 2 files change

Re: [U-Boot] [PATCH 6/6] board: ti: am43xx: Add FDT fixup for HS devices

2017-06-17 Thread Lokesh Vutla
On Saturday 17 June 2017 12:57 AM, Andrew F. Davis wrote: > Disable RNG and add TEE to FDT used on HS devices. > > Signed-off-by: Andrew F. Davis Reviewed-by: Lokesh Vutla Thanks and regards, Lokesh ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH 4/6] arm: mach-omap2: am33xx: Add FDT fixup suport for AM33xx/AM43xx boards

2017-06-17 Thread Lokesh Vutla
On Saturday 17 June 2017 12:56 AM, Andrew F. Davis wrote: > Similar to what is done with OMAP5 class boards we need to > perform fixups common to this SoC class, add support for this here > and add HS fixups. > > Signed-off-by: Andrew F. Davis Reviewed-by: Lokesh Vutla Thanks and regards, Lo

Re: [U-Boot] [PATCH 3/6] arm: mach-omap2: fdt-common: Add OP-TEE node when firmware node is defined

2017-06-17 Thread Lokesh Vutla
On Saturday 17 June 2017 12:56 AM, Andrew F. Davis wrote: > If a firmware node is already present in the FDT we will fail to create > one and so fail to add our OP-TEE node, make this fixup first check for > a firmware node and then only try to add one if it is not found. > > Signed-off-by: Andr

Re: [U-Boot] [PATCH 2/6] arm: mach-omap2: Factor out common FDT fixup suport

2017-06-17 Thread Lokesh Vutla
On Saturday 17 June 2017 12:56 AM, Andrew F. Davis wrote: > Some of the fixups currently done for OMAP5 class boards are common to > other OMAP family devices, move these to fdt-common.c. > > Signed-off-by: Andrew F. Davis Reviewed-by: Lokesh Vutla Thanks and regards, Lokesh ___

Re: [U-Boot] [PATCH 1/6] arm: mach-omap2: Move omap5/sec-fxns.c into sec-common.c

2017-06-17 Thread Lokesh Vutla
On Saturday 17 June 2017 12:56 AM, Andrew F. Davis wrote: > TEE loading and firewall setup are common to all omap2 devices, move > these function out of omap5 and into mach-omap2. This allows us > to use these functions from other omap class devices. > > Signed-off-by: Andrew F. Davis Reviewed