From: Huqiang Qin <huqiang.qin@amlogic.com>
To: Andy Shevchenko <andy@kernel.org>
Cc: linus.walleij@linaro.org, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org,
neil.armstrong@linaro.org, khilman@baylibre.com,
jbrunet@baylibre.com, martin.blumenstingl@googlemail.com,
brgl@bgdev.pl, linux-gpio@vger.kernel.org,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] pinctrl: Add driver support for Amlogic C3 SoCs
Date: Fri, 7 Jul 2023 12:07:59 +0800 [thread overview]
Message-ID: <508344ff-6cb7-0658-89ae-c6873079e1b3@amlogic.com> (raw)
In-Reply-To: <ZKazwMpmsNzBuWA7@smile.fi.intel.com>
Hi Andy Shevchenko,
On 2023/7/6 20:29, Andy Shevchenko wrote:
>
> On Thu, Jul 06, 2023 at 07:45:22PM +0800, Huqiang Qin wrote:
>> Add new pinctrl driver for Amlogic C3 SoCs which share the
>
> a new
Okay
>
>> same register layout as the previous Amloigc S4
>
> Missing period at the end.
Okay
>
> ...
>
>> +config PINCTRL_AMLOGIC_C3
>> + tristate "Amlogic C3 SoC pinctrl driver"
>> + depends on ARM64
>> + select PINCTRL_MESON_AXG_PMX
>> + default y
>
> This default seems a bad cargo cult. Why ARM64 kernel should have all them be
> opt-out, instead of opt-in? Shouldn't this be a distro problem?
The Kconfig structure is as follows:
menuconfig PINCTRL_MESON
tristate "Amlogic SoC pinctrl drivers"
depends on ARCH_MESON || COMPILE_TEST
...
if PINCTRL_MESON
...
config PINCTRL_AMLOGIC_C3
tristate "Amlogic C3 SoC pinctrl driver"
depends on ARM64
select PINCTRL_MESON_AXG_PMX
default y
endif
When ARCH_MESON is not selected, all pinctrl drivers of Amlogic will not be compiled by default
>
> ...
>
>> + MESON_PIN(GPIO_TEST_N)
>
> Is it real one?
Yes, it's real GPIO and supports interrupts, similar to Amlogic S4 SoC
>
>> +};
>
> ...
>
>> + /* Bank A func6 */
>> + GROUP(spi_a_mosi_a, 6),
>> + GROUP(gen_clk_a4, 6),
>> + GROUP(clk12_24_a, 6)
>
> Leave trailing comma here as it's not a terminator.
Okay
>
> ...
>
>> +static const char * const i2c2_groups[] = {
>> + "i2c2_sda", "i2c2_scl"
>
> Ditto.
Okay
>
>> +};
>> +
>> +static const char * const i2c3_groups[] = {
>> + "i2c3_sda_c", "i2c3_scl_c",
>> + "i2c3_sda_x", "i2c3_scl_x",
>> + "i2c3_sda_d", "i2c3_scl_d"
>
> Ditto.
Okay
>
>> +};
>
> ...
>
>> +#ifdef CONFIG_OF
>
> Drop this ugly ifdeffery.
Okay
>
>> +static const struct of_device_id c3_pinctrl_dt_match[] = {
>> + {
>> + .compatible = "amlogic,c3-periphs-pinctrl",
>> + .data = &c3_periphs_pinctrl_data,
>> + },
>> + { },
>
> No comma for the terminator.
Okay
>
>> +};
>> +MODULE_DEVICE_TABLE(of, c3_pinctrl_dt_match);
>> +#endif /* CONFIG_OF */
>> +
>> +static struct platform_driver c3_pinctrl_driver = {
>> + .probe = meson_pinctrl_probe,
>> + .driver = {
>> + .name = "amlogic-c3-pinctrl",
>
>> + .of_match_table = of_match_ptr(c3_pinctrl_dt_match),
>
> Drop the rather problematic of_match_ptr().
Okay
>
>> + },
>> +};
>
> --
> With Best Regards,
> Andy Shevchenko
>
>
>
Best Regards,
Huqiang Qin
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
prev parent reply other threads:[~2023-07-07 4:08 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-06 11:45 [PATCH 0/2] Add pinctrl " Huqiang Qin
2023-07-06 11:45 ` [PATCH 1/2] dt-bindings: gpio: Add a header file " Huqiang Qin
2023-07-06 11:45 ` [PATCH 2/2] pinctrl: Add driver support " Huqiang Qin
2023-07-06 12:29 ` Andy Shevchenko
2023-07-07 4:07 ` Huqiang Qin [this message]
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=508344ff-6cb7-0658-89ae-c6873079e1b3@amlogic.com \
--to=huqiang.qin@amlogic.com \
--cc=andy@kernel.org \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linus.walleij@linaro.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=neil.armstrong@linaro.org \
--cc=robh+dt@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
all inboxes | Powered by JetHome®