From patchwork Mon Dec 9 10:34:30 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Oleksij Rempel X-Patchwork-Id: 13899264 Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6A41521766A for ; Mon, 9 Dec 2024 10:34:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733740495; cv=none; b=KGZJFQrRxwmU+qZs4EHCT2d8GzZBHgbv3r0pSN5onT2r2Nnmz5lDUcFYUCcEjT2XDkN3VAmOdI62XY5zGxFnQefmWaodaLapbXz3AqEVxzc3tc2saeyl5QbbJR5fnWVuCget9qyQsUg+kNPU7bKoJd6EW1/G42hJGAzkAafjEC0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733740495; c=relaxed/simple; bh=66RywZ0JRagI5ZhzICafvsmxcJtS7MtCvp7n3FefA6A=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=hiwvettqE3kzNm2VhThno3NMU3tbI6cp0l85x2etQKp5MSNFvHe+K4klx89dwrN9lJNRlWAEGwDGCxnhoWb4fic1LlgVvyYlERBIMsY4pIPBq4xgVAmmZDXEd4pSJ2xU2wY8JKr4DQuOIlKUCuhUdcHPQ6SF8erhhCdcue4QXoU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1tKb65-00063s-RH; Mon, 09 Dec 2024 11:34:37 +0100 Received: from dude04.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::ac]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1tKb63-002UsH-0Q; Mon, 09 Dec 2024 11:34:35 +0100 Received: from ore by dude04.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1tKb63-001VXM-2f; Mon, 09 Dec 2024 11:34:35 +0100 From: Oleksij Rempel To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , Maxime Coquelin , Alexandre Torgue , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Woojung Huh , Andrew Lunn Cc: Oleksij Rempel , kernel@pengutronix.de, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, devicetree@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com Subject: [PATCH v2 0/4] Add support for Priva E-Measuringbox board Date: Mon, 9 Dec 2024 11:34:30 +0100 Message-Id: <20241209103434.359522-1-o.rempel@pengutronix.de> X-Mailer: git-send-email 2.39.5 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: ore@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: netdev@vger.kernel.org This patch series introduces support for the Priva E-Measuringbox board based on the ST STM32MP133 SoC. The set includes all the necessary changes for device tree bindings, vendor prefixes, thermal support, and board-specific devicetree to pass devicetree validation and checkpatch tests. changes v2: - drop: dt-bindings: net: Add TI DP83TD510 10BaseT1L PHY Oleksij Rempel (2): dt-bindings: vendor-prefixes: Add prefix for Priva dt-bindings: arm: stm32: Add Priva E-Measuringbox board Roan van Dijk (2): arm: dts: stm32: Add thermal support for STM32MP131 arm: dts: stm32: Add Priva E-Measuringbox devicetree .../devicetree/bindings/arm/stm32/stm32.yaml | 6 + .../devicetree/bindings/vendor-prefixes.yaml | 2 + arch/arm/boot/dts/st/Makefile | 1 + arch/arm/boot/dts/st/stm32mp131.dtsi | 35 ++ arch/arm/boot/dts/st/stm32mp133c-prihmb.dts | 496 ++++++++++++++++++ 5 files changed, 540 insertions(+) create mode 100644 arch/arm/boot/dts/st/stm32mp133c-prihmb.dts --- 2.39.5