1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/counter/fsl,ftm-quaddec.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: FlexTimer Quadrature decoder counter 8 9description: 10 Exposes a simple counter for the quadrature decoder mode. 11 12maintainers: 13 - Frank Li <Frank.li@nxp.com> 14 15properties: 16 compatible: 17 const: fsl,ftm-quaddec 18 19 reg: 20 maxItems: 1 21 22 big-endian: true 23 24required: 25 - compatible 26 - reg 27 28additionalProperties: false 29 30examples: 31 - | 32 counter@29d0000 { 33 compatible = "fsl,ftm-quaddec"; 34 reg = <0x29d0000 0x10000>; 35 big-endian; 36 }; 37