mbox series

[0/4] xilinx: Add SoC Xilinx driver for zynqmp & versal

Message ID cover.1628603101.git.michal.simek@xilinx.com
Headers show
Series xilinx: Add SoC Xilinx driver for zynqmp & versal | expand

Message

Michal Simek Aug. 10, 2021, 1:45 p.m. UTC
Hi,

This patch series adds support for SoC Xilinx driver to get SoC family
and revision. Print SoC info using print_cpuinfo() at booting stage.

Thanks,
Michal


T Karthik Reddy (4):
  soc: xilinx: zynqmp: Add soc_xilinx_zynqmp driver
  soc: xilinx: versal: Add soc_xilinx_versal driver
  xilinx: common: Add function to print SoC info
  xilinx: Enable config to display cpuinfo

 MAINTAINERS                                  |  2 +
 arch/arm/Kconfig                             |  2 +
 arch/arm/mach-versal/cpu.c                   |  5 ++
 arch/arm/mach-versal/include/mach/hardware.h |  4 +
 arch/arm/mach-zynqmp/cpu.c                   |  5 ++
 arch/arm/mach-zynqmp/include/mach/hardware.h |  3 +
 board/xilinx/common/board.c                  | 26 +++++++
 configs/xilinx_versal_virt_defconfig         |  2 +-
 configs/xilinx_zynqmp_virt_defconfig         |  2 +-
 drivers/soc/Kconfig                          | 16 ++++
 drivers/soc/Makefile                         |  2 +
 drivers/soc/soc_xilinx_versal.c              | 76 +++++++++++++++++++
 drivers/soc/soc_xilinx_zynqmp.c              | 78 ++++++++++++++++++++
 13 files changed, 221 insertions(+), 2 deletions(-)
 create mode 100644 drivers/soc/soc_xilinx_versal.c
 create mode 100644 drivers/soc/soc_xilinx_zynqmp.c

Comments

Michal Simek Aug. 23, 2021, 6:51 a.m. UTC | #1
Ășt 10. 8. 2021 v 15:45 odesĂ­latel Michal Simek <michal.simek@xilinx.com> napsal:
>
> Hi,
>
> This patch series adds support for SoC Xilinx driver to get SoC family
> and revision. Print SoC info using print_cpuinfo() at booting stage.
>
> Thanks,
> Michal
>
>
> T Karthik Reddy (4):
>   soc: xilinx: zynqmp: Add soc_xilinx_zynqmp driver
>   soc: xilinx: versal: Add soc_xilinx_versal driver
>   xilinx: common: Add function to print SoC info
>   xilinx: Enable config to display cpuinfo
>
>  MAINTAINERS                                  |  2 +
>  arch/arm/Kconfig                             |  2 +
>  arch/arm/mach-versal/cpu.c                   |  5 ++
>  arch/arm/mach-versal/include/mach/hardware.h |  4 +
>  arch/arm/mach-zynqmp/cpu.c                   |  5 ++
>  arch/arm/mach-zynqmp/include/mach/hardware.h |  3 +
>  board/xilinx/common/board.c                  | 26 +++++++
>  configs/xilinx_versal_virt_defconfig         |  2 +-
>  configs/xilinx_zynqmp_virt_defconfig         |  2 +-
>  drivers/soc/Kconfig                          | 16 ++++
>  drivers/soc/Makefile                         |  2 +
>  drivers/soc/soc_xilinx_versal.c              | 76 +++++++++++++++++++
>  drivers/soc/soc_xilinx_zynqmp.c              | 78 ++++++++++++++++++++
>  13 files changed, 221 insertions(+), 2 deletions(-)
>  create mode 100644 drivers/soc/soc_xilinx_versal.c
>  create mode 100644 drivers/soc/soc_xilinx_zynqmp.c
>
> --
> 2.32.0
>

Applied.
M