public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: Amelie Delaunay <amelie.delaunay@foss.st.com>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Maxime Coquelin <mcoquelin.stm32@gmail.com>,
	Alexandre Torgue <alexandre.torgue@foss.st.com>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Will Deacon <will@kernel.org>,
	Richard Cochran <richardcochran@gmail.com>,
	<devicetree@vger.kernel.org>,
	<linux-stm32@st-md-mailman.stormreply.com>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <netdev@vger.kernel.org>
Subject: Re: [PATCH 06/10] arm64: dts: st: add stm32mp235f-dk board support
Date: Fri, 14 Feb 2025 15:13:57 +0100	[thread overview]
Message-ID: <e3d320a4-9e8e-438f-b85f-47cfa1219684@foss.st.com> (raw)
In-Reply-To: <20250213-truthful-accurate-gaur-bd118f@krzk-bin>

On 2/13/25 10:03, Krzysztof Kozlowski wrote:
> On Mon, Feb 10, 2025 at 04:21:00PM +0100, Amelie Delaunay wrote:
>> Add STM32MP235F Discovery Kit board support. It embeds a STM32MP235FAK
>> SoC, with 4GB of LPDDR4, 2*USB typeA, 1*USB3 typeC, 1*ETH, wifi/BT
>> combo, DSI HDMI, LVDS connector ...
>>
>> Signed-off-by: Amelie Delaunay <amelie.delaunay@foss.st.com>
>> ---
>>   arch/arm64/boot/dts/st/Makefile           |   1 +
>>   arch/arm64/boot/dts/st/stm32mp235f-dk.dts | 115 ++++++++++++++++++++++++++++++
>>   2 files changed, 116 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/st/Makefile b/arch/arm64/boot/dts/st/Makefile
>> index 0cc12f2b1dfeea6510793ea26f599f767df77749..06364152206997863d0991c25589de73c63494fb 100644
>> --- a/arch/arm64/boot/dts/st/Makefile
>> +++ b/arch/arm64/boot/dts/st/Makefile
>> @@ -1,4 +1,5 @@
>>   # SPDX-License-Identifier: GPL-2.0-only
>>   dtb-$(CONFIG_ARCH_STM32) += \
>> +	stm32mp235f-dk.dtb \
>>   	stm32mp257f-dk.dtb \
>>   	stm32mp257f-ev1.dtb
>> diff --git a/arch/arm64/boot/dts/st/stm32mp235f-dk.dts b/arch/arm64/boot/dts/st/stm32mp235f-dk.dts
>> new file mode 100644
>> index 0000000000000000000000000000000000000000..08e330d310749506c5b0e7a1fb2f80dfa134400a
>> --- /dev/null
>> +++ b/arch/arm64/boot/dts/st/stm32mp235f-dk.dts
>> @@ -0,0 +1,115 @@
>> +// SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
>> +/*
>> + * Copyright (C) STMicroelectronics 2025 - All Rights Reserved
>> + * Author: Amelie Delaunay <amelie.delaunay@foss.st.com> for STMicroelectronics.
>> + */
>> +
>> +/dts-v1/;
>> +
>> +#include <dt-bindings/gpio/gpio.h>
>> +#include <dt-bindings/input/input.h>
>> +#include <dt-bindings/leds/common.h>
>> +#include "stm32mp235.dtsi"
>> +#include "stm32mp23xf.dtsi"
>> +#include "stm32mp25-pinctrl.dtsi"
>> +#include "stm32mp25xxak-pinctrl.dtsi"
>> +
>> +/ {
>> +	model = "STMicroelectronics STM32MP235F-DK Discovery Board";
>> +	compatible = "st,stm32mp235f-dk", "st,stm32mp235";
>> +
>> +	aliases {
>> +		serial0 = &usart2;
>> +	};
>> +
>> +	chosen {
>> +		stdout-path = "serial0:115200n8";
>> +	};
>> +
>> +	gpio-keys {
>> +		compatible = "gpio-keys";
>> +
>> +		button-user-1 {
>> +			label = "User-1";
>> +			linux,code = <BTN_1>;
>> +			gpios = <&gpioc 5 GPIO_ACTIVE_HIGH>;
>> +			status = "okay";
> 
> Where is it disabled?
> 
>> +		};
>> +
>> +		button-user-2 {
>> +			label = "User-2";
>> +			linux,code = <BTN_2>;
>> +			gpios = <&gpioc 11 GPIO_ACTIVE_HIGH>;
>> +			status = "okay";
> 
> Same question
> 
>> +		};
>> +	};
> 
> Best regards,
> Krzysztof
> 

Will drop status property.

Regards,
Amelie


  reply	other threads:[~2025-02-14 14:17 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-10 15:20 [PATCH 00/10] Expand STM32MP2 family with new SoC and boards Amelie Delaunay
2025-02-10 15:20 ` [PATCH 01/10] dt-bindings: stm32: document stm32mp257f-dk board Amelie Delaunay
2025-02-11 18:19   ` Conor Dooley
2025-02-10 15:20 ` [PATCH 02/10] arm64: dts: st: add stm32mp257f-dk board support Amelie Delaunay
2025-02-10 15:20 ` [PATCH 03/10] arm64: Kconfig: expand STM32 Armv8 SoC with STM32MP23 SoCs family Amelie Delaunay
2025-02-10 15:20 ` [PATCH 04/10] arm64: dts: st: introduce stm32mp23 " Amelie Delaunay
2025-02-13  9:08   ` Krzysztof Kozlowski
2025-02-14 14:12     ` Amelie Delaunay
2025-02-10 15:20 ` [PATCH 05/10] dt-bindings: stm32: document stm32mp235f-dk board Amelie Delaunay
2025-02-11 18:19   ` Conor Dooley
2025-02-10 15:21 ` [PATCH 06/10] arm64: dts: st: add stm32mp235f-dk board support Amelie Delaunay
2025-02-13  9:03   ` Krzysztof Kozlowski
2025-02-14 14:13     ` Amelie Delaunay [this message]
2025-02-10 15:21 ` [PATCH 07/10] arm64: Kconfig: expand STM32 Armv8 SoC with STM32MP21 SoCs family Amelie Delaunay
2025-02-13  9:02   ` Krzysztof Kozlowski
2025-02-14 15:06     ` Amelie Delaunay
2025-02-15 11:14       ` Krzysztof Kozlowski
2025-02-10 15:21 ` [PATCH 08/10] arm64: dts: st: introduce stm32mp21 " Amelie Delaunay
2025-02-13  9:02   ` Krzysztof Kozlowski
2025-02-14 15:18     ` Amelie Delaunay
2025-02-10 15:21 ` [PATCH 09/10] dt-bindings: stm32: document stm32mp215f-dk board Amelie Delaunay
2025-02-13  8:59   ` Krzysztof Kozlowski
2025-02-10 15:21 ` [PATCH 10/10] arm64: dts: st: add stm32mp215f-dk board support Amelie Delaunay
2025-02-13  8:59   ` Krzysztof Kozlowski

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=e3d320a4-9e8e-438f-b85f-47cfa1219684@foss.st.com \
    --to=amelie.delaunay@foss.st.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=catalin.marinas@arm.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=krzk@kernel.org \
    --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=netdev@vger.kernel.org \
    --cc=richardcochran@gmail.com \
    --cc=robh@kernel.org \
    --cc=will@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