Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2%YAML 1.2
3---
4$id: http://devicetree.org/schemas/interrupt-controller/openrisc,ompic.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Open Multi-Processor Interrupt Controller
8
9maintainers:
10 - Stafford Horne <shorne@gmail.com>
11
12properties:
13 compatible:
14 items:
15 - const: openrisc,ompic
16
17 reg:
18 maxItems: 1
19
20 interrupt-controller: true
21
22 '#interrupt-cells':
23 const: 0
24
25 interrupts:
26 maxItems: 1
27
28required:
29 - compatible
30 - reg
31 - interrupt-controller
32 - '#interrupt-cells'
33 - interrupts
34
35additionalProperties: false
36
37examples:
38 - |
39 interrupt-controller@98000000 {
40 compatible = "openrisc,ompic";
41 reg = <0x98000000 16>;
42 interrupt-controller;
43 #interrupt-cells = <0>;
44 interrupts = <1>;
45 };