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 X-Spam-Level: X-Spam-Status: No, score=-8.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7D10CFC6194 for ; Fri, 8 Nov 2019 10:28:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 53C2221848 for ; Fri, 8 Nov 2019 10:28:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1573208891; bh=AOSjNRac0P9NEqExaxB0xZTWmcyhkd13as5AIA1QlAA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=lyD8pxGunTfonzbyXSf3sZCNS0Wz5QPx5qBt2fujY0JvDTksVgv4IMOKnF3Ci/M+H DJR+NV0hAj2sHXrYQsN9SOMkDzzPWd8o8bQmuvqEtjBJrZg3ahrs7UDImDd+ZPd9ki hrsO4f6gbhW/JQ2A7rn13UprGXoNLunsxs45Rehc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730948AbfKHK2K (ORCPT ); Fri, 8 Nov 2019 05:28:10 -0500 Received: from mail.kernel.org ([198.145.29.99]:55114 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726149AbfKHK2K (ORCPT ); Fri, 8 Nov 2019 05:28:10 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 997DF206BA; Fri, 8 Nov 2019 10:28:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1573208889; bh=AOSjNRac0P9NEqExaxB0xZTWmcyhkd13as5AIA1QlAA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MMCWRLIPqRMeWNaDQUiiTnuQ2uS0dICkTS3gRPk7P+iNA8cyh/JeygV57zPG+NxmY kYgXxnjTO11HViK4KzLlph40W+a6qDazZbXc9CnT8tRfliiAzNCMxJTKq4Fdbir8td 0KJT3vLj5HkWsVy6nOJNtxnn8ZKJlJtgBFH2cHHg= Date: Fri, 8 Nov 2019 11:28:06 +0100 From: Greg KH To: Joel Stanley Cc: Rob Herring , Jeremy Kerr , Alistar Popple , Eddie James , Steven Rostedt , Ingo Molnar , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-fsi@lists.ozlabs.org Subject: Re: [PATCH v2 08/11] dt-bindings: fsi: Add description of FSI master Message-ID: <20191108102806.GA656785@kroah.com> References: <20191108051945.7109-1-joel@jms.id.au> <20191108051945.7109-9-joel@jms.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191108051945.7109-9-joel@jms.id.au> User-Agent: Mutt/1.12.2 (2019-09-21) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Nov 08, 2019 at 03:49:42PM +1030, Joel Stanley wrote: > This describes the FSI master present in the AST2600. > > Signed-off-by: Joel Stanley > Acked-by: Alistair Popple > --- > .../bindings/fsi/fsi-master-aspeed.txt | 24 +++++++++++++++++++ > 1 file changed, 24 insertions(+) > create mode 100644 Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt > > diff --git a/Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt b/Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt > new file mode 100644 > index 000000000000..b758f91914f7 > --- /dev/null > +++ b/Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt > @@ -0,0 +1,24 @@ > +Device-tree bindings for AST2600 FSI master > +------------------------------------------- > + > +The AST2600 contains two identical FSI masters. They share a clock and have a > +separate interrupt line and output pins. > + > +Required properties: > + - compatible: "aspeed,ast2600-fsi-master" > + - reg: base address and length > + - clocks: phandle and clock number > + - interrupts: platform dependent interrupt description > + - pinctrl-0: phandle to pinctrl node > + - pinctrl-names: pinctrl state > + > +Examples: > + > + fsi-master { > + compatible = "aspeed,ast2600-fsi-master", "fsi-master"; > + reg = <0x1e79b000 0x94>; > + interrupts = ; > + pinctrl-names = "default"; > + pinctrl-0 = <&pinctrl_fsi1_default>; > + clocks = <&syscon ASPEED_CLK_GATE_FSICLK>; > + }; > -- > 2.24.0.rc1 > As these all seem like bog-standard properties, I'll take this now, thanks. greg k-h 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 X-Spam-Level: X-Spam-Status: No, score=-8.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A92DC5DF60 for ; Fri, 8 Nov 2019 10:28:15 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 0D1182178F for ; Fri, 8 Nov 2019 10:28:15 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="tDHghkRG"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="MMCWRLIP" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0D1182178F Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linuxfoundation.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=xz8XXV4MPerKUYvDKHCVNaz0yylAgClXB7WSNjG3k1E=; b=tDHghkRGKbLz8l LZ7uY0lOaPARLc92Umlnkuww30GO+sqaZ+U6B/5WbA05CtGV74geyJ7mJ4K/wcCWLQ5buQr54rlpv Cl8WvP7oQ3rLeOhARXgZK0PAp40gTJVtNmIOVx4Ch+UIhLwAmSy5ZuJdf1F3qEt1R2wSd1wrAC1P0 MtcKRjW7wU9iIdfyHRlagJJJl4mHF2/jcGOsuMHxafbBs0LrsdKakF0J9IVlt2mUJXmpkcjMFSRzM IA4to04uIT7TB7hZuqdb0Lj7Ph0olpESrrgRH96mqT87FBcDx6xLnpp1AANqp7PcVbeH4oEPXJjN8 V9TGcrCIx8KFF41HNOvQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1iT1Uz-00085U-Ce; Fri, 08 Nov 2019 10:28:13 +0000 Received: from mail.kernel.org ([198.145.29.99]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1iT1Uw-00084h-9J for linux-arm-kernel@lists.infradead.org; Fri, 08 Nov 2019 10:28:11 +0000 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 997DF206BA; Fri, 8 Nov 2019 10:28:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1573208889; bh=AOSjNRac0P9NEqExaxB0xZTWmcyhkd13as5AIA1QlAA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MMCWRLIPqRMeWNaDQUiiTnuQ2uS0dICkTS3gRPk7P+iNA8cyh/JeygV57zPG+NxmY kYgXxnjTO11HViK4KzLlph40W+a6qDazZbXc9CnT8tRfliiAzNCMxJTKq4Fdbir8td 0KJT3vLj5HkWsVy6nOJNtxnn8ZKJlJtgBFH2cHHg= Date: Fri, 8 Nov 2019 11:28:06 +0100 From: Greg KH To: Joel Stanley Subject: Re: [PATCH v2 08/11] dt-bindings: fsi: Add description of FSI master Message-ID: <20191108102806.GA656785@kroah.com> References: <20191108051945.7109-1-joel@jms.id.au> <20191108051945.7109-9-joel@jms.id.au> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20191108051945.7109-9-joel@jms.id.au> User-Agent: Mutt/1.12.2 (2019-09-21) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20191108_022810_348325_01DFB72B X-CRM114-Status: GOOD ( 16.14 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: devicetree@vger.kernel.org, Alistar Popple , Eddie James , linux-kernel@vger.kernel.org, Steven Rostedt , Rob Herring , Jeremy Kerr , Ingo Molnar , linux-arm-kernel@lists.infradead.org, linux-fsi@lists.ozlabs.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fri, Nov 08, 2019 at 03:49:42PM +1030, Joel Stanley wrote: > This describes the FSI master present in the AST2600. > > Signed-off-by: Joel Stanley > Acked-by: Alistair Popple > --- > .../bindings/fsi/fsi-master-aspeed.txt | 24 +++++++++++++++++++ > 1 file changed, 24 insertions(+) > create mode 100644 Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt > > diff --git a/Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt b/Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt > new file mode 100644 > index 000000000000..b758f91914f7 > --- /dev/null > +++ b/Documentation/devicetree/bindings/fsi/fsi-master-aspeed.txt > @@ -0,0 +1,24 @@ > +Device-tree bindings for AST2600 FSI master > +------------------------------------------- > + > +The AST2600 contains two identical FSI masters. They share a clock and have a > +separate interrupt line and output pins. > + > +Required properties: > + - compatible: "aspeed,ast2600-fsi-master" > + - reg: base address and length > + - clocks: phandle and clock number > + - interrupts: platform dependent interrupt description > + - pinctrl-0: phandle to pinctrl node > + - pinctrl-names: pinctrl state > + > +Examples: > + > + fsi-master { > + compatible = "aspeed,ast2600-fsi-master", "fsi-master"; > + reg = <0x1e79b000 0x94>; > + interrupts = ; > + pinctrl-names = "default"; > + pinctrl-0 = <&pinctrl_fsi1_default>; > + clocks = <&syscon ASPEED_CLK_GATE_FSICLK>; > + }; > -- > 2.24.0.rc1 > As these all seem like bog-standard properties, I'll take this now, thanks. greg k-h _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel