From: Marek Vasut <marek.vasut@mailbox.org>
To: Geert Uytterhoeven <geert+renesas@glider.be>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Brian Masney <bmasney@redhat.com>, Ulf Hansson <ulfh@kernel.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Wolfram Sang <wsa+renesas@sang-engineering.com>,
Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: devicetree@vger.kernel.org, linux-clk@vger.kernel.org,
linux-pm@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 4/6] pmdomain: renesas: Add R-Car X5H MDLC driver
Date: Thu, 6 Aug 2026 00:38:48 +0200 [thread overview]
Message-ID: <0124d3a3-81dc-44ce-88a2-9426c65ac46c@mailbox.org> (raw)
In-Reply-To: <89e6a71b35703f10e12f520af1f389b5f40f4b35.1785941595.git.geert+renesas@glider.be>
On 8/5/26 5:20 PM, Geert Uytterhoeven wrote:
Hello Geert,
[...]
> +DEFINE_MDLC_RESET_WRAPPER(reset)
> +DEFINE_MDLC_RESET_WRAPPER(assert)
> +DEFINE_MDLC_RESET_WRAPPER(deassert)
> +DEFINE_MDLC_RESET_WRAPPER(status)
> +
> +static const struct reset_control_ops r8a78000_mdlc_reset_ops = {
> + .reset = r8a78000_mdlc_reset,
> + .assert = r8a78000_mdlc_assert,
> + .deassert = r8a78000_mdlc_deassert,
> + .status = r8a78000_mdlc_status,
> +};
Please keep the list sorted alphabetically.
> +static int r8a78000_mdlc_attach_dev(struct generic_pm_domain *domain,
> + struct device *dev)
> +{
> + struct device_node *np = dev->of_node;
> + struct r8a78000_mdlc_priv *priv;
> + struct of_phandle_args pd_spec;
> + const struct mod_map *map;
> + unsigned int id;
> + int ret;
> +
> + ret = of_parse_phandle_with_args(np, "power-domains",
> + "#power-domain-cells", 0, &pd_spec);
> + if (ret < 0)
> + return ret;
> +
> + if (pd_spec.args_count != 2) {
> + of_node_put(pd_spec.np);
Maybe some "goto error" fail path which does of_node_put() wouldn't hurt
here, since the of_node_put() is duplicated in here multiple times.
> + return -EINVAL;
> + }
> +
> + scoped_guard(mutex, &r8a78000_mdlc_lock) {
> + hlist_for_each_entry(priv, &r8a78000_mdlc_list, link) {
> + if (priv->np == pd_spec.np)
> + break;
> + }
> + }
> +
> + if (!priv) {
> + dev_err(dev, "%s: MDLC %pOF not found\n", __func__, pd_spec.np);
> + of_node_put(pd_spec.np);
> + return -ENODEV;
> + }
> +
> + id = pd_spec.args[1];
> + of_node_put(pd_spec.np);
> +
> + map = mod_map_find(priv->mod_map, id);
> + if (!map) {
> + dev_err(dev, "Unknown module 0x%x\n", id);
> + return -ENOENT;
> + }
> +
> + dev_dbg(dev, "Ignoring HW module 0x%x\n", id);
> + return 0;
> +}
[...]
> +static int r8a78000_mdlc_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + struct device_node *np = dev->of_node;
> + struct r8a78000_mdlc_priv *priv;
> + const struct mdlc_info *info;
> + struct resource *res;
> + int ret;
> +
> + ret = r8a78000_genpd_always_on_singleton(dev);
> + if (ret)
> + return ret;
> +
> + info = of_device_get_match_data(dev);
> + if (!info)
> + return -ENODEV;
> +
> + priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
> + if (!priv)
> + return -ENOMEM;
> +
> + priv->dev = dev;
> + priv->np = np;
> +
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + if (!res)
> + return -ENODEV;
> +
> + for (; info->base; info++) {
> + if (info->base == res->start)
> + break;
> + }
> +
> + if (!info->base) {
> + dev_dbg(dev, "Unsupported MDLC instance 0x%pa\n", &res->start);
return dev_err_probe() might be more appropriate here, even if that
would be more chatty until the support for various MDLC nodes lands.
Some dev_info_probe() would be even better, but we don't have that.
[...]
next prev parent reply other threads:[~2026-08-05 22:39 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-05 15:20 [PATCH v3 0/6] R-Car X5H CPG/MDLC support Geert Uytterhoeven
2026-08-05 15:20 ` [PATCH v3 1/6] dt-bindings: clock: Document Renesas R-Car X5H Clock Pulse Generator Geert Uytterhoeven
2026-08-05 15:20 ` [PATCH v3 2/6] dt-bindings: power: Document Renesas R-Car X5H Module Controller Geert Uytterhoeven
2026-08-05 15:20 ` [PATCH v3 3/6] clk: renesas: Add R-Car X5H CPG driver Geert Uytterhoeven
2026-08-05 22:22 ` Marek Vasut
2026-08-05 15:20 ` [PATCH v3 4/6] pmdomain: renesas: Add R-Car X5H MDLC driver Geert Uytterhoeven
2026-08-05 22:38 ` Marek Vasut [this message]
2026-08-06 7:49 ` Geert Uytterhoeven
2026-08-06 12:53 ` Marek Vasut
2026-08-06 8:13 ` Philipp Zabel
2026-08-06 8:58 ` Geert Uytterhoeven
2026-08-05 15:20 ` [PATCH v3 5/6] arm64: dts: renesas: r8a78000: Add CPG node Geert Uytterhoeven
2026-08-05 15:20 ` [PATCH v3 6/6] arm64: dts: renesas: r8a78000: Add MDLC nodes Geert Uytterhoeven
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=0124d3a3-81dc-44ce-88a2-9426c65ac46c@mailbox.org \
--to=marek.vasut@mailbox.org \
--cc=bmasney@redhat.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=krzk+dt@kernel.org \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=p.zabel@pengutronix.de \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=ulfh@kernel.org \
--cc=wsa+renesas@sang-engineering.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