[U-Boot] Problem of git clone with http

2016-03-31 Thread Jaehoon Chung
Hi all, I have fetched the u-boot/master with http, not git. url = http://git.denx.de/u-boot.git When i saw the gitweb, it seems that v2016.03 was released.. But i can't pull and fetch anything with http.. $ git pull Already up-to-date. $ git show origin/master commit 077678eb0c226e52a1f90edabd

[U-Boot] [PATCH v4 20/21] board: Add Qualcomm Dragonboard 410C support

2016-03-31 Thread Mateusz Kulikowski
This commit add support for 96Boards Dragonboard410C. It is board based on APQ8016 Qualcomm SoC, complying with 96boards specification. Features (present out of the box): - 4x Cortex A53 (ARMv8) - 2x USB Host port - 1x USB Device port - 4x LEDs - 1x HDMI connector - 1x uSD connector - 3x buttons (P

[U-Boot] [PATCH v4 19/21] arm: Add support for Qualcomm Snapdragon family

2016-03-31 Thread Mateusz Kulikowski
First supported chip is APQ8016 (that is compatible with MSM8916). Drivers in SoC code: - Reset controller (PSHOLD) - Clock controller (very simple clock configuration for MMC and UART) Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Tested-by: Simon Glass --- Changes in v4: - Add s

[U-Boot] [PATCH v4 21/21] Add myself as Snapdragon and SPMI maintainer

2016-03-31 Thread Mateusz Kulikowski
- Update MAINTAINERS - Update git-mailrc Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: - New patch Changes in v1: None MAINTAINERS| 11 +++ doc/git-mailrc | 3 +++ 2 files changed, 14 insertions(+) diff --

[U-Boot] [PATCH v4 17/21] pmic: Add support for Qualcomm PM8916 PMIC

2016-03-31 Thread Mateusz Kulikowski
This PMIC is connected on SPMI bus so needs SPMI support enabled. Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Tested-by: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: - Add reviewed-by - Reordered Kconfig & Makefile (to keep alphabetical ordering) - Adde

[U-Boot] [PATCH v4 15/21] spmi: Add sandbox test driver

2016-03-31 Thread Mateusz Kulikowski
This patch adds emulated spmi bus controller with part of pm8916 pmic on it to sandbox and tests validating SPMI uclass. Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass --- Changes in v4: None Changes in v3: - Updated test.dts to include SPMI like sandbox.dts does Changes in v2: - R

[U-Boot] [PATCH v4 18/21] gpio: Add support for Qualcomm PM8916 gpios

2016-03-31 Thread Mateusz Kulikowski
This driver supports GPIOs present on PM8916 PMIC. There are 2 device drivers inside: - GPIO driver (4 "generic" GPIOs) - Keypad driver that presents itself as GPIO with 2 inputs (power and reset) Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Tested-by: Simon Glass --- Changes in

[U-Boot] [PATCH v4 14/21] drivers: Add SPMI bus uclass

2016-03-31 Thread Mateusz Kulikowski
Qualcom processors use proprietary bus to talk with PMIC devices - SPMI (System Power Management Interface). On wiring level it is similar to I2C, but on protocol level, it's multi-master and has simple autodetection capabilities. This commit adds simple uclass that provides bus read/write interfac

[U-Boot] [PATCH v4 16/21] drivers: spmi: Add support for Qualcomm SPMI bus driver

2016-03-31 Thread Mateusz Kulikowski
Support SPMI arbiter on Qualcomm Snapdragon devices. Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Tested-by: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: - Rename DM_SPMI -> SPMI - Rename p -> priv (in write/read) - Fix header ordering (again) - Add revi

[U-Boot] [PATCH v4 10/21] usb: Rename ehci-fsl.h to ehci-ci.h

2016-03-31 Thread Mateusz Kulikowski
Most of ehci-fsl header describe USB controller designed by Chipidea and used by various SoC vendors. This patch renames it to a generic header: ehci-ci.h Contents of file are not changed (so it contains several references to freescale SoCs). Signed-off-by: Mateusz Kulikowski Acked-by: Marek Vas

[U-Boot] [PATCH v4 13/21] ehci: Add support for Qualcomm EHCI

2016-03-31 Thread Mateusz Kulikowski
This driver is able to reconfigure OTG controller into HOST mode. Board can add board-specific initialization as board_prepare_usb(). It requires USB_ULPI_VIEWPORT enabled in board configuration. Signed-off-by: Mateusz Kulikowski Acked-by: Marek Vasut Tested-by: Simon Glass --- Changes in v4:

[U-Boot] [PATCH v4 11/21] usb: ehci-ci: Add missing registers.

2016-03-31 Thread Mateusz Kulikowski
Some registers of usb_ehci were marked as reserved. This may be true for some variants of Chipidea USB core, but they have meaning on other devices. The following registers were added: sbusstatus/sbusmode: AHB-related registers genconfig*: Auxiluary IP core configuration registers. Signed-off-by:

[U-Boot] [PATCH v4 09/21] eth: asix88179: Print packet length properly

2016-03-31 Thread Mateusz Kulikowski
Debug printf used '%u' to print size_t variable. This caused warnings on 64-bit machines. Signed-off-by: Mateusz Kulikowski Acked-by: Marek Vasut Acked-by: Joe Hershberger --- Changes in v4: - Add Ack from Marek and Joe Changes in v3: - New patch Changes in v2: None Changes in v1: None dri

[U-Boot] [PATCH v4 12/21] ehci-ci.h: drop generic USBCMD fields

2016-03-31 Thread Mateusz Kulikowski
Use definitions from ehci.h instead. Signed-off-by: Mateusz Kulikowski Acked-by: Marek Vasut Tested-by: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: - Add Acked-by Changes in v1: None drivers/usb/host/ehci-mpc512x.c | 4 ++-- include/usb/ehci-ci.h | 4 --

[U-Boot] [PATCH v4 07/21] usb: ulpi: Fix viewport_addr type

2016-03-31 Thread Mateusz Kulikowski
viewport_addr is address of memory mapped ULPI viewport. It is used only as argument to readl/writel later causing compile warnings on 64-bit devices. This fix changes its type to match pointer size. Signed-off-by: Mateusz Kulikowski Acked-by: Marek Vasut --- Changes in v4: - Add Ack from Mare

[U-Boot] [PATCH v4 08/21] usb: ulpi: Fix compile warning in read/write on 64-bit machines.

2016-03-31 Thread Mateusz Kulikowski
ulpi_read and ulpi_write are used to read/write registers via ULPI bus. Code generates compilation warnings on 64-bit machines where pointer is cast to u32. This patch drops all but last 8 bits of register address. It is possible, because addresses on ULPI bus are 6- or 8-bit. It is not possible

[U-Boot] [PATCH v4 06/21] Migrate CONFIG_ULPI* to Kconfig

2016-03-31 Thread Mateusz Kulikowski
Move CONFIG_USB_ULPI* from headers to defconfigs for boards that use it. Also - add CONFIG_USB where necesarry - all boards use it, but some are not defining it explicitly. Affected boards: colibri_t20, harmony, mcx, mt_ventoux, twister, zynq_(picozed, zc702, zc706, zed, zybo) Signed-off-by: Mate

[U-Boot] [PATCH v4 05/21] usb: ulpi: Add Kconfig options for ULPI

2016-03-31 Thread Mateusz Kulikowski
The following options can be now enabled via defconfig: - CONFIG_USB_ULPI - CONFIG_USB_ULPI_VIEWPORT - CONFIG_USB_ULPI_VIEWPORT_OMAP Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Acked-by: Marek Vasut --- Changes in v4: - Add Ack from Marek Changes in v3: None Changes in v2: - Ad

[U-Boot] [PATCH v4 03/21] mmc: Add support for Qualcomm SDHCI controller

2016-03-31 Thread Mateusz Kulikowski
Add support for SD/eMMC controller present on some Qualcomm Snapdragon devices. This controller implements SDHCI 2.0 interface but requires vendor-specific initialization. Driver works in PIO mode as ADMA is not supported by U-Boot (yet). Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass

[U-Boot] [PATCH v4 02/21] gpio: Add support for Qualcomm gpio controller

2016-03-31 Thread Mateusz Kulikowski
Add support for gpio controllers on Qualcomm Snapdragon devices. This devices are usually called Top Level Mode Multiplexing in Qualcomm documentation. Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Tested-by: Simon Glass --- Changes in v4: None Changes in v3: None Changes in v2: -

[U-Boot] [PATCH v4 04/21] ehci-hcd: Add init_after_reset

2016-03-31 Thread Mateusz Kulikowski
Some host controllers need addidional initialization after ehci_reset() In non-dm implementation it is possible to use CONFIG_EHCI_HCD_INIT_AFTER_RESET. This patch adds similar option to ehci drivers using dm. Signed-off-by: Mateusz Kulikowski Acked-by: Marek Vasut Reviewed-by: Tom Rini Reviewe

[U-Boot] [PATCH v4 01/21] serial: Add support for Qualcomm serial port

2016-03-31 Thread Mateusz Kulikowski
This driver works in "new" Data Mover UART mode, so will be compatible with modern Qualcomm chips only. Signed-off-by: Mateusz Kulikowski Reviewed-by: Simon Glass Tested-by: Simon Glass --- Changes in v4: None Changes in v3: - Add msm_serial_fetch that tries to fetch characters from FIFO - Dec

[U-Boot] [PATCH v4 00/21] Add support for 96boards Dragonboard410C board

2016-03-31 Thread Mateusz Kulikowski
Hi All, This is next last version of Dragonboard410c series ;) It should apply cleanly to latest master (080c499d). I welcome all improvement ideas but please bear in mind I will probably implement them after this series is merged. Very little updates this time: - Added ACKs - Added MMU configur

