~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/bus/baikal,bt1-axi.yaml

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2 # Copyright (C) 2020 BAIKAL ELECTRONICS, JSC
  3 %YAML 1.2
  4 ---
  5 $id: http://devicetree.org/schemas/bus/baikal,bt1-axi.yaml#
  6 $schema: http://devicetree.org/meta-schemas/core.yaml#
  7 
  8 title: Baikal-T1 AXI-bus
  9 
 10 maintainers:
 11   - Serge Semin <fancer.lancer@gmail.com>
 12 
 13 description: |
 14   AXI3-bus is the main communication bus of Baikal-T1 SoC connecting all
 15   high-speed peripheral IP-cores with RAM controller and with MIPS P5600
 16   cores. Traffic arbitration is done by means of DW AXI Interconnect (so
 17   called AXI Main Interconnect) routing IO requests from one block to
 18   another: from CPU to SoC peripherals and between some SoC peripherals
 19   (mostly between peripheral devices and RAM, but also between DMA and
 20   some peripherals). In case of any protocol error, device not responding
 21   an IRQ is raised and a faulty situation is reported to the AXI EHB
 22   (Errors Handler Block) embedded on top of the DW AXI Interconnect and
 23   accessible by means of the Baikal-T1 System Controller.
 24 
 25 allOf:
 26   - $ref: /schemas/simple-bus.yaml#
 27 
 28 properties:
 29   compatible:
 30     contains:
 31       const: baikal,bt1-axi
 32 
 33   reg:
 34     minItems: 1
 35     items:
 36       - description: Synopsys DesignWare AXI Interconnect QoS registers
 37       - description: AXI EHB MMIO system controller registers
 38 
 39   reg-names:
 40     minItems: 1
 41     items:
 42       - const: qos
 43       - const: ehb
 44 
 45   '#interconnect-cells':
 46     const: 1
 47 
 48   syscon:
 49     $ref: /schemas/types.yaml#/definitions/phandle
 50     description: Phandle to the Baikal-T1 System Controller DT node
 51 
 52   interrupts:
 53     maxItems: 1
 54 
 55   clocks:
 56     items:
 57       - description: Main Interconnect uplink reference clock
 58 
 59   clock-names:
 60     items:
 61       - const: aclk
 62 
 63   resets:
 64     items:
 65       - description: Main Interconnect reset line
 66 
 67   reset-names:
 68     items:
 69       - const: arst
 70 
 71 unevaluatedProperties: false
 72 
 73 required:
 74   - compatible
 75   - reg
 76   - reg-names
 77   - syscon
 78   - interrupts
 79   - clocks
 80   - clock-names
 81 
 82 examples:
 83   - |
 84     #include <dt-bindings/interrupt-controller/mips-gic.h>
 85 
 86     bus@1f05a000 {
 87       compatible = "baikal,bt1-axi", "simple-bus";
 88       reg = <0x1f05a000 0x1000>,
 89             <0x1f04d110 0x8>;
 90       reg-names = "qos", "ehb";
 91       #address-cells = <1>;
 92       #size-cells = <1>;
 93       #interconnect-cells = <1>;
 94 
 95       syscon = <&syscon>;
 96 
 97       ranges;
 98 
 99       interrupts = <GIC_SHARED 127 IRQ_TYPE_LEVEL_HIGH>;
100 
101       clocks = <&ccu_axi 0>;
102       clock-names = "aclk";
103 
104       resets = <&ccu_axi 0>;
105       reset-names = "arst";
106     };
107 ...

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php