All of lore.kernel.org
 help / color / mirror / Atom feed
From: Praveen Teja Kundanala <praveen.teja.kundanala@amd.com>
To: <srinivas.kandagatla@linaro.org>, <robh+dt@kernel.org>,
	<krzysztof.kozlowski+dt@linaro.org>, <conor+dt@kernel.org>,
	<michal.simek@amd.com>, <devicetree@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>
Cc: <linux-kernel@vger.kernel.org->, <praveent@amd.com>
Subject: [PATCH V3 0/3] Add ZynqMP efuse access support
Date: Mon, 8 Jan 2024 10:56:14 +0530	[thread overview]
Message-ID: <20240108052617.32510-1-praveen.teja.kundanala@amd.com> (raw)

Add following support
 - ZynqMP efuse firmware API for efuse access
 - Convert txt to yaml file
 - Update driver to provide support to
    read/write ZynqMP efuse memory

The first patch depends on
https://lore.kernel.org/linux-arm-kernel/20231004094116.27128-2-jay.buddhabhatti@amd.com/
please consider applying these patches accordingly.

Praveen Teja Kundanala (3):
  firmware: xilinx: Add ZynqMP efuse access API
  dt-bindings: nvmem: Convert xlnx,zynqmp-nvmem.txt to yaml
  nvmem: zynqmp_nvmem: Add support to access efuse

 .../bindings/nvmem/xlnx,zynqmp-nvmem.txt      |  46 ----
 .../bindings/nvmem/xlnx,zynqmp-nvmem.yaml     |  42 ++++
 MAINTAINERS                                   |   8 +
 drivers/firmware/xilinx/zynqmp.c              |  25 ++
 drivers/nvmem/zynqmp_nvmem.c                  | 215 +++++++++++++++---
 include/linux/firmware/xlnx-zynqmp.h          |   8 +
 6 files changed, 267 insertions(+), 77 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/nvmem/xlnx,zynqmp-nvmem.txt
 create mode 100644 Documentation/devicetree/bindings/nvmem/xlnx,zynqmp-nvmem.yaml

-- 
2.38.1


WARNING: multiple messages have this Message-ID (diff)
From: Praveen Teja Kundanala <praveen.teja.kundanala@amd.com>
To: <srinivas.kandagatla@linaro.org>, <robh+dt@kernel.org>,
	<krzysztof.kozlowski+dt@linaro.org>, <conor+dt@kernel.org>,
	<michal.simek@amd.com>, <devicetree@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>
Cc: <linux-kernel@vger.kernel.org->, <praveent@amd.com>
Subject: [PATCH V3 0/3] Add ZynqMP efuse access support
Date: Mon, 8 Jan 2024 10:56:14 +0530	[thread overview]
Message-ID: <20240108052617.32510-1-praveen.teja.kundanala@amd.com> (raw)

Add following support
 - ZynqMP efuse firmware API for efuse access
 - Convert txt to yaml file
 - Update driver to provide support to
    read/write ZynqMP efuse memory

The first patch depends on
https://lore.kernel.org/linux-arm-kernel/20231004094116.27128-2-jay.buddhabhatti@amd.com/
please consider applying these patches accordingly.

Praveen Teja Kundanala (3):
  firmware: xilinx: Add ZynqMP efuse access API
  dt-bindings: nvmem: Convert xlnx,zynqmp-nvmem.txt to yaml
  nvmem: zynqmp_nvmem: Add support to access efuse

 .../bindings/nvmem/xlnx,zynqmp-nvmem.txt      |  46 ----
 .../bindings/nvmem/xlnx,zynqmp-nvmem.yaml     |  42 ++++
 MAINTAINERS                                   |   8 +
 drivers/firmware/xilinx/zynqmp.c              |  25 ++
 drivers/nvmem/zynqmp_nvmem.c                  | 215 +++++++++++++++---
 include/linux/firmware/xlnx-zynqmp.h          |   8 +
 6 files changed, 267 insertions(+), 77 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/nvmem/xlnx,zynqmp-nvmem.txt
 create mode 100644 Documentation/devicetree/bindings/nvmem/xlnx,zynqmp-nvmem.yaml

-- 
2.38.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2024-01-08  5:26 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-08  5:26 Praveen Teja Kundanala [this message]
2024-01-08  5:26 ` [PATCH V3 0/3] Add ZynqMP efuse access support Praveen Teja Kundanala
2024-01-08  5:26 ` [PATCH V3 1/3] firmware: xilinx: Add ZynqMP efuse access API Praveen Teja Kundanala
2024-01-08  5:26   ` Praveen Teja Kundanala
2024-01-08  8:16   ` Michal Simek
2024-01-08  8:16     ` Michal Simek
2024-01-29  7:20   ` Michal Simek
2024-01-29  7:20     ` Michal Simek
2024-01-08  5:26 ` [PATCH V3 2/3] dt-bindings: nvmem: Convert xlnx,zynqmp-nvmem.txt to yaml Praveen Teja Kundanala
2024-01-08  5:26   ` Praveen Teja Kundanala
2024-01-08  7:08   ` Krzysztof Kozlowski
2024-01-08  7:08     ` Krzysztof Kozlowski
2024-01-08 10:19     ` Kundanala, Praveen Teja
2024-01-08 10:19       ` Kundanala, Praveen Teja
2024-01-08  5:26 ` [PATCH V3 3/3] nvmem: zynqmp_nvmem: Add support to access efuse Praveen Teja Kundanala
2024-01-08  5:26   ` Praveen Teja Kundanala
2024-01-27 11:42   ` Srinivas Kandagatla
2024-01-27 11:42     ` Srinivas Kandagatla
2024-01-27 11:43 ` (subset) [PATCH V3 0/3] Add ZynqMP efuse access support Srinivas Kandagatla
2024-01-27 11:43   ` Srinivas Kandagatla

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=20240108052617.32510-1-praveen.teja.kundanala@amd.com \
    --to=praveen.teja.kundanala@amd.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org- \
    --cc=michal.simek@amd.com \
    --cc=praveent@amd.com \
    --cc=robh+dt@kernel.org \
    --cc=srinivas.kandagatla@linaro.org \
    /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.