[U-Boot] [PATCH 5/7] ARM: rmobile: Add support R8A7795

2016-03-31 Thread Nobuhiro Iwamatsu
Renesas R8A7795 is CPU with Cortex-a57. This supports the basic register definition and GPIO and framework of PFC. Signed-off-by: Hiroyuki Yokoyama Signed-off-by: Nobuhiro Iwamatsu --- arch/arm/mach-rmobile/Makefile|1 + arch/arm/mach-rmobile/include/mach/gpio.h

[U-Boot] [PATCH] arm: socfpga: Nuke useless include

2016-03-31 Thread Marek Vasut
The dwmmc.h include was forgotten during the migration of dwmmc probing to DM. Since the shiny DM is in place now, remove this relic of the past. Signed-off-by: Marek Vasut Cc: Dinh Nguyen Cc: Chin Liang See --- arch/arm/mach-socfpga/misc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ar

Re: [U-Boot] [PATCH] dm: gpio: handle GPIO_ACTIVE_LOW flag in DT

2016-03-31 Thread Eric Nelson
Hi Peng, On 03/28/2016 09:57 PM, Peng Fan wrote: > Hi Eric, > > On Fri, Mar 25, 2016 at 01:12:11PM -0700, Eric Nelson wrote: >> Device tree parsing of GPIO nodes is currently ignoring flags. >> >> Add support for GPIO_ACTIVE_LOW by checking for the presence >> of the flag and setting the desc->fl

