From: Jon Hunter <jonathanh@nvidia.com>
To: Kartik Rajput <kkartik@nvidia.com>,
alexandre.belloni@bootlin.com, thierry.reding@gmail.com,
andriy.shevchenko@linux.intel.com, linux-rtc@vger.kernel.org,
linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 2/3] rtc: tegra: Add ACPI support
Date: Fri, 24 Oct 2025 11:48:22 +0100 [thread overview]
Message-ID: <b6d9c043-8627-4e12-b2db-be4eb50f78d8@nvidia.com> (raw)
In-Reply-To: <20251024064952.775883-2-kkartik@nvidia.com>
On 24/10/2025 07:49, Kartik Rajput wrote:
> Add ACPI support for Tegra RTC, which is available on Tegra241 and
> Tegra410. Both Tegra241 and Tegra410 use the same ACPI ID 'NVDA0280'.
> When ACPI boot is used, the RTC clock is configured by UEFI before
> the kernel boots. On device-tree boot, the probe must fail if clocks are
> not provided in the device-tree.
>
> Signed-off-by: Kartik Rajput <kkartik@nvidia.com>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
> Changes in v3:
> * Add patch to use devm_clk_get_enabled().
> * Add patch to use pm_sleep_ptr().
> * Update commit message to specify clocks are requried for
> device-tree boot.
> Changes in v2:
> * Dropped "linux/acpi.h" from includes.
> * Dropped redundant ', 0' part from tegra_rtc_acpi_match.
> * Replaced "is_of_node(dev_fwnode(&pdev->dev))" with
> "dev_of_node(&pdev->dev)" to check device of node.
> * Dropped redundant of_node checks before accessing clock
> related APIs.
> ---
> drivers/rtc/rtc-tegra.c | 15 ++++++++++++---
> 1 file changed, 12 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/rtc/rtc-tegra.c b/drivers/rtc/rtc-tegra.c
> index e8c83a6a96b3..9e4e9c88178f 100644
> --- a/drivers/rtc/rtc-tegra.c
> +++ b/drivers/rtc/rtc-tegra.c
> @@ -274,6 +274,12 @@ static const struct of_device_id tegra_rtc_dt_match[] = {
> };
> MODULE_DEVICE_TABLE(of, tegra_rtc_dt_match);
>
> +static const struct acpi_device_id tegra_rtc_acpi_match[] = {
> + { "NVDA0280" },
> + { }
> +};
> +MODULE_DEVICE_TABLE(acpi, tegra_rtc_acpi_match);
> +
> static int tegra_rtc_probe(struct platform_device *pdev)
> {
> struct tegra_rtc_info *info;
> @@ -300,9 +306,11 @@ static int tegra_rtc_probe(struct platform_device *pdev)
> info->rtc->ops = &tegra_rtc_ops;
> info->rtc->range_max = U32_MAX;
>
> - info->clk = devm_clk_get_enabled(&pdev->dev, NULL);
> - if (IS_ERR(info->clk))
> - return PTR_ERR(info->clk);
> + if (dev_of_node(&pdev->dev)) {
> + info->clk = devm_clk_get_enabled(&pdev->dev, NULL);
> + if (IS_ERR(info->clk))
> + return PTR_ERR(info->clk);
> + }
>
> /* set context info */
> info->pdev = pdev;
> @@ -386,6 +394,7 @@ static struct platform_driver tegra_rtc_driver = {
> .driver = {
> .name = "tegra_rtc",
> .of_match_table = tegra_rtc_dt_match,
> + .acpi_match_table = tegra_rtc_acpi_match,
> .pm = &tegra_rtc_pm_ops,
> },
> };
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Thanks!
Jon
--
nvpublic
next prev parent reply other threads:[~2025-10-24 10:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-24 6:49 [PATCH v4 1/3] rtc: tegra: Use devm_clk_get_enabled() in probe Kartik Rajput
2025-10-24 6:49 ` [PATCH v4 2/3] rtc: tegra: Add ACPI support Kartik Rajput
2025-10-24 10:48 ` Jon Hunter [this message]
2025-10-24 6:49 ` [PATCH v4 3/3] rtc: tegra: Replace deprecated SIMPLE_DEV_PM_OPS Kartik Rajput
2025-10-24 10:48 ` Jon Hunter
2025-10-24 10:48 ` [PATCH v4 1/3] rtc: tegra: Use devm_clk_get_enabled() in probe Jon Hunter
2025-12-08 22:09 ` Alexandre Belloni
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=b6d9c043-8627-4e12-b2db-be4eb50f78d8@nvidia.com \
--to=jonathanh@nvidia.com \
--cc=alexandre.belloni@bootlin.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=kkartik@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rtc@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=thierry.reding@gmail.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