From: "Xuyang Dong" <dongxuyang@eswincomputing.com>
To: sashiko-reviews@lists.linux.dev
Cc: ukleinek@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, ben-linux@fluff.org,
ben.dooks@codethink.co.uk, linux-pwm@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
p.zabel@pengutronix.de, daniel.lezcano@kernel.org,
tglx@kernel.org, ningyu@eswincomputing.com,
linmin@eswincomputing.com, xuxiang@eswincomputing.com,
wangguosheng@eswincomputing.com, pinkesh.vaghela@einfochips.com
Subject: Re: Re: [PATCH v13 3/5] pwm: dwc: add of/platform support
Date: Mon, 27 Jul 2026 17:25:35 +0800 (GMT+08:00) [thread overview]
Message-ID: <46a18988.8bcd.19fa2e4dcc6.Coremail.dongxuyang@eswincomputing.com> (raw)
In-Reply-To: <20260724085715.9847C1F00A3F@smtp.kernel.org>
>
> Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
> - [Medium] Module autoloading for non-OF setups will fail due to a module alias mismatch.
> --
>
> --- Patch [3]: [PATCH v13 3/5] pwm: dwc: add of/platform support ---
> commit efa310f451f843a8ed2f095d6d6d3c443510ca1a
> Author: Xuyang Dong <dongxuyang@eswincomputing.com>
>
> pwm: dwc: add of/platform support
>
> This commit adds platform and OF-based probing support for the dwc PWM
> controller, allowing it to be used in non-PCI systems. It implements polarity
> control using the timer's dual load registers and updates clock and runtime
> PM state management.
>
> > diff --git a/drivers/pwm/pwm-dwc-of.c b/drivers/pwm/pwm-dwc-of.c
> > new file mode 100644
> > index 0000000000000..4956dd36f93ad
> > --- /dev/null
> > +++ b/drivers/pwm/pwm-dwc-of.c
>
> [ ... ]
>
> > +static struct platform_driver dwc_pwm_plat_driver = {
> > + .driver = {
> > + .name = "dwc-pwm",
> > + .pm = pm_ptr(&dwc_pwm_pm_ops),
> > + .of_match_table = dwc_pwm_dt_ids,
> > + },
> > + .probe = dwc_pwm_plat_probe,
> > + .remove = dwc_pwm_plat_remove,
> > +};
> > +
> > +module_platform_driver(dwc_pwm_plat_driver);
> > +
> > +MODULE_ALIAS("platform:dwc-pwm-of");
>
> [Severity: Medium]
> Does this module alias mismatch prevent automatic module loading on non-OF
> setups?
>
> The platform driver registers its name as "dwc-pwm", which means a system
> without Device Tree will emit a uevent with MODALIAS=platform:dwc-pwm. Since
> the provided MODULE_ALIAS is "platform:dwc-pwm-of", udev will likely fail to
> find and load this module automatically.
>
Hi Sashiko,
Remove MODULE_ALIAS() in the next version.
Best regards,
Xuyang Dong
> > +MODULE_AUTHOR("Ben Dooks <ben.dooks@codethink.co.uk>");
> > +MODULE_DESCRIPTION("DesignWare PWM Controller");
> > +MODULE_LICENSE("GPL");
>
> --
> Sashiko AI review · https://sashiko.dev/#/patchset/20260724084153.1473-1-dongxuyang@eswincomputing.com?part=3
next prev parent reply other threads:[~2026-07-27 9:25 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 8:41 [PATCH v13 0/5] Update designware pwm driver dongxuyang
2026-07-24 8:43 ` [PATCH v13 1/5] dt-bindings: pwm: dwc: Document optional resets property dongxuyang
2026-07-24 8:53 ` sashiko-bot
2026-07-27 9:25 ` Xuyang Dong
2026-07-25 15:05 ` Krzysztof Kozlowski
2026-07-24 8:43 ` [PATCH v13 2/5] dt-bindings: pwm: dwc: Add eswin compatible dongxuyang
2026-07-24 8:56 ` sashiko-bot
2026-07-27 9:25 ` Xuyang Dong
2026-07-25 15:06 ` Krzysztof Kozlowski
2026-07-27 9:26 ` Xuyang Dong
2026-07-24 8:43 ` [PATCH v13 3/5] pwm: dwc: add of/platform support dongxuyang
2026-07-24 8:57 ` sashiko-bot
2026-07-27 9:25 ` Xuyang Dong [this message]
2026-07-24 8:44 ` [PATCH v13 4/5] dt-bindings: timer: dwc: Update resets property items dongxuyang
2026-07-24 8:55 ` sashiko-bot
2026-07-24 13:55 ` Rob Herring
2026-07-24 8:44 ` [PATCH v13 5/5] clocksource: dw_apb_timer: Use reset array API to handle all resets dongxuyang
2026-07-24 8:55 ` sashiko-bot
2026-07-27 9:26 ` Xuyang Dong
2026-07-27 14:44 ` Philipp Zabel
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=46a18988.8bcd.19fa2e4dcc6.Coremail.dongxuyang@eswincomputing.com \
--to=dongxuyang@eswincomputing.com \
--cc=ben-linux@fluff.org \
--cc=ben.dooks@codethink.co.uk \
--cc=conor+dt@kernel.org \
--cc=daniel.lezcano@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linmin@eswincomputing.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=ningyu@eswincomputing.com \
--cc=p.zabel@pengutronix.de \
--cc=pinkesh.vaghela@einfochips.com \
--cc=robh@kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
--cc=tglx@kernel.org \
--cc=ukleinek@kernel.org \
--cc=wangguosheng@eswincomputing.com \
--cc=xuxiang@eswincomputing.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