From: Aniruddha Rao <anrao@nvidia.com>
To: <thierry.reding@kernel.org>, <jonathanh@nvidia.com>
Cc: <linux-tegra@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
"Aniruddha Rao" <anrao@nvidia.com>
Subject: [PATCH 2/6] firmware: tegra: bpmp: Move channel, resource init to helper
Date: Mon, 15 Jun 2026 08:37:27 +0000 [thread overview]
Message-ID: <20260615083731.888055-3-anrao@nvidia.com> (raw)
In-Reply-To: <20260615083731.888055-1-anrao@nvidia.com>
Refactor the BPMP driver by moving channel initialization and Device Tree
resource parsing into separate helper functions.
This prepares the driver for ACPI support, where these helpers will be
skipped because channel initialization is handled by ACPI AML methods on
ACPI-based systems.
Signed-off-by: Aniruddha Rao <anrao@nvidia.com>
---
drivers/firmware/tegra/bpmp.c | 94 +++++++++++++++++++++--------------
1 file changed, 57 insertions(+), 37 deletions(-)
diff --git a/drivers/firmware/tegra/bpmp.c b/drivers/firmware/tegra/bpmp.c
index 753472b53bd8..16ca0d104c1d 100644
--- a/drivers/firmware/tegra/bpmp.c
+++ b/drivers/firmware/tegra/bpmp.c
@@ -733,19 +733,9 @@ void tegra_bpmp_handle_rx(struct tegra_bpmp *bpmp)
spin_unlock(&bpmp->lock);
}
-static int tegra_bpmp_probe(struct platform_device *pdev)
+static int tegra_bpmp_init_channels(struct tegra_bpmp *bpmp)
{
- struct tegra_bpmp *bpmp;
- char tag[TAG_SZ];
size_t size;
- int err;
-
- bpmp = devm_kzalloc(&pdev->dev, sizeof(*bpmp), GFP_KERNEL);
- if (!bpmp)
- return -ENOMEM;
-
- bpmp->soc = of_device_get_match_data(&pdev->dev);
- bpmp->dev = &pdev->dev;
INIT_LIST_HEAD(&bpmp->mrqs);
spin_lock_init(&bpmp->lock);
@@ -755,37 +745,85 @@ static int tegra_bpmp_probe(struct platform_device *pdev)
size = BITS_TO_LONGS(bpmp->threaded.count) * sizeof(long);
- bpmp->threaded.allocated = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
+ bpmp->threaded.allocated = devm_kzalloc(bpmp->dev, size, GFP_KERNEL);
if (!bpmp->threaded.allocated)
return -ENOMEM;
- bpmp->threaded.busy = devm_kzalloc(&pdev->dev, size, GFP_KERNEL);
+ bpmp->threaded.busy = devm_kzalloc(bpmp->dev, size, GFP_KERNEL);
if (!bpmp->threaded.busy)
return -ENOMEM;
spin_lock_init(&bpmp->atomic_tx_lock);
- bpmp->tx_channel = devm_kzalloc(&pdev->dev, sizeof(*bpmp->tx_channel),
+ bpmp->tx_channel = devm_kzalloc(bpmp->dev, sizeof(*bpmp->tx_channel),
GFP_KERNEL);
if (!bpmp->tx_channel)
return -ENOMEM;
- bpmp->rx_channel = devm_kzalloc(&pdev->dev, sizeof(*bpmp->rx_channel),
+ bpmp->rx_channel = devm_kzalloc(bpmp->dev, sizeof(*bpmp->rx_channel),
GFP_KERNEL);
if (!bpmp->rx_channel)
return -ENOMEM;
- bpmp->threaded_channels = devm_kcalloc(&pdev->dev, bpmp->threaded.count,
+ bpmp->threaded_channels = devm_kcalloc(bpmp->dev, bpmp->threaded.count,
sizeof(*bpmp->threaded_channels),
GFP_KERNEL);
if (!bpmp->threaded_channels)
return -ENOMEM;
- platform_set_drvdata(pdev, bpmp);
+ return 0;
+}
+
+static int tegra_bpmp_init_resources(struct tegra_bpmp *bpmp)
+{
+ int err;
+
+ err = of_platform_default_populate(bpmp->dev->of_node, NULL, bpmp->dev);
+ if (err < 0)
+ return err;
+
+ if (of_property_present(bpmp->dev->of_node, "#clock-cells")) {
+ err = tegra_bpmp_init_clocks(bpmp);
+ if (err < 0)
+ return err;
+ }
+
+ if (of_property_present(bpmp->dev->of_node, "#reset-cells")) {
+ err = tegra_bpmp_init_resets(bpmp);
+ if (err < 0)
+ return err;
+ }
+
+ if (of_property_present(bpmp->dev->of_node, "#power-domain-cells"))
+ err = tegra_bpmp_init_powergates(bpmp);
+
+ return err;
+}
+
+static int tegra_bpmp_probe(struct platform_device *pdev)
+{
+ struct tegra_bpmp *bpmp;
+ char tag[TAG_SZ];
+ int err;
- err = bpmp->soc->ops->init(bpmp);
+ bpmp = devm_kzalloc(&pdev->dev, sizeof(*bpmp), GFP_KERNEL);
+ if (!bpmp)
+ return -ENOMEM;
+
+ bpmp->soc = device_get_match_data(&pdev->dev);
+ bpmp->dev = &pdev->dev;
+
+ err = tegra_bpmp_init_channels(bpmp);
if (err < 0)
return err;
+ platform_set_drvdata(pdev, bpmp);
+
+ if (bpmp->soc->ops->init) {
+ err = bpmp->soc->ops->init(bpmp);
+ if (err < 0)
+ return err;
+ }
+
err = tegra_bpmp_request_mrq(bpmp, MRQ_PING,
tegra_bpmp_mrq_handle_ping, bpmp);
if (err < 0)
@@ -805,28 +843,10 @@ static int tegra_bpmp_probe(struct platform_device *pdev)
dev_info(&pdev->dev, "firmware: %.*s\n", (int)sizeof(tag), tag);
- err = of_platform_default_populate(pdev->dev.of_node, NULL, &pdev->dev);
+ err = tegra_bpmp_init_resources(bpmp);
if (err < 0)
goto free_mrq;
- if (of_property_present(pdev->dev.of_node, "#clock-cells")) {
- err = tegra_bpmp_init_clocks(bpmp);
- if (err < 0)
- goto free_mrq;
- }
-
- if (of_property_present(pdev->dev.of_node, "#reset-cells")) {
- err = tegra_bpmp_init_resets(bpmp);
- if (err < 0)
- goto free_mrq;
- }
-
- if (of_property_present(pdev->dev.of_node, "#power-domain-cells")) {
- err = tegra_bpmp_init_powergates(bpmp);
- if (err < 0)
- goto free_mrq;
- }
-
err = tegra_bpmp_init_debugfs(bpmp);
if (err < 0)
dev_err(&pdev->dev, "debugfs initialization failed: %d\n", err);
--
2.43.0
next prev parent reply other threads:[~2026-06-15 8:38 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-15 8:37 [PATCH 0/6] firmware: tegra: bpmp: Add Tegra410 ACPI MBWT support Aniruddha Rao
2026-06-15 8:37 ` [PATCH 1/6] soc/tegra: Add Tegra410 SoC Kconfig symbol Aniruddha Rao
2026-06-15 8:37 ` Aniruddha Rao [this message]
2026-06-15 8:37 ` [PATCH 3/6] firmware: tegra: bpmp: Add ACPI support Aniruddha Rao
2026-06-15 8:37 ` [PATCH 4/6] firmware: tegra: bpmp: Add the Memory Bandwidth Throttler ABI definitions Aniruddha Rao
2026-06-15 8:37 ` [PATCH 5/6] firmware: tegra: bpmp: Add Tegra410 MBWT BPMP helpers Aniruddha Rao
2026-06-15 8:37 ` [PATCH 6/6] firmware: tegra: bpmp: Add Tegra410 MBWT sysfs interface Aniruddha Rao
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=20260615083731.888055-3-anrao@nvidia.com \
--to=anrao@nvidia.com \
--cc=jonathanh@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=thierry.reding@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox