brintos

brintos / linux-shallow public Read only

0
0
Text · 981 B · 065f254 Raw
44 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/interrupt-controller/thead,c900-aclint-mswi.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Sophgo sg2042 CLINT Machine-level Software Interrupt Device8 9maintainers:10  - Inochi Amaoto <inochiama@outlook.com>11 12properties:13  compatible:14    items:15      - enum:16          - sophgo,sg2042-aclint-mswi17      - const: thead,c900-aclint-mswi18 19  reg:20    maxItems: 121 22  interrupts-extended:23    minItems: 124    maxItems: 409525 26additionalProperties: false27 28required:29  - compatible30  - reg31  - interrupts-extended32 33examples:34  - |35    interrupt-controller@94000000 {36      compatible = "sophgo,sg2042-aclint-mswi", "thead,c900-aclint-mswi";37      interrupts-extended = <&cpu1intc 3>,38                            <&cpu2intc 3>,39                            <&cpu3intc 3>,40                            <&cpu4intc 3>;41      reg = <0x94000000 0x00010000>;42    };43...44