Re: [U-Boot] [PATCH V3 1/3] drivers: block: add block device cache

2016-03-31 Thread Eric Nelson
Hi Stephen, On 03/30/2016 02:57 PM, Stephen Warren wrote: > On 03/30/2016 11:34 AM, Eric Nelson wrote: >> Thanks again for the detailed review, Stephen. >> >> On 03/30/2016 07:36 AM, Stephen Warren wrote: >>> On 03/28/2016 11:05 AM, Eric Nelson wrote: Add a block device cache to speed up repe

[U-Boot] [PATCH v3 0/2] net: phy: mv88e61xx: Revise as a PHY driver

2016-03-31 Thread Kevin Smith
The previous version of this driver implemented a shell command to manually comfigure the switch. It did not integrate with the PHY infrastructure to allow a MAC to use it as its PHY. This is a complete rewrite to allow this switch to function as a driver. Since none of the original driver remai

[U-Boot] [PATCH v3 2/2] net: phy: Add PHY driver for mv88e61xx switches

2016-03-31 Thread Kevin Smith
The previous mv88e61xx driver was a driver for configuring the switch, but did not integrate with the PHY/networking system, so it could not be used as a PHY by U-boot. This is a complete rework to support this device as a PHY. Signed-off-by: Kevin Smith Acked-by: Prafulla Wadaskar Cc: Albert A

[U-Boot] [PATCH v3 1/2] net: Remove unused mv88e61xx switch driver

2016-03-31 Thread Kevin Smith
No boards are using this driver. Remove in preparation for a new driver with integrated PHY support. Signed-off-by: Kevin Smith Acked-by: Joe Hershberger Cc: Prafulla Wadaskar Cc: Albert ARIBAUD Cc: Stefan Roese Cc: Marek Vasut --- drivers/net/phy/mv88e61xx.c | 537

Re: [U-Boot] [PATCH 0/6] Add Pine64 support

2016-03-31 Thread Hans de Goede
Hi, On 31-03-16 21:22, Hans de Goede wrote: Hi, On 31-03-16 21:15, Alexander Graf wrote: Am 31.03.2016 um 20:53 schrieb Hans de Goede : Hi, On 29-03-16 18:08, Alexander Graf wrote: On 29.03.16 17:45, Hans de Goede wrote: Hi, On 03/29/2016 05:29 PM, Alexander Graf wrote: The Pine64 i

Re: [U-Boot] [PATCH 0/6] Add Pine64 support

2016-03-31 Thread Hans de Goede
Hi, On 31-03-16 21:15, Alexander Graf wrote: Am 31.03.2016 um 20:53 schrieb Hans de Goede : Hi, On 29-03-16 18:08, Alexander Graf wrote: On 29.03.16 17:45, Hans de Goede wrote: Hi, On 03/29/2016 05:29 PM, Alexander Graf wrote: The Pine64 is a kickstarter backed SBC that runs on the Al

Re: [U-Boot] [PATCH 0/6] Add Pine64 support

2016-03-31 Thread Alexander Graf
> Am 31.03.2016 um 20:53 schrieb Hans de Goede : > > Hi, > >> On 29-03-16 18:08, Alexander Graf wrote: >> >> >>> On 29.03.16 17:45, Hans de Goede wrote: >>> Hi, >>> On 03/29/2016 05:29 PM, Alexander Graf wrote: The Pine64 is a kickstarter backed SBC that runs on the Allwinner A64 >

Re: [U-Boot] [PATCH 0/6] Add Pine64 support

2016-03-31 Thread Hans de Goede
Hi, On 29-03-16 18:08, Alexander Graf wrote: On 29.03.16 17:45, Hans de Goede wrote: Hi, On 03/29/2016 05:29 PM, Alexander Graf wrote: The Pine64 is a kickstarter backed SBC that runs on the Allwinner A64 SoC. This SoC can run AArch64 code, so this patch set lifts all arm version indepenent

[U-Boot] [PATCH 6/7] ARM: rmobile: Add support salvator-x board

2016-03-31 Thread Nobuhiro Iwamatsu
Salvator-x is an entry level development board based on R-Car H3 SoC (R8A7795). This commit supports SCIF only. Signed-off-by: Hiroyuki Yokoyama Signed-off-by: Nobuhiro Iwamatsu --- arch/arm/mach-rmobile/Kconfig.64 | 16 + board/renesas/salvator-x/Kconfig | 15 + board/renes

[U-Boot] [PATCH 3/7] ARM: rmobile: Move rcar-gen2-common to rcar-common

2016-03-31 Thread Nobuhiro Iwamatsu
To common use of rcar-gen2-common directory in the R-Car SoCs, and change from rcar-gen2-common to rcar-common. Signed-off-by: Nobuhiro Iwamatsu --- board/renesas/alt/Makefile | 2 +- board/renesas/gose/Makefile | 2 +- board/renesas/koelsch/Makefile | 2 +-

[U-Boot] [PATCH 4/7] ARM: rmobile: Add support R-Car Generation 3

2016-03-31 Thread Nobuhiro Iwamatsu
This adds supporting R-Car Generation 3 (Gen3) as Renesas ARM64 SoC. Signed-off-by: Hiroyuki Yokoyama Signed-off-by: Nobuhiro Iwamatsu --- arch/arm/mach-rmobile/Kconfig | 5 ++ arch/arm/mach-rmobile/Kconfig.64 | 12 +++ .../arm/mach-rmobile/include/mach

[U-Boot] [PATCH 7/7] ARM: rmobile: rcar-common: Fix warning of type difference

2016-03-31 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu --- board/renesas/rcar-common/common.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/board/renesas/rcar-common/common.c b/board/renesas/rcar-common/common.c index d6144c2..33c1726 100644 --- a/board/renesas/rcar-common/common.c +++ b/b

[U-Boot] [PATCH 1/7] serial: sh: Add support R8A7795

2016-03-31 Thread Nobuhiro Iwamatsu
From: Hiroyuki Yokoyama This can be used in the same way as other R-CAR serial setting. Signed-off-by: Hiroyuki Yokoyama Signed-off-by: Nobuhiro Iwamatsu --- drivers/serial/serial_sh.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/serial/serial_sh.h b/drivers/s

[U-Boot] [PATCH 2/7] ARM: rmobile: Create R-Car 32bit (Gen1 and Gen2) for Kconfig

2016-03-31 Thread Nobuhiro Iwamatsu
This creates Kconfig of R-Car 32bit for Kconfig of R-Car 64bit (Gen3). Signed-off-by: Nobuhiro Iwamatsu --- arch/arm/Kconfig | 1 - arch/arm/mach-rmobile/Kconfig| 87 +++--- arch/arm/mach-rmobile/Kconfig.32 | 90 +++

[U-Boot] [PATCH v3 0/1] Use LS2080A as the only SoC name

2016-03-31 Thread York Sun
Not long ago, a change was made in U-Boot to switch the primary SoC from LS2085A to LS2080A. SoC name and board names were changed. It turns out the same board support both SoCs with a socket. It is possible to swtich SoC. In this case, using one unified image is more appropriate. If future SoC can

[U-Boot] [PATCH] imx: mx6var_som: Add support for Variscite mx6 boards

2016-03-31 Thread Eran Matityahu
Add support for Variscite VAR-SOM-MX6 / DART-MX6 / VAR-SOM-SOLO/DUAL boards with features: PMIC, NAND flash, SD/MMC, USB, Ethernet, I2C, LVDS, HDMI. Signed-off-by: Eran Matityahu --- arch/arm/cpu/armv7/mx6/Kconfig|7 + board/variscite/mx6var_som/Kconfig| 12 +

[U-Boot] [PATCH v3] armv8: LS2080A: Consolidate LS2080A and LS2085A

2016-03-31 Thread York Sun
LS2080A is the primary SoC, and LS2085A is a personality with AIOP and DPAA DDR. The RDB and QDS boards support both personality. By detecting the SVR at runtime, a single image per board can support both SoCs. It gives users flexibility to swtich SoC without the need to reprogram the board. Signe

[U-Boot] [PATCHv2] sf: params: Add support for n25q016a

2016-03-31 Thread Moritz Fischer
This commits adds support for the N25Q016A, a 16Mbit serial NOR flash from Micron. Signed-off-by: Moritz Fischer --- Changes from v1: * RD_FULL * WR_QPP as suggested by Marek drivers/mtd/spi/sf_params.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/spi/sf_params.c b/drivers/m

Re: [U-Boot] [RFC PATCH 1/2] net: phy: ti: Allow the driver to be more configurable

2016-03-31 Thread Dan Murphy
Tom On 03/31/2016 10:42 AM, Tom Rini wrote: > On Thu, Mar 31, 2016 at 10:27:31AM -0500, Dan Murphy wrote: >> Tom >> >> On 03/31/2016 09:11 AM, Tom Rini wrote: >>> On Thu, Mar 31, 2016 at 07:42:39AM -0500, Dan Murphy wrote: >>> Not all devices use the same internal delay or fifo depth. Ad

Re: [U-Boot] [PATCH 00/10] driver model bring-up of dwc3 usb peripheral

2016-03-31 Thread Marek Vasut
On 03/31/2016 05:11 PM, Tom Rini wrote: > On Thu, Mar 31, 2016 at 04:10:49PM +0200, Michal Simek wrote: >> Hi Tom, >> >> On 15.3.2016 13:14, Mugunthan V N wrote: >>> This patch series enables dwc3 usb driver to adopt driver model. >>> This has been tested on AM437x evm sk (logs [1]) by loading >>>

Re: [U-Boot] [PATCH] board: ti: DRA7: Add DP83867 TI phy for rev c

2016-03-31 Thread Tom Rini
On Wed, Mar 30, 2016 at 12:58:37PM -0500, Dan Murphy wrote: > Enable the TI DP83867 Giga bit phy on the > dra7 rev c board. The rx and tx internal > delays are need for this board so the usage > of RGMII_ID is required. > > Signed-off-by: Dan Murphy Reviewed-by: Tom Rini -- Tom signature.

Re: [U-Boot] [PATCH] test/py: Add support for loading image via tftp to specified location

