From patchwork Wed Mar 9 12:07:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sergiu Moga X-Patchwork-Id: 550669 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 7FD2EC433F5 for ; Wed, 9 Mar 2022 12:07:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232062AbiCIMIe (ORCPT ); Wed, 9 Mar 2022 07:08:34 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:55426 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231293AbiCIMId (ORCPT ); Wed, 9 Mar 2022 07:08:33 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1320612A9C; Wed, 9 Mar 2022 04:07:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1646827655; x=1678363655; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=z5RM9caPXppXXI00S9n55nXiz11VQZi94UuLhXfq/Rc=; b=cSlxfzEw2bWMrz21gwzE2+tjcldqQhPYWqSpH/KyDeneacfByOVLgheT 6AJuaInDK02EHyLVmuVDtYBVuAdY3VDIZsE9K9DIYdf0kFdUQ4TRTMwB4 OCj2XPyGL8BdmLkr0Y/fRxym+3wD55iwj79+I1ke3qFvHmPiEz2mCuC02 jJcC8XKW8CeZavAGK4xw7/z84QOpYkjhs7uMb0MEsoS4y8ksmTjh1qo/+ kpN8wlIjGg3Ru4ukhOaMIayVcvfHUxRtYpHj0eAosHp36D+o2SIOfW+Mq ZuYLM93VG9im6eYvZHr570GdsE70jwiwE46ZSzMOWSA6aZBmtXS/FDaH3 w==; X-IronPort-AV: E=Sophos;i="5.90,167,1643698800"; d="scan'208";a="148606604" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa4.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 09 Mar 2022 05:07:34 -0700 Received: from chn-vm-ex04.mchp-main.com (10.10.85.152) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.17; Wed, 9 Mar 2022 05:07:33 -0700 Received: from ROB-ULT-M68701.amer.actel.com (10.10.115.15) by chn-vm-ex04.mchp-main.com (10.10.85.152) with Microsoft SMTP Server id 15.1.2375.17 via Frontend Transport; Wed, 9 Mar 2022 05:07:31 -0700 From: Sergiu Moga To: , , , , CC: , , , , Sergiu Moga Subject: [PATCH 0/3] dt-bindings: i2c: convert i2c-at91 to json-schema Date: Wed, 9 Mar 2022 14:07:11 +0200 Message-ID: <20220309120714.51393-1-sergiu.moga@microchip.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org This patch series addresses the conversion of the I2C DT binding for Atmel/Microchip SoCs to Device Tree Schema format. The SAMA7G5 compatible has also been added to the I2C DT binding. It also ensures consistency across the SoC files regarding the ordering of the `rx` and `tx` strings of the `dma-names` property of the `i2c` nodes by changing it in the SoC file of `sama7g5`. Sergiu Moga (3): ARM: dts: at91: sama7g5: Swap `rx` and `tx` for `i2c` nodes dt-bindings: i2c: convert i2c-at91 to json-schema dt-bindings: i2c: at91: Add SAMA7G5 compatible strings list .../bindings/i2c/atmel,at91sam-i2c.yaml | 154 ++++++++++++++++++ .../devicetree/bindings/i2c/i2c-at91.txt | 82 ---------- arch/arm/boot/dts/sama7g5.dtsi | 18 +- 3 files changed, 163 insertions(+), 91 deletions(-) create mode 100644 Documentation/devicetree/bindings/i2c/atmel,at91sam-i2c.yaml delete mode 100644 Documentation/devicetree/bindings/i2c/i2c-at91.txt