brintos

brintos / linux-shallow public Read only

0
0
Text · 917 B · d19c666 Raw
50 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/fpga/altr,socfpga-hps2fpga-bridge.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Altera FPGA/HPS Bridge8 9maintainers:10  - Xu Yilun <yilun.xu@intel.com>11 12allOf:13  - $ref: fpga-bridge.yaml#14 15properties:16  compatible:17    enum:18      - altr,socfpga-lwhps2fpga-bridge19      - altr,socfpga-hps2fpga-bridge20      - altr,socfpga-fpga2hps-bridge21 22  reg:23    maxItems: 124 25  resets:26    maxItems: 127 28  clocks:29    maxItems: 130 31required:32  - compatible33  - reg34  - clocks35  - resets36 37unevaluatedProperties: false38 39examples:40  - |41    #include <dt-bindings/reset/altr,rst-mgr.h>42 43    fpga-bridge@ff400000 {44      compatible = "altr,socfpga-lwhps2fpga-bridge";45      reg = <0xff400000 0x100000>;46      bridge-enable = <0>;47      clocks = <&l4_main_clk>;48      resets = <&rst LWHPS2FPGA_RESET>;49    };50