1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2# Copyright 2025 Daniel Tang <dt.tangr@gmail.com> 3%YAML 1.2 4--- 5$id: http://devicetree.org/schemas/interrupt-controller/lsi,zevio-intc.yaml# 6$schema: http://devicetree.org/meta-schemas/core.yaml# 7 8title: TI-NSPIRE Interrupt Controller 9 10maintainers: 11 - Daniel Tang <dt.tangr@gmail.com> 12 13description: | 14 TI-NSPIRE interrupt controller 15 16properties: 17 compatible: 18 const: lsi,zevio-intc 19 20 reg: 21 maxItems: 1 22 23 interrupt-controller: true 24 25 '#interrupt-cells': 26 const: 1 27 28required: 29 - compatible 30 - reg 31 - interrupt-controller 32 - '#interrupt-cells' 33 34additionalProperties: false 35 36examples: 37 - | 38 interrupt-controller@dc000000 { 39 compatible = "lsi,zevio-intc"; 40 interrupt-controller; 41 reg = <0xdc000000 0x1000>; 42 #interrupt-cells = <1>; 43 }; 44