From: Alexandre TORGUE <alexandre.torgue@foss.st.com>
To: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Cc: <linux-kernel@vger.kernel.org>,
Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>,
<linux-arm-kernel@lists.infradead.org>,
<dri-devel@lists.freedesktop.org>,
Philippe Cornu <philippe.cornu@foss.st.com>,
Amarula patchwork <linux-amarula@amarulasolutions.com>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
<michael@amarulasolutions.com>,
<linux-stm32@st-md-mailman.stormreply.com>,
Conor Dooley <conor+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Rob Herring <robh+dt@kernel.org>, <devicetree@vger.kernel.org>
Subject: Re: [RESEND PATCH v2 2/6] ARM: dts: stm32: add pin map for LTDC on stm32f7
Date: Mon, 12 Jun 2023 09:35:46 +0200 [thread overview]
Message-ID: <3580b822-1d6e-91af-3f5b-f076a8aaddf1@foss.st.com> (raw)
In-Reply-To: <CABGWkvoRZqQsEmpNRhhrRUrf+WHebErPO9Jt2L9bsNL_EKeoHg@mail.gmail.com>
hi Dario
On 6/9/23 08:21, Dario Binacchi wrote:
> Hi Alexandre,
>
> On Thu, Jun 8, 2023 at 2:42 PM Alexandre TORGUE
> <alexandre.torgue@foss.st.com> wrote:
>>
>> Hi Dario
>>
>> On 6/7/23 08:31, Dario Binacchi wrote:
>>> Add pin configurations for using LTDC (LCD-tft Display Controller) on
>>> stm32f746-disco board.
>>>
>>> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
>>> ---
>>>
>>> (no changes since v1)
>>>
>>> arch/arm/boot/dts/stm32f7-pinctrl.dtsi | 35 ++++++++++++++++++++++++++
>>> 1 file changed, 35 insertions(+)
>>>
>>> diff --git a/arch/arm/boot/dts/stm32f7-pinctrl.dtsi b/arch/arm/boot/dts/stm32f7-pinctrl.dtsi
>>> index 9f65403295ca..f3f90b9bcd61 100644
>>> --- a/arch/arm/boot/dts/stm32f7-pinctrl.dtsi
>>> +++ b/arch/arm/boot/dts/stm32f7-pinctrl.dtsi
>>> @@ -365,6 +365,41 @@ pins2 {
>>> bias-pull-up;
>>> };
>>> };
>>> +
>>> +
>>> + ltdc_pins_a: ltdc-pins-a-0 {
>>
>> ltdc-pins-a-0 --> ltdc-pins-0 is a bit cleaner. I know that I have to
>> fix sdio pins nodes in this file to keep the same spirit for all group
>> names.
>
> I have looked at the file arch/arm/boot/dts/stm32f7-pinctrl.dtsi, and
> based on the following nodes:
> usart1_pins_a: usart1-0
> i2c1_pins_b: i2c1-0
> can1_pins_a: can1-0
>
> I have decided to rename ltdc-pins-a-0 to ltdc-0.
>
> I hope you agree.
Yes! perfect.
Alex
>
> Thanks and regards,
>
> Dario
>
>>
>> If there is no V3 I wil do it directly when I'll apply DT patches if you
>> agree.
>>
>> Alex
>>
>>
>>> + pins {
>>> + pinmux = <STM32_PINMUX('E', 4, AF14)>, /* LCD_B0 */
>>> + <STM32_PINMUX('G',12, AF9)>, /* LCD_B4 */
>>> + <STM32_PINMUX('I', 9, AF14)>, /* LCD_VSYNC */
>>> + <STM32_PINMUX('I',10, AF14)>, /* LCD_HSYNC */
>>> + <STM32_PINMUX('I',14, AF14)>, /* LCD_CLK */
>>> + <STM32_PINMUX('I',15, AF14)>, /* LCD_R0 */
>>> + <STM32_PINMUX('J', 0, AF14)>, /* LCD_R1 */
>>> + <STM32_PINMUX('J', 1, AF14)>, /* LCD_R2 */
>>> + <STM32_PINMUX('J', 2, AF14)>, /* LCD_R3 */
>>> + <STM32_PINMUX('J', 3, AF14)>, /* LCD_R4 */
>>> + <STM32_PINMUX('J', 4, AF14)>, /* LCD_R5 */
>>> + <STM32_PINMUX('J', 5, AF14)>, /* LCD_R6 */
>>> + <STM32_PINMUX('J', 6, AF14)>, /* LCD_R7 */
>>> + <STM32_PINMUX('J', 7, AF14)>, /* LCD_G0 */
>>> + <STM32_PINMUX('J', 8, AF14)>, /* LCD_G1 */
>>> + <STM32_PINMUX('J', 9, AF14)>, /* LCD_G2 */
>>> + <STM32_PINMUX('J',10, AF14)>, /* LCD_G3 */
>>> + <STM32_PINMUX('J',11, AF14)>, /* LCD_G4 */
>>> + <STM32_PINMUX('J',13, AF14)>, /* LCD_B1 */
>>> + <STM32_PINMUX('J',14, AF14)>, /* LCD_B2 */
>>> + <STM32_PINMUX('J',15, AF14)>, /* LCD_B3 */
>>> + <STM32_PINMUX('K', 0, AF14)>, /* LCD_G5 */
>>> + <STM32_PINMUX('K', 1, AF14)>, /* LCD_G6 */
>>> + <STM32_PINMUX('K', 2, AF14)>, /* LCD_G7 */
>>> + <STM32_PINMUX('K', 4, AF14)>, /* LCD_B5 */
>>> + <STM32_PINMUX('K', 5, AF14)>, /* LCD_B6 */
>>> + <STM32_PINMUX('K', 6, AF14)>, /* LCD_B7 */
>>> + <STM32_PINMUX('K', 7, AF14)>; /* LCD_DE */
>>> + slew-rate = <2>;
>>> + };
>>> + };
>>> };
>>> };
>>> };
>>
>
>
next prev parent reply other threads:[~2023-06-12 8:31 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-07 6:31 [RESEND PATCH v2 0/6] Add display support on the stm32f746-disco board Dario Binacchi
2023-06-07 6:31 ` [RESEND PATCH v2 1/6] ARM: dts: stm32: add ltdc support on stm32f746 MCU Dario Binacchi
2023-06-07 6:31 ` [RESEND PATCH v2 2/6] ARM: dts: stm32: add pin map for LTDC on stm32f7 Dario Binacchi
2023-06-08 12:42 ` Alexandre TORGUE
2023-06-09 6:21 ` Dario Binacchi
2023-06-12 7:35 ` Alexandre TORGUE [this message]
2023-06-07 6:31 ` [RESEND PATCH v2 3/6] ARM: dts: stm32: support display on stm32f746-disco board Dario Binacchi
2023-06-07 6:42 ` Jagan Teki
2023-06-07 12:49 ` Dario Binacchi
2023-06-07 6:31 ` [RESEND PATCH v2 4/6] dt-bindings: display: simple: add Rocktech RK043FN48H Dario Binacchi
2023-06-07 6:40 ` Jagan Teki
2023-06-07 7:16 ` Raphael Gallais-Pou
2023-06-07 8:15 ` (subset) [RESEND PATCH v2 0/6] Add display support on the stm32f746-disco board Neil Armstrong
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=3580b822-1d6e-91af-3f5b-f076a8aaddf1@foss.st.com \
--to=alexandre.torgue@foss.st.com \
--cc=conor+dt@kernel.org \
--cc=dario.binacchi@amarulasolutions.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-amarula@amarulasolutions.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=michael@amarulasolutions.com \
--cc=philippe.cornu@foss.st.com \
--cc=raphael.gallais-pou@foss.st.com \
--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;
as well as URLs for NNTP newsgroup(s).