[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID:
<SYBP282MB22382E1C032FDE2D36E6B58DC4A02@SYBP282MB2238.AUSP282.PROD.OUTLOOK.COM>
Date: Mon, 15 Jul 2024 00:36:45 +0800
From: Yuntao Dai <d1581209858@...e.com>
To: jassisinghbrar@...il.com,
robh@...nel.org,
krzk+dt@...nel.org,
conor+dt@...nel.org,
unicorn_wang@...look.com,
inochiama@...look.com,
paul.walmsley@...ive.com,
palmer@...belt.com,
aou@...s.berkeley.edu
Cc: linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org,
linux-riscv@...ts.infradead.org,
Yuntao Dai <d1581209858@...e.com>
Subject: [PATCH v2 1/3] dt-bindings: mailbox: add Sophgo cv18x SoCs mailbox
Add devicetree bindings documentation for Sophgo cv18x SoCs mailbox
Signed-off-by: Yuntao Dai <d1581209858@...e.com>
---
.../mailbox/sophgo,cv1800-mailbox.yaml | 61 +++++++++++++++++++
1 file changed, 61 insertions(+)
create mode 100644 Documentation/devicetree/bindings/mailbox/sophgo,cv1800-mailbox.yaml
diff --git a/Documentation/devicetree/bindings/mailbox/sophgo,cv1800-mailbox.yaml b/Documentation/devicetree/bindings/mailbox/sophgo,cv1800-mailbox.yaml
new file mode 100644
index 000000000..05099d819
--- /dev/null
+++ b/Documentation/devicetree/bindings/mailbox/sophgo,cv1800-mailbox.yaml
@@ -0,0 +1,61 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/mailbox/sophgo,cv1800-mailbox.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Sophgo cv1800 mailbox controller
+
+maintainers:
+ - Yuntao Dai <d1581209858@...e.com>
+
+description:
+ The Sophgo cv18x SoCs mailbox has 8 channels and 8 bytes per channel for
+ different processors. Any processer can write data in a channel, and
+ set co-responding register to raise interrupt to notice another processor,
+ and it is allowed to send data to itself.
+ Sophgo cv18x SoCs has 3 processors and numbered as
+ <1> C906L
+ <2> C906B
+ <3> 8051
+
+properties:
+ compatible:
+ enum:
+ - sophgo,cv1800-mailbox
+
+ reg:
+ maxItems: 1
+
+ interrupts:
+ maxItems: 1
+
+ interrupt-names:
+ const: mailbox
+
+ "#mbox-cells":
+ const: 2
+ description:
+ The first cell indicates which channel is used, the second cell indicates
+ sending to which processor
+
+required:
+ - compatible
+ - reg
+ - interrupts
+ - "#mbox-cells"
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/interrupt-controller/irq.h>
+
+ mailbox: mailbox@...0000 {
+ compatible = "sophgo,cv1800-mailbox";
+ reg = <0x01900000 0x1000>;
+ interrupts = <101 IRQ_TYPE_LEVEL_HIGH>;
+ interrupt-names = "mailbox";
+ interrupt-parent = <&plic>;
+ #mbox-cells = <2>;
+ };
--
2.17.1
Powered by blists - more mailing lists