[PATCH v4 0/3] Add boot-mode property for zynq

Sai Pavan Boddu posted 3 patches 5 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240621125906.1300995-1-sai.pavan.boddu@amd.com
Maintainers: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>, Alistair Francis <alistair@alistair23.me>, Peter Maydell <peter.maydell@linaro.org>
MAINTAINERS                   |  1 +
docs/system/arm/xlnx-zynq.rst | 47 +++++++++++++++++++++++++++++++++++
docs/system/target-arm.rst    |  1 +
hw/arm/xilinx_zynq.c          | 31 +++++++++++++++++++++++
hw/misc/zynq_slcr.c           | 22 +++++++++++++++-
5 files changed, 101 insertions(+), 1 deletion(-)
create mode 100644 docs/system/arm/xlnx-zynq.rst
[PATCH v4 0/3] Add boot-mode property for zynq
Posted by Sai Pavan Boddu 5 months ago
Add a way to update the boot-mode via machine properties.

Changes for V2:
    Make boot-mode property work with string,
    Fixed few code style issues,
    Added zynq board doc.
Changes for V3:
    Mentioned about zynq doc in MAINTAINERS file,
    Stick to small case for mentioning boot modes in doc,
    fixed commit message to mention right property name.
Changes for V4:
    Use strncasecmp,
    Fix boot mode names to use small case in few other places,
    Fix code indentation.

Sai Pavan Boddu (3):
  hw/misc/zynq_slcr: Add boot-mode property
  hw/arm/xilinx_zynq: Add boot-mode property
  docs/system/arm: Add a doc for zynq board

 MAINTAINERS                   |  1 +
 docs/system/arm/xlnx-zynq.rst | 47 +++++++++++++++++++++++++++++++++++
 docs/system/target-arm.rst    |  1 +
 hw/arm/xilinx_zynq.c          | 31 +++++++++++++++++++++++
 hw/misc/zynq_slcr.c           | 22 +++++++++++++++-
 5 files changed, 101 insertions(+), 1 deletion(-)
 create mode 100644 docs/system/arm/xlnx-zynq.rst

-- 
2.34.1
Re: [PATCH v4 0/3] Add boot-mode property for zynq
Posted by Peter Maydell 4 months, 4 weeks ago
On Fri, 21 Jun 2024 at 13:59, Sai Pavan Boddu <sai.pavan.boddu@amd.com> wrote:
>
> Add a way to update the boot-mode via machine properties.
>
> Changes for V2:
>     Make boot-mode property work with string,
>     Fixed few code style issues,
>     Added zynq board doc.
> Changes for V3:
>     Mentioned about zynq doc in MAINTAINERS file,
>     Stick to small case for mentioning boot modes in doc,
>     fixed commit message to mention right property name.
> Changes for V4:
>     Use strncasecmp,
>     Fix boot mode names to use small case in few other places,
>     Fix code indentation.
>
> Sai Pavan Boddu (3):
>   hw/misc/zynq_slcr: Add boot-mode property
>   hw/arm/xilinx_zynq: Add boot-mode property
>   docs/system/arm: Add a doc for zynq board



Applied to target-arm.next, thanks.

-- PMM