All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Pali Rohár" <pali@kernel.org>
To: u-boot@lists.denx.de
Subject: Re: [PATCH 0/9] xilinx: versal-net: Add support for new Versal NET SoC
Date: Fri, 16 Sep 2022 11:06:21 +0200	[thread overview]
Message-ID: <20220916090621.xztelkehoypxqsna@pali> (raw)
In-Reply-To: <cover.1663318393.git.michal.simek@amd.com>

Hello! I'm not maintainer of xilinx and I'm getting tons of emails. So
please do not send and spam me with unrelated emails/patches as I would
not have time to process those emails/patches which are important and
which I should review. Thanks.

On Friday 16 September 2022 10:53:11 Michal Simek wrote:
> 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
> 
> 
> 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      |  70 ++++++++
>  configs/xilinx_versal_net_virt_defconfig      | 118 ++++++++++++
>  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           | 156 ++++++++++++++++
>  include/configs/xilinx_versal_net_mini.h      |  28 +++
>  31 files changed, 912 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
> 

      parent reply	other threads:[~2022-09-16  9:06 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-16  8:53 [PATCH 0/9] xilinx: versal-net: Add support for new Versal NET SoC Michal Simek
2022-09-16  8:53 ` [PATCH 1/9] arm64: versal-net: Add support for Versal NET platform Michal Simek
2022-09-16  8:53 ` [PATCH 2/9] spi: cadence_qspi: " Michal Simek
2022-09-16  8:53 ` [PATCH 3/9] spi: zynqmp_gqspi: Add support for Versal NET Michal Simek
2022-09-16  8:53 ` [PATCH 4/9] clk: versal: Enable clock driver " Michal Simek
2022-09-16  8:53 ` [PATCH 5/9] firmware: zynqmp: Add Versal NET compatible string Michal Simek
2022-09-16  8:53 ` [PATCH 6/9] mailbox: zynqmp: Enable ipi mailbox driver for Versal NET Michal Simek
2022-09-16  8:53 ` [PATCH 7/9] reset: zynqmp: Enable reset " Michal Simek
2022-09-16  8:53 ` [PATCH 8/9] arm64: versal-net: Add defconfig " Michal Simek
2022-09-16  8:53 ` [PATCH 9/9] arm64: versal-net: Add support for mini configuration Michal Simek
2022-09-16  9:06 ` Pali Rohár [this message]

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=20220916090621.xztelkehoypxqsna@pali \
    --to=pali@kernel.org \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.