From: Drew Fustini <drew@pdp7.com>
To: Michal Wilczynski <m.wilczynski@samsung.com>
Cc: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
guoren@kernel.org, wefu@redhat.com, paul.walmsley@sifive.com,
palmer@dabbelt.com, aou@eecs.berkeley.edu, alex@ghiti.fr,
jszhang@kernel.org, ulf.hansson@linaro.org,
m.szyprowski@samsung.com, linux-pm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-riscv@lists.infradead.org
Subject: Re: [PATCH v8 0/5] TH1520 SoC: Add AON firmware & power-domain support
Date: Thu, 13 Mar 2025 00:56:46 -0700 [thread overview]
Message-ID: <Z9KPvig0dPRO0cX1@x1> (raw)
In-Reply-To: <20250311171900.1549916-1-m.wilczynski@samsung.com>
On Tue, Mar 11, 2025 at 06:18:55PM +0100, Michal Wilczynski wrote:
> This patch series introduces and documents power management (PM) support and
> the AON firmware driver for the T-Head TH1520 SoC, as used on the LicheePi 4A
> board. While part of a larger effort to enable the Imagination BXM-4-64 GPU
> upstream, these patches can merge independently.
>
> Bigger series cover letter:
> https://lore.kernel.org/all/20250219140239.1378758-1-m.wilczynski@samsung.com/
>
> This series is versioned to maintain continuity with the bigger patchset it is
> a subseries of. Please find below a changelog for the AON & power-domain:
>
> v8:
> - add proper cleanup in the th1520_pd_probe()
> - add "suppress_bind_attrs = true", since there is no need to unbound the driver
> during runtime. This simplifies the code by eliminating the remove function
>
> v7:
> - add '#include <linux/slab.h", due to kernel robot issue
>
> v6:
> - split the firmware & power-domain patches into a separate series
>
> v5:
> - changed the AON driver to be a set of library functions rather than a
> standalone driver
>
> v4:
> - added workaround to disable AUDIO power domain to prevent firmware crashes
>
> v3:
> - consolidated device tree representation by merging aon and power-domain nodes
> while maintaining separate drivers internally
> - power-domain driver is now instantiated from within the aon driver
> - fixed optional module dependencies in Kconfig
> - added kernel-doc comments for all exported functions
> - implemented th1520_aon_remove() to properly clean up mailbox channel
> resources
>
> v2:
> - introduced a new firmware driver to manage power-related operations.
> - rewrote the power-domain driver to function alongside the firmware driver.
> These nodes in the device tree lack direct address spaces, despite
> representing HW blocks. Control is achieved via firmware protocol messages
> transmitted through a mailbox to the E902 core.
> - added new dt-bindings for power and firmware nodes.
> - ran dtbs_check and dt_binding_check to ensure compliance.
>
> Michal Wilczynski (5):
> dt-bindings: firmware: thead,th1520: Add support for firmware node
> firmware: thead: Add AON firmware protocol driver
> dt-bindings: power: Add TH1520 SoC power domains
> pmdomain: thead: Add power-domain driver for TH1520
> riscv: Enable PM_GENERIC_DOMAINS for T-Head SoCs
>
> .../bindings/firmware/thead,th1520-aon.yaml | 53 ++++
> MAINTAINERS | 5 +
> arch/riscv/Kconfig.socs | 1 +
> drivers/firmware/Kconfig | 9 +
> drivers/firmware/Makefile | 1 +
> drivers/firmware/thead,th1520-aon.c | 248 ++++++++++++++++++
> drivers/pmdomain/Kconfig | 1 +
> drivers/pmdomain/Makefile | 1 +
> drivers/pmdomain/thead/Kconfig | 12 +
> drivers/pmdomain/thead/Makefile | 2 +
> drivers/pmdomain/thead/th1520-pm-domains.c | 218 +++++++++++++++
> .../dt-bindings/power/thead,th1520-power.h | 19 ++
> .../linux/firmware/thead/thead,th1520-aon.h | 200 ++++++++++++++
> 13 files changed, 770 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/firmware/thead,th1520-aon.yaml
> create mode 100644 drivers/firmware/thead,th1520-aon.c
> create mode 100644 drivers/pmdomain/thead/Kconfig
> create mode 100644 drivers/pmdomain/thead/Makefile
> create mode 100644 drivers/pmdomain/thead/th1520-pm-domains.c
> create mode 100644 include/dt-bindings/power/thead,th1520-power.h
> create mode 100644 include/linux/firmware/thead/thead,th1520-aon.h
>
> --
> 2.34.1
For the series:
Acked-by: Drew Fustini <drew@pdp7.com>
next prev parent reply other threads:[~2025-03-13 7:56 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20250311172030eucas1p12dda42760f751174e774b8d1a3d3f4cd@eucas1p1.samsung.com>
2025-03-11 17:18 ` [PATCH v8 0/5] TH1520 SoC: Add AON firmware & power-domain support Michal Wilczynski
2025-03-11 17:18 ` [PATCH v8 1/5] dt-bindings: firmware: thead,th1520: Add support for firmware node Michal Wilczynski
2025-03-11 17:18 ` [PATCH v8 2/5] firmware: thead: Add AON firmware protocol driver Michal Wilczynski
2025-03-11 17:18 ` [PATCH v8 3/5] dt-bindings: power: Add TH1520 SoC power domains Michal Wilczynski
2025-03-11 17:18 ` [PATCH v8 4/5] pmdomain: thead: Add power-domain driver for TH1520 Michal Wilczynski
2025-03-11 17:19 ` [PATCH v8 5/5] riscv: Enable PM_GENERIC_DOMAINS for T-Head SoCs Michal Wilczynski
2025-04-04 18:55 ` Drew Fustini
2025-04-07 15:50 ` Conor Dooley
2025-03-12 13:40 ` [PATCH v8 0/5] TH1520 SoC: Add AON firmware & power-domain support Ulf Hansson
2025-03-12 14:31 ` Michal Wilczynski
2025-03-13 8:12 ` Drew Fustini
2025-03-13 8:19 ` Drew Fustini
2025-03-13 7:56 ` Drew Fustini [this message]
2025-03-13 13:46 ` Ulf Hansson
2025-04-07 15:53 ` (subset) " Conor Dooley
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=Z9KPvig0dPRO0cX1@x1 \
--to=drew@pdp7.com \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=guoren@kernel.org \
--cc=jszhang@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=m.szyprowski@samsung.com \
--cc=m.wilczynski@samsung.com \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=robh@kernel.org \
--cc=ulf.hansson@linaro.org \
--cc=wefu@redhat.com \
/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