public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [PATCH 00/10] arm64: zynqmp: Add support for KRIA boards and update phy/pinctrl descs
Date: Mon, 10 May 2021 16:17:39 +0200	[thread overview]
Message-ID: <cover.1620656248.git.michal.simek@xilinx.com> (raw)

Hi,

this patchset is adding support for new Xilinx SOM platform. SOM+CC.
Also adding description for pin control and PSGTR phys with also some small
fixes in DT.

Thanks,
Michal


Michal Simek (6):
  arm64: zynqmp: Add missing silabs,skip-recall for si570 ref clk nodes
  arm64: zynqmp: Remove comment about clock chips
  arm64: zynqmp: Add missing mio-bank properties to sdhci
  arm64: zynqmp: Add pinctrl description
  arm64: zynqmp: Add psgtr DT descriptions
  arm64: zynqmp: Add description for SOM/Kria boards

Raviteja Narayanam (1):
  arm64: zynqmp: Add 'i2c-mux-idle-disconnect' property

Saeed Nowshadi (2):
  arm64: zynqmp: Add 'silabs,skip-recall' to DDR DIMM si570 clk node
  arm64: zynqmp: Add label to all GPIO lines for VCK190 SC

T Karthik Reddy (1):
  arm64: zynqmp: Add zynqmp firmware specific DT nodes

 arch/arm/dts/Makefile                        |   4 +
 arch/arm/dts/zynqmp-e-a2197-00-revA.dts      |  20 +-
 arch/arm/dts/zynqmp-m-a2197-01-revA.dts      |   3 +-
 arch/arm/dts/zynqmp-m-a2197-02-revA.dts      |   3 +-
 arch/arm/dts/zynqmp-m-a2197-03-revA.dts      |   3 +-
 arch/arm/dts/zynqmp-mini-emmc0.dts           |  40 ++
 arch/arm/dts/zynqmp-mini-emmc1.dts           |  40 ++
 arch/arm/dts/zynqmp-p-a2197-00-revA.dts      |  23 ++
 arch/arm/dts/zynqmp-sck-kv-g-revA.dts        | 373 +++++++++++++++++++
 arch/arm/dts/zynqmp-sck-kv-g-revB.dts        | 353 ++++++++++++++++++
 arch/arm/dts/zynqmp-sm-k26-revA-u-boot.dtsi  |  21 ++
 arch/arm/dts/zynqmp-sm-k26-revA.dts          | 316 ++++++++++++++++
 arch/arm/dts/zynqmp-smk-k26-revA-u-boot.dtsi |  21 ++
 arch/arm/dts/zynqmp-smk-k26-revA.dts         |  21 ++
 arch/arm/dts/zynqmp-zc1751-xm015-dc1.dts     | 260 +++++++++++++
 arch/arm/dts/zynqmp-zc1751-xm016-dc2.dts     | 306 +++++++++++++++
 arch/arm/dts/zynqmp-zc1751-xm019-dc5.dts     | 330 ++++++++++++++++
 arch/arm/dts/zynqmp-zcu100-revC.dts          | 242 +++++++++++-
 arch/arm/dts/zynqmp-zcu102-revA.dts          | 290 ++++++++++++++
 arch/arm/dts/zynqmp-zcu104-revA.dts          | 218 +++++++++++
 arch/arm/dts/zynqmp-zcu104-revC.dts          | 218 +++++++++++
 arch/arm/dts/zynqmp-zcu106-revA.dts          | 290 ++++++++++++++
 arch/arm/dts/zynqmp-zcu111-revA.dts          | 234 +++++++++++-
 arch/arm/dts/zynqmp-zcu208-revA.dts          |  83 ++++-
 arch/arm/dts/zynqmp-zcu216-revA.dts          |  83 ++++-
 configs/xilinx_zynqmp_virt_defconfig         |   2 +-
 include/dt-bindings/pinctrl/pinctrl-zynqmp.h |  19 +
 27 files changed, 3792 insertions(+), 24 deletions(-)
 create mode 100644 arch/arm/dts/zynqmp-sck-kv-g-revA.dts
 create mode 100644 arch/arm/dts/zynqmp-sck-kv-g-revB.dts
 create mode 100644 arch/arm/dts/zynqmp-sm-k26-revA-u-boot.dtsi
 create mode 100644 arch/arm/dts/zynqmp-sm-k26-revA.dts
 create mode 100644 arch/arm/dts/zynqmp-smk-k26-revA-u-boot.dtsi
 create mode 100644 arch/arm/dts/zynqmp-smk-k26-revA.dts
 create mode 100644 include/dt-bindings/pinctrl/pinctrl-zynqmp.h

-- 
2.31.1

             reply	other threads:[~2021-05-10 14:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-10 14:17 Michal Simek [this message]
2021-05-10 14:17 ` [PATCH 01/10] arm64: zynqmp: Add missing silabs, skip-recall for si570 ref clk nodes Michal Simek
2021-05-10 14:17 ` [PATCH 02/10] arm64: zynqmp: Add 'silabs, skip-recall' to DDR DIMM si570 clk node Michal Simek
2021-05-10 14:17 ` [PATCH 03/10] arm64: zynqmp: Add label to all GPIO lines for VCK190 SC Michal Simek
2021-05-10 14:17 ` [PATCH 04/10] arm64: zynqmp: Add 'i2c-mux-idle-disconnect' property Michal Simek
2021-05-10 14:17 ` [PATCH 05/10] arm64: zynqmp: Remove comment about clock chips Michal Simek
2021-05-10 14:17 ` [PATCH 06/10] arm64: zynqmp: Add missing mio-bank properties to sdhci Michal Simek
2021-05-10 14:17 ` [PATCH 07/10] arm64: zynqmp: Add zynqmp firmware specific DT nodes Michal Simek
2021-05-10 14:17 ` [PATCH 08/10] arm64: zynqmp: Add pinctrl description Michal Simek
2021-05-10 14:17 ` [PATCH 09/10] arm64: zynqmp: Add psgtr DT descriptions Michal Simek
2021-05-10 14:17 ` [PATCH 10/10] arm64: zynqmp: Add description for SOM/Kria boards Michal Simek
2021-05-19  8:05 ` [PATCH 00/10] arm64: zynqmp: Add support for KRIA boards and update phy/pinctrl descs Michal Simek

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=cover.1620656248.git.michal.simek@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