2016-03-31 Thread Stephen Warren
On 03/31/2016 02:32 AM, Michal Simek wrote: For example this setting: env__net_tftp_readable_file = { "fn": "ep108/image.ub", "addr": "0x1000", Why not remove the quotes, so the value is an integer already... Could you please add the "addr" field into the example at the top of

[U-Boot] pull request: u-boot-uniphier/master

2016-03-31 Thread Masahiro Yamada
Hi Tom, Please pull u-boot-uniphier once again for u-boot-2016.05-rc1. Mostly driver updates for UniPhier ARMv8 SoC support, plus misc fixes. The following changes since commit 080c499df689e8c42df70de44502c0d71533dda8: Merge branch 'master' of git://git.denx.de/u-boot-tegra (2016-03-29 13:33

Re: [U-Boot] [PATCH 00/10] ARM: uniphier: driver updates for ARMv8 SoCs support

2016-03-31 Thread Masahiro Yamada
2016-03-24 22:32 GMT+09:00 Masahiro Yamada : > > > > Masahiro Yamada (10): > serial: uniphier: use devm_get_addr() to get base address > clk: uniphier: use devm_get_addr() to get base address > i2c: uniphier: use devm_get_addr() to get base address > gpio: uniphier: use devm_get_addr() to g

Re: [U-Boot] [RFC v1 PATCH 1/1] mpc85xx: Enable pre-relocation malloc for MPC85xx

2016-03-31 Thread York Sun
On 03/30/2016 11:29 PM, Mario Six wrote: > > Quoting York Sun : > >> On 03/29/2016 11:53 PM, Mario Six wrote: >>> To enable DM on MPC85xx, we need pre-relocation malloc, which is >>> implemented in this patch. >>> >>> Signed-off-by: Mario Six >>> Cc: York Sun >>> Cc: Simon Glass >>> --- >>> a

Re: [U-Boot] [PATCH] ARM: uniphier: rename function names ph1_* to uniphier_*

2016-03-31 Thread Masahiro Yamada
2016-03-30 20:17 GMT+09:00 Masahiro Yamada : > Eliminate the "ph1"_ prefixes from function names because "uniphier_" > describes the SoC familiy better. > > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada __

Re: [U-Boot] [linux-sunxi] [PATCH RFC 00/17] sunxi: more AXP818 and A83T USB support

2016-03-31 Thread Chen-Yu Tsai
On Thu, Mar 31, 2016 at 10:59 PM, Hans de Goede wrote: > Hi, > > On 29-03-16 18:26, Chen-Yu Tsai wrote: >> >> Hi everyone, >> >> This series adds more support for axp818 regulators, and USB support >> for A83T. Normal EHCI/OHCI USB works, and so does OTG host mode. > > > Cool, thanks for working o

Re: [U-Boot] [PATCH] ARM: uniphier: drop unneeded defines related to legacy serial driver

2016-03-31 Thread Masahiro Yamada
2016-03-29 20:12 GMT+09:00 Masahiro Yamada : > These defined were used for pre-DM ns16550 serial driver. They are > unneeded because UniPhier SoCs now use DM serial. > > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada ___

Re: [U-Boot] [PATCH] ARM: uniphier: adjust dram_init() and dram_init_banksize() for ARM64

2016-03-31 Thread Masahiro Yamada
2016-03-29 20:18 GMT+09:00 Masahiro Yamada : > Currently, these functions assume #address-cells and #size-cells are > both one. Fix them to support 64bit DTB. > > Also, I am fixing a buffer overrun bug while I am here. The array > size of gd->bd->bd_dram is CONFIG_NR_DRAM_BANKS. The number of >

Re: [U-Boot] [PATCH] ARM: uniphier: enable eMMC on PH1-sLD3 reference board

2016-03-31 Thread Masahiro Yamada
2016-03-30 10:52 GMT+09:00 Masahiro Yamada : > On PH1-sLD3, eMMC and NAND are assigned to different I/O pins. > Both devices can be enabled at the same time. > > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada _

Re: [U-Boot] [PATCH] ARM: dts: uniphier: add clock-frequency for LD11/LD20 DTSI

2016-03-31 Thread Masahiro Yamada
2016-03-28 21:39 GMT+09:00 Masahiro Yamada : > Since no clock driver is implemented for peripherals in U-Boot yet, > this property is needed for the serial driver to set up the divisor > register. > > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Y

Re: [U-Boot] [PATCH] ARM: uniphier: remove CONFIG_ARP_TIMEOUT define

2016-03-31 Thread Masahiro Yamada
2016-03-30 20:45 GMT+09:00 Masahiro Yamada : > I no longer see the problem claimed in the comment block. Rather, > the 0.5 msec timeout seems too short for some TFTP servers. > > Drop the CONFIG_ARM_TIMEOUT to fall back to the 5 sec timeout. > > Signed-off-by: Masahiro Yamada Applied to u-boot-

Re: [U-Boot] [PATCH] cosmetic: Fix typos "privide"

2016-03-31 Thread Masahiro Yamada
2016-03-30 20:17 GMT+09:00 Masahiro Yamada : > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] ARM: uniphier: add pin-mux settings for NAND, eMMC, SD of PH1-sLD3

2016-03-31 Thread Masahiro Yamada
2016-03-30 10:53 GMT+09:00 Masahiro Yamada : > Signed-off-by: Masahiro Yamada > Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] ARM: dts: uniphier: add NAND pinmux node

2016-03-31 Thread Masahiro Yamada
2016-03-28 21:41 GMT+09:00 Masahiro Yamada : > This will be used to set up pin-muxing for the NAND controller. > > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.d

Re: [U-Boot] [PATCH] ARM: uniphier: add sramupdate command

2016-03-31 Thread Masahiro Yamada
2016-03-24 22:23 GMT+09:00 Masahiro Yamada : > This command would be useful to update U-Boot images in SRAM. > > Signed-off-by: Masahiro Yamada Applied to u-boot-uniphier/master. -- Best Regards Masahiro Yamada ___ U-Boot mailing list U-Boot@lists.d

Re: [U-Boot] [RFC PATCH 1/2] net: phy: ti: Allow the driver to be more configurable

2016-03-31 Thread Tom Rini
On Thu, Mar 31, 2016 at 10:27:31AM -0500, Dan Murphy wrote: > Tom > > On 03/31/2016 09:11 AM, Tom Rini wrote: > > On Thu, Mar 31, 2016 at 07:42:39AM -0500, Dan Murphy wrote: > > > >> Not all devices use the same internal delay or fifo depth. > >> Add the ability to set the internal delay for rx or

Re: [U-Boot] [RFC PATCH 1/2] net: phy: ti: Allow the driver to be more configurable

2016-03-31 Thread Dan Murphy
Tom On 03/31/2016 09:11 AM, Tom Rini wrote: > On Thu, Mar 31, 2016 at 07:42:39AM -0500, Dan Murphy wrote: > >> Not all devices use the same internal delay or fifo depth. >> Add the ability to set the internal delay for rx or tx and the >> fifo depth via the config file. If the value is not set in

Re: [U-Boot] [PATCH] ARM: uniphier: make u-boot-with-spl.bin really available

2016-03-31 Thread Masahiro Yamada
2016-03-24 22:22 GMT+09:00 Masahiro Yamada : > Commit d085ecd61b99 ("ARM: uniphier: switch to raw U-Boot image") > claimed that u-boot-with-spl.bin would be useful in its commit log, > but it was not available because the commit missed to define > CONFIG_SPL_MAX_SIZE. Without it, CONFIG_SPL_PAD_TO

Re: [U-Boot] [PATCH] mtd: nand: denali: max_banks calculation changed in revision 5.1

2016-03-31 Thread Masahiro Yamada
2016-03-24 22:14 GMT+09:00 Masahiro Yamada : > From: Graham Moore > > Read Denali hardware revision number and use it to > calculate max_banks, The encoding of max_banks changed > in Denali revision 5.1. > > [ Linux commit : 271707b1d817f5104e02b2bd1bab43f0c8759418 ] > > Signed-off-by: Graham Moo

Re: [U-Boot] [PATCH 00/10] driver model bring-up of dwc3 usb peripheral

2016-03-31 Thread Tom Rini
On Thu, Mar 31, 2016 at 04:10:49PM +0200, Michal Simek wrote: > Hi Tom, > > On 15.3.2016 13:14, Mugunthan V N wrote: > > This patch series enables dwc3 usb driver to adopt driver model. > > This has been tested on AM437x evm sk (logs [1]) by loading > > kernel through usb ether > > > > Also pushe

Re: [U-Boot] [linux-sunxi] [PATCH RFC 06/17] sunxi: usb_phy: Add support for A83T USB PHYs

2016-03-31 Thread Hans de Goede
Hi, On 29-03-16 18:26, Chen-Yu Tsai wrote: The A83T has 3 USB PHYs: 1 for USB OTG, 1 for standard USB 1.1/2.0 host, 1 for USB HSIC. Signed-off-by: Chen-Yu Tsai Note, I've made some minor changes to this one to reduce the amount of #ifdef-s it introduces. Regards, Hans --- arch/arm/cp

Re: [U-Boot] [linux-sunxi] [PATCH RFC 00/17] sunxi: more AXP818 and A83T USB support

2016-03-31 Thread Hans de Goede
Hi, On 29-03-16 18:26, Chen-Yu Tsai wrote: Hi everyone, This series adds more support for axp818 regulators, and USB support for A83T. Normal EHCI/OHCI USB works, and so does OTG host mode. Cool, thanks for working on this! I couldn't get my Cubietruck Plus to work in gadget mode though. No

Re: [U-Boot] [PATCH V4 2/3] mx7: psci: add basic psci support

2016-03-31 Thread Gary Bisson
Hi Peng, On Thu, Mar 31, 2016 at 3:33 PM, Peng Fan wrote: > Hi Gary, > > On Thu, Mar 31, 2016 at 01:17:07PM +0200, Gary Bisson wrote: >>Hi all, >> >>Sorry to revive an old thread but I have some questions about thit patch. >> >>On Fri, Oct 23, 2015 at 10:13:04AM +0800, Peng Fan wrote: >>> 1. add

Re: [U-Boot] [PATCH 00/10] driver model bring-up of dwc3 usb peripheral

2016-03-31 Thread Michal Simek
Hi Tom, On 15.3.2016 13:14, Mugunthan V N wrote: > This patch series enables dwc3 usb driver to adopt driver model. > This has been tested on AM437x evm sk (logs [1]) by loading > kernel through usb ether > > Also pushed a branch for testing [2] > > [1] - http://pastebin.ubuntu.com/15391169/ > [

Re: [U-Boot] [RFC PATCH 1/2] net: phy: ti: Allow the driver to be more configurable

2016-03-31 Thread Tom Rini
On Thu, Mar 31, 2016 at 07:42:39AM -0500, Dan Murphy wrote: > Not all devices use the same internal delay or fifo depth. > Add the ability to set the internal delay for rx or tx and the > fifo depth via the config file. If the value is not set in the > config file then set the delay to the defaul

Re: [U-Boot] [RFC PATCH 1/2] net: phy: ti: Allow the driver to be more configurable

2016-03-31 Thread Dan Murphy
On 03/31/2016 07:42 AM, Dan Murphy wrote: > Not all devices use the same internal delay or fifo depth. > Add the ability to set the internal delay for rx or tx and the > fifo depth via the config file. If the value is not set in the > config file then set the delay to the default. This patch also

Re: [U-Boot] [PATCH V4 2/3] mx7: psci: add basic psci support

