From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 52805C3F6B0 for ; Mon, 22 Aug 2022 08:05:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233120AbiHVIFC (ORCPT ); Mon, 22 Aug 2022 04:05:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57272 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232851AbiHVIEr (ORCPT ); Mon, 22 Aug 2022 04:04:47 -0400 Received: from mail.fris.de (mail.fris.de [IPv6:2a01:4f8:c2c:390b::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E25E02C67A; Mon, 22 Aug 2022 01:04:01 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 6C6A8BFAE8; Mon, 22 Aug 2022 10:03:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fris.de; s=dkim; t=1661155439; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=C1cog6gaUyxsBhXDhxv6Ko1fV2iCSeEz1wEIkVDpCAI=; b=tpuqPvl9onR1DLsy6BeIuq9xmxuX/2bZXiEuNnNH3mo6WpZ2uvaTtJZdIMUzrLLjiqPxUM eyAgfzaAwxIoo7fScR5Bd0SWMuzBSIxr/+5O9SWPzH+hhnuIoRTARreo7pwhxfN0UisRvr FaSVSmzQGsQyEZ51SxWVR/S16i+vndIqyQJgw9UyBMXpZdnS7necOxORz/7q84EofnrEXX Jokb/MqpiXSX5Iqczcw+klal7n9MytV/JiZ6Ae0ybcztC4S5FdB+JN4HtHixDaSolRN6lW 3MZSOcp/G4J9dYQDOXCv15RwWqog0oNvuhz38Uzz42HuiEOHSJ5mO8WEEJ7Eqg== From: Frieder Schrempf To: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Li Yang , Shawn Guo Cc: Krzysztof Kozlowski , Frieder Schrempf , Krzysztof Kozlowski , Rob Herring , Sascha Hauer Subject: [PATCH v4 0/8] arm64: dts: imx8mm-kontron: Improvements and OSM board support Date: Mon, 22 Aug 2022 10:03:46 +0200 Message-Id: <20220822080357.24478-1-frieder@fris.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org From: Frieder Schrempf This set contains a few improvements for the imx8mm-kontron devicetrees (patch 3-7) and support for a new SoM (patch 8, including baseboard) that complies to the Open Standard Module (OSM) 1.0 hardware specification, size S (https://sget.org/standards/osm). It also includes binding changes in patch 1 and 2. Changes in v4: * fix hex values and unit addresses in SPI NOR partition nodes * fix SoM dtsi includes Changes in v3: * drop patch for 2 which was applied separately * rebase on v6.0-rc1 * rename compatibles and file names Changes in v2: * move binding changes to beginning of patchset * Allow arbitrary regulator names in PCA9450 bindings * Use voltage rail names from schematic for PMIC regulator-names * Add SPI NOR partition layout to devicetree * Remove unneeded header include * Add tags Frieder Schrempf (8): dt-bindings: arm: fsl: Rename compatibles for Kontron i.MX8MM SoM/board dt-bindings: arm: fsl: Add Kontron BL i.MX8MM OSM-S board arm64: dts: imx8mm-kontron: Adjust compatibles, file names and model strings arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO voltage arm64: dts: imx8mm-kontron: Remove low DDRC operating point arm64: dts: imx8mm-kontron: Use voltage rail names from schematic for PMIC regulator-names arm64: dts: imx8mm-kontron: Add SPI NOR partition layout arm64: dts: Add support for Kontron SL/BL i.MX8MM OSM-S .../devicetree/bindings/arm/fsl.yaml | 13 +- arch/arm64/boot/dts/freescale/Makefile | 3 +- .../dts/freescale/imx8mm-kontron-bl-osm-s.dts | 376 ++++++++++++++++++ ...tron-n801x-s.dts => imx8mm-kontron-bl.dts} | 9 +- .../dts/freescale/imx8mm-kontron-osm-s.dtsi | 330 +++++++++++++++ ...-n801x-som.dtsi => imx8mm-kontron-sl.dtsi} | 53 ++- 6 files changed, 758 insertions(+), 26 deletions(-) create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-kontron-bl-osm-s.dts rename arch/arm64/boot/dts/freescale/{imx8mm-kontron-n801x-s.dts => imx8mm-kontron-bl.dts} (96%) create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-kontron-osm-s.dtsi rename arch/arm64/boot/dts/freescale/{imx8mm-kontron-n801x-som.dtsi => imx8mm-kontron-sl.dtsi} (87%) -- 2.37.2