Path: csiph.com!news.mixmin.net!aioe.org!bofh.it!news.nic.it!robomod From: Andrew Jeffery Newsgroups: linux.kernel Subject: [PATCH 07/12] syscon: dt-bindings: Add documentation for Aspeed system control units Date: Wed, 20 Jul 2016 08:10:02 +0200 Message-ID: References: Dkim-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=aj.id.au; h=cc :date:from:in-reply-to:message-id:references:subject:to :x-sasl-enc:x-sasl-enc; s=mesmtp; bh=+zHi9gRqQtwLpdiOmpUi6etl1QU =; b=jFCwMZFIeYiFYnZqxq6W4w/YqYdAbpUKcsq5KmsuIjtRVkIaLP0bYyf1sWJ OG6YMf6xtIf8aHUf/kXDX4wsrgJFjQwgiVfOJKmHMm33fXjpOrkAQZwRxXfkvxiO l5VFv0G8iOyQazoM23xfFv5qe01joaQppmYQRO+7/zARUcDo= Dkim-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=+zHi 9gRqQtwLpdiOmpUi6etl1QU=; b=iNQogzBgEuaaM7GSXCbiYX9ovk+da/P2pwYp UB9NQsExj8a24DZeMf1CvYjLP6cn8LAbh3mDtZjsBIFp87DfpccRitMFYL3BvvE+ pZ4RR0NDV9Y7XraBIjr3gT1sHAzLtBQFn6lxuXvI45SA8RdYC3ip55hmCEm3jFSP L4Ph7Fw= X-Sasl-Enc: bTfWa60RFqidp/4lUOutIhXgo0RXNaYNNprAf057yk1k 1468994406 X-Mailer: git-send-email 2.7.4 Sender: robomod@news.nic.it List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Approved: robomod@news.nic.it Lines: 30 Organization: linux.* mail to news gateway X-Original-Cc: Alexandre Courbot , Joel Stanley , Mark Rutland , Rob Herring , Russell King , Benjamin Herrenschmidt , Jeremy Kerr , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, Andrew Jeffery X-Original-Date: Wed, 20 Jul 2016 15:28:28 +0930 X-Original-Message-ID: <1468994313-13538-8-git-send-email-andrew@aj.id.au> X-Original-References: <1468994313-13538-1-git-send-email-andrew@aj.id.au> X-Original-Sender: linux-kernel-owner@vger.kernel.org Xref: csiph.com linux.kernel:1446996 Signed-off-by: Andrew Jeffery --- Documentation/devicetree/bindings/mfd/aspeed-scu.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/aspeed-scu.txt diff --git a/Documentation/devicetree/bindings/mfd/aspeed-scu.txt b/Documentation/devicetree/bindings/mfd/aspeed-scu.txt new file mode 100644 index 000000000000..4df798799101 --- /dev/null +++ b/Documentation/devicetree/bindings/mfd/aspeed-scu.txt @@ -0,0 +1,16 @@ +The Aspeed System Control Unit manages the global behaviour of the SoC, +configuring elements such as clocks, pinmux, and reset. + +Required properties: +- compatible: One of: + "aspeed,g4-scu", "syscon", "simple-mfd" + "aspeed,g5-scu", "syscon", "simple-mfd" + +- reg: contains the offset and length of the SCU memory region + +Example: + +syscon: syscon@1e6e2000 { + compatible = "aspeed,g4-scu", "syscon", "simple-mfd"; + reg = <0x1e6e2000 0x1a8>; +}; -- 2.7.4