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 8A5BFC54EBD for ; Thu, 12 Jan 2023 11:11:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236224AbjALLLT (ORCPT ); Thu, 12 Jan 2023 06:11:19 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34362 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233641AbjALLKh (ORCPT ); Thu, 12 Jan 2023 06:10:37 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 39EE4544CD; Thu, 12 Jan 2023 03:02:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1673521341; x=1705057341; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=YsL7sE396yrR5jfUPnxxTkKkI0gksABIVbLh3VwylF0=; b=KGu4OeOW/9P9vbvGN7/oKubfJ7BjmhRSTFyDHkM/yvOlefqG4Gc2mZHI zN5L01KnY/hY3RmD0XoZ5pxPJI7oiiZ4ze4oBhmFvRN8OjwAbUbN13z9D ClZh4zFXPp+UfQ47YSj9p+w+gjDOHb7V4fNHcoOgXOlXtzcqlioXeP5UC 9U4kjG8sHK6VU8zaRECu5+p6/jhuTXKFTZv8A9E4dxY0brbFyJCnf/2x0 eCvgfBfbgLX5+WlV3IbSIFfyQYyh/1HpX5rcf1RyveC9T2GzUgtcSuj3x 4j5umZfAI/al0nayYwnxl57yFU1sTMrWYX5JIu6N8Psiv7n2Zx3Fyp7lj A==; X-IronPort-AV: E=Sophos;i="5.96,319,1665471600"; d="scan'208";a="196343931" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa3.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 12 Jan 2023 04:02:19 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) 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.2507.16; Thu, 12 Jan 2023 04:02:18 -0700 Received: from che-lt-i66125lx.microchip.com (10.10.115.15) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2507.16 via Frontend Transport; Thu, 12 Jan 2023 04:02:10 -0700 From: Durai Manickam KR To: , , , , , , , , , , , , , , , , , , , , , , , , CC: Durai Manickam KR Subject: [PATCH v4 0/8] Add support for sam9x60 curiosity board Date: Thu, 12 Jan 2023 16:32:00 +0530 Message-ID: <20230112110208.97946-1-durai.manickamkr@microchip.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series of patches is meant to address the following: - Moving of flexcom definitions from board file to SoC file and some minor changes to its properties. - Add support for the new sam9x60 curiosity board based on the existing sam9x60 SoC. Changes in v4: -------------- - Added the missed property atmel,usart-mode in uart5 - Renamed the led label. Changes in v3: -------------- - Updated commit logs mentioning each author's contribution. - Author name is updated based on the linux mainline guidelines. - updated the description file such that sam9x60 curiosity is added together with sam9x60ek as an enum. - Updated the entries in the regulator container alphabetically sorted. - Added label name and node name following the guidelines. Changes in v2: -------------- - Added generic names for regulator node. - Removed the #addredd-cells and #size-cells property which shows compilation warning. - Removed the property "status=okay" as this is default. - No underscores used for the pinctrl definitions and node names. - Organised the patches in the logical way. - Bindings are made separate patch. Durai Manickam KR (4): ARM: dts: at91: sam9x60: move flexcom definitions ARM: dts: at91: sam9x60: fix spi4 node dt-bindings: arm: at91: Add info on sam9x60 curiosity ARM: dts: at91: sam9x60_curiosity: Add device tree for sam9x60 curiosity board Manikandan Muralidharan (4): ARM: dts: at91: sam9x60: Fix the label numbering for the flexcom functions ARM: dts: at91: sam9x60: Specify the FIFO size for the Flexcom UART ARM: dts: at91: sam9x60: Add DMA bindings for the flexcom nodes ARM: dts: at91: sam9x60: Add missing flexcom definitions .../devicetree/bindings/arm/atmel-at91.yaml | 6 +- arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/at91-sam9x60_curiosity.dts | 499 ++++++++++++++ arch/arm/boot/dts/at91-sam9x60ek.dts | 50 +- arch/arm/boot/dts/sam9x60.dtsi | 622 ++++++++++++++++++ 5 files changed, 1136 insertions(+), 42 deletions(-) create mode 100644 arch/arm/boot/dts/at91-sam9x60_curiosity.dts -- 2.25.1