From: "Frank Wunderlich (linux)" <linux@fw-web.de>
To: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Cc: "Linus Walleij" <linus.walleij@linaro.org>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
"Sean Wang" <sean.wang@kernel.org>,
"Frank Wunderlich" <frank-w@public-files.de>,
linux-gpio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org,
"Daniel Golle" <daniel@makrotopia.org>,
"Sam Shih" <sam.shih@mediatek.com>,
"Arınç ÜNAL" <arinc.unal@arinc9.com>
Subject: Re: [PATCH v5 2/5] pinctrl: mediatek: add MT7988 pinctrl driver
Date: Wed, 11 Dec 2024 09:43:58 +0100 [thread overview]
Message-ID: <598f595589d061bf314d942095cd5dc6@fw-web.de> (raw)
In-Reply-To: <32201aec-f3d2-49a7-b0ca-2ede10fec103@wanadoo.fr>
Am 2024-12-10 19:45, schrieb Christophe JAILLET:
> Le 02/12/2024 à 12:00, Frank Wunderlich a écrit :
>> From: Daniel Golle <daniel@makrotopia.org>
>>
>> Add pinctrl driver for the MediaTek MT7988 SoC.
>>
>> Signed-off-by: Sam Shih <sam.shih@mediatek.com>
>> Signed-off-by: Daniel Golle <daniel@makrotopia.org>
>> [correctly initialise for the function_desc structure]
>> Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com>
>> Signed-off-by: Frank Wunderlich <frank-w@public-files.de>
>>
>> ---
>
> ...
>
>> +/* flash */
>> +static int mt7988_snfi_pins[] = { 22, 23, 24, 25, 26, 27 };
>> +static int mt7988_snfi_funcs[] = { 2, 2, 2, 2, 2, 2 };
>> +
>> +static int mt7988_emmc_45_pins[] = {
>> + 21, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37
>> +};
>> +static int mt7988_emmc_45_funcs[] = { 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
>> };
>> +
>> +static int mt7988_sdcard_pins[] = { 32, 33, 34, 35, 36, 37 };
>> +static int mt7988_sdcard_funcs[] = { 5, 5, 5, 5, 5, 5 };
>> +
>> +static int mt7988_emmc_51_pins[] = { 38, 39, 40, 41, 42, 43,
>> + 44, 45, 46, 47, 48, 49 };
>> +static int mt7988_emmc_51_funcs[] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
>> 1, 1 };
>
> At least all the _pins arrays could be const.
> Maybe we could also make it possible to have _funcs const as well.
>
> ...
>
>> +static struct mtk_pin_soc mt7988_data = {
>
> const?
can do, but for funcs i see no clear way
angelo, can i keep the RB, when changing pins/mtk_pin_soc to const
(without changing macro in drivers/pinctrl/mediatek/pinctrl-moore.h)?
>> + .reg_cal = mt7988_reg_cals,
>> + .pins = mt7988_pins,
>> + .npins = ARRAY_SIZE(mt7988_pins),
>> + .grps = mt7988_groups,
>> + .ngrps = ARRAY_SIZE(mt7988_groups),
>> + .funcs = mt7988_functions,
>> + .nfuncs = ARRAY_SIZE(mt7988_functions),
>> + .eint_hw = &mt7988_eint_hw,
>> + .gpio_m = 0,
>> + .ies_present = false,
>> + .base_names = mt7988_pinctrl_register_base_names,
>> + .nbase_names = ARRAY_SIZE(mt7988_pinctrl_register_base_names),
>> + .bias_disable_set = mtk_pinconf_bias_disable_set,
>> + .bias_disable_get = mtk_pinconf_bias_disable_get,
>> + .bias_set = mtk_pinconf_bias_set,
>> + .bias_get = mtk_pinconf_bias_get,
>> + .pull_type = mt7988_pull_type,
>> + .bias_set_combo = mtk_pinconf_bias_set_combo,
>> + .bias_get_combo = mtk_pinconf_bias_get_combo,
>> + .drive_set = mtk_pinconf_drive_set_rev1,
>> + .drive_get = mtk_pinconf_drive_get_rev1,
>> + .adv_pull_get = mtk_pinconf_adv_pull_get,
>> + .adv_pull_set = mtk_pinconf_adv_pull_set,
>> +};
>
> ...
>
> CJ
next prev parent reply other threads:[~2024-12-11 8:45 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-02 11:00 [PATCH v5 0/5] Add pinctrl support for mt7988 Frank Wunderlich
2024-12-02 11:00 ` [PATCH v5 1/5] pinctrl: mediatek: add support for MTK_PULL_PD_TYPE Frank Wunderlich
2024-12-09 12:48 ` AngeloGioacchino Del Regno
2024-12-02 11:00 ` [PATCH v5 2/5] pinctrl: mediatek: add MT7988 pinctrl driver Frank Wunderlich
2024-12-09 12:44 ` AngeloGioacchino Del Regno
2024-12-10 18:45 ` Christophe JAILLET
2024-12-11 8:43 ` Frank Wunderlich (linux) [this message]
2024-12-02 11:00 ` [PATCH v5 3/5] dt-bindings: pinctrl: add binding for MT7988 SoC Frank Wunderlich
2024-12-04 7:35 ` Krzysztof Kozlowski
2024-12-04 7:41 ` Frank Wunderlich
2024-12-05 7:35 ` Krzysztof Kozlowski
2024-12-05 9:18 ` Frank Wunderlich (linux)
2024-12-05 10:39 ` Krzysztof Kozlowski
2024-12-04 14:43 ` Rob Herring
2024-12-04 15:27 ` Frank Wunderlich
2024-12-09 11:50 ` AngeloGioacchino Del Regno
2024-12-02 11:00 ` [PATCH v5 4/5] arm64: dts: mediatek: mt7988: add pinctrl support Frank Wunderlich
2024-12-09 11:52 ` AngeloGioacchino Del Regno
2024-12-02 11:00 ` [PATCH v5 5/5] arm64: dts: mediatek: mt7988: add pinctrl subnodes for bpi-r4 Frank Wunderlich
2024-12-09 11:52 ` AngeloGioacchino Del Regno
2024-12-09 12:32 ` Frank Wunderlich (linux)
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=598f595589d061bf314d942095cd5dc6@fw-web.de \
--to=linux@fw-web.de \
--cc=angelogioacchino.delregno@collabora.com \
--cc=arinc.unal@arinc9.com \
--cc=christophe.jaillet@wanadoo.fr \
--cc=conor+dt@kernel.org \
--cc=daniel@makrotopia.org \
--cc=devicetree@vger.kernel.org \
--cc=frank-w@public-files.de \
--cc=krzk+dt@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=robh@kernel.org \
--cc=sam.shih@mediatek.com \
--cc=sean.wang@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;
as well as URLs for NNTP newsgroup(s).