2020-05-20 14:18:52 +05:30
|
|
|
# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
|
|
|
|
%YAML 1.2
|
|
|
|
---
|
|
|
|
$id: http://devicetree.org/schemas/mailbox/qcom-ipcc.yaml#
|
|
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
|
|
|
|
title: Qualcomm Technologies, Inc. Inter-Processor Communication Controller
|
|
|
|
|
|
|
|
maintainers:
|
|
|
|
- Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
|
|
|
|
|
|
description:
|
|
|
|
The Inter-Processor Communication Controller (IPCC) is a centralized hardware
|
|
|
|
to route interrupts across various subsystems. It involves a three-level
|
|
|
|
addressing scheme called protocol, client and signal. For example, consider an
|
|
|
|
entity on the Application Processor Subsystem (APSS) that wants to listen to
|
|
|
|
Modem's interrupts via Shared Memory Point to Point (SMP2P) interface. In such
|
|
|
|
a case, the client would be Modem (client-id is 2) and the signal would be
|
|
|
|
SMP2P (signal-id is 2). The SMP2P itself falls under the Multiprocessor (MPROC)
|
|
|
|
protocol (protocol-id is 0). Refer include/dt-bindings/mailbox/qcom-ipcc.h
|
|
|
|
for the list of such IDs.
|
|
|
|
|
|
|
|
properties:
|
|
|
|
compatible:
|
|
|
|
items:
|
|
|
|
- enum:
|
2025-07-13 10:05:28 +02:00
|
|
|
- qcom,milos-ipcc
|
2024-09-11 15:25:15 +08:00
|
|
|
- qcom,qcs8300-ipcc
|
2023-02-13 10:52:11 -08:00
|
|
|
- qcom,qdu1000-ipcc
|
2024-09-05 11:47:36 -07:00
|
|
|
- qcom,sa8255p-ipcc
|
2023-02-14 10:27:12 +01:00
|
|
|
- qcom,sa8775p-ipcc
|
2024-10-17 21:17:23 +03:00
|
|
|
- qcom,sar2130p-ipcc
|
2022-10-16 11:00:32 +02:00
|
|
|
- qcom,sc7280-ipcc
|
|
|
|
- qcom,sc8280xp-ipcc
|
2024-04-26 11:23:21 +05:30
|
|
|
- qcom,sdx75-ipcc
|
2021-08-20 22:31:05 +02:00
|
|
|
- qcom,sm6350-ipcc
|
2022-07-16 21:32:56 +02:00
|
|
|
- qcom,sm6375-ipcc
|
2020-04-20 21:24:47 -05:00
|
|
|
- qcom,sm8250-ipcc
|
2021-03-12 10:42:03 +05:30
|
|
|
- qcom,sm8350-ipcc
|
2022-04-26 12:18:36 +02:00
|
|
|
- qcom,sm8450-ipcc
|
2022-11-16 13:34:57 +02:00
|
|
|
- qcom,sm8550-ipcc
|
2023-10-25 10:25:47 +02:00
|
|
|
- qcom,sm8650-ipcc
|
2024-10-22 08:42:38 +02:00
|
|
|
- qcom,sm8750-ipcc
|
2023-12-14 19:16:04 +02:00
|
|
|
- qcom,x1e80100-ipcc
|
2020-05-20 14:18:52 +05:30
|
|
|
- const: qcom,ipcc
|
|
|
|
|
|
|
|
reg:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
interrupts:
|
|
|
|
maxItems: 1
|
|
|
|
|
|
|
|
interrupt-controller: true
|
|
|
|
|
|
|
|
"#interrupt-cells":
|
|
|
|
const: 3
|
|
|
|
description:
|
|
|
|
The first cell is the client-id, the second cell is the signal-id and the
|
|
|
|
third cell is the interrupt type.
|
|
|
|
|
|
|
|
"#mbox-cells":
|
|
|
|
const: 2
|
|
|
|
description:
|
|
|
|
The first cell is the client-id, and the second cell is the signal-id.
|
|
|
|
|
|
|
|
required:
|
|
|
|
- compatible
|
|
|
|
- reg
|
|
|
|
- interrupts
|
|
|
|
- interrupt-controller
|
|
|
|
- "#interrupt-cells"
|
|
|
|
- "#mbox-cells"
|
|
|
|
|
|
|
|
additionalProperties: false
|
|
|
|
|
|
|
|
examples:
|
|
|
|
- |
|
2022-04-02 17:55:50 +02:00
|
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
|
|
#include <dt-bindings/mailbox/qcom-ipcc.h>
|
2020-05-20 14:18:52 +05:30
|
|
|
|
2022-04-02 17:55:50 +02:00
|
|
|
mailbox@408000 {
|
|
|
|
compatible = "qcom,sm8250-ipcc", "qcom,ipcc";
|
|
|
|
reg = <0x408000 0x1000>;
|
|
|
|
interrupts = <GIC_SPI 229 IRQ_TYPE_LEVEL_HIGH>;
|
|
|
|
interrupt-controller;
|
|
|
|
#interrupt-cells = <3>;
|
|
|
|
#mbox-cells = <2>;
|
|
|
|
};
|