From patchwork Fri Mar 6 13:07:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Serge Semin X-Patchwork-Id: 11423887 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 3564F921 for ; Fri, 6 Mar 2020 13:13:01 +0000 (UTC) Received: by mail.kernel.org (Postfix) id 2F83421744; Fri, 6 Mar 2020 13:13:01 +0000 (UTC) Delivered-To: soc@kernel.org Received: from mail.baikalelectronics.ru (mail.baikalelectronics.com [87.245.175.226]) by mail.kernel.org (Postfix) with ESMTP id E849221739 for ; Fri, 6 Mar 2020 13:13:00 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E849221739 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=baikalelectronics.ru Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=Sergey.Semin@baikalelectronics.ru Received: from localhost (unknown [127.0.0.1]) by mail.baikalelectronics.ru (Postfix) with ESMTP id 7E27C8030705; Fri, 6 Mar 2020 13:07:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at baikalelectronics.ru Received: from mail.baikalelectronics.ru ([127.0.0.1]) by localhost (mail.baikalelectronics.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XUMLQxRvb2VS; Fri, 6 Mar 2020 16:07:31 +0300 (MSK) From: To: Rob Herring , Mark Rutland List-Id: CC: Serge Semin , Serge Semin , Alexey Malahov , Thomas Bogendoerfer , Paul Burton , Ralf Baechle , Arnd Bergmann , Olof Johansson , , , Subject: [PATCH 1/6] dt-bindings: Add Baikal-T1 AXI-bus EHB dts bindings file Date: Fri, 6 Mar 2020 16:07:16 +0300 In-Reply-To: <20200306130721.10347-1-Sergey.Semin@baikalelectronics.ru> References: <20200306130721.10347-1-Sergey.Semin@baikalelectronics.ru> MIME-Version: 1.0 X-ClientProxiedBy: MAIL.baikal.int (192.168.51.25) To mail (192.168.51.25) Message-Id: <20200306130732.7E27C8030705@mail.baikalelectronics.ru> From: Serge Semin This is a specific block embedded into the Baikal-T1 SoC, which is dedicated to detect AXI-bus protocol errors. So the dts node just needs to have the "be,bt1-axi-ehb" compatible string, MMIO registers and interrupts properties declared. Signed-off-by: Serge Semin Signed-off-by: Alexey Malahov Cc: Thomas Bogendoerfer Cc: Paul Burton Cc: Ralf Baechle Cc: Arnd Bergmann Cc: Olof Johansson Cc: soc@kernel.org --- .../soc/baikal-t1/be,bt1-axi-ehb.yaml | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Documentation/devicetree/bindings/soc/baikal-t1/be,bt1-axi-ehb.yaml diff --git a/Documentation/devicetree/bindings/soc/baikal-t1/be,bt1-axi-ehb.yaml b/Documentation/devicetree/bindings/soc/baikal-t1/be,bt1-axi-ehb.yaml new file mode 100644 index 000000000000..f0deeb8f261c --- /dev/null +++ b/Documentation/devicetree/bindings/soc/baikal-t1/be,bt1-axi-ehb.yaml @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: GPL-2.0 +# +# Copyright (C) 2019 - 2020 BAIKAL ELECTRONICS, JSC +# +# Baikal-T1 AXI-bus Errors Handler Block Device Tree Bindings. +# +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/soc/baikal-t1/be,bt1-axi-ehb.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Baikal-T1 AXI-bus Errors Handler Block + +maintainers: + - Serge Semin + +description: | + AXI3-bus is the main communication bus connecting all high-speed peripheral + IP-cores with RAM controller and with MIPS P5600 cores. Traffic arbitration + is done by means of Main Interconnect routing IO request from one block to + another. In case of any protocol error, device not responding an IRQ is + raised and a faulty situation is reported to the AXI EHB described by this + bindings. + +properties: + compatible: + const: be,bt1-axi-ehb + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + +additionalProperties: false + +required: + - compatible + - reg + - interrupts + +examples: + - | + #include + + axi_ehb: ehb@1F04D110 { + compatible = "be,bt1-axi-ehb"; + reg = <0x1F04D110 0x008>; + + interrupts = ; + }; +...