brintos

brintos / linux-shallow public Read only

0
0
Text · 1.0 KiB · 0f95fe8 Raw
49 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/media/amlogic,meson6-ir.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Amlogic Meson IR remote control receiver8 9maintainers:10  - Neil Armstrong <neil.armstrong@linaro.org>11 12allOf:13  - $ref: rc.yaml#14 15properties:16  compatible:17    oneOf:18      - enum:19          - amlogic,meson6-ir20          - amlogic,meson8b-ir21          - amlogic,meson-gxbb-ir22          - amlogic,meson-s4-ir23      - items:24          - const: amlogic,meson-gx-ir25          - const: amlogic,meson-gxbb-ir26 27  reg:28    maxItems: 129 30  interrupts:31    maxItems: 132 33required:34  - compatible35  - reg36  - interrupts37 38unevaluatedProperties: false39 40examples:41  - |42    #include <dt-bindings/interrupt-controller/irq.h>43    #include <dt-bindings/interrupt-controller/arm-gic.h>44    ir-receiver@c8100480 {45        compatible = "amlogic,meson6-ir";46        reg = <0xc8100480 0x20>;47        interrupts = <GIC_SPI 15 IRQ_TYPE_EDGE_RISING>;48    };49