From: Michal Simek <michal.simek@amd.com>
To: <u-boot@lists.denx.de>, <git@xilinx.com>
Cc: "Adrian Fiergolski" <adrian.fiergolski@fastree3d.com>,
"Andre Przywara" <andre.przywara@arm.com>,
"Andrew Scull" <ascull@google.com>,
"Ashok Reddy Soma" <ashok.reddy.soma@xilinx.com>,
"Bharat Gooty" <bharat.gooty@broadcom.com>,
"Christian Hewitt" <christianshewitt@gmail.com>,
"Fabio Estevam" <festevam@denx.de>,
"Heinrich Schuchardt" <xypron.glpk@gmx.de>,
"Icenowy Zheng" <icenowy@aosc.io>,
"Jagan Teki" <jagan@amarulasolutions.com>,
"Jay Buddhabhatti" <jay.buddhabhatti@amd.com>,
"Joe Hershberger" <joe.hershberger@ni.com>,
"Lukasz Majewski" <lukma@denx.de>,
"Marcel Ziswiler" <marcel.ziswiler@toradex.com>,
"Marek Vasut" <marex@denx.de>,
"Mark Kettenis" <kettenis@openbsd.org>,
"Ovidiu Panait" <ovidiu.panait@windriver.com>,
"Pali Rohár" <pali@kernel.org>, "Peng Fan" <peng.fan@nxp.com>,
"Rayagonda Kokatanur" <rayagonda.kokatanur@broadcom.com>,
"Samuel Holland" <samuel@sholland.org>,
"Sean Anderson" <seanga2@gmail.com>,
"Simon Glass" <sjg@chromium.org>,
"Stefan Herbrechtsmeier" <stefan.herbrechtsmeier@weidmueller.com>,
"T Karthik Reddy" <t.karthik.reddy@xilinx.com>,
"Wolfgang Denk" <wd@denx.de>,
"Ying-Chun Liu (PaulLiu)" <paul.liu@linaro.org>
Subject: [PATCH v2 0/9] xilinx: versal-net: Add support for new Versal NET SoC
Date: Mon, 19 Sep 2022 14:21:01 +0200 [thread overview]
Message-ID: <cover.1663589964.git.michal.simek@amd.com> (raw)
Hi,
I am sending support for new Xilinx/AMD SoC called Versal NET.
Versal NET is very similar to origin Versal SOC. There is different
register layout, some IPs have been upgraded like i3c and some other
changes in different location.
Thanks,
Michal
Changes in v2:
- Move symbols from .h to defconfig, enable i2c mux, dm_eth_phy, squashfs
and grepenv
- Remove CONFIG_SYS_CBSIZE, CONFIG_BOOTP_BOOTFILESIZE,
CONFIG_BOOTP_MAY_FAIL from .h file
- Setup HAS_CUSTOM_SYS_INIT_SP_ADDR
Jay Buddhabhatti (4):
clk: versal: Enable clock driver for Versal NET
firmware: zynqmp: Add Versal NET compatible string
mailbox: zynqmp: Enable ipi mailbox driver for Versal NET
reset: zynqmp: Enable reset driver for Versal NET
Michal Simek (5):
arm64: versal-net: Add support for Versal NET platform
spi: cadence_qspi: Add support for Versal NET platform
spi: zynqmp_gqspi: Add support for Versal NET
arm64: versal-net: Add defconfig for Versal NET
arm64: versal-net: Add support for mini configuration
Kconfig | 2 +-
MAINTAINERS | 7 +
arch/arm/Kconfig | 14 ++
arch/arm/Makefile | 1 +
arch/arm/dts/Makefile | 3 +
arch/arm/dts/versal-net-mini.dts | 67 +++++++
arch/arm/dts/xilinx-versal-net-virt.dts | 11 ++
arch/arm/mach-versal-net/Kconfig | 43 +++++
arch/arm/mach-versal-net/Makefile | 10 ++
arch/arm/mach-versal-net/clk.c | 35 ++++
arch/arm/mach-versal-net/cpu.c | 89 +++++++++
.../mach-versal-net/include/mach/hardware.h | 31 ++++
.../mach-versal-net/include/mach/sys_proto.h | 16 ++
board/xilinx/Kconfig | 6 +-
board/xilinx/versal-net/Kconfig | 9 +
board/xilinx/versal-net/MAINTAINERS | 8 +
board/xilinx/versal-net/Makefile | 9 +
board/xilinx/versal-net/board.c | 170 ++++++++++++++++++
configs/xilinx_versal_net_mini_defconfig | 72 ++++++++
configs/xilinx_versal_net_virt_defconfig | 131 ++++++++++++++
drivers/clk/Kconfig | 2 +-
drivers/clk/clk_versal.c | 1 +
drivers/firmware/firmware-zynqmp.c | 1 +
drivers/mailbox/Kconfig | 2 +-
drivers/reset/reset-zynqmp.c | 1 +
drivers/spi/Kconfig | 2 +-
drivers/spi/cadence_ospi_versal.c | 3 +-
drivers/spi/zynqmp_gqspi.c | 3 +-
env/Kconfig | 6 +-
include/configs/xilinx_versal_net.h | 134 ++++++++++++++
include/configs/xilinx_versal_net_mini.h | 21 +++
31 files changed, 898 insertions(+), 12 deletions(-)
create mode 100644 arch/arm/dts/versal-net-mini.dts
create mode 100644 arch/arm/dts/xilinx-versal-net-virt.dts
create mode 100644 arch/arm/mach-versal-net/Kconfig
create mode 100644 arch/arm/mach-versal-net/Makefile
create mode 100644 arch/arm/mach-versal-net/clk.c
create mode 100644 arch/arm/mach-versal-net/cpu.c
create mode 100644 arch/arm/mach-versal-net/include/mach/hardware.h
create mode 100644 arch/arm/mach-versal-net/include/mach/sys_proto.h
create mode 100644 board/xilinx/versal-net/Kconfig
create mode 100644 board/xilinx/versal-net/MAINTAINERS
create mode 100644 board/xilinx/versal-net/Makefile
create mode 100644 board/xilinx/versal-net/board.c
create mode 100644 configs/xilinx_versal_net_mini_defconfig
create mode 100644 configs/xilinx_versal_net_virt_defconfig
create mode 100644 include/configs/xilinx_versal_net.h
create mode 100644 include/configs/xilinx_versal_net_mini.h
--
2.36.1
next reply other threads:[~2022-09-19 12:21 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-19 12:21 Michal Simek [this message]
2022-09-19 12:21 ` [PATCH v2 1/9] arm64: versal-net: Add support for Versal NET platform Michal Simek
2022-09-19 12:21 ` [PATCH v2 2/9] spi: cadence_qspi: " Michal Simek
2022-09-19 12:21 ` [PATCH v2 3/9] spi: zynqmp_gqspi: Add support for Versal NET Michal Simek
2022-09-19 12:21 ` [PATCH v2 4/9] clk: versal: Enable clock driver " Michal Simek
2022-09-19 12:21 ` [PATCH v2 5/9] firmware: zynqmp: Add Versal NET compatible string Michal Simek
2022-09-19 12:21 ` [PATCH v2 6/9] mailbox: zynqmp: Enable ipi mailbox driver for Versal NET Michal Simek
2022-09-19 12:21 ` [PATCH v2 7/9] reset: zynqmp: Enable reset " Michal Simek
2022-09-19 12:21 ` [PATCH v2 8/9] arm64: versal-net: Add defconfig " Michal Simek
2022-09-19 12:21 ` [PATCH v2 9/9] arm64: versal-net: Add support for mini configuration Michal Simek
2022-09-26 12:23 ` [PATCH v2 0/9] xilinx: versal-net: Add support for new Versal NET SoC 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.1663589964.git.michal.simek@amd.com \
--to=michal.simek@amd.com \
--cc=adrian.fiergolski@fastree3d.com \
--cc=andre.przywara@arm.com \
--cc=ascull@google.com \
--cc=ashok.reddy.soma@xilinx.com \
--cc=bharat.gooty@broadcom.com \
--cc=christianshewitt@gmail.com \
--cc=festevam@denx.de \
--cc=git@xilinx.com \
--cc=icenowy@aosc.io \
--cc=jagan@amarulasolutions.com \
--cc=jay.buddhabhatti@amd.com \
--cc=joe.hershberger@ni.com \
--cc=kettenis@openbsd.org \
--cc=lukma@denx.de \
--cc=marcel.ziswiler@toradex.com \
--cc=marex@denx.de \
--cc=ovidiu.panait@windriver.com \
--cc=pali@kernel.org \
--cc=paul.liu@linaro.org \
--cc=peng.fan@nxp.com \
--cc=rayagonda.kokatanur@broadcom.com \
--cc=samuel@sholland.org \
--cc=seanga2@gmail.com \
--cc=sjg@chromium.org \
--cc=stefan.herbrechtsmeier@weidmueller.com \
--cc=t.karthik.reddy@xilinx.com \
--cc=u-boot@lists.denx.de \
--cc=wd@denx.de \
--cc=xypron.glpk@gmx.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