Received: by 2002:a25:c593:0:0:0:0:0 with SMTP id v141csp719038ybe; Fri, 13 Sep 2019 05:17:07 -0700 (PDT) X-Google-Smtp-Source: APXvYqyGxS/RSIEE4kduiNtGokikytQMITXlATXjtDTlpED61LSxXDgvJGPFzO9RaCl4Ipe60fV4 X-Received: by 2002:a17:906:a895:: with SMTP id ha21mr38988603ejb.291.1568377027733; Fri, 13 Sep 2019 05:17:07 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1568377027; cv=none; d=google.com; s=arc-20160816; b=jrozYUoG1Ada5610YyNYUz7xzl3CMfEIKwszwDrGVO467k0tKyvp/Y3H9uKQ4IylcC AoYatt/3wVd5tTm1vwEfI1YcT4/JSYHirGCqbMxnoyLElDtUTR2nSoW7aqpsz+MjJcLx 3ude22BS5KWp9nyr5PLETvgkWK5/p6BZqLJTprnDXod86qLvo44cNdmQsT4gwmBn5wM0 Pi4Ula2AQY0QzIw2PchyA5ppkTrv7+Du2rb//CxYQTPn9pnd149phztF58jVeHb1Ww3e 1xAvIdPfebuqvuPp8j914inoHkNMvQZX/VdIHQAkx1Qsfj/b6wcUL4TmLq4L842uVdSm HMJQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=y4Hhe9eUJJudwuyjjDWceLCFklbqIqKo1OjScMPfujY=; b=xtr9ZqgIR+RWrDgftKRYGiZNe6fMXAUl1dL++qJcqBxJlZ6rtag1WIrrpdbZOYYv1n WYtL99plUrRSJ7dzUtSHEXZXD+NVgiMteDCDLoIiVSU1Qm4LbAjQY8n8IXSZfCU7AEar fFJJ0YS23qdNNloxx5kPmKHK6jD/0RTzaMV6/35LuYf+X1a4JWopO6VoZ+cUXPmAG9zU wTomkCtCOPo4tJ8QgK1TjGIYAw+ePQbxwUn0Jr1RnBWwm/7nGI828OQeo1gm0BaoHAy4 GmDcQV/q03+X1J+6M3yrAxEl1qhtWJeP8PfhgWbBrko/RpGc083O2z0SZ939g7hpgZKX uJ0w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b35si15753172edb.204.2019.09.13.05.16.44; Fri, 13 Sep 2019 05:17:07 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729748AbfIMMMh (ORCPT + 99 others); Fri, 13 Sep 2019 08:12:37 -0400 Received: from relmlor2.renesas.com ([210.160.252.172]:15933 "EHLO relmlie6.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726822AbfIMMMh (ORCPT ); Fri, 13 Sep 2019 08:12:37 -0400 X-IronPort-AV: E=Sophos;i="5.64,501,1559487600"; d="scan'208";a="26313260" Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 13 Sep 2019 21:12:34 +0900 Received: from renesas-VirtualBox.ree.adwin.renesas.com (unknown [10.226.37.56]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 03D714001DDD; Fri, 13 Sep 2019 21:12:32 +0900 (JST) From: Gareth Williams To: Mark Brown , Rob Herring , Mark Rutland Cc: Phil Edworthy , linux-spi@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Gareth Williams Subject: [PATCH 1/3] dt: spi: Add Renesas RZ/N1 binding documentation Date: Fri, 13 Sep 2019 13:11:58 +0100 Message-Id: <1568376720-7402-2-git-send-email-gareth.williams.jx@renesas.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1568376720-7402-1-git-send-email-gareth.williams.jx@renesas.com> References: <1568376720-7402-1-git-send-email-gareth.williams.jx@renesas.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Phil Edworthy The Renesas RZ/N1 SPI Controller is based on the Synopsys DW SSI, but has additional registers for software CS control and DMA. This patch does not address the changes required for DMA support, it simply adds the compatible string. The CS functionality is not very useful and also not needed as Linux can use gpios for the CS signals. Add a compatible string to handle any unforeseen issues that may arise, and pave the way for DMA support. Signed-off-by: Gareth Williams Signed-off-by: Phil Edworthy --- Note: All the other manufacturers detail their compatible strings in snps,dw-apb-ssi.txt. I think it makes sense for rzn1 to be in it's own file due to the changes made to the peripheral for DMA support. --- Documentation/devicetree/bindings/spi/renesas,rzn1-spi.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Documentation/devicetree/bindings/spi/renesas,rzn1-spi.txt diff --git a/Documentation/devicetree/bindings/spi/renesas,rzn1-spi.txt b/Documentation/devicetree/bindings/spi/renesas,rzn1-spi.txt new file mode 100644 index 0000000..fb1a672 --- /dev/null +++ b/Documentation/devicetree/bindings/spi/renesas,rzn1-spi.txt @@ -0,0 +1,11 @@ +Renesas RZ/N1 SPI Controller + +This controller is based on the Synopsys DW Synchronous Serial Interface and +inherits all properties defined in snps,dw-apb-ssi.txt except for the +compatible property. + +Required properties: +- compatible : The device specific string followed by the generic RZ/N1 string. + Therefore it must be one of: + "renesas,r9a06g032-spi", "renesas,rzn1-spi" + "renesas,r9a06g033-spi", "renesas,rzn1-spi" -- 2.7.4