devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Drew Fustini <drew@pdp7.com>
To: Michal Wilczynski <m.wilczynski@samsung.com>
Cc: Guo Ren <guoren@kernel.org>, Fu Wei <wefu@redhat.com>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Bartosz Golaszewski <brgl@bgdev.pl>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	Frank Binns <frank.binns@imgtec.com>,
	Matt Coster <matt.coster@imgtec.com>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
	Paul Walmsley <paul.walmsley@sifive.com>,
	Palmer Dabbelt <palmer@dabbelt.com>,
	Albert Ou <aou@eecs.berkeley.edu>,
	Alexandre Ghiti <alex@ghiti.fr>,
	Ulf Hansson <ulf.hansson@linaro.org>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	linux-riscv@lists.infradead.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v3 0/8] Add TH1520 GPU support with power sequencing
Date: Mon, 2 Jun 2025 10:33:07 -0700	[thread overview]
Message-ID: <aD3gU6lS1eMtkOTU@x1> (raw)
In-Reply-To: <d949f2b5-1351-4778-9716-eaec1e2b1ba7@samsung.com>

On Mon, Jun 02, 2025 at 10:03:09AM +0200, Michal Wilczynski wrote:
> 
> 
> On 6/2/25 01:05, Drew Fustini wrote:
> > On Fri, May 30, 2025 at 12:23:47AM +0200, Michal Wilczynski wrote:
> >> This patch series introduces support for the Imagination IMG BXM-4-64
> >> GPU found on the T-HEAD TH1520 SoC. A key aspect of this support is
> >> managing the GPU's complex power-up and power-down sequence, which
> >> involves multiple clocks and resets.
> >>
> >> The TH1520 GPU requires a specific sequence to be followed for its
> >> clocks and resets to ensure correct operation. Initial discussions and
> >> an earlier version of this series explored managing this via the generic
> >> power domain (genpd) framework. However, following further discussions
> >> with kernel maintainers [1], the approach has been reworked to utilize
> >> the dedicated power sequencing (pwrseq) framework.
> >>
> >> This revised series now employs a new pwrseq provider driver
> >> (pwrseq-thead-gpu.c) specifically for the TH1520 GPU. This driver
> >> encapsulates the SoC specific power sequence details. The Imagination
> >> GPU driver (pvr_device.c) is updated to act as a consumer of this power
> >> sequencer, requesting the "gpu-power" target. The sequencer driver,
> >> during its match phase with the GPU device, acquires the necessary clock
> >> and reset handles from the GPU device node to perform the full sequence.
> >>
> >> This approach aligns with the goal of abstracting SoC specific power
> >> management details away from generic device drivers and leverages the
> >> pwrseq framework as recommended.
> >>
> >> The series is structured as follows:
> >>
> >> Patch 1: Adds device tree bindings for the new T-HEAD TH1520 GPU
> >>          power sequencer provider.
> >> Patch 2: Introduces the pwrseq-thead-gpu driver to manage the GPU's
> >>          power-on/off sequence.
> >> Patch 3: Updates the Imagination DRM driver to utilize the pwrseq
> >>          framework for TH1520 GPU power management.
> >> Patch 4: Adds the TH1520 GPU compatible string to the Imagination
> >>          GPU DT bindings.
> >> Patch 5: Adds the missing reset controller header include in the
> >>          TH1520 DTS include file.
> >> Patch 6: Adds the device tree node for the GPU power sequencer to
> >>          the TH1520 DTS include file.
> >> Patch 7: Adds the GPU device tree node for the IMG BXM-4-64 GPU to
> >>          the TH1520 DTS include file.
> >> Patch 8: Enables compilation of the drm/imagination on the RISC-V
> >>          architecture
> >>
> >> This patchset finishes the work started in bigger series [2] by adding
> >> all the remaining GPU power sequencing piece. After this patchset the GPU
> >> probes correctly.
> >>
> >> This series supersedes the previous genpd based approach. Testing on
> >> T-HEAD TH1520 SoC indicates the new pwrseq based solution works
> >> correctly.
> >>
> >> This time it's based on linux-next, as there are dependent patches not
> >> yet merged, but present in linux-next like clock and reset patches.
> >>
> >> An open point in Patch 7/8 concerns the GPU memory clock (gpu_mem_clk),
> >> defined as a fixed-clock. The specific hardware frequency for this clock
> >> on the TH1520 could not be determined from available public
> >> documentation. Consequently, clock-frequency = <0>; has been used as a
> >> placeholder to enable driver functionality.
> >>
> >> Link to v2 of this series - [3].
> >>
> >> v3:
> >>
> >>  - re-worked cover letter completely
> >>  - complete architectural rework from using extended genpd callbacks to a
> >>    dedicated pwrseq provider driver
> >>  - introduced pwrseq-thead-gpu.c and associated DT bindings
> >>    (thead,th1520-gpu-pwrseq)
> >>  - the Imagination driver now calls devm_pwrseq_get() and uses
> >>    pwrseq_power_on() / pwrseq_power_off() for the TH1520 GPU
> >>  - removed the platform_resources_managed flag from dev_pm_info and
> >>    associated logic
> >>  - the new pwrseq driver's match() function now acquires consumer-specific
> >>    resources (GPU clocks, GPU core reset) directly from the consumer device
> >>
> >> v2:
> >>
> >> Extended the series by adding two new commits:
> >>  - introduced a new platform_resources_managed flag in dev_pm_info along
> >>    with helper functions, allowing drivers to detect when clocks and resets
> >>    are managed by the platform
> >>  - updated the DRM Imagination driver to skip claiming clocks when
> >>    platform_resources_managed is set
> >>
> >> Split the original bindings update:
> >>  - the AON firmware bindings now only add the GPU clkgen reset (the GPU
> >>    core reset remains handled by the GPU node)
> >>
> >> Reworked the TH1520 PM domain driver to:
> >>  - acquire GPU clocks and reset dynamically using attach_dev/detach_dev
> >>    callbacks
> >>  - handle clkgen reset internally, while GPU core reset is obtained from
> >>    the consumer device node
> >>  - added a check to enforce that only a single device can be attached to
> >>    the GPU PM domain
> >>
> >> [1] - https://lore.kernel.org/all/CAPDyKFpi6_CD++a9sbGBvJCuBSQS6YcpNttkRQhQMTWy1yyrRg@mail.gmail.com/
> >> [2] - https://lore.kernel.org/all/20250219140239.1378758-1-m.wilczynski@samsung.com/
> >> [3] - https://lore.kernel.org/all/20250414-apr_14_for_sending-v2-0-70c5af2af96c@samsung.com/
> >>
> >> ---
> >> Michal Wilczynski (8):
> >>       dt-bindings: power: Add T-HEAD TH1520 GPU power sequencer
> >>       power: sequencing: Add T-HEAD TH1520 GPU power sequencer driver
> >>       drm/imagination: Use pwrseq for TH1520 GPU power management
> >>       dt-bindings: gpu: Add TH1520 GPU compatible to Imagination bindings
> >>       riscv: dts: thead: th1520: Add missing reset controller header include
> >>       riscv: dts: thead: Add GPU power sequencer node
> >>       riscv: dts: thead: th1520: Add IMG BXM-4-64 GPU node
> >>       drm/imagination: Enable PowerVR driver for RISC-V
> >>
> >>  .../devicetree/bindings/gpu/img,powervr-rogue.yaml |   9 +-
> >>  .../bindings/power/thead,th1520-pwrseq.yaml        |  42 +++++
> >>  MAINTAINERS                                        |   2 +
> >>  arch/riscv/boot/dts/thead/th1520.dtsi              |  29 ++++
> >>  drivers/gpu/drm/imagination/Kconfig                |   3 +-
> >>  drivers/gpu/drm/imagination/pvr_device.c           |  33 +++-
> >>  drivers/gpu/drm/imagination/pvr_device.h           |   6 +
> >>  drivers/gpu/drm/imagination/pvr_power.c            |  82 +++++----
> >>  drivers/power/sequencing/Kconfig                   |   8 +
> >>  drivers/power/sequencing/Makefile                  |   1 +
> >>  drivers/power/sequencing/pwrseq-thead-gpu.c        | 183 +++++++++++++++++++++
> >>  11 files changed, 363 insertions(+), 35 deletions(-)
> >> ---
> >> base-commit: 49473fe7fdb5fbbe5bbfa51083792c17df63d317
> >> change-id: 20250414-apr_14_for_sending-5b3917817acc
> >>
> >> Best regards,
> >> -- 
> >> Michal Wilczynski <m.wilczynski@samsung.com>
> >>
> > 
> > Thank you for continuing to work on this series.
> > 
> > I applied it to next-20250530 and the boot hangs:
> > 
> > <snip>
> > [    0.895622] mmc0: new HS400 MMC card at address 0001
> > [    0.902638] mmcblk0: mmc0:0001 8GTF4R 7.28 GiB
> > [    0.915454]  mmcblk0: p1 p2 p3
> > [    0.916613] debug_vm_pgtable: [debug_vm_pgtable         ]: Validating architecture page table helpers
> > [    0.920107] mmcblk0boot0: mmc0:0001 8GTF4R 4.00 MiB
> > [    0.936592] mmcblk0boot1: mmc0:0001 8GTF4R 4.00 MiB
> > [    0.944986] mmcblk0rpmb: mmc0:0001 8GTF4R 512 KiB, chardev (243:0)
> > [    0.947700] mmc1: new UHS-I speed DDR50 SDHC card at address aaaa
> > [    0.961368] mmcblk1: mmc1:aaaa SU16G 14.8 GiB
> > [    0.969639]  mmcblk1: p1 p2 p3
> > [    0.986688] printk: legacy console [ttyS0] disabled
> > [    0.992468] ffe7014000.serial: ttyS0 at MMIO 0xffe7014000 (irq = 23, base_baud = 6250000) is a 16550A
> > [    1.002085] printk: legacy console [ttyS0] enabled
> > [    1.002085] printk: legacy console [ttyS0] enabled
> > [    1.011784] printk: legacy bootconsole [uart0] disabled
> > [    1.011784] printk: legacy bootconsole [uart0] disabled
> > [    1.024633] stackdepot: allocating hash table of 524288 entries via kvcalloc
> > <no more output>
> > 
> > I pasted the full boot log [1]. I have clk_ignore_unused in the kernel
> > cmdline so I don't think it is related to disabling clocks. Boot does
> > complete okay if I set the gpu node status to disabled.
> > 
> > Any ideas of what might fix the boot hang?
> > 
> > Thanks,
> > Drew
> 
> Hi,
> Thanks a lot for testing and promptly providing debug data. I think the
> problem is with the fallback logic implemented in the pvr_device.c:
> 	/*
> 	 * Try to get a power sequencer. If successful, it will handle clocks
> 	 * and resets. Otherwise, we fall back to managing them ourselves.
> 	 */
> 	pvr_dev->pwrseq = devm_pwrseq_get(dev, "gpu-power");
> 	if (IS_ERR(pvr_dev->pwrseq)) {
> 		int pwrseq_err = PTR_ERR(pvr_dev->pwrseq);
> 
> 		/*
> 		 * If the error is -EPROBE_DEFER, it's because the
> 		 * optional sequencer provider is not present
> 		 * and it's safe to fall back on manual power-up.
> 		 */
> 		if (pwrseq_err == -EPROBE_DEFER)
> 			pvr_dev->pwrseq = NULL;
> 		else
> 			return dev_err_probe(dev, pwrseq_err,
> 					     "Failed to get power sequencer\n");
> 	}
> 
> 
> Since you have:
> # CONFIG_POWER_SEQUENCING_THEAD_GPU is not set
> The fallback logic assumes that there is no pwrseq provider for
> 'gpu-power' and falls back on generic driver to do the initial power
> sequence. Obviously for TH1520 the generic driver fails to do that
> correctly, and the register access hangs.