2016-03-31 Thread Peng Fan
Hi Gary, On Thu, Mar 31, 2016 at 01:17:07PM +0200, Gary Bisson wrote: >Hi all, > >Sorry to revive an old thread but I have some questions about thit patch. > >On Fri, Oct 23, 2015 at 10:13:04AM +0800, Peng Fan wrote: >> 1. add basic psci support for imx7 chip. >> 2. support cpu_on and cpu_off. >>

[U-Boot] [PATCH] spi: Support 4 byte address only SPI flash

2016-03-31 Thread Tim Chick
Add support to use 4 byte addresses for SPI flash, configured with SPI_FLASH_USE_4B_ADDR. The Macronix MX25L25735F only supports 4 byte addresses, but has the same ID as the MX25L25635E, which supports 3 and 4 byte address modes. When using the MX25L25735F, flash reads and writes were corrupted wit

[U-Boot] [PATCH] mips: Report reloc information in bdinfo

2016-03-31 Thread tim.chick
Signed-off-by: tim.chick --- cmd/bdinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 8eda68b..1c4bed9 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -341,6 +341,8 @@ int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) pr

[U-Boot] [RFC PATCH 2/2] board: ti: DRA7: Add in RGMII parameters for rev c

2016-03-31 Thread Dan Murphy
Add in the rx/tx delay as well as the fifo depth for the dra7 evm rev c board. Signed-off-by: Dan Murphy --- include/configs/dra7xx_evm.h | 4 1 file changed, 4 insertions(+) diff --git a/include/configs/dra7xx_evm.h b/include/configs/dra7xx_evm.h index 7734e8d..0b20b6d 100644 --- a/includ

[U-Boot] [RFC PATCH 1/2] net: phy: ti: Allow the driver to be more configurable

2016-03-31 Thread Dan Murphy
Not all devices use the same internal delay or fifo depth. Add the ability to set the internal delay for rx or tx and the fifo depth via the config file. If the value is not set in the config file then set the delay to the default. Signed-off-by: Dan Murphy --- drivers/net/phy/ti.c

Re: [U-Boot] [PATCH v5 0/3] net: phy: Force master mode for RTL8211C on some boards

2016-03-31 Thread Hans de Goede
Hi, On 25-03-16 18:22, Michael Haas wrote: This patch is required to get reliable 1000BASE-T operation on some boards using the RTL8211C(L) PHY. Following discussions on v2 of this patch, I have removed the incorrect check for the RTL8211C(L). Affected boards now have to define CONFIG_RTL8211X_

Re: [U-Boot] [PATCH V4 2/3] mx7: psci: add basic psci support

2016-03-31 Thread Gary Bisson
Hi all, Sorry to revive an old thread but I have some questions about thit patch. On Fri, Oct 23, 2015 at 10:13:04AM +0800, Peng Fan wrote: > 1. add basic psci support for imx7 chip. > 2. support cpu_on and cpu_off. > 3. switch to non-secure mode when boot linux kernel. > 4. set csu allow accessi

Re: [U-Boot] [PATCH] dm: ns16550: Add support for reg-offset property

2016-03-31 Thread Michal Simek
Hi Simon, >> diff --git a/include/ns16550.h b/include/ns16550.h >> index 5eeacd6..1311f4c 100644 >> --- a/include/ns16550.h >> +++ b/include/ns16550.h >> @@ -54,9 +54,9 @@ >> */ >> struct ns16550_platdata { >> unsigned long base; >> - int reg_offset; >> int reg_shift; >>

[U-Boot] [PATCH] ARM64: zynqmp: Enable EFI partition support

2016-03-31 Thread Michal Simek
Enable EFI partition support for ZynqMP. Signed-off-by: Michal Simek --- include/configs/xilinx_zynqmp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index 8c760967f6d6..8cea61080d49 100644 --- a/include/configs/xilinx_zy

[U-Boot] [PATCH 2/2] net: zynq_gem: Add SGMII support for zynqMP

2016-03-31 Thread Michal Simek
From: Siva Durga Prasad Paladugu PCS auto negotaiation bit should be enabled along with SGMII autonegotation enabled in phy. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/zynq_gem.c | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-)

[U-Boot] [PATCH 1/2] net: phy: Add SGMII support for TI phy

2016-03-31 Thread Michal Simek
From: Siva Durga Prasad Paladugu Add support of SGMII to TI phy dp838367 Enable the SGMII and PCS settings in phy control, CFG2 and BIST registers Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/phy/ti.c | 39 ++- 1 fi

[U-Boot] [PATCH] net: zynq_gem: Return error incase of invalid phy address

2016-03-31 Thread Michal Simek
From: Siva Durga Prasad Paladugu Return error from probe in case of invalid phy address. This fixes the issue of uboot crash if phy is not detected. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- drivers/net/zynq_gem.c | 4 +--- 1 file changed, 1 insertion(+), 3 de

[U-Boot] [PATCH 1/2] ARM: zynq: Enable FLASH_BAR for microzed and zybo

2016-03-31 Thread Michal Simek
Enable FLASH_BAR for these targets to be in sync with all zynq boards. Signed-off-by: Michal Simek --- configs/zynq_microzed_defconfig | 1 + configs/zynq_zybo_defconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/configs/zynq_microzed_defconfig b/configs/zynq_microzed_defconfig i

[U-Boot] [PATCH 2/2] ARM: zynq: Add uEnv.txt support

2016-03-31 Thread Michal Simek
From: Michal Simek preboot macro load the uEnv.txt from mmc 0 when bootmode is mmc. uenvcmd is executed after load of uEnv.txt if it is defined in the uEnv.txt env text file. The default importbootenv macro reads the uEnv.txt from mmc. Additional to this, usb_loadbootenv is added to support loa

[U-Boot] [PATCH] block: Add support for Ceva sata

2016-03-31 Thread Michal Simek
Initial Ceva Sata init code. Signed-off-by: Michal Simek --- board/xilinx/zynqmp/zynqmp.c| 4 ++ drivers/block/Makefile | 1 + drivers/block/sata_ceva.c | 113 include/configs/xilinx_zynqmp.h | 2 +- 4 files changed, 119 insertio

[U-Boot] [PATCH 2/6] ARM64: zynqmp: Enable FAT write and EXT4 write for USB too

2016-03-31 Thread Michal Simek
From: Michal Simek Enabling writing files to FAT and EXT4 for USB. Signed-off-by: Michal Simek --- include/configs/xilinx_zynqmp.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index b60239614fad..0ecdc13bfa8e 100644 -

[U-Boot] [PATCH 6/6] ARM64: zynqmp: Simplify MAINTAINERS file to support more boards

2016-03-31 Thread Michal Simek
Handle all Xilinx ZynqMP boards with one fragment. Signed-off-by: Michal Simek --- board/xilinx/zynqmp/MAINTAINERS | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/board/xilinx/zynqmp/MAINTAINERS b/board/xilinx/zynqmp/MAINTAINERS index 20ca6522e570..69edbf21f91c 100644

[U-Boot] [PATCH 4/6] ARM64: Move HUSH enabling from board file to defconfig

2016-03-31 Thread Michal Simek
Simplify board config file. Signed-off-by: Michal Simek --- configs/xilinx_zynqmp_ep_defconfig | 1 + include/configs/xilinx_zynqmp.h| 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/xilinx_zynqmp_ep_defconfig b/configs/xilinx_zynqmp_ep_defconfig index a1f3580f8d0

[U-Boot] [PATCH 3/6] ARM64: zynqmp: Select SYS_CONFIG_NAME via Kconfig

2016-03-31 Thread Michal Simek
This option enable adding new platform suport just by adding defconfig and DTS file which will target generic configuration for SoC. Make no sense to extend Kconfig just create a pointer between DTS and configuration file. Signed-off-by: Michal Simek --- arch/arm/cpu/armv8/zynqmp/Kconfig | 15

[U-Boot] [PATCH 5/6] ARM64: zynqmp: Read RAM information from DT

2016-03-31 Thread Michal Simek
Read information about memory from DT. This patch simplify life with synchronization between DT and board files. dram_init() only needs maximum RAM size below 4GB that's why please sort banks in memory node. dram_init_banksize() copies memory setup to bi_dram[]. This will avoid reading information

[U-Boot] [PATCH 1/6] ARM64: zynqmp: Decrease boot delay

2016-03-31 Thread Michal Simek
From: Soren Brinkmann Synchronize it with zynq platform. Signed-off-by: Soren Brinkmann Signed-off-by: Michal Simek --- include/configs/xilinx_zynqmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/xilinx_zynqmp.h b/include/configs/xilinx_zynqmp.h index

[U-Boot] [PATCH] net: axi_emac: Report phy-node error message permanently

2016-03-31 Thread Michal Simek
Do not use debug() when printing error message. Use printf instead. Signed-off-by: Michal Simek --- drivers/net/xilinx_axi_emac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/xilinx_axi_emac.c b/drivers/net/xilinx_axi_emac.c index 3d69bed3093c..5de06ef01e8d 10

[U-Boot] [PATCH 2/2] microblaze: Remove !OF_CONTROL code for timer and interrupt

2016-03-31 Thread Michal Simek
OF_CONTROL is enabled by default that's why this is dead code. Signed-off-by: Michal Simek --- arch/microblaze/cpu/interrupts.c | 9 + arch/microblaze/cpu/timer.c | 14 -- board/xilinx/microblaze-generic/xparameters.h | 11 --- include

[U-Boot] [PATCH 1/2] microblaze: Read information about timer/interrupts from DT

2016-03-31 Thread Michal Simek
Read information about timer and interrupts from DT. This is the first small step to move timer and intc to DM. Signed-off-by: Michal Simek --- arch/microblaze/cpu/interrupts.c | 25 + arch/microblaze/cpu/timer.c | 39 ++- 2 files

[U-Boot] [PATCH] ARM: zynq: Fix default ps7_init_gpl.c/h for ZYBO

2016-03-31 Thread Michal Simek
From: Michal Simek There is incorrect setting for USB which didn't work with origin ps7_init_gpl.X files. Use default setting for Digilent Zybo projects with HDMI in PL. Signed-off-by: Michal Simek Signed-off-by: Michal Simek --- board/xilinx/zynq/zybo_hw_platform/ps7_init_gpl.c | 1581 +

[U-Boot] [PATCH] test/py: Add support for loading image via tftp to specified location

2016-03-31 Thread Michal Simek
For example this setting: env__net_tftp_readable_file = { "fn": "ep108/image.ub", "addr": "0x1000", "size": 25846296, "crc32": "b726f9de", } Signed-off-by: Michal Simek --- test/py/tests/test_net.py | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/t

[U-Boot] [PATCH] ARM: zynq: zybo: Enabling reading MAC address from EEPROM

2016-03-31 Thread Michal Simek
From: Michal Simek Zybo has on board I2C EEPROM which contains preprogrammed MAC address. Signed-off-by: Michal Simek Signed-off-by: Michal Simek --- include/configs/zynq_zybo.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/zynq_zybo.h b/include/configs/zynq_zybo.h i

  1   2   >