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
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
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
- 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 --
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
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
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
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
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
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
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:
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:
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
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 --
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
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
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
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
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
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:
-
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
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
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
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
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
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
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
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
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
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
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
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
> 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
>
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
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
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 +-
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
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
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
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 +++
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
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 +
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
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
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
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
>>>
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.
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
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
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
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
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
__
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
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
___
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
>
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
_
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
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-
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
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
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
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
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
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
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
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
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
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
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
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
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/
> [
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
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
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.
>>
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
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
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
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
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_
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
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;
>>
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
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(-)
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
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
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
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
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
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
-
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
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
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
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
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
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
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
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
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 +
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
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 - 100 of 101 matches
Mail list logo