From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] Zynq changes
Date: Tue, 28 Jul 2015 15:41:21 +0200 [thread overview]
Message-ID: <55B78681.9010604@xilinx.com> (raw)
Hi Tom,
please pull these changes to your tree. The most of that changes are DT
related which is simple synchronization DTSes with the kernel where
binding was properly reviewed.
Thanks,
Michal
The following changes since commit 26473945ad6667183296e7edee2a65edf31bb6f7:
Merge branch 'master' of http://git.denx.de/u-boot-sunxi (2015-07-25
09:04:18 -0400)
are available in the git repository at:
git://www.denx.de/git/u-boot-microblaze.git zynq
for you to fetch changes up to 711e5e26b41457e658155e7c225c9ccfed0182ef:
cmd_mp: Add support for showing all CPU status by one command
(2015-07-28 11:56:29 +0200)
----------------------------------------------------------------
Michal Simek (29):
zynq: gem: Setting up WRAP bit for one TX bd
zynqmp: mp: Simplify set_r5_start handling
zynqmp: Add support for IP detection via SLCR
ARM: zynq: DT: Use the right names for nodes
ARM: zynq: DT: Add missing nodes to DTSI
ARM: zynq: DT: Add a fixed regulator for CPU voltage
ARM: zynq: DT: Migrate UART to Cadence binding
ARM: zynq: DT: Remove 222 MHz OPP
spi: Fix zynq SPI binding
ARM: zynq: DT: Fix GEM register area size
ARM: zynq: DT: Use the zynq binding with macb
ARM: zynq: DT: Clean up timer device tree nodes
ARM: zynq: DT: Cleanup address-cells and size-cells
ARM: zynq: DT: Add pinctrl node
ARM: zynq: DT: Add reference to bus node
ARM: zynq: DT: Sync zc702/zc706/zed/zybo DT with kernel
ARM: zynq: DT: Update years in copyright
ARM: zynq: DT: Get rid of ps-clk-frequency
ARM: zynq: DT: Add missing interrupt for L2 pl310
ARM: zynq: DT: Add zc702 pushbuttons to DT as gpio-keys
ARM: zynq: DT: Update zc770 dtses
ARM: zynq: Add support for zc770-xm011
ARM: zynqmp: Wire up ethernet controllers
ARM: zynqmp: Wire up SATA for the board
zynqmp: Show EL level where U-Boot runs
net: gem: Extend timeout value
zynq: Fix typo in Makefile about custom ps7_init file
spi: zynq_spi: Simplify debug macro
cmd_mp: Add support for showing all CPU status by one command
Siva Durga Prasad Paladugu (7):
zynqmp: gem: Set data bus width to 64bit for arm64
zynqmp: gem: Flush the rx buffers while transmitting
zynq: gem: Increase the Rx buffer descriptors to 32
zynqmp: Kconfig: Move zynqmp Kconfig
zynqmp: Define ep config for ZynqMP
Kconfig: zynqmp: Move CONFIG_SYS_TEXT_BASE to defconfig
zynqmp: Provide option to enable uart dcc support for zynqmp
Kconfig | 2 +-
arch/arm/Kconfig | 5 ++-
arch/arm/cpu/armv8/Makefile | 2 +-
arch/arm/cpu/armv8/zynqmp/Kconfig | 23
++++++++++
arch/arm/cpu/armv8/zynqmp/Makefile | 1 +
arch/arm/cpu/armv8/zynqmp/mp.c | 7 +--
arch/arm/cpu/armv8/zynqmp/slcr.c | 63
+++++++++++++++++++++++++++
arch/arm/dts/Makefile | 1 +
arch/arm/dts/zynq-7000.dtsi | 174
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------
arch/arm/dts/zynq-zc702.dts | 372
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
arch/arm/dts/zynq-zc706.dts | 293
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
arch/arm/dts/zynq-zc770-xm010.dts | 75
+++++++++++++++++++++++++++++---
arch/arm/dts/zynq-zc770-xm011.dts | 65
++++++++++++++++++++++++++++
arch/arm/dts/zynq-zc770-xm012.dts | 51
++++++++++++++++++++--
arch/arm/dts/zynq-zc770-xm013.dts | 62
++++++++++++++++++++++++--
arch/arm/dts/zynq-zed.dts | 46
++++++++++++++++++--
arch/arm/dts/zynq-zybo.dts | 38
++++++++++++++--
arch/arm/include/asm/arch-zynqmp/hardware.h | 16
+++++++
arch/arm/include/asm/arch-zynqmp/sys_proto.h | 6 +++
board/xilinx/zynq/Makefile | 2 +-
board/xilinx/zynqmp/Kconfig | 15
-------
board/xilinx/zynqmp/MAINTAINERS | 5 ++-
board/xilinx/zynqmp/zynqmp.c | 37
++++++++++++++++
common/cmd_mp.c | 22
++++++++++
configs/{xilinx_zynqmp_defconfig => xilinx_zynqmp_ep_defconfig} | 5 ++-
configs/zynq_zc770_xm011_defconfig | 13
++++++
doc/device-tree-bindings/spi/spi-zynq.txt | 35
++++++++-------
drivers/net/zynq_gem.c | 26
++++++++---
drivers/spi/zynq_spi.c | 4 +-
include/configs/xilinx_zynqmp.h | 48
+++++++++++++++++----
include/configs/xilinx_zynqmp_ep.h | 27
++++++++++++
include/configs/zynq_zc770.h | 3 ++
32 files changed, 1427 insertions(+), 117 deletions(-)
create mode 100644 arch/arm/cpu/armv8/zynqmp/Kconfig
create mode 100644 arch/arm/cpu/armv8/zynqmp/slcr.c
create mode 100644 arch/arm/dts/zynq-zc770-xm011.dts
delete mode 100644 board/xilinx/zynqmp/Kconfig
rename configs/{xilinx_zynqmp_defconfig => xilinx_zynqmp_ep_defconfig}
(81%)
create mode 100644 configs/zynq_zc770_xm011_defconfig
create mode 100644 include/configs/xilinx_zynqmp_ep.h
next reply other threads:[~2015-07-28 13:41 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-28 13:41 Michal Simek [this message]
2015-07-28 13:43 ` [U-Boot] [GIT PULL] Zynq changes Michal Simek
2015-07-28 15:37 ` Tom Rini
2015-07-28 18:29 ` Michal Simek
-- strict thread matches above, loose matches on Subject: below --
2015-12-07 9:19 Michal Simek
2015-12-07 19:06 ` Tom Rini
2015-11-19 14:09 Michal Simek
2015-11-19 22:07 ` Tom Rini
2015-11-04 14:48 Michal Simek
2015-11-04 22:03 ` Tom Rini
2015-08-19 10:02 Michal Simek
2015-08-20 16:35 ` Tom Rini
2015-05-25 9:17 Michal Simek
2015-05-26 17:36 ` Tom Rini
2015-04-29 9:45 Michal Simek
2015-04-29 14:28 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=55B78681.9010604@xilinx.com \
--to=michal.simek@xilinx.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox