mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Marc Zyngier <maz@kernel.org>
To: Pavan Kondeti <pavan.kondeti@oss.qualcomm.com>
Cc: linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Lorenzo Pieralisi <lpieralisi@kernel.org>,
	Hanjun Guo <guohanjun@huawei.com>,
	Sudeep Holla <sudeep.holla@arm.com>,
	"Rafael J. Wysocki" <rafael@kernel.org>,
	Daniel Lezcano <daniel.lezcano@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Mark Rutland <mark.rutland@arm.com>
Subject: Re: [PATCH 1/4] ACPI: GTDT: Generate platform devices for MMIO timers
Date: Thu, 30 Oct 2025 10:33:29 +0000	[thread overview]
Message-ID: <86v7jwvfuu.wl-maz@kernel.org> (raw)
In-Reply-To: <1eafe745-068b-4c15-a3d0-14e7222970fd@quicinc.com>

On Thu, 30 Oct 2025 08:10:31 +0000,
Pavan Kondeti <pavan.kondeti@oss.qualcomm.com> wrote:
> 
> On Thu, Aug 07, 2025 at 05:02:40PM +0100, Marc Zyngier wrote:
> > In preparation for the MMIO timer support code becoming an actual
> > driver, mimic what is done for the SBSA watchdog and expose
> > a synthetic device for each MMIO timer block.
> > 
> > Signed-off-by: Marc Zyngier <maz@kernel.org>
> > ---
> >  drivers/acpi/arm64/gtdt.c | 29 +++++++++++++++++++++++++----
> >  1 file changed, 25 insertions(+), 4 deletions(-)
> > 
> > diff --git a/drivers/acpi/arm64/gtdt.c b/drivers/acpi/arm64/gtdt.c
> > index 70f8290b659de..fd995a1d3d248 100644
> > --- a/drivers/acpi/arm64/gtdt.c
> > +++ b/drivers/acpi/arm64/gtdt.c
> > @@ -388,11 +388,11 @@ static int __init gtdt_import_sbsa_gwdt(struct acpi_gtdt_watchdog *wd,
> >  	return 0;
> >  }
> >  
> > -static int __init gtdt_sbsa_gwdt_init(void)
> > +static int __init gtdt_platform_timer_init(void)
> >  {
> >  	void *platform_timer;
> >  	struct acpi_table_header *table;
> > -	int ret, timer_count, gwdt_count = 0;
> > +	int ret, timer_count, gwdt_count = 0, mmio_timer_count = 0;
> >  
> >  	if (acpi_disabled)
> >  		return 0;
> > @@ -414,20 +414,41 @@ static int __init gtdt_sbsa_gwdt_init(void)
> >  		goto out_put_gtdt;
> >  
> >  	for_each_platform_timer(platform_timer) {
> > +		ret = 0;
> > +
> >  		if (is_non_secure_watchdog(platform_timer)) {
> >  			ret = gtdt_import_sbsa_gwdt(platform_timer, gwdt_count);
> >  			if (ret)
> > -				break;
> > +				continue;
> >  			gwdt_count++;
> > +		} else 	if (is_timer_block(platform_timer)) {
> > +			struct arch_timer_mem atm = {};
> > +			struct platform_device *pdev;
> > +
> > +			ret = gtdt_parse_timer_block(platform_timer, &atm);
> > +			if (ret)
> > +				continue;
> > +
> > +			pdev = platform_device_register_data(NULL, "gtdt-arm-mmio-timer",
> > +							     gwdt_count, &atm,
> > +							     sizeof(atm));
> 
> Did you mean to pass `mmio_timer_count` as the `id` argument to
> platform_device_register_data()?

I did. Clearly a brain fart. And looking at this again, there are
additional cleanups that can be applied. I'll spin something shortly.

Thanks,

	M.

-- 
Without deviation from the norm, progress is not possible.

  reply	other threads:[~2025-10-30 10:33 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-07 16:02 [PATCH 0/4] clocksource: Add standalone MMIO ARM arch timer driver Marc Zyngier
2025-08-07 16:02 ` [PATCH 1/4] ACPI: GTDT: Generate platform devices for MMIO timers Marc Zyngier
2025-10-30  8:10   ` Pavan Kondeti
2025-10-30 10:33     ` Marc Zyngier [this message]
2025-08-07 16:02 ` [PATCH 2/4] clocksource/drivers/arm_arch_timer: Add standalone MMIO driver Marc Zyngier
2025-08-14 10:13   ` Steven Price
2025-08-14 10:49     ` Marc Zyngier
2025-08-14 11:14       ` Marc Zyngier
2025-08-14 12:23         ` Steven Price
2025-08-14 12:42           ` Marc Zyngier
2025-08-14 14:02       ` Daniel Lezcano
2025-08-07 16:02 ` [PATCH 3/4] clocksource/drivers/arm_arch_timer_mmio: Switch over to standalone driver Marc Zyngier
2025-08-07 16:02 ` [PATCH 4/4] clocksource/drivers/arm_arch_timer_mmio: Add MMIO clocksource Marc Zyngier
2025-08-13 10:55 ` [PATCH 0/4] clocksource: Add standalone MMIO ARM arch timer driver Sudeep Holla
2025-08-13 11:35   ` Alexandru Elisei
2025-08-13 11:49     ` Marc Zyngier
2025-08-13 12:03       ` Daniel Lezcano
2025-08-13 12:32     ` Sudeep Holla

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=86v7jwvfuu.wl-maz@kernel.org \
    --to=maz@kernel.org \
    --cc=daniel.lezcano@linaro.org \
    --cc=guohanjun@huawei.com \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lpieralisi@kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pavan.kondeti@oss.qualcomm.com \
    --cc=rafael@kernel.org \
    --cc=sudeep.holla@arm.com \
    --cc=tglx@linutronix.de \
    /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

all inboxes | Powered by JetHome®