From patchwork Tue Aug 6 10:55:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leonard Crestez X-Patchwork-Id: 11078663 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5911D13AC for ; Tue, 6 Aug 2019 10:56:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 42BD720499 for ; Tue, 6 Aug 2019 10:56:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 35652212D6; Tue, 6 Aug 2019 10:56:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BCF8820499 for ; Tue, 6 Aug 2019 10:56:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731093AbfHFK4D (ORCPT ); Tue, 6 Aug 2019 06:56:03 -0400 Received: from inva020.nxp.com ([92.121.34.13]:58206 "EHLO inva020.nxp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731006AbfHFK4C (ORCPT ); Tue, 6 Aug 2019 06:56:02 -0400 Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 872FE1A05E6; Tue, 6 Aug 2019 12:55:59 +0200 (CEST) Received: from inva024.eu-rdc02.nxp.com (inva024.eu-rdc02.nxp.com [134.27.226.22]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 7045E1A05CE; Tue, 6 Aug 2019 12:55:59 +0200 (CEST) Received: from fsr-ub1864-112.ea.freescale.net (fsr-ub1864-112.ea.freescale.net [10.171.82.98]) by inva024.eu-rdc02.nxp.com (Postfix) with ESMTP id 7D3F4205DD; Tue, 6 Aug 2019 12:55:58 +0200 (CEST) From: Leonard Crestez To: Georgi Djakov , Rob Herring , =?utf-8?b?QXJ0dXIgxZp3aWdvxYQ=?= , Alexandre Bailon , Viresh Kumar Cc: Krzysztof Kozlowski , Chanwoo Choi , MyungJoo Ham , Kyungmin Park , Saravana Kannan , Mark Rutland , Shawn Guo , Dong Aisheng , Fabio Estevam , Stephen Boyd , Michael Turquette , Jacky Bai , Anson Huang , kernel@pengutronix.de, linux-imx@nxp.com, linux-pm@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [RFCv3 1/3] dt-bindings: interconnect: Add bindings for imx Date: Tue, 6 Aug 2019 13:55:52 +0300 Message-Id: <90561b14af66655ca859d387b3808a84641eea4e.1565088423.git.leonard.crestez@nxp.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: References: In-Reply-To: References: X-Virus-Scanned: ClamAV using ClamSMTP Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Leonard Crestez --- .../devicetree/bindings/interconnect/imx.yaml | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Documentation/devicetree/bindings/interconnect/imx.yaml diff --git a/Documentation/devicetree/bindings/interconnect/imx.yaml b/Documentation/devicetree/bindings/interconnect/imx.yaml new file mode 100644 index 000000000000..c6f173b38f4f --- /dev/null +++ b/Documentation/devicetree/bindings/interconnect/imx.yaml @@ -0,0 +1,38 @@ +# SPDX-License-Identifier: GPL-2.0 +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/interconnect/imx.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Generic i.MX interconnect device + +maintainers: + - Leonard Crestez + +properties: + compatible: + contains: + enum: + - fsl,imx8mm-interconnect + "#interconnect-cells": + const: 1 + devfreq-names: + description: Names of devfreq instances for adjustable nodes + devfreq: + description: List of phandle pointing to devfreq instances + +required: + - compatible + - "#interconnect-cells" + - "devfreq-names" + - "devfreq" + +examples: + - | + #include + icc: interconnect { + compatible = "fsl,imx8mm-interconnect"; + #interconnect-cells = <1>; + devfreq-names = "dram", "noc", "axi"; + devfreq = <&ddrc>, <&noc>, <&pl301_main>; + };