From: Xianwei Zhao <xianwei.zhao@amlogic.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Jerome Brunet <jbrunet@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Bartosz Golaszewski <brgl@bgdev.pl>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org
Subject: Re: [PATCH v4 3/5] pinctrl: Add driver support for Amlogic SoCs
Date: Fri, 7 Feb 2025 15:07:27 +0800 [thread overview]
Message-ID: <fc2ee33d-db32-425f-ae5b-e56a15bc27e4@amlogic.com> (raw)
In-Reply-To: <CACRpkdZRbpd0Kw9V=aYX5P0vJLtErNR+aBzPagSwf=AZh6QERA@mail.gmail.com>
Hi Linus,
Thanks for your reply.
On 2025/1/27 17:59, Linus Walleij wrote:
> [ EXTERNAL EMAIL ]
>
> Hi Xianwei,
>
> thanks for your patch!
>
> On Wed, Jan 22, 2025 at 4:26 AM Xianwei Zhao via B4 Relay
> <devnull+xianwei.zhao.amlogic.com@kernel.org> wrote:
>
>> From: Xianwei Zhao <xianwei.zhao@amlogic.com>
>>
>> Add a new pinctrl driver for Amlogic SoCs. All future Amlogic
>> SoCs pinctrl drives use this, such A4, A5, S6, S7 etc. To support
>> new Amlogic SoCs, only need to add the corresponding dts file.
>>
>> Signed-off-by: Xianwei Zhao <xianwei.zhao@amlogic.com>
>> ---
>> drivers/pinctrl/Kconfig | 18 +
>> drivers/pinctrl/Makefile | 1 +
>> drivers/pinctrl/pinctrl-amlogic.c | 1053 +++++++++++++++++++++++++++++++++++++
>
> Please move this file into drivers/pinctrl/meson as I requested
> earlier. We can rename "meson" to "amlogic" later if that placement
> is confusing.
>
Will Move this file into drivers/pinctrl/meson in next version.
>> +config PINCTRL_AMLOGIC
>
> There is already PINCTRL_AMLOGIC_C3 and PINCTRL_AMLOGIC_T7
> as will be very apparent when you move this driver.
>
> What is a *proper* name for this family of SoCs?
>
This is for A4, Will use PINCTRL_AMLOGIC_A4 instead.
>> +MODULE_LICENSE("Dual BSD/GPL");
>
> On the top of the file you have:
>> +// SPDX-License-Identifier: GPL-2.0-only
>
> So this does not add up. Fix one or the other.
>
Will drop "MODULE_LICENSE("Dual BSD/GPL");".
> Yours,
> Linus Walleij
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
WARNING: multiple messages have this Message-ID (diff)
From: Xianwei Zhao <xianwei.zhao@amlogic.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Neil Armstrong <neil.armstrong@linaro.org>,
Kevin Hilman <khilman@baylibre.com>,
Jerome Brunet <jbrunet@baylibre.com>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Bartosz Golaszewski <brgl@bgdev.pl>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-amlogic@lists.infradead.org
Subject: Re: [PATCH v4 3/5] pinctrl: Add driver support for Amlogic SoCs
Date: Fri, 7 Feb 2025 15:07:27 +0800 [thread overview]
Message-ID: <fc2ee33d-db32-425f-ae5b-e56a15bc27e4@amlogic.com> (raw)
In-Reply-To: <CACRpkdZRbpd0Kw9V=aYX5P0vJLtErNR+aBzPagSwf=AZh6QERA@mail.gmail.com>
Hi Linus,
Thanks for your reply.
On 2025/1/27 17:59, Linus Walleij wrote:
> [ EXTERNAL EMAIL ]
>
> Hi Xianwei,
>
> thanks for your patch!
>
> On Wed, Jan 22, 2025 at 4:26 AM Xianwei Zhao via B4 Relay
> <devnull+xianwei.zhao.amlogic.com@kernel.org> wrote:
>
>> From: Xianwei Zhao <xianwei.zhao@amlogic.com>
>>
>> Add a new pinctrl driver for Amlogic SoCs. All future Amlogic
>> SoCs pinctrl drives use this, such A4, A5, S6, S7 etc. To support
>> new Amlogic SoCs, only need to add the corresponding dts file.
>>
>> Signed-off-by: Xianwei Zhao <xianwei.zhao@amlogic.com>
>> ---
>> drivers/pinctrl/Kconfig | 18 +
>> drivers/pinctrl/Makefile | 1 +
>> drivers/pinctrl/pinctrl-amlogic.c | 1053 +++++++++++++++++++++++++++++++++++++
>
> Please move this file into drivers/pinctrl/meson as I requested
> earlier. We can rename "meson" to "amlogic" later if that placement
> is confusing.
>
Will Move this file into drivers/pinctrl/meson in next version.
>> +config PINCTRL_AMLOGIC
>
> There is already PINCTRL_AMLOGIC_C3 and PINCTRL_AMLOGIC_T7
> as will be very apparent when you move this driver.
>
> What is a *proper* name for this family of SoCs?
>
This is for A4, Will use PINCTRL_AMLOGIC_A4 instead.
>> +MODULE_LICENSE("Dual BSD/GPL");
>
> On the top of the file you have:
>> +// SPDX-License-Identifier: GPL-2.0-only
>
> So this does not add up. Fix one or the other.
>
Will drop "MODULE_LICENSE("Dual BSD/GPL");".
> Yours,
> Linus Walleij
next prev parent reply other threads:[~2025-02-07 7:09 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-22 3:25 [PATCH v4 0/5] Pinctrl: Add Amlogic pinctrl driver Xianwei Zhao
2025-01-22 3:25 ` Xianwei Zhao via B4 Relay
2025-01-22 3:25 ` Xianwei Zhao via B4 Relay
2025-01-22 3:25 ` [PATCH v4 1/5] dt-bindings: pinctrl: Add support for Amlogic SoCs Xianwei Zhao
2025-01-22 3:25 ` Xianwei Zhao via B4 Relay
2025-01-22 3:25 ` Xianwei Zhao via B4 Relay
2025-01-27 18:59 ` Rob Herring
2025-01-27 18:59 ` Rob Herring
2025-02-07 6:59 ` Xianwei Zhao
2025-02-07 6:59 ` Xianwei Zhao
2025-01-22 3:26 ` [PATCH v4 2/5] pinctrl: pinconf-generic: Add API for pinmux propertity in DTS file Xianwei Zhao
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-22 3:26 ` [PATCH v4 3/5] pinctrl: Add driver support for Amlogic SoCs Xianwei Zhao
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-27 9:59 ` Linus Walleij
2025-01-27 9:59 ` Linus Walleij
2025-02-07 7:07 ` Xianwei Zhao [this message]
2025-02-07 7:07 ` Xianwei Zhao
2025-01-22 3:26 ` [PATCH v4 4/5] arm64: dts: amlogic: a4: add pinctrl node Xianwei Zhao
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-22 3:26 ` [PATCH v4 5/5] MAINTAINERS: Add an entry for Amlogic pinctrl driver Xianwei Zhao
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
2025-01-22 3:26 ` Xianwei Zhao via B4 Relay
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=fc2ee33d-db32-425f-ae5b-e56a15bc27e4@amlogic.com \
--to=xianwei.zhao@amlogic.com \
--cc=brgl@bgdev.pl \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=krzk+dt@kernel.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@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.