Ah! Yeah, I missed setting CONFIG_POWER_SEQUENCING_THEAD_GPU. The boot
completes okay now that is enabled.

> 
> So the code seems to behave as designed.
> 
> By the way, there are quite a lot of Kconfig options added recently to
> TH1520 SoC that haven't made it's way to defconfig for risc-v. Do you
> think it's a good idea to add them there ?

Yeah, I think we should have all the recent Kconfing options enabled by
default. I'm not sure if it should be in the riscv defconfig and as new
selects under ARCH_THEAD in Kconfig.socs. I just asked conor and palmer
on irc to see what would work best.

Thanks,
Drew

  reply	other threads:[~2025-06-02 17:33 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20250529222402eucas1p1c9e0ddd3efd62e078e5de2cf71655f58@eucas1p1.samsung.com>
2025-05-29 22:23 ` [PATCH v3 0/8] Add TH1520 GPU support with power sequencing Michal Wilczynski
     [not found]   ` <CGME20250529222403eucas1p1923fe09240be34e3bbadf16822574d75@eucas1p1.samsung.com>
2025-05-29 22:23     ` [PATCH v3 1/8] dt-bindings: power: Add T-HEAD TH1520 GPU power sequencer Michal Wilczynski
2025-06-02 14:46       ` Bartosz Golaszewski
2025-06-02 20:29         ` Michal Wilczynski
2025-06-03 13:19           ` Krzysztof Kozlowski
2025-06-03 13:35             ` Bartosz Golaszewski
2025-06-03 14:49               ` Bartosz Golaszewski
2025-06-03 20:07                 ` Michal Wilczynski
2025-06-03 18:24               ` Michal Wilczynski
2025-06-04  6:36                 ` Bartosz Golaszewski
     [not found]   ` <CGME20250529222404eucas1p2856b44ad410171edfc2190127dafee0c@eucas1p2.samsung.com>
2025-05-29 22:23     ` [PATCH v3 2/8] power: sequencing: Add T-HEAD TH1520 GPU power sequencer driver Michal Wilczynski
     [not found]   ` <CGME20250529222405eucas1p18ed1254bf1b2d78468734656fec537e1@eucas1p1.samsung.com>
2025-05-29 22:23     ` [PATCH v3 3/8] drm/imagination: Use pwrseq for TH1520 GPU power management Michal Wilczynski
2025-06-03 13:28       ` Krzysztof Kozlowski
2025-06-03 19:43         ` Michal Wilczynski
2025-06-04  6:36           ` Krzysztof Kozlowski
2025-06-04 11:53             ` Michal Wilczynski
2025-06-04 12:07               ` Krzysztof Kozlowski
2025-06-05  7:47                 ` Michal Wilczynski
2025-06-05  8:10                   ` Bartosz Golaszewski
2025-06-05  9:07                     ` Krzysztof Kozlowski
2025-06-11 12:01                     ` Michal Wilczynski
2025-06-11 12:32                       ` Bartosz Golaszewski
2025-06-13  6:47                         ` Krzysztof Kozlowski
2025-06-13  6:44                       ` Krzysztof Kozlowski
2025-06-13  8:25                         ` Michal Wilczynski
2025-06-13  9:49                           ` Michal Wilczynski
2025-06-13 10:01                             ` Krzysztof Kozlowski
2025-06-13 10:41                           ` Bartosz Golaszewski
     [not found]   ` <CGME20250529222406eucas1p117082ce4f06921f71bbc442c47e58574@eucas1p1.samsung.com>
2025-05-29 22:23     ` [PATCH v3 4/8] dt-bindings: gpu: Add TH1520 GPU compatible to Imagination bindings Michal Wilczynski
2025-06-03 13:16       ` Krzysztof Kozlowski
     [not found]   ` <CGME20250529222407eucas1p233be883d7e84e5a000e4d44b37cf7265@eucas1p2.samsung.com>
2025-05-29 22:23     ` [PATCH v3 5/8] riscv: dts: thead: th1520: Add missing reset controller header include Michal Wilczynski
2025-06-01 17:40       ` Drew Fustini
2025-06-03 13:20       ` Krzysztof Kozlowski
2025-06-03 18:26         ` Michal Wilczynski
2025-06-03 18:49           ` Krzysztof Kozlowski
     [not found]   ` <CGME20250529222408eucas1p20f62cea4c9c64bb5dda6db1fd38fb333@eucas1p2.samsung.com>
2025-05-29 22:23     ` [PATCH v3 6/8] riscv: dts: thead: Add GPU power sequencer node Michal Wilczynski
2025-06-03 13:22       ` Krzysztof Kozlowski
2025-06-03 18:45         ` Michal Wilczynski
2025-06-04 12:33           ` Bartosz Golaszewski
     [not found]   ` <CGME20250529222410eucas1p2e1d41a2fc717caef1aed51367a7db944@eucas1p2.samsung.com>
2025-05-29 22:23     ` [PATCH v3 7/8] riscv: dts: thead: th1520: Add IMG BXM-4-64 GPU node Michal Wilczynski
2025-06-03 12:27       ` Ulf Hansson
2025-06-04 12:40         ` Michal Wilczynski
2025-06-04 13:57           ` Ulf Hansson
2025-06-04 16:47         ` Matt Coster
2025-06-05  9:57           ` Ulf Hansson
2025-06-05 10:34             ` Matt Coster
     [not found]   ` <CGME20250529222411eucas1p27e4b662d6f120c4e83d808cb03e4bb1e@eucas1p2.samsung.com>
2025-05-29 22:23     ` [PATCH v3 8/8] drm/imagination: Enable PowerVR driver for RISC-V Michal Wilczynski
2025-06-01 23:05   ` [PATCH v3 0/8] Add TH1520 GPU support with power sequencing Drew Fustini
2025-06-02  8:03     ` Michal Wilczynski
2025-06-02 17:33       ` Drew Fustini [this message]
2025-06-02 21:39         ` Drew Fustini
2025-06-03 12:25   ` Ulf Hansson
2025-06-03 18:29     ` Michal Wilczynski

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=aD3gU6lS1eMtkOTU@x1 \
    --to=drew@pdp7.com \
    --cc=airlied@gmail.com \
    --cc=alex@ghiti.fr \
    --cc=aou@eecs.berkeley.edu \
    --cc=brgl@bgdev.pl \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=frank.binns@imgtec.com \
    --cc=guoren@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=maarten.lankhorst@linux.intel.com \
    --cc=matt.coster@imgtec.com \
    --cc=mripard@kernel.org \
    --cc=p.zabel@pengutronix.de \
    --cc=palmer@dabbelt.com \
    --cc=paul.walmsley@sifive.com \
    --cc=robh@kernel.org \
    --cc=simona@ffwll.ch \
    --cc=tzimmermann@suse.de \
    --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;
as well as URLs for NNTP newsgroup(s).