1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/fpga/technologic,ts7300-fpga.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Technologic Systems TS-7300 FPGA Manager 8 9maintainers: 10 - Florian Fainelli <f.fainelli@gmail.com> 11 12description: 13 FPGA manager for the Altera Cyclone II FPGA on Technologic Systems 14 TS-7300 board. The FPGA is programmed via the memory-mapped interface 15 implemented in the CPLD. 16 17properties: 18 compatible: 19 const: technologic,ts7300-fpga 20 21 reg: 22 maxItems: 1 23 24required: 25 - compatible 26 - reg 27 28additionalProperties: false 29 30examples: 31 - | 32 fpga-mgr@13c00000 { 33 compatible = "technologic,ts7300-fpga"; 34 reg = <0x13c00000 0x2>; 35 }; 36... 37