1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/snps,archs-gfrc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Synopsys ARC Free Running 64-bit Global Timer for ARC HS CPUs 8 9maintainers: 10 - Vineet Gupta <vgupta@synopsys.com> 11 12properties: 13 compatible: 14 const: snps,archs-gfrc 15 16 clocks: 17 maxItems: 1 18 19required: 20 - compatible 21 - clocks 22 23additionalProperties: false 24 25examples: 26 - | 27 timer { 28 compatible = "snps,archs-gfrc"; 29 clocks = <&core_clk>; 30 }; 31