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/mailbox/marvell,armada-3700-rwtm-mailbox.yaml#
5$schema: http://devicetree.org/meta-schemas/core.yaml#
6
7title: Marvell Armada 3700 rWTM Mailbox
8
9maintainers:
10 - Marek Behún <kabel@kernel.org>
11
12properties:
13 compatible:
14 const: marvell,armada-3700-rwtm-mailbox
15
16 reg:
17 maxItems: 1
18
19 interrupts:
20 maxItems: 1
21
22 '#mbox-cells':
23 const: 1
24
25required:
26 - compatible
27 - reg
28 - interrupts
29 - '#mbox-cells'
30
31additionalProperties: false
32
33examples:
34 - |
35 #include <dt-bindings/interrupt-controller/arm-gic.h>
36
37 mailbox@b0000 {
38 compatible = "marvell,armada-3700-rwtm-mailbox";
39 reg = <0xb0000 0x100>;
40 interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
41 #mbox-cells = <1>;